function _test_theme_twig_php_values
Same name in other branches
- 9 core/modules/system/tests/modules/twig_theme_test/twig_theme_test.module \_test_theme_twig_php_values()
- 8.9.x core/modules/system/tests/modules/twig_theme_test/twig_theme_test.module \_test_theme_twig_php_values()
- 10 core/modules/system/tests/modules/twig_theme_test/twig_theme_test.module \_test_theme_twig_php_values()
Helper function to test PHP variables in the Twig engine.
2 calls to _test_theme_twig_php_values()
- EngineTwigTest::testTwigVariableDataTypes in core/
modules/ system/ tests/ src/ Functional/ Theme/ EngineTwigTest.php - Tests that the Twig engine handles PHP data correctly.
- test_theme_preprocess_twig_theme_test_php_variables in core/
modules/ system/ tests/ themes/ test_theme/ test_theme.theme - Implements THEME_preprocess_twig_theme_test_php_variables().
File
-
core/
modules/ system/ tests/ modules/ twig_theme_test/ twig_theme_test.module, line 92
Code
function _test_theme_twig_php_values() {
// Prefix each variable with "twig_" so that Twig doesn't get confused
// between a variable and a primitive. Arrays are not tested since they should
// be a Drupal render array.
return [
'twig_null' => [
'value' => NULL,
'expected' => '',
],
'twig_bool_false' => [
'value' => FALSE,
'expected' => '',
],
'twig_bool_true' => [
'value' => TRUE,
'expected' => '1',
],
'twig_int' => [
'value' => 1,
'expected' => '1',
],
'twig_int_0' => [
'value' => 0,
'expected' => '0',
],
'twig_float' => [
'value' => 122.34343,
'expected' => '122.34343',
],
'twig_string' => [
'value' => 'Hello world!',
'expected' => 'Hello world!',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.