public function Router::getLocalTasks in Drupal 7 to 8/9 Module Upgrader 8
Gets all local tasks.
Return value
static
File
- src/
Routing/ Drupal7/ Router.php, line 55
Class
- Router
- Represents a collection of Drupal 7 routes, i.e., the result of hook_menu().
Namespace
Drupal\drupalmoduleupgrader\Routing\Drupal7Code
public function getLocalTasks() {
return $this
->filter(function (RouteWrapper $route) {
return $route
->isLocalTask();
});
}