Group.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\Menu; |
| 10 | |
| 11 | /** |
| 12 | * @ignore |
| 13 | */ |
| 14 | class Group |
| 15 | { |
| 16 | private $items; |
| 17 | public function add($subTitleMenu, $url, $tooltip = \false) |
| 18 | { |
| 19 | $this->items[] = array('name' => $subTitleMenu, 'url' => $url, 'tooltip' => $tooltip); |
| 20 | } |
| 21 | public function getItems() |
| 22 | { |
| 23 | return $this->items; |
| 24 | } |
| 25 | } |
| 26 |