public function TestLocalActionWithConfig::getTitle in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalActionWithConfig.php \Drupal\menu_test\Plugin\Menu\LocalAction\TestLocalActionWithConfig::getTitle()
- 9 core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalActionWithConfig.php \Drupal\menu_test\Plugin\Menu\LocalAction\TestLocalActionWithConfig::getTitle()
Returns the localized title to be shown for this action.
Subclasses may add optional arguments like NodeInterface $node = NULL that will be supplied by the ControllerResolver.
Return value
string The title to be shown for this action.
Overrides LocalActionDefault::getTitle
See also
\Drupal\Core\Menu\LocalActionManager::getTitle()
File
- core/
modules/ system/ tests/ modules/ menu_test/ src/ Plugin/ Menu/ LocalAction/ TestLocalActionWithConfig.php, line 24
Class
- TestLocalActionWithConfig
- Defines a test local action plugin class.
Namespace
Drupal\menu_test\Plugin\Menu\LocalActionCode
public function getTitle(Request $request = NULL) {
return $this->config
->get('title');
}