You are here

LocalActionTest.php in Drupal 10

File

core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalActionTest.php
View source
<?php

namespace Drupal\menu_test\Plugin\Derivative;

use Drupal\Component\Plugin\Derivative\DeriverBase;

/**
 * Test derivative to check local action title escaping.
 *
 * @see \Drupal\system\Tests\Menu\LocalActionTest
 */
class LocalActionTest extends DeriverBase {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives['example'] = $base_plugin_definition + [
      'title' => "<script>alert('Welcome to the derived jungle!')</script>",
    ];
    return $this->derivatives;
  }

}

Classes

Namesort descending Description
LocalActionTest Test derivative to check local action title escaping.