Skip to content

Instantly share code, notes, and snippets.

@mhazy
Created January 7, 2015 17:42
Show Gist options
  • Save mhazy/d1feadace8dcb9a5e3b9 to your computer and use it in GitHub Desktop.
Save mhazy/d1feadace8dcb9a5e3b9 to your computer and use it in GitHub Desktop.
function toolbar_test_toolbar() {
$items = [];
$items['scribe_posts'] = array(
'#type' => 'toolbar_item',
'tab' => array(
'#type' => 'link',
'#title' => t('Posts'),
'#url' => Url::fromUri('http://www.google.com'),
'#attributes' => array(
'class' => array('toolbar-icon', 'toolbar-icon-system-admin-content'),
),
),
);
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment