function MenuLinkBase::getEditRoute

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Menu/MenuLinkBase.php \Drupal\Core\Menu\MenuLinkBase::getEditRoute()
  2. 8.9.x core/lib/Drupal/Core/Menu/MenuLinkBase.php \Drupal\Core\Menu\MenuLinkBase::getEditRoute()
  3. 11.x core/lib/Drupal/Core/Menu/MenuLinkBase.php \Drupal\Core\Menu\MenuLinkBase::getEditRoute()

Returns route information for a custom edit form for the menu link.

Plugins should return a value here if they have a special edit form, or if they need to define additional local tasks, local actions, etc. that are visible from the edit form.

Return value

\Drupal\Core\Url|null A Url object, or NULL if there is no route because there is no custom edit route for this instance.

Overrides MenuLinkInterface::getEditRoute

1 call to MenuLinkBase::getEditRoute()
MenuLinkBase::getOperations in core/lib/Drupal/Core/Menu/MenuLinkBase.php
Provides an array of information to build a list of operation links.
1 method overrides MenuLinkBase::getEditRoute()
MenuLinkContent::getEditRoute in core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php
Returns route information for a custom edit form for the menu link.

File

core/lib/Drupal/Core/Menu/MenuLinkBase.php, line 152

Class

MenuLinkBase
Defines a base menu link class.

Namespace

Drupal\Core\Menu

Code

public function getEditRoute() {
    return Url::fromRoute('menu_ui.link_edit', [
        'menu_link_plugin' => $this->getPluginId(),
    ]);
}

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