Provides some default values for all local action plugins.
Type: array
Overrides DefaultPluginManager::$defaults
File
- core/lib/Drupal/Core/Menu/LocalActionManager.php, line 31
Class
- LocalActionManager
- Provides the default local action manager using YML as primary definition.
Namespace
Drupal\Core\Menu
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | protected $defaults = array ( // The plugin id. Set by the plugin system based on the top-level YAML key. 'id' => NULL, // The static title for the local action. 'title' => '' , // The weight of the local action. 'weight' => NULL, // (Required) the route name used to generate a link. 'route_name' => NULL, // Default route parameters for generating links. 'route_parameters' => array (), // Associative array of link options. 'options' => array (), // The route names where this local action appears. 'appears_on' => array (), // Default class for local action implementations. 'class' => 'Drupal\Core\Menu\LocalActionDefault' , ); |
Please login to continue.