You are here

public function Container::getInfo in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Render/Element/Container.php \Drupal\Core\Render\Element\Container::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

1 method overrides Container::getInfo()
Actions::getInfo in core/lib/Drupal/Core/Render/Element/Actions.php
Returns the element properties for this element.

File

core/lib/Drupal/Core/Render/Element/Container.php, line 51

Class

Container
Provides a render element that wraps child elements in a container.

Namespace

Drupal\Core\Render\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#optional' => FALSE,
    '#process' => [
      [
        $class,
        'processGroup',
      ],
      [
        $class,
        'processContainer',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderGroup',
      ],
      [
        $class,
        'preRenderContainer',
      ],
    ],
    '#theme_wrappers' => [
      'container',
    ],
  ];
}