class TwigExtensionTestController in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/twig_extension_test/src/TwigExtensionTestController.php \Drupal\twig_extension_test\TwigExtensionTestController
- 10 core/modules/system/tests/modules/twig_extension_test/src/TwigExtensionTestController.php \Drupal\twig_extension_test\TwigExtensionTestController
Controller routines for Twig extension test routes.
Hierarchy
- class \Drupal\twig_extension_test\TwigExtensionTestController uses StringTranslationTrait
Expanded class hierarchy of TwigExtensionTestController
File
- core/
modules/ system/ tests/ modules/ twig_extension_test/ src/ TwigExtensionTestController.php, line 10
Namespace
Drupal\twig_extension_testView source
class TwigExtensionTestController {
use StringTranslationTrait;
/**
* Menu callback for testing Twig filters in a Twig template.
*/
public function testFilterRender() {
return [
'#theme' => 'twig_extension_test_filter',
'#message' => 'Every animal is not a mineral.',
'#safe_join_items' => [
'<em>will be escaped</em>',
$this
->t('<em>will be markup</em>'),
[
'#markup' => '<strong>will be rendered</strong>',
],
],
];
}
/**
* Menu callback for testing Twig functions in a Twig template.
*/
public function testFunctionRender() {
return [
'#theme' => 'twig_extension_test_function',
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TwigExtensionTestController:: |
public | function | Menu callback for testing Twig filters in a Twig template. | |
TwigExtensionTestController:: |
public | function | Menu callback for testing Twig functions in a Twig template. |