function 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\ElementCode
public function getInfo() {
$class = static::class;
return [
'#pre_render' => [
[
$class,
'preRenderCompactLink',
],
[
$class,
'preRenderLink',
],
],
'#theme_wrappers' => [
'container' => [
'#attributes' => [
'class' => [
'compact-link',
],
],
],
],
];
}