Page.php 400 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\Core\Render\Element;
  3. /**
  4. * Provides a render element for the content of an HTML page.
  5. *
  6. * This represents the "main part" of the HTML page's body; see html.html.twig.
  7. *
  8. * @RenderElement("page")
  9. */
  10. class Page extends RenderElement {
  11. /**
  12. * {@inheritdoc}
  13. */
  14. public function getInfo() {
  15. return [
  16. '#theme' => 'page',
  17. '#title' => '',
  18. ];
  19. }
  20. }