function tab_toolbar_preprocess_html in Tabs in toolbar 7
Implements hook_preprocess_HOOK() for html.tpl.php
File
- ./
tab_toolbar.module, line 6
Code
function tab_toolbar_preprocess_html(&$variables) {
global $theme;
$tabs = menu_local_tabs();
if (!empty($tabs['#primary'])) {
drupal_add_css(drupal_get_path('module', 'tab_toolbar') . '/tab_toolbar.css');
$variables['classes_array'][] = 'tab-toolbar';
}
if (!empty($tabs['#secondary'])) {
$variables['classes_array'][] = 'tab-toolbar-secondary';
}
}