131110e19SAndreas Gohr<?php 231110e19SAndreas Gohr 331110e19SAndreas Gohrnamespace dokuwiki\Menu; 431110e19SAndreas Gohr 531110e19SAndreas Gohruse dokuwiki\Menu\Item\AbstractItem; 631110e19SAndreas Gohr 731110e19SAndreas Gohr/** 831110e19SAndreas Gohr * Interface MenuInterface 931110e19SAndreas Gohr * 1031110e19SAndreas Gohr * Defines what a Menu provides 1131110e19SAndreas Gohr */ 12*33b91513SAndreas Gohrinterface MenuInterface 13*33b91513SAndreas Gohr{ 1431110e19SAndreas Gohr /** 1531110e19SAndreas Gohr * Get the list of action items in this menu 1631110e19SAndreas Gohr * 1731110e19SAndreas Gohr * @return AbstractItem[] 1831110e19SAndreas Gohr */ 1931110e19SAndreas Gohr public function getItems(); 2031110e19SAndreas Gohr} 21