class ContextualLinkDefault
Provides a common base implementation of a contextual link.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface- class \Drupal\Core\Menu\ContextualLinkDefault implements \Drupal\Core\Menu\ContextualLinkInterface extends \Drupal\Component\Plugin\PluginBase
 
Expanded class hierarchy of ContextualLinkDefault
4 files declare their use of ContextualLinkDefault
- ConfigTranslationContextualLink.php in core/modules/ config_translation/ src/ Plugin/ Menu/ ContextualLink/ ConfigTranslationContextualLink.php 
- ContextualLinkDefaultTest.php in core/tests/ Drupal/ Tests/ Core/ Menu/ ContextualLinkDefaultTest.php 
- ContextualLinkManagerTest.php in core/tests/ Drupal/ Tests/ Core/ Menu/ ContextualLinkManagerTest.php 
- TestContextualLink.php in core/modules/ system/ tests/ modules/ menu_test/ src/ Plugin/ Menu/ ContextualLink/ TestContextualLink.php 
File
- 
              core/lib/ Drupal/ Core/ Menu/ ContextualLinkDefault.php, line 11 
Namespace
Drupal\Core\MenuView source
class ContextualLinkDefault extends PluginBase implements ContextualLinkInterface {
  
  /**
   * {@inheritdoc}
   */
  public function getTitle(Request $request = NULL) {
    // The title from YAML file discovery may be a TranslatableMarkup object.
    return (string) $this->pluginDefinition['title'];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getRouteName() {
    return $this->pluginDefinition['route_name'];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getGroup() {
    return $this->pluginDefinition['group'];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getOptions() {
    return $this->pluginDefinition['options'];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getWeight() {
    return $this->pluginDefinition['weight'];
  }
}Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides | 
|---|---|---|---|---|---|
| ContextualLinkDefault::getGroup | public | function | Returns the group this contextual link should be rendered in. | Overrides ContextualLinkInterface::getGroup | |
| ContextualLinkDefault::getOptions | public | function | Returns the link options passed to the link generator. | Overrides ContextualLinkInterface::getOptions | |
| ContextualLinkDefault::getRouteName | public | function | Returns the route name of the contextual link. | Overrides ContextualLinkInterface::getRouteName | |
| ContextualLinkDefault::getTitle | public | function | Returns the localized title to be shown for this contextual link. | Overrides ContextualLinkInterface::getTitle | 2 | 
| ContextualLinkDefault::getWeight | public | function | Returns the weight of the contextual link. | Overrides ContextualLinkInterface::getWeight | |
| PluginBase::$configuration | protected | property | Configuration information passed into the plugin. | 1 | |
| PluginBase::$pluginDefinition | protected | property | The plugin implementation definition. | 1 | |
| PluginBase::$pluginId | protected | property | The plugin_id. | ||
| PluginBase::DERIVATIVE_SEPARATOR | constant | A string which is used to separate base plugin IDs from the derivative ID. | |||
| PluginBase::getBaseId | public | function | Gets the base_plugin_id of the plugin instance. | Overrides DerivativeInspectionInterface::getBaseId | |
| PluginBase::getDerivativeId | public | function | Gets the derivative_id of the plugin instance. | Overrides DerivativeInspectionInterface::getDerivativeId | |
| PluginBase::getPluginDefinition | public | function | Gets the definition of the plugin implementation. | Overrides PluginInspectionInterface::getPluginDefinition | 3 | 
| PluginBase::getPluginId | public | function | Gets the plugin_id of the plugin instance. | Overrides PluginInspectionInterface::getPluginId | |
| PluginBase::isConfigurable | public | function | Determines if the plugin is configurable. | ||
| PluginBase::__construct | public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 78 | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
