Home
last modified time | relevance | path

Searched +full:menu -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 70) sorted by relevance

123

/dokuwiki/inc/Menu/
H A DMenuInterface.php3 namespace dokuwiki\Menu;
5 use dokuwiki\Menu\Item\AbstractItem;
10 * Defines what a Menu provides
15 * Get the list of action items in this menu
H A DAbstractMenu.php3 namespace dokuwiki\Menu;
6 use dokuwiki\Menu\Item\AbstractItem;
11 * Basic menu functionality. A menu defines a list of AbstractItem that shall be shown.
12 * It contains convenience functions to display the menu in HTML, but template authors can also
20 /** @var int the context this menu is used in */
29 * @param int $context the context this menu is used in
37 * Get the list of action items in this menu
59 $class = "\\dokuwiki\\Menu\\Item\\$class";
71 * Generate HTML list items for this menu
[all...]
H A DDetailMenu.php3 namespace dokuwiki\Menu;
8 * This menu offers options on an image detail view. It usually displayed similar to
H A DPageMenu.php3 namespace dokuwiki\Menu;
8 * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
H A DMobileMenu.php3 namespace dokuwiki\Menu;
5 use dokuwiki\Menu\Item\AbstractItem;
11 * menus. This is a meta menu, aggregating the items from the other menus and offering a combined
43 $menu = $this->getGroupedItems();
44 return array_merge(...array_values($menu));
48 * Print a dropdown menu with all DokuWiki actions
H A DUserMenu.php3 namespace dokuwiki\Menu;
H A DSiteMenu.php3 namespace dokuwiki\Menu;
/dokuwiki/inc/Ui/
H A DAdmin.php23 protected $menu;
32 $this->menu = $this->getPluginList();
45 * Show the given menu of available plugins
51 if (!$this->menu[$type]) return;
61 foreach ($this->menu[$type] as $item) {
98 * Display a single Admin menu item
130 $menu = ['admin' => [], 'manager' => [], 'other' => []];
148 $menu[$type][$p] = [
157 uasort($menu['admin'], [$this, 'menuSort']);
158 uasort($menu['manage
21 protected $menu; global() variable in dokuwiki\\Ui\\Admin
[all...]
/dokuwiki/inc/Menu/Item/
H A DBack.php3 namespace dokuwiki\Menu\Item;
8 * Navigates back up one namepspace. This is currently not used in any menu. Templates
27 $this->svg = DOKU_INC . 'lib/images/menu/12-back_arrow-left.svg';
H A DLogin.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/login.svg';
26 $this->svg = DOKU_INC . 'lib/images/menu/logout.svg';
H A DBacklink.php3 namespace dokuwiki\Menu\Item;
16 $this->svg = DOKU_INC . 'lib/images/menu/08-backlink_link-variant.svg';
H A DRecent.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
H A DMedia.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/folder-multiple-image.svg';
H A DRevisions.php3 namespace dokuwiki\Menu\Item;
19 $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg';
H A DResendpwd.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/lock-reset.svg';
H A DProfile.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/account-card-details.svg';
H A DRegister.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/account-plus.svg';
H A DSubscribe.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/09-subscribe_email-outline.svg';
H A DAdmin.php3 namespace dokuwiki\Menu\Item;
17 $this->svg = DOKU_INC . 'lib/images/menu/settings.svg';
H A DImgBackto.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/12-back_arrow-left.svg';
H A DIndex.php3 namespace dokuwiki\Menu\Item;
20 $this->svg = DOKU_INC . 'lib/images/menu/file-tree.svg';
H A DRevert.php3 namespace dokuwiki\Menu\Item;
25 $this->svg = DOKU_INC . 'lib/images/menu/06-revert_replay.svg';
H A DMediaManager.php3 namespace dokuwiki\Menu\Item;
24 $this->svg = DOKU_INC . 'lib/images/menu/11-mediamanager_folder-image.svg';
H A DTop.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/10-top_arrow-up.svg';
/dokuwiki/inc/Extension/
H A DAdminPlugin.php16 * Return the text that is displayed at the main admin menu
17 * (Default localized language string 'menu' is returned, override this function for setting another name)
20 * @return string menu string
24 $menutext = $this->getLang('menu');
33 * Return the path to the icon being displayed in the main admin menu.
63 * Return true if the plugin should be shown in the admin menu

123