function template_preprocess_toolbar_tab_wrapper

Implements template_preprocess_HOOK().

File

drupal/core/modules/toolbar/toolbar.module, line 309
Administration toolbar for quick access to top level administration items.

Code

function template_preprocess_toolbar_tab_wrapper(&$variables) {
  if (!isset($variables['element']['#wrapper_attributes'])) {
    $variables['element']['#wrapper_attributes'] = array();
  }
  $variables['element']['#wrapper_attributes']['class'][] = 'tab';
}