function tour_toolbar in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/tour/tour.module \tour_toolbar()
Implements hook_toolbar().
File
- core/
modules/ tour/ tour.module, line 33 - Main functions of the module.
Code
function tour_toolbar() {
$items = [];
$items['tour'] = [
'#cache' => [
'contexts' => [
'user.permissions',
],
],
];
if (!\Drupal::currentUser()
->hasPermission('access tour')) {
return $items;
}
$items['tour'] += array(
'#type' => 'toolbar_item',
'tab' => array(
'#type' => 'html_tag',
'#tag' => 'button',
'#value' => t('Tour'),
'#attributes' => array(
'class' => array(
'toolbar-icon',
'toolbar-icon-help',
),
'role' => 'button',
'aria-pressed' => 'false',
),
),
'#wrapper_attributes' => array(
'class' => array(
'tour-toolbar-tab',
'hidden',
),
'id' => 'toolbar-tab-tour',
),
'#attached' => array(
'library' => array(
'tour/tour',
),
),
);
return $items;
}