aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Menu/AbstractMenu.php
Commit message (Collapse)AuthorAge
* Menu: check context visibility after assembling itemsAndreas Gohr13 days
| | | | | This addresses #4400. By checking the context visibility after the assembly, the context is properly checked for plugin items.
* code style: line breaksAndreas Gohr2023-08-31
|
* codestyle adjustments: class declaration bracesAndreas Gohr2023-08-30
|
* Apply rector fixes to inc/MenuAndreas Gohr2023-08-29
|
* deprecated trigger_event() in favor of a static method on EventAndreas Gohr2019-04-20
|
* introduce a MenuInterfaceAndreas Gohr2017-09-01
| | | | | this helps tieing together the "normal" menus and the MobileMenu and makes them both implement a getItems() method.
* used index array for menu itemsAndreas Gohr2017-08-15
| | | | This makes it a little easier to splice new elements into position
* more doc blocks for the menu systemAndreas Gohr2017-05-19
|
* use menu for site toolsAndreas Gohr2017-05-19
| | | | | this adds an option to print the menu without icons (as we do in the dokuwiki template) but icons were added nontheless
* fix base dir for imagesAndreas Gohr2017-05-19
|
* beginning of a complete refactoring of the menuesAndreas Gohr2017-05-19
This is an attempt to: * get rid of the super long, complex functions in in/template.php * make it easy for plugin authors to add their own items to any of our menus, regardless of the used template * continue the progress to make use of SVG in the menues This takes a similar approach as my actionrefactor branch. Originially I thought both refactorings could be done in one, merging the functionality of DokuWiki actions and the menu items. However I couldn't make it work. So instead we have two separate but similar things. Maybe they can converge later on.