You are here

public function View::getInfo in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Element/View.php \Drupal\views\Element\View::getInfo()
  2. 9 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 19

Class

View
Provides a render element to display a view.

Namespace

Drupal\views\Element

Code

public function getInfo() {
  $class = static::class;
  return [
    '#pre_render' => [
      [
        $class,
        'preRenderViewElement',
      ],
    ],
    '#name' => NULL,
    '#display_id' => 'default',
    '#arguments' => [],
    '#embed' => TRUE,
    '#cache' => [],
  ];
}