You are here

tab_toolbar.module in Tabs in toolbar 7

Same filename and directory in other branches
  1. 8 tab_toolbar.module

File

tab_toolbar.module
View source
<?php

/**
 * Implements hook_preprocess_HOOK() for html.tpl.php
 */
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';
  }
}

Functions