You are here

public function Toolbar::getInfo in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/toolbar/src/Element/Toolbar.php \Drupal\toolbar\Element\Toolbar::getInfo()
  2. 9 core/modules/toolbar/src/Element/Toolbar.php \Drupal\toolbar\Element\Toolbar::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

File

core/modules/toolbar/src/Element/Toolbar.php, line 19

Class

Toolbar
Provides a render element for the default Drupal toolbar.

Namespace

Drupal\toolbar\Element

Code

public function getInfo() {
  $class = static::class;
  return [
    '#pre_render' => [
      [
        $class,
        'preRenderToolbar',
      ],
    ],
    '#theme' => 'toolbar',
    '#attached' => [
      'library' => [
        'toolbar/toolbar',
      ],
    ],
    // Metadata for the toolbar wrapping element.
    '#attributes' => [
      'id' => 'toolbar-administration',
      'role' => 'group',
      'aria-label' => $this
        ->t('Site administration toolbar'),
    ],
    // Metadata for the administration bar.
    '#bar' => [
      '#heading' => $this
        ->t('Toolbar items'),
      '#attributes' => [
        'id' => 'toolbar-bar',
        'role' => 'navigation',
        'aria-label' => $this
          ->t('Toolbar items'),
      ],
    ],
  ];
}