You are here

public function TestLocalAction5::getTitle in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction5.php \Drupal\menu_test\Plugin\Menu\LocalAction\TestLocalAction5::getTitle()

Returns the localized title to be shown for this action.

Subclasses may add optional arguments like NodeInterface $node = NULL that will be supplied by the ControllerResolver.

Return value

string The title to be shown for this action.

Overrides LocalActionDefault::getTitle

See also

\Drupal\Core\Menu\LocalActionManager::getTitle()

File

core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction5.php, line 20
Contains \Drupal\menu_test\Plugin\Menu\LocalAction\TestLocalAction5.

Class

TestLocalAction5
Defines a local action plugin with a dynamic title from user input.

Namespace

Drupal\menu_test\Plugin\Menu\LocalAction

Code

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