function InlineTemplate::getInfo

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Render/Element/InlineTemplate.php \Drupal\Core\Render\Element\InlineTemplate::getInfo()
  2. 8.9.x core/lib/Drupal/Core/Render/Element/InlineTemplate.php \Drupal\Core\Render\Element\InlineTemplate::getInfo()
  3. 10 core/lib/Drupal/Core/Render/Element/InlineTemplate.php \Drupal\Core\Render\Element\InlineTemplate::getInfo()

Overrides ElementInterface::getInfo

File

core/lib/Drupal/Core/Render/Element/InlineTemplate.php, line 32

Class

InlineTemplate
Provides a render element where the user supplies an in-line Twig template.

Namespace

Drupal\Core\Render\Element

Code

public function getInfo() {
    $class = static::class;
    return [
        '#pre_render' => [
            [
                $class,
                'preRenderInlineTemplate',
            ],
        ],
        '#template' => '',
        '#context' => [],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.