You are here

function show_title_preprocess_page in Show title 8

Same name and namespace in other branches
  1. 2.0.x show_title.module \show_title_preprocess_page()

Implements hook_preprocess_HOOK().

File

./show_title.module, line 183
Module Show Title.

Code

function show_title_preprocess_page(&$variables) {
  $variables['show_title'] = FALSE;
  if (!show_title_block()) {
    $variables['show_title'] = TRUE;
  }
}