TestLocalAction5.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction5.php
  2. 10 core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction5.php
  3. 11.x core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction5.php

Namespace

Drupal\menu_test\Plugin\Menu\LocalAction

File

core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction5.php

View source
<?php

namespace Drupal\menu_test\Plugin\Menu\LocalAction;

use Drupal\Core\Menu\LocalActionDefault;
use Symfony\Component\HttpFoundation\Request;

/**
 * Defines a local action plugin with a dynamic title from user input.
 */
class TestLocalAction5 extends LocalActionDefault {
    
    /**
     * {@inheritdoc}
     */
    public function getTitle(Request $request = NULL) {
        return "<script>alert('Welcome to the jungle!')</script>";
    }

}

Classes

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.