Skip to content
Snippets Groups Projects

Resolve #2973515 "D11"

Closes #2973515

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
139 139
140 140 // Load links matching this route.
141 141 $links = $this->menuLinkManager->loadLinksByRoute($route_name, $route_parameters, $menu_name);
142 // Select the first matching link.
143 if ($links) {
144 $found = reset($links);
142 // Select the first enabled matching link.
143 foreach ($links as $link) {
144 if ($link->isEnabled()) {
  • shalini jha added 205 commits

    added 205 commits

    Compare with previous version

  • Pierre Rudloff added 81 commits

    added 81 commits

    Compare with previous version

  • Please register or sign in to reply
    Loading