Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 5 |
Page | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
getInfo | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Render\Element\Page. | |
*/ | |
namespace Drupal\Core\Render\Element; | |
/** | |
* Provides a render element for the content of an HTML page. | |
* | |
* This represents the "main part" of the HTML page's body; see html.html.twig. | |
* | |
* @RenderElement("page") | |
*/ | |
class Page extends RenderElement { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function getInfo() { | |
return array( | |
'#theme' => 'page', | |
'#title' => '', | |
); | |
} | |
} |