ContextualLinkManager::$defaults

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Menu/ContextualLinkManager.php \Drupal\Core\Menu\ContextualLinkManager::defaults
  2. 8.9.x core/lib/Drupal/Core/Menu/ContextualLinkManager.php \Drupal\Core\Menu\ContextualLinkManager::defaults
  3. 10 core/lib/Drupal/Core/Menu/ContextualLinkManager.php \Drupal\Core\Menu\ContextualLinkManager::defaults

Provides default values for a contextual link definition.

Type: array

Overrides DefaultPluginManager::$defaults

File

core/lib/Drupal/Core/Menu/ContextualLinkManager.php, line 30

Class

ContextualLinkManager
Defines a contextual link plugin manager to deal with contextual links.

Namespace

Drupal\Core\Menu

Code

protected $defaults = [
    // (required) The name of the route to link to.
'route_name' => '',
    // (required) The contextual links group.
'group' => '',
    // The static title text for the link.
'title' => '',
    // The default link options.
'options' => [],
    // The weight of the link.
'weight' => NULL,
    // Default class for contextual link implementations.
'class' => '\\Drupal\\Core\\Menu\\ContextualLinkDefault',
    // The plugin id. Set by the plugin system based on the top-level YAML key.
'id' => '',
];

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