function 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_testCode
public function testInlineTemplate() {
  $element = [];
  $element['test'] = [
    '#type' => 'inline_template',
    '#template' => 'test-with-context {{ llama }}',
    '#context' => [
      'llama' => 'muuh',
    ],
  ];
  return $element;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
