W3cubDocs

/Drupal 8

function menu_local_tasks

menu_local_tasks($level = 0)

Collects the local tasks (tabs) for the current route.

Parameters

int $level: The level of tasks you ask for. Primary tasks are 0, secondary are 1.

Return value

array An array containing

  • tabs: Local tasks for the requested level.
  • route_name: The route name for the current page used to collect the local tasks.

Deprecated

in Drupal 8.0.0, will be removed before Drupal 9.0.0.

See also

hook_menu_local_tasks_alter()

Related topics

Menu system
Define the navigation menus, local actions and tasks, and contextual links.

File

core/includes/menu.inc, line 111
API for the Drupal menu system.

Code

function menu_local_tasks($level = 0) {
  /** @var \Drupal\Core\Menu\LocalTaskManagerInterface $manager */
  $manager = \Drupal::service('plugin.manager.menu.local_task');
  return $manager->getLocalTasks(\Drupal::routeMatch()->getRouteName(), $level);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!menu.inc/function/menu_local_tasks/8.1.x