TestLocalAction4.php

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

Namespace

Drupal\menu_test\Plugin\Menu\LocalAction

File

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

View source
<?php

namespace Drupal\menu_test\Plugin\Menu\LocalAction;

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

/**
 * Defines a local action plugin with a dynamic title.
 */
class TestLocalAction4 extends LocalActionDefault {
    use StringTranslationTrait;
    
    /**
     * {@inheritdoc}
     */
    public function getTitle(Request $request = NULL) {
        return $this->t('My @arg action', [
            '@arg' => 'dynamic-title',
        ]);
    }

}

Classes

Title Deprecated Summary
TestLocalAction4 Defines a local action plugin with a dynamic title.

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