18 lines
369 B
PHP
18 lines
369 B
PHP
<?php
|
|
/*****************************************************************************
|
|
* Menu.php
|
|
* Contains all navigational menus.
|
|
*
|
|
* Kabuki CMS (C) 2013-2023, Aaron van Geffen
|
|
*****************************************************************************/
|
|
|
|
abstract class Menu
|
|
{
|
|
protected $items = [];
|
|
|
|
public function getItems()
|
|
{
|
|
return $this->items;
|
|
}
|
|
}
|