Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Container.php

function Container::getInfo

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 = static::class;
    return [
        '#optional' => FALSE,
        '#process' => [
            [
                $class,
                'processGroup',
            ],
            [
                $class,
                'processContainer',
            ],
        ],
        '#pre_render' => [
            [
                $class,
                'preRenderGroup',
            ],
            [
                $class,
                'preRenderContainer',
            ],
        ],
        '#theme_wrappers' => [
            'container',
        ],
    ];
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal