You are here

class TestContextualLink in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/tests/modules/menu_test/src/Plugin/Menu/ContextualLink/TestContextualLink.php \Drupal\menu_test\Plugin\Menu\ContextualLink\TestContextualLink

Defines a contextual link plugin with a dynamic title from user input.

Hierarchy

Expanded class hierarchy of TestContextualLink

1 string reference to 'TestContextualLink'
menu_test.links.contextual.yml in core/modules/system/tests/modules/menu_test/menu_test.links.contextual.yml
core/modules/system/tests/modules/menu_test/menu_test.links.contextual.yml

File

core/modules/system/tests/modules/menu_test/src/Plugin/Menu/ContextualLink/TestContextualLink.php, line 15
Contains \Drupal\menu_test\Plugin\Menu\ContextualLink\TestContextualLink.

Namespace

Drupal\menu_test\Plugin\Menu\ContextualLink
View source
class TestContextualLink extends ContextualLinkDefault {

  /**
   * {@inheritdoc}
   */
  public function getTitle() {
    return "<script>alert('Welcome to the jungle!')</script>";
  }

}

Members

Namesort descending Modifiers Type Description 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::getWeight public function Returns the weight of the contextual link. Overrides ContextualLinkInterface::getWeight
PluginBase::$configuration protected property Configuration information passed into the plugin. 2
PluginBase::$pluginDefinition protected property The plugin implementation definition.
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
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::__construct public function Constructs a Drupal\Component\Plugin\PluginBase object. 69
TestContextualLink::getTitle public function Returns the localized title to be shown for this contextual link. Overrides ContextualLinkDefault::getTitle