271922936e197ceddf66d26881e6b1fb58995222
[yaffs-website] / web / core / modules / system / tests / modules / menu_test / src / Plugin / Menu / ContextualLink / TestContextualLink.php
1 <?php
2
3 namespace Drupal\menu_test\Plugin\Menu\ContextualLink;
4
5 use Drupal\Core\Menu\ContextualLinkDefault;
6
7 /**
8  * Defines a contextual link plugin with a dynamic title from user input.
9  */
10 class TestContextualLink extends ContextualLinkDefault {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function getTitle() {
16     return "<script>alert('Welcome to the jungle!')</script>";
17   }
18
19 }