You are here

public function MenuLinkBase::getOptions in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Menu/MenuLinkBase.php \Drupal\Core\Menu\MenuLinkBase::getOptions()

Returns the options for this link.

Return value

array An associative array of options.

Overrides MenuLinkInterface::getOptions

1 call to MenuLinkBase::getOptions()
MenuLinkBase::getUrlObject in core/lib/Drupal/Core/Menu/MenuLinkBase.php
Returns a URL object containing either the external path or route.

File

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

Class

MenuLinkBase
Defines a base menu link class.

Namespace

Drupal\Core\Menu

Code

public function getOptions() {
  return $this->pluginDefinition['options'] ?: [];
}