You are here

public function Toolbar::getInfo in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 24
Contains \Drupal\toolbar\Element\Toolbar.

Class

Toolbar
Provides a render element for the default Drupal toolbar.

Namespace

Drupal\toolbar\Element

Code

public function getInfo() {
  $class = get_class($this);
  return array(
    '#pre_render' => array(
      array(
        $class,
        'preRenderToolbar',
      ),
    ),
    '#theme' => 'toolbar',
    '#attached' => array(
      'library' => array(
        'toolbar/toolbar',
      ),
    ),
    // Metadata for the toolbar wrapping element.
    '#attributes' => array(
      // The id cannot be simply "toolbar" or it will clash with the
      // simpletest tests listing which produces a checkbox with attribute
      // id="toolbar".
      'id' => 'toolbar-administration',
      'role' => 'group',
      'aria-label' => $this
        ->t('Site administration toolbar'),
    ),
    // Metadata for the administration bar.
    '#bar' => array(
      '#heading' => $this
        ->t('Toolbar items'),
      '#attributes' => array(
        'id' => 'toolbar-bar',
        'role' => 'navigation',
        'aria-label' => $this
          ->t('Toolbar items'),
      ),
    ),
  );
}