phplibrary/core/widgets/tree.php
2016-07-14 16:29:26 +03:00

17 lines
No EOL
276 B
PHP

<?php
require_once 'core/widgets/widget.php';
/**
* Компонент для генерации Дерева
*/
class Tree extends Widget
{
public function setUp()
{
$this->template = "tree";
}
// Добавление ветки дерева
}
?>