function phptemplate_preprocess_page in Drupal 6
Override or insert PHPTemplate variables into the templates.
File
- themes/
garland/ template.php, line 42
Code
function phptemplate_preprocess_page(&$vars) {
$vars['tabs2'] = menu_secondary_local_tasks();
// Hook into color.module
if (module_exists('color')) {
_color_page_alter($vars);
}
}