You are here

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

Gets all normal links.

Return value

static

File

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

Class

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

Namespace

Drupal\drupalmoduleupgrader\Routing\Drupal7

Code

public function getLinks() {
  return $this
    ->filter(function (RouteWrapper $route) {
    return $route
      ->isLink();
  });
}