function UserTrackerTab::getRouteParameters

Same name and namespace in other branches
  1. 9 core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php \Drupal\tracker\Plugin\Menu\UserTrackerTab::getRouteParameters()
  2. 8.9.x core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php \Drupal\tracker\Plugin\Menu\UserTrackerTab::getRouteParameters()
  3. 10 core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php \Drupal\tracker\Plugin\Menu\UserTrackerTab::getRouteParameters()

Overrides LocalTaskDefault::getRouteParameters

File

core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php, line 55

Class

UserTrackerTab
Provides route parameters needed to link to the current user tracker tab.

Namespace

Drupal\tracker\Plugin\Menu

Code

public function getRouteParameters(RouteMatchInterface $route_match) {
    return [
        'user' => $this->currentUser
            ->id(),
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.