xref: /dokuwiki/inc/Menu/MenuInterface.php (revision 8c7c53b0321a3cd3116b8d3b2ad27863a38dece7)
1<?php
2
3namespace dokuwiki\Menu;
4
5use dokuwiki\Menu\Item\AbstractItem;
6
7/**
8 * Interface MenuInterface
9 *
10 * Defines what a Menu provides
11 */
12interface MenuInterface
13{
14
15    /**
16     * Get the list of action items in this menu
17     *
18     * @return AbstractItem[]
19     */
20    public function getItems();
21}
22