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 path

123

/dokuwiki/
H A DCOPYING323 mouse-clicks or menu items--whatever suits your program.
/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
/dokuwiki/inc/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 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 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 DPageMenu.php3 namespace dokuwiki\Menu;
8 * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php3 namespace dokuwiki\Menu\Item;
22 /** menu item is to be shown on desktop screens only */
24 /** menu item is to be shown on mobile screens only */
26 /** menu item is to be shown in all contexts */
43 /** @var string the full path to the SVG icon of this menu item */
44 protected $svg = DOKU_INC . 'lib/images/menu/00-default_checkbox-blank-circle-outline.svg';
H A DAdmin.php3 namespace dokuwiki\Menu\Item;
17 $this->svg = DOKU_INC . 'lib/images/menu/settings.svg';
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 DBacklink.php3 namespace dokuwiki\Menu\Item;
16 $this->svg = DOKU_INC . 'lib/images/menu/08-backlink_link-variant.svg';
H A DEdit.php3 namespace dokuwiki\Menu\Item;
64 $this->svg = DOKU_INC . 'lib/images/menu/' . $icons[$this->type];
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 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 DMedia.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/folder-multiple-image.svg';
H A DMediaManager.php3 namespace dokuwiki\Menu\Item;
24 $this->svg = DOKU_INC . 'lib/images/menu/11-mediamanager_folder-image.svg';
H A DProfile.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/account-card-details.svg';
H A DRecent.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/calendar-clock.svg';
H A DRegister.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/account-plus.svg';
H A DResendpwd.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/lock-reset.svg';
H A DRevert.php3 namespace dokuwiki\Menu\Item;
25 $this->svg = DOKU_INC . 'lib/images/menu/06-revert_replay.svg';
H A DRevisions.php3 namespace dokuwiki\Menu\Item;
19 $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg';
H A DSubscribe.php3 namespace dokuwiki\Menu\Item;
22 $this->svg = DOKU_INC . 'lib/images/menu/09-subscribe_email-outline.svg';
H A DTop.php3 namespace dokuwiki\Menu\Item;
18 $this->svg = DOKU_INC . 'lib/images/menu/10-top_arrow-up.svg';

123