You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
303 B

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