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
304 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. * Get the list of action items in this menu
  12. *
  13. * @return AbstractItem[]
  14. */
  15. public function getItems();
  16. }