public function View::getInfo in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Element/View.php \Drupal\views\Element\View::getInfo()
Returns the element properties for this element.
Return value
array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.
Overrides ElementInterface::getInfo
File
- core/
modules/ views/ src/ Element/ View.php, line 23 - Contains \Drupal\views\Element\View.
Class
- View
- Provides a render element to display a view.
Namespace
Drupal\views\ElementCode
public function getInfo() {
$class = get_class($this);
return array(
'#pre_render' => array(
array(
$class,
'preRenderViewElement',
),
),
'#name' => NULL,
'#display_id' => 'default',
'#arguments' => array(),
'#embed' => TRUE,
'#cache' => [],
);
}