You are here

public function ThemeTestController::testInlineTemplate in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/theme_test/src/ThemeTestController.php \Drupal\theme_test\ThemeTestController::testInlineTemplate()

Tests the inline template functionality.

Return value

array A render array containing an inline template.

1 string reference to 'ThemeTestController::testInlineTemplate'
theme_test.routing.yml in core/modules/system/tests/modules/theme_test/theme_test.routing.yml
core/modules/system/tests/modules/theme_test/theme_test.routing.yml

File

core/modules/system/tests/modules/theme_test/src/ThemeTestController.php, line 45

Class

ThemeTestController
Controller routines for theme test routes.

Namespace

Drupal\theme_test

Code

public function testInlineTemplate() {
  $element = [];
  $element['test'] = [
    '#type' => 'inline_template',
    '#template' => 'test-with-context {{ llama }}',
    '#context' => [
      'llama' => 'muuh',
    ],
  ];
  return $element;
}