You are here

public function Router::getDefaultLocalTasks in Drupal 7 to 8/9 Module Upgrader 8

Gets all default local tasks.

Return value

static

File

src/Routing/Drupal7/Router.php, line 66

Class

Router
Represents a collection of Drupal 7 routes, i.e., the result of hook_menu().

Namespace

Drupal\drupalmoduleupgrader\Routing\Drupal7

Code

public function getDefaultLocalTasks() {
  return $this
    ->filter(function (RouteWrapper $route) {
    return $route
      ->isDefaultLocalTask();
  });
}