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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | protected $defaults = array ( // (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' => array (), // 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' => '' , ); |
Please login to continue.