WEBD-325-45/week-06/project/libraries/src/Model/Util/MenuInterface.php

29 lines
555 B
PHP

<?php
/**
* @package Octoleo CMS
*
* @created 18th April 2022
* @author Llewellyn van der Merwe <https://git.vdm.dev/Llewellyn>
* @git WEBD-325-45 <https://git.vdm.dev/Llewellyn/WEBD-325-45>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Octoleo\CMS\Model\Util;
/**
* Class for getting menu items
*
* @since 1.0.0
*/
interface MenuInterface
{
/**
* Get all menu items
*
* @param int $active
*
* @return array
*/
public function getMenus(int $active = 0): array;
}