8257d32232fd57c2a2ab37a8b3f1fc8bff354f31
[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 use Symfony\Component\HttpFoundation\Request;
7
8 /**
9  * Defines a contextual link plugin with a dynamic title from user input.
10  */
11 class TestContextualLink extends ContextualLinkDefault {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function getTitle(Request $request = NULL) {
17     return "<script>alert('Welcome to the jungle!')</script>";
18   }
19
20 }