You are here

function ctools_garland_preprocess_page in Chaos Tool Suite (ctools) 6

Override or insert PHPTemplate variables into the templates.

This needs to be in the .module file to ensure availability; we can't change the paths or it won't be able to find templates.

1 string reference to 'ctools_garland_preprocess_page'
ctools_theme_registry_alter in includes/utility.inc
Implementation of hook_theme_registry_alter()

File

./ctools.module, line 538
CTools primary module file.

Code

function ctools_garland_preprocess_page(&$vars) {
  $vars['tabs2'] = ctools_menu_secondary_local_tasks();

  // Hook into color.module
  if (module_exists('color')) {
    _color_page_alter($vars);
  }
}