Html.php
Same filename in this branch
Namespace
Drupal\Core\Render\ElementFile
-
core/
lib/ Drupal/ Core/ Render/ Element/ Html.php
View source
<?php
namespace Drupal\Core\Render\Element;
use Drupal\Core\Render\Attribute\RenderElement;
/**
* Provides a render element for an entire HTML page: <html> plus its children.
*/
class Html extends RenderElementBase {
/**
* {@inheritdoc}
*/
public function getInfo() {
return [
'#theme' => 'html',
];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
Html | Provides a render element for an entire HTML page: <html> plus its children. |