2002-12-24 15:40:32 +00:00
|
|
|
<?php
|
2003-12-27 21:29:20 +00:00
|
|
|
|
2004-07-22 16:06:54 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* API for the Drupal menu system.
|
|
|
|
*/
|
|
|
|
|
2013-10-07 05:34:09 +00:00
|
|
|
use Drupal\Component\Utility\String;
|
2014-03-31 17:37:55 +00:00
|
|
|
use Drupal\Core\Render\Element;
|
2012-09-04 13:32:47 +00:00
|
|
|
use Drupal\Core\Template\Attribute;
|
|
|
|
|
2003-12-17 22:15:35 +00:00
|
|
|
/**
|
2013-10-18 04:08:20 +00:00
|
|
|
* @defgroup menu Menu and routing system
|
2003-12-17 22:15:35 +00:00
|
|
|
* @{
|
2004-09-09 05:51:08 +00:00
|
|
|
* Define the navigation menus, and route page requests to code based on URLs.
|
2004-07-10 18:10:36 +00:00
|
|
|
*
|
2014-07-02 19:31:15 +00:00
|
|
|
* @section sec_overview Overview and terminology
|
|
|
|
* The Drupal routing system defines how Drupal responds to URL requests that
|
|
|
|
* the web server passes on to Drupal. The routing system is based on the
|
|
|
|
* @link http://symfony.com Symfony framework. @endlink The central idea is
|
|
|
|
* that Drupal subsystems and modules can register routes (basically, URL
|
|
|
|
* paths and context); they can also register to respond dynamically to
|
|
|
|
* routes, for more flexibility. When Drupal receives a URL request, it will
|
|
|
|
* attempt to match the request to a registered route, and query dynamic
|
|
|
|
* responders. If a match is made, Drupal will then instantiate the required
|
|
|
|
* classes, gather the data, format it, and send it back to the web browser.
|
|
|
|
* Otherwise, Drupal will return a 404 or 403 response.
|
|
|
|
*
|
|
|
|
* The menu system uses routes; it is used for navigation menus, local tasks,
|
|
|
|
* local actions, and contextual links:
|
|
|
|
* - Navigation menus are hierarchies of menu links; links point to routes or
|
|
|
|
* URLs.
|
|
|
|
* - Menu links and their hierarchies can be defined by Drupal subsystems
|
|
|
|
* and modules, or created in the user interface using the Menu UI module.
|
|
|
|
* - Local tasks are groups of related routes. Local tasks are usually rendered
|
|
|
|
* as a group of tabs.
|
|
|
|
* - Local actions are used for operations such as adding a new item on a page
|
|
|
|
* that lists items of some type. Local actions are usually rendered as
|
|
|
|
* buttons.
|
|
|
|
* - Contextual links are actions that are related to sections of rendered
|
|
|
|
* output, and are usually rendered as a pop-up list of links. The
|
|
|
|
* Contextual Links module handles the gathering and rendering of contextual
|
|
|
|
* links.
|
|
|
|
*
|
|
|
|
* The following sections of this topic provide an overview of the routing and
|
|
|
|
* menu APIs. For more detailed information, see
|
|
|
|
* https://www.drupal.org/developing/api/8/routing and
|
|
|
|
* https://www.drupal.org/developing/api/8/menu
|
|
|
|
*
|
|
|
|
* @section sec_register Registering simple routes
|
|
|
|
* To register a route, add lines similar to this to a module_name.routing.yml
|
|
|
|
* file in your top-level module directory:
|
|
|
|
* @code
|
|
|
|
* dblog.overview:
|
|
|
|
* path: '/admin/reports/dblog'
|
|
|
|
* defaults:
|
|
|
|
* _content: '\Drupal\dblog\Controller\DbLogController::overview'
|
|
|
|
* _title: 'Recent log messages'
|
|
|
|
* requirements:
|
|
|
|
* _permission: 'access site reports'
|
|
|
|
* @endcode
|
|
|
|
* Some notes:
|
|
|
|
* - The first line is the machine name of the route. Typically, it is prefixed
|
|
|
|
* by the machine name of the module that defines the route, or the name of
|
|
|
|
* a subsystem.
|
|
|
|
* - The 'path' line gives the URL path of the route (relative to the site's
|
|
|
|
* base URL).
|
|
|
|
* - The 'defaults' section tells how to build the main content of the route,
|
|
|
|
* and can also give other information, such as the page title and additional
|
|
|
|
* arguments for the route controller method. There are several possibilities
|
|
|
|
* for how to build the main content, including:
|
|
|
|
* - _content: A callable, usually a method on a page controller class
|
|
|
|
* (see @ref sec_controller below for details).
|
|
|
|
* - _controller: A callable, usually a method on a page controller class
|
|
|
|
* (see @ref sec_controller below for details).
|
|
|
|
* - _form: A form controller class. See the
|
|
|
|
* @link form_api Form API topic @endlink for more information about
|
|
|
|
* form controllers.
|
|
|
|
* - _entity_form: A form for editing an entity. See the
|
|
|
|
* @link entity_api Entity API topic @endlink for more information.
|
|
|
|
* - The 'requirements' section is used in Drupal to give access permission
|
|
|
|
* instructions (it has other uses in the Symfony framework). Most
|
|
|
|
* routes have a simple permission-based access scheme, as shown in this
|
|
|
|
* example. See the @link user_api Permission system topic @endlink for
|
|
|
|
* more information about permissions.
|
|
|
|
*
|
|
|
|
* See https://www.drupal.org/node/2092643 for more details about *.routing.yml
|
|
|
|
* files, and https://www.drupal.org/node/2122201 for information on how to
|
|
|
|
* set up dynamic routes.
|
|
|
|
*
|
|
|
|
* @section sec_placeholders Defining routes with placeholders
|
|
|
|
* Some routes have placeholders in them, and these can also be defined in a
|
|
|
|
* module_name.routing.yml file, as in this example from the Block module:
|
2013-10-18 04:08:20 +00:00
|
|
|
* @code
|
2014-08-04 16:55:19 +00:00
|
|
|
* entity.block.edit_form:
|
2014-07-02 19:31:15 +00:00
|
|
|
* path: '/admin/structure/block/manage/{block}'
|
2013-10-18 04:08:20 +00:00
|
|
|
* defaults:
|
2014-07-02 19:31:15 +00:00
|
|
|
* _entity_form: 'block.default'
|
|
|
|
* _title: 'Configure block'
|
2013-10-18 04:08:20 +00:00
|
|
|
* requirements:
|
2014-07-02 19:31:15 +00:00
|
|
|
* _entity_access: 'block.update'
|
|
|
|
* @endcode
|
|
|
|
* In the path, '{block}' is a placeholder - it will be replaced by the
|
|
|
|
* ID of the block that is being configured by the entity system. See the
|
|
|
|
* @link entity_api Entity API topic @endlink for more information.
|
|
|
|
*
|
|
|
|
* @section sec_controller Route controllers for simple routes
|
|
|
|
* For simple routes, after you have defined the route in a *.routing.yml file
|
|
|
|
* (see @ref sec_register above), the next step is to define a page controller
|
|
|
|
* class and method. Page controller classes do not necessarily need to
|
|
|
|
* implement any particular interface or extend any particular base class. The
|
|
|
|
* only requirement is that the method specified in your *.routing.yml file
|
|
|
|
* return one of the following, depending on whether you specified _content or
|
|
|
|
* _controller in the routing file defaults section:
|
|
|
|
* - A render array (see the
|
|
|
|
* @link theme_render Theme and render topic @endlink for more information),
|
|
|
|
* if _content is used in the routing file.
|
|
|
|
* - A \Drupal\Core\Page\HtmlFragmentInterface object (fragment or page), if
|
|
|
|
* _content is used in the routing file.
|
|
|
|
* - A \Symfony\Component\HttpFoundation\Response object, if _controller is
|
|
|
|
* used in the routing file.
|
|
|
|
* As a note, if your module registers multiple simple routes, it is usual
|
|
|
|
* (and usually easiest) to put all of their methods on one controller class.
|
|
|
|
*
|
|
|
|
* Most controllers will need to display some information stored in the Drupal
|
|
|
|
* database, which will involve using one or more Drupal services (see the
|
|
|
|
* @link container Services and container topic @endlink). In order to properly
|
|
|
|
* inject services, a controller should implement
|
|
|
|
* \Drupal\Core\DependencyInjection\ContainerInjectionInterface; simple
|
|
|
|
* controllers can do this by extending the
|
|
|
|
* \Drupal\Core\Controller\ControllerBase class. See
|
|
|
|
* \Drupal\dblog\Controller\DbLogController for a straightforward example of
|
|
|
|
* a controller class.
|
|
|
|
*
|
|
|
|
* @section sec_links Defining menu links for the administrative menu
|
|
|
|
* Routes for administrative tasks can be added to the main Drupal
|
|
|
|
* administrative menu hierarchy. To do this, add lines like the following to a
|
2014-07-16 22:39:40 +00:00
|
|
|
* module_name.links.menu.yml file (in the top-level directory for your module):
|
2014-07-02 19:31:15 +00:00
|
|
|
* @code
|
|
|
|
* dblog.overview:
|
|
|
|
* title: 'Recent log messages'
|
|
|
|
* parent: system.admin_reports
|
|
|
|
* description: 'View events that have recently been logged.'
|
|
|
|
* route_name: dblog.overview
|
|
|
|
* weight: -1
|
|
|
|
* @endcode
|
|
|
|
* Some notes:
|
|
|
|
* - The first line is the machine name for your menu link, which usually
|
|
|
|
* matches the machine name of the route (given in the 'route_name' line).
|
|
|
|
* - parent: The machine name of the menu link that is the parent in the
|
2014-07-16 22:39:40 +00:00
|
|
|
* administrative hierarchy. See system.links.menu.yml to find the main
|
2014-07-02 19:31:15 +00:00
|
|
|
* skeleton of the hierarchy.
|
|
|
|
* - weight: Lower (negative) numbers come before higher (positive) numbers,
|
|
|
|
* for menu items with the same parent.
|
|
|
|
*
|
2014-07-30 12:04:04 +00:00
|
|
|
* Discovered menu links from other modules can be altered using
|
|
|
|
* hook_menu_links_discovered_alter().
|
2014-07-02 19:31:15 +00:00
|
|
|
*
|
|
|
|
* @todo Derivatives will probably be defined for these; when they are, add
|
|
|
|
* documentation here.
|
|
|
|
*
|
|
|
|
* @section sec_tasks Defining groups of local tasks (tabs)
|
|
|
|
* Local tasks appear as tabs on a page when there are at least two defined for
|
|
|
|
* a route, including the base route as the main tab, and additional routes as
|
|
|
|
* other tabs. Static local tasks can be defined by adding lines like the
|
2014-07-15 11:29:14 +00:00
|
|
|
* following to a module_name.links.task.yml file (in the top-level directory
|
2014-07-02 19:31:15 +00:00
|
|
|
* for your module):
|
|
|
|
* @code
|
|
|
|
* book.admin:
|
|
|
|
* route_name: book.admin
|
|
|
|
* title: 'List'
|
|
|
|
* base_route: book.admin
|
|
|
|
* book.settings:
|
|
|
|
* route_name: book.settings
|
|
|
|
* title: 'Settings'
|
|
|
|
* base_route: book.admin
|
|
|
|
* weight: 100
|
2013-10-18 04:08:20 +00:00
|
|
|
* @endcode
|
2014-07-02 19:31:15 +00:00
|
|
|
* Some notes:
|
|
|
|
* - The first line is the machine name for your local task, which usually
|
|
|
|
* matches the machine name of the route (given in the 'route_name' line).
|
|
|
|
* - base_route: The machine name of the main task (tab) for the set of local
|
|
|
|
* tasks.
|
|
|
|
* - weight: Lower (negative) numbers come before higher (positive) numbers,
|
|
|
|
* for tasks on the same base route. If there is a tab whose route
|
|
|
|
* matches the base route, that will be the default/first tab shown.
|
|
|
|
*
|
|
|
|
* Local tasks from other modules can be altered using
|
|
|
|
* hook_menu_local_tasks_alter().
|
|
|
|
*
|
|
|
|
* @todo Derivatives are in flux for these; when they are more stable, add
|
|
|
|
* documentation here.
|
|
|
|
*
|
|
|
|
* @section sec_actions Defining local actions for routes
|
|
|
|
* Local actions can be defined for operations related to a given route. For
|
|
|
|
* instance, adding content is a common operation for the content management
|
|
|
|
* page, so it should be a local action. Static local actions can be
|
|
|
|
* defined by adding lines like the following to a
|
2014-07-15 11:29:14 +00:00
|
|
|
* module_name.links.action.yml file (in the top-level directory for your
|
2014-07-02 19:31:15 +00:00
|
|
|
* module):
|
|
|
|
* @code
|
|
|
|
* node.add_page:
|
|
|
|
* route_name: node.add_page
|
|
|
|
* title: 'Add content'
|
|
|
|
* appears_on:
|
|
|
|
* - system.admin_content
|
|
|
|
* @endcode
|
|
|
|
* Some notes:
|
|
|
|
* - The first line is the machine name for your local action, which usually
|
|
|
|
* matches the machine name of the route (given in the 'route_name' line).
|
|
|
|
* - appears_on: Machine names of one or more routes that this local task
|
|
|
|
* should appear on.
|
|
|
|
*
|
|
|
|
* Local actions from other modules can be altered using
|
|
|
|
* hook_menu_local_actions_alter().
|
|
|
|
*
|
|
|
|
* @todo Derivatives are in flux for these; when they are more stable, add
|
|
|
|
* documentation here.
|
|
|
|
*
|
|
|
|
* @section sec_contextual Defining contextual links
|
|
|
|
* Contextual links are displayed by the Contextual Links module for user
|
|
|
|
* interface elements whose render arrays have a '#contextual_links' element
|
|
|
|
* defined. For example, a block render array might look like this, in part:
|
|
|
|
* @code
|
|
|
|
* array(
|
|
|
|
* '#contextual_links' => array(
|
|
|
|
* 'block' => array(
|
|
|
|
* 'route_parameters' => array('block' => $entity->id()),
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @endcode
|
|
|
|
* In this array, the outer key 'block' defines a "group" for contextual
|
|
|
|
* links, and the inner array provides values for the route's placeholder
|
|
|
|
* parameters (see @ref sec_placeholders above).
|
|
|
|
*
|
|
|
|
* To declare that a defined route should be a contextual link for a
|
|
|
|
* contextual links group, put lines like the following in a
|
2014-07-15 11:29:14 +00:00
|
|
|
* module_name.links.contextual.yml file (in the top-level directory for your
|
2014-07-02 19:31:15 +00:00
|
|
|
* module):
|
|
|
|
* @code
|
|
|
|
* block_configure:
|
|
|
|
* title: 'Configure block'
|
2014-08-04 16:55:19 +00:00
|
|
|
* route_name: 'entity.block.edit_form'
|
2014-07-02 19:31:15 +00:00
|
|
|
* group: 'block'
|
|
|
|
* @endcode
|
|
|
|
* Some notes:
|
|
|
|
* - The first line is the machine name for your contextual link, which usually
|
|
|
|
* matches the machine name of the route (given in the 'route_name' line).
|
|
|
|
* - group: This needs to match the link group defined in the render array.
|
|
|
|
*
|
|
|
|
* Contextual links from other modules can be altered using
|
|
|
|
* hook_contextual_links_alter().
|
|
|
|
*
|
|
|
|
* @todo Derivatives are in flux for these; when they are more stable, add
|
|
|
|
* documentation here.
|
2003-12-17 22:15:35 +00:00
|
|
|
*/
|
|
|
|
|
2011-12-06 12:18:12 +00:00
|
|
|
/**
|
2014-07-30 12:04:04 +00:00
|
|
|
* @section Rendering menus
|
|
|
|
* Once you have created menus (that contain menu links), you want to render
|
|
|
|
* them. Drupal provides a block (Drupal\system\Plugin\Block\SystemMenuBlock) to
|
|
|
|
* do so.
|
|
|
|
*
|
|
|
|
* However, perhaps you have more advanced needs and you're not satisfied with
|
|
|
|
* what the menu blocks offer you. If that's the case, you'll want to:
|
|
|
|
* - Instantiate \Drupal\Core\Menu\MenuTreeParameters, and set its values to
|
|
|
|
* match your needs. Alternatively, you can use
|
|
|
|
* MenuLinkTree::getCurrentRouteMenuTreeParameters() to get a typical
|
|
|
|
* default set of parameters, and then customize them to suit your needs.
|
|
|
|
* - Call \Drupal\Core\MenuLinkTree::load() with your menu link tree parameters,
|
|
|
|
* this will return a menu link tree.
|
|
|
|
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::transform() to apply
|
|
|
|
* menu link tree manipulators that transform the tree. You will almost always
|
|
|
|
* want to apply access checking. The manipulators that you will typically
|
|
|
|
* need can be found in \Drupal\Core\Menu\DefaultMenuTreeManipulators.
|
|
|
|
* - Potentially write a custom menu tree manipulator, see
|
|
|
|
* \Drupal\Core\Menu\DefaultMenuTreeManipulators for examples. This is only
|
|
|
|
* necessary if you want to do things like adding extra metadata to rendered
|
|
|
|
* links to display icons next to them.
|
|
|
|
* - Pass the menu tree to \Drupal\Core\Menu\MenuLinkTree::build(), this will
|
|
|
|
* build a renderable array.
|
|
|
|
*
|
|
|
|
* Combined, that would look like this:
|
2014-07-30 12:02:58 +00:00
|
|
|
* @code
|
2014-07-30 12:04:04 +00:00
|
|
|
* $menu_tree = \Drupal::menuTree();
|
|
|
|
* $menu_name = 'my_menu';
|
|
|
|
*
|
|
|
|
* // Build the typical default set of menu tree parameters.
|
|
|
|
* $parameters = $menu_tree->getCurrentRouteMenuTreeParameters($menu_name);
|
|
|
|
*
|
|
|
|
* // Load the tree based on this set of parameters.
|
|
|
|
* $tree = $menu_tree->load($menu_name, $parameters);
|
|
|
|
*
|
|
|
|
* // Transform the tree using the manipulators you want.
|
|
|
|
* $manipulators = array(
|
|
|
|
* // Only show links that are accessible for the current user.
|
|
|
|
* array('callable' => 'menu.default_tree_manipulators:checkAccess'),
|
|
|
|
* // Use the default sorting of menu links.
|
|
|
|
* array('callable' => 'menu.default_tree_manipulators:generateIndexAndSort'),
|
|
|
|
* );
|
|
|
|
* $tree = $menu_tree->transform($tree, $manipulators);
|
|
|
|
*
|
|
|
|
* // Finally, build a renderable array from the transformed tree.
|
|
|
|
* $menu = $menu_tree->build($tree);
|
2014-07-30 12:02:58 +00:00
|
|
|
*
|
2014-07-30 12:04:04 +00:00
|
|
|
* $menu_html = drupal_render($menu);
|
|
|
|
* @endcode
|
2011-12-06 12:18:12 +00:00
|
|
|
*/
|
|
|
|
|
2007-07-04 15:49:44 +00:00
|
|
|
/**
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
* Prepares variables for single local task link templates.
|
2007-12-06 09:58:34 +00:00
|
|
|
*
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
* Default template: menu-local-task.html.twig.
|
|
|
|
*
|
|
|
|
* @param array $variables
|
2009-10-09 01:00:08 +00:00
|
|
|
* An associative array containing:
|
2010-04-13 15:23:03 +00:00
|
|
|
* - element: A render element containing:
|
|
|
|
* - #link: A menu link array with 'title', 'href', and 'localized_options'
|
|
|
|
* keys.
|
|
|
|
* - #active: A boolean indicating whether the local task is active.
|
2007-07-04 15:49:44 +00:00
|
|
|
*/
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
function template_preprocess_menu_local_task(&$variables) {
|
2009-10-11 06:05:53 +00:00
|
|
|
$link = $variables['element']['#link'];
|
2013-02-18 17:03:05 +00:00
|
|
|
$link += array(
|
|
|
|
'localized_options' => array(),
|
|
|
|
);
|
2009-11-08 12:30:35 +00:00
|
|
|
$link_text = $link['title'];
|
|
|
|
|
|
|
|
if (!empty($variables['element']['#active'])) {
|
|
|
|
// Add text to indicate active tab for non-visual users.
|
2013-06-17 19:58:27 +00:00
|
|
|
$active = '<span class="visually-hidden">' . t('(active tab)') . '</span>';
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
$variables['attributes']['class'] = array('active');
|
2009-11-08 12:30:35 +00:00
|
|
|
|
2013-10-07 05:34:09 +00:00
|
|
|
// If the link does not contain HTML already, String::checkPlain() it now.
|
2009-11-08 12:30:35 +00:00
|
|
|
// After we set 'html'=TRUE the link will not be sanitized by l().
|
|
|
|
if (empty($link['localized_options']['html'])) {
|
2013-10-07 05:34:09 +00:00
|
|
|
$link['title'] = String::checkPlain($link['title']);
|
2009-11-08 12:30:35 +00:00
|
|
|
}
|
|
|
|
$link['localized_options']['html'] = TRUE;
|
2010-05-04 20:29:57 +00:00
|
|
|
$link_text = t('!local-task-title!active', array('!local-task-title' => $link['title'], '!active' => $active));
|
2009-11-08 12:30:35 +00:00
|
|
|
}
|
2014-01-23 18:04:41 +00:00
|
|
|
$link['localized_options']['set_active_class'] = TRUE;
|
|
|
|
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
$variables['link'] = array(
|
|
|
|
'#type' => 'link',
|
|
|
|
'#title' => $link_text,
|
|
|
|
'#options' => $link['localized_options'],
|
|
|
|
);
|
|
|
|
|
2013-09-20 09:53:46 +00:00
|
|
|
if (!empty($link['href'])) {
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
// @todo - Remove this once all pages are converted to routes.
|
|
|
|
$variables['link']['#href'] = $link['href'];
|
2013-09-20 09:53:46 +00:00
|
|
|
}
|
|
|
|
else {
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
$variables['link'] += array(
|
|
|
|
'#route_name' => $link['route_name'],
|
|
|
|
'#route_parameters' => $link['route_parameters'],
|
|
|
|
);
|
2013-09-20 09:53:46 +00:00
|
|
|
}
|
2003-09-28 10:51:40 +00:00
|
|
|
}
|
2002-12-24 15:40:32 +00:00
|
|
|
|
2009-08-22 19:58:28 +00:00
|
|
|
/**
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
* Prepares variables for single local action link templates.
|
2009-08-22 19:58:28 +00:00
|
|
|
*
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
* Default template: menu-local-action.html.twig.
|
|
|
|
*
|
|
|
|
* @param array $variables
|
2009-10-09 01:00:08 +00:00
|
|
|
* An associative array containing:
|
2010-04-13 15:23:03 +00:00
|
|
|
* - element: A render element containing:
|
|
|
|
* - #link: A menu link array with 'title', 'href', and 'localized_options'
|
|
|
|
* keys.
|
2009-08-22 19:58:28 +00:00
|
|
|
*/
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
function template_preprocess_menu_local_action(&$variables) {
|
2009-10-11 06:05:53 +00:00
|
|
|
$link = $variables['element']['#link'];
|
2012-11-19 11:43:55 +00:00
|
|
|
$link += array(
|
|
|
|
'href' => '',
|
|
|
|
'localized_options' => array(),
|
2013-10-01 22:24:51 +00:00
|
|
|
'route_parameters' => array(),
|
2012-11-19 11:43:55 +00:00
|
|
|
);
|
|
|
|
$link['localized_options']['attributes']['class'][] = 'button';
|
2013-01-02 12:00:25 +00:00
|
|
|
$link['localized_options']['attributes']['class'][] = 'button-action';
|
2014-01-23 18:04:41 +00:00
|
|
|
$link['localized_options']['set_active_class'] = TRUE;
|
2009-12-03 20:21:50 +00:00
|
|
|
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
$variables['link'] = array(
|
|
|
|
'#type' => 'link',
|
|
|
|
'#title' => $link['title'],
|
|
|
|
'#options' => $link['localized_options'],
|
|
|
|
);
|
|
|
|
|
2013-10-01 22:24:51 +00:00
|
|
|
// @todo Figure out how to support local actions without a href properly.
|
|
|
|
if ($link['href'] === '' && !empty($link['route_name'])) {
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
$variables['link'] += array(
|
|
|
|
'#route_name' => $link['route_name'],
|
|
|
|
'#route_parameters' => $link['route_parameters'],
|
|
|
|
);
|
2013-10-01 22:24:51 +00:00
|
|
|
}
|
|
|
|
else {
|
Issue #1898478 by joelpittet, Cottser, lokapujya, m1r1k, jstoller, er.pushpinderrana, duellj, organicwire, jessebeach, idflood, Jalandhar, Risse, derheap, galooph, mike.roberts, tlattimore, nadavoid, LinL, steveoliver, chakrapani, likin, killerpoke, EVIIILJ, vlad.dancer, podarok, m86 | c4rl: Menu.inc - Convert theme_ functions to Twig.
2014-09-09 16:12:26 +00:00
|
|
|
// @todo - Remove this once all pages are converted to routes.
|
|
|
|
$variables['link']['#href'] = $link['href'];
|
2013-10-01 22:24:51 +00:00
|
|
|
}
|
2009-08-22 19:58:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-25 14:44:03 +00:00
|
|
|
/**
|
2012-08-31 15:56:36 +00:00
|
|
|
* Returns an array containing the names of system-defined (default) menus.
|
2007-07-25 14:44:03 +00:00
|
|
|
*/
|
|
|
|
function menu_list_system_menus() {
|
2009-10-09 08:02:25 +00:00
|
|
|
return array(
|
2012-10-25 15:53:18 +00:00
|
|
|
'tools' => 'Tools',
|
|
|
|
'admin' => 'Administration',
|
|
|
|
'account' => 'User account menu',
|
|
|
|
'main' => 'Main navigation',
|
2012-11-20 11:36:51 +00:00
|
|
|
'footer' => 'Footer menu',
|
2009-10-09 08:02:25 +00:00
|
|
|
);
|
2007-07-25 14:44:03 +00:00
|
|
|
}
|
|
|
|
|
2007-02-11 09:30:51 +00:00
|
|
|
/**
|
2009-08-22 19:58:28 +00:00
|
|
|
* Collects the local tasks (tabs), action links, and the root path.
|
2007-02-11 09:30:51 +00:00
|
|
|
*
|
2013-10-04 04:27:56 +00:00
|
|
|
* @param int $level
|
2007-05-16 13:45:17 +00:00
|
|
|
* The level of tasks you ask for. Primary tasks are 0, secondary are 1.
|
2010-03-26 17:14:46 +00:00
|
|
|
*
|
2013-10-04 04:27:56 +00:00
|
|
|
* @return array
|
2009-08-22 19:58:28 +00:00
|
|
|
* An array containing
|
2013-02-18 17:03:05 +00:00
|
|
|
* - tabs: Local tasks for the requested level.
|
|
|
|
* - actions: Action links for the requested level.
|
2009-08-22 19:58:28 +00:00
|
|
|
* - root_path: The router path for the current page. If the current page is
|
|
|
|
* a default local task, then this corresponds to the parent tab.
|
2013-02-18 17:03:05 +00:00
|
|
|
*
|
|
|
|
* @see hook_menu_local_tasks()
|
|
|
|
* @see hook_menu_local_tasks_alter()
|
2009-08-22 19:58:28 +00:00
|
|
|
*/
|
|
|
|
function menu_local_tasks($level = 0) {
|
|
|
|
$data = &drupal_static(__FUNCTION__);
|
|
|
|
$root_path = &drupal_static(__FUNCTION__ . ':root_path', '');
|
|
|
|
$empty = array(
|
2013-02-18 17:03:05 +00:00
|
|
|
'tabs' => array(),
|
|
|
|
'actions' => array(),
|
2009-08-22 19:58:28 +00:00
|
|
|
'root_path' => &$root_path,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!isset($data)) {
|
2013-09-20 09:53:46 +00:00
|
|
|
// Look for route-based tabs.
|
|
|
|
$data['tabs'] = array();
|
|
|
|
$data['actions'] = array();
|
|
|
|
|
2014-06-24 12:39:26 +00:00
|
|
|
$route_name = \Drupal::routeMatch()->getRouteName();
|
2014-09-15 09:22:01 +00:00
|
|
|
if (!\Drupal::request()->attributes->has('exception') && !empty($route_name)) {
|
2013-09-21 15:23:51 +00:00
|
|
|
$manager = \Drupal::service('plugin.manager.menu.local_task');
|
2013-09-20 09:53:46 +00:00
|
|
|
$local_tasks = $manager->getTasksBuild($route_name);
|
|
|
|
foreach ($local_tasks as $level => $items) {
|
|
|
|
$data['tabs'][$level] = empty($data['tabs'][$level]) ? $items : array_merge($data['tabs'][$level], $items);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-18 17:03:05 +00:00
|
|
|
// Allow modules to dynamically add further tasks.
|
2013-09-16 03:58:06 +00:00
|
|
|
$module_handler = \Drupal::moduleHandler();
|
2013-02-18 17:03:05 +00:00
|
|
|
foreach ($module_handler->getImplementations('menu_local_tasks') as $module) {
|
|
|
|
$function = $module . '_menu_local_tasks';
|
2013-10-04 04:27:56 +00:00
|
|
|
$function($data, $route_name);
|
2013-02-18 17:03:05 +00:00
|
|
|
}
|
|
|
|
// Allow modules to alter local tasks.
|
2013-10-04 04:27:56 +00:00
|
|
|
$module_handler->alter('menu_local_tasks', $data, $route_name);
|
2007-01-31 21:26:56 +00:00
|
|
|
}
|
2007-06-30 19:46:58 +00:00
|
|
|
|
2009-08-22 19:58:28 +00:00
|
|
|
if (isset($data['tabs'][$level])) {
|
|
|
|
return array(
|
|
|
|
'tabs' => $data['tabs'][$level],
|
|
|
|
'actions' => $data['actions'],
|
|
|
|
'root_path' => $root_path,
|
|
|
|
);
|
2007-06-30 19:46:58 +00:00
|
|
|
}
|
2013-02-18 17:03:05 +00:00
|
|
|
elseif (!empty($data['actions'])) {
|
2009-12-03 20:21:50 +00:00
|
|
|
return array('actions' => $data['actions']) + $empty;
|
|
|
|
}
|
2009-08-22 19:58:28 +00:00
|
|
|
return $empty;
|
2007-02-11 09:30:51 +00:00
|
|
|
}
|
|
|
|
|
2007-07-04 15:49:44 +00:00
|
|
|
/**
|
|
|
|
* Returns the rendered local tasks at the top level.
|
|
|
|
*/
|
2007-02-11 09:30:51 +00:00
|
|
|
function menu_primary_local_tasks() {
|
2009-08-22 19:58:28 +00:00
|
|
|
$links = menu_local_tasks(0);
|
|
|
|
// Do not display single tabs.
|
2014-03-31 17:37:55 +00:00
|
|
|
return count(Element::getVisibleChildren($links['tabs'])) > 1 ? $links['tabs'] : '';
|
2004-04-15 20:49:42 +00:00
|
|
|
}
|
2003-09-28 10:51:40 +00:00
|
|
|
|
2007-07-04 15:49:44 +00:00
|
|
|
/**
|
|
|
|
* Returns the rendered local tasks at the second level.
|
|
|
|
*/
|
2007-01-24 14:48:36 +00:00
|
|
|
function menu_secondary_local_tasks() {
|
2009-08-22 19:58:28 +00:00
|
|
|
$links = menu_local_tasks(1);
|
|
|
|
// Do not display single tabs.
|
2014-03-31 17:37:55 +00:00
|
|
|
return count(Element::getVisibleChildren($links['tabs'])) > 1 ? $links['tabs'] : '';
|
2009-08-22 19:58:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the rendered local actions at the current level.
|
|
|
|
*/
|
2013-05-28 01:20:55 +00:00
|
|
|
function menu_get_local_actions() {
|
2009-08-22 19:58:28 +00:00
|
|
|
$links = menu_local_tasks();
|
2014-06-24 12:39:26 +00:00
|
|
|
$route_name = Drupal::routeMatch()->getRouteName();
|
2013-09-16 03:58:06 +00:00
|
|
|
$manager = \Drupal::service('plugin.manager.menu.local_action');
|
2013-10-13 12:40:37 +00:00
|
|
|
return $manager->getActionsForRoute($route_name) + $links['actions'];
|
2004-09-16 07:17:56 +00:00
|
|
|
}
|
|
|
|
|
2007-05-27 20:31:13 +00:00
|
|
|
/**
|
2012-08-31 15:56:36 +00:00
|
|
|
* Returns the router path, or the path for a default local task's parent.
|
2007-06-30 19:46:58 +00:00
|
|
|
*/
|
|
|
|
function menu_tab_root_path() {
|
2009-08-22 19:58:28 +00:00
|
|
|
$links = menu_local_tasks();
|
|
|
|
return $links['root_path'];
|
2007-06-30 19:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-20 04:03:51 +00:00
|
|
|
* Returns a renderable element for the primary and secondary tabs.
|
|
|
|
*/
|
|
|
|
function menu_local_tabs() {
|
2013-02-18 17:03:05 +00:00
|
|
|
$build = array(
|
2010-11-20 04:03:51 +00:00
|
|
|
'#theme' => 'menu_local_tasks',
|
|
|
|
'#primary' => menu_primary_local_tasks(),
|
|
|
|
'#secondary' => menu_secondary_local_tasks(),
|
|
|
|
);
|
2013-02-18 17:03:05 +00:00
|
|
|
return !empty($build['#primary']) || !empty($build['#secondary']) ? $build : array();
|
2010-11-20 04:03:51 +00:00
|
|
|
}
|
|
|
|
|
2007-05-16 13:45:17 +00:00
|
|
|
/**
|
2012-08-31 15:56:36 +00:00
|
|
|
* Clears all cached menu data.
|
|
|
|
*
|
|
|
|
* This should be called any time broad changes
|
2007-07-04 15:49:44 +00:00
|
|
|
* might have been made to the router items or menu links.
|
2007-05-16 13:45:17 +00:00
|
|
|
*/
|
|
|
|
function menu_cache_clear_all() {
|
2014-07-30 12:04:04 +00:00
|
|
|
\Drupal::cache('menu')->invalidateAll();
|
2007-05-16 13:45:17 +00:00
|
|
|
}
|
|
|
|
|
2008-01-28 16:05:17 +00:00
|
|
|
/**
|
|
|
|
* @} End of "defgroup menu".
|
|
|
|
*/
|