public function MenuLinkAdd::getOptions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/menu_ui/src/Plugin/Menu/LocalAction/MenuLinkAdd.php \Drupal\menu_ui\Plugin\Menu\LocalAction\MenuLinkAdd::getOptions()
Returns options for rendering a link for the local action.
Parameters
\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.
Return value
array An associative array of options.
Overrides LocalActionDefault::getOptions
File
- core/
modules/ menu_ui/ src/ Plugin/ Menu/ LocalAction/ MenuLinkAdd.php, line 64 - Contains \Drupal\menu_ui\Plugin\Menu\LocalAction\MenuLinkAdd.
Class
- MenuLinkAdd
- Modifies the 'Add link' local action to add a destination.
Namespace
Drupal\menu_ui\Plugin\Menu\LocalActionCode
public function getOptions(RouteMatchInterface $route_match) {
$options = parent::getOptions($route_match);
// Append the current path as destination to the query string.
$options['query']['destination'] = $this->redirectDestination
->get();
return $options;
}