public LocalTaskManagerInterface::getLocalTasksForRoute($route_name)
Find all local tasks that appear on a named route.
Parameters
string $route_name: The route for which to find local tasks.
Return value
array Returns an array of task levels. Each task level contains instances of local tasks (LocalTaskInterface) which appear on the tab route. The array keys are the depths and the values are arrays of plugin instances.
File
- core/lib/Drupal/Core/Menu/LocalTaskManagerInterface.php, line 40
Class
- LocalTaskManagerInterface
- Manages discovery and instantiation of menu local task plugins.
Namespace
Drupal\Core\Menu
Code
public function getLocalTasksForRoute($route_name);
Please login to continue.