You are here

public function TwigThemeTestController::phpVariablesRender in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/tests/modules/twig_theme_test/src/TwigThemeTestController.php \Drupal\twig_theme_test\TwigThemeTestController::phpVariablesRender()

Menu callback for testing PHP variables in a Twig template.

1 string reference to 'TwigThemeTestController::phpVariablesRender'
twig_theme_test.routing.yml in core/modules/system/tests/modules/twig_theme_test/twig_theme_test.routing.yml
core/modules/system/tests/modules/twig_theme_test/twig_theme_test.routing.yml

File

core/modules/system/tests/modules/twig_theme_test/src/TwigThemeTestController.php, line 21
Contains \Drupal\twig_theme_test\TwigThemeTestController.

Class

TwigThemeTestController
Controller routines for Twig theme test routes.

Namespace

Drupal\twig_theme_test

Code

public function phpVariablesRender() {
  return [
    '#markup' => \Drupal::theme()
      ->render('twig_theme_test_php_variables', array()),
  ];
}