function toolbar_preprocess_html

Same name in other branches
  1. 9 core/modules/toolbar/toolbar.module \toolbar_preprocess_html()
  2. 8.9.x core/modules/toolbar/toolbar.module \toolbar_preprocess_html()
  3. 10 core/modules/toolbar/toolbar.module \toolbar_preprocess_html()
  4. 11.x core/modules/toolbar/toolbar.module \toolbar_preprocess_html()

Implements hook_preprocess_html().

Add some page classes, so global page theming can adjust to the toolbar.

File

modules/toolbar/toolbar.module, line 148

Code

function toolbar_preprocess_html(&$vars) {
    if (isset($vars['page']['page_top']['toolbar']) && user_access('access toolbar')) {
        $vars['classes_array'][] = 'toolbar';
        if (!_toolbar_is_collapsed()) {
            $vars['classes_array'][] = 'toolbar-drawer';
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.