function SystemCompactLink::getInfo

Same name in other branches
  1. 9 core/lib/Drupal/Core/Render/Element/SystemCompactLink.php \Drupal\Core\Render\Element\SystemCompactLink::getInfo()
  2. 8.9.x core/lib/Drupal/Core/Render/Element/SystemCompactLink.php \Drupal\Core\Render\Element\SystemCompactLink::getInfo()
  3. 10 core/lib/Drupal/Core/Render/Element/SystemCompactLink.php \Drupal\Core\Render\Element\SystemCompactLink::getInfo()

Overrides Link::getInfo

File

core/lib/Drupal/Core/Render/Element/SystemCompactLink.php, line 26

Class

SystemCompactLink
Provides a link to show or hide help text on administration pages.

Namespace

Drupal\Core\Render\Element

Code

public function getInfo() {
    $class = static::class;
    return [
        '#pre_render' => [
            [
                $class,
                'preRenderCompactLink',
            ],
            [
                $class,
                'preRenderLink',
            ],
        ],
        '#theme_wrappers' => [
            'container' => [
                '#attributes' => [
                    'class' => [
                        'compact-link',
                    ],
                ],
            ],
        ],
    ];
}

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