Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / tests / modules / menu_test / src / Plugin / Menu / LocalAction / TestLocalAction5.php
1 <?php
2
3 namespace Drupal\menu_test\Plugin\Menu\LocalAction;
4
5 use Drupal\Core\Menu\LocalActionDefault;
6 use Symfony\Component\HttpFoundation\Request;
7
8 /**
9  * Defines a local action plugin with a dynamic title from user input.
10  */
11 class TestLocalAction5 extends LocalActionDefault {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function getTitle(Request $request = NULL) {
17     return "<script>alert('Welcome to the jungle!')</script>";
18   }
19
20 }