function Container::getInfo

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Render/Element/Container.php \Drupal\Core\Render\Element\Container::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 = static::class;
  return [
    '#optional' => FALSE,
    '#process' => [
      [
        $class,
        'processGroup',
      ],
      [
        $class,
        'processContainer',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderGroup',
      ],
      [
        $class,
        'preRenderContainer',
      ],
    ],
    '#theme_wrappers' => [
      'container',
    ],
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.