You are here

function breadcrumb_manager_preprocess_html in Breadcrumb Manager 7

Implements hook_preprocess_html().

File

./breadcrumb_manager.module, line 405
Code for Breadcrumb Manager module.

Code

function breadcrumb_manager_preprocess_html(&$vars) {
  if ($title = breadcrumb_manager_is_title_required()) {
    $vars['head_title_array']['title'] = $title;
    $vars['head_title'] = implode(' | ', $vars['head_title_array']);
  }
}