1 | <?php |
||
11 | class Menu |
||
12 | { |
||
13 | |||
14 | private static $instance; |
||
15 | private $active_items = []; |
||
16 | |||
17 | public static function getInstance() |
||
24 | |||
25 | public function __construct() |
||
29 | |||
30 | public function item($title, $id = null, $url = null, array $params = [], array $children = []) |
||
40 | |||
41 | public function setActive($id) |
||
47 | |||
48 | } |