t('left sidebar'), 'right' => t('right sidebar'), 'navbar' => t('navigation bar'), 'content_top' => t('content top'), 'content_bottom' => t('content bottom'), 'header' => t('header'), 'footer' => t('footer'), 'closure_region' => t('closure'), ); } // */ /** * Override or insert PHPTemplate variables into the page templates. * * @param $vars * A sequential array of variables to pass to the theme template. */ /* -- Delete this line if you want to use this function function SUBTHEME_preprocess_page(&$vars) { $vars['sample_variable'] = t('Lorem ipsum.'); } // */ /** * Override or insert PHPTemplate variables into the node templates. * * @param $vars * A sequential array of variables to pass to the theme template. */ /* -- Delete this line if you want to use this function function SUBTHEME_preprocess_node(&$vars) { $vars['sample_variable'] = t('Lorem ipsum.'); } // */ /** * Override or insert PHPTemplate variables into the comment templates. * * @param $vars * A sequential array of variables to pass to the theme template. */ /* -- Delete this line if you want to use this function function SUBTHEME_preprocess_comment(&$vars) { $vars['sample_variable'] = t('Lorem ipsum.'); } // */ /** * Override the Drupal search form using the search-theme-form.tpl.php file. */ /* -- Delete this line if you want to use this function function phptemplate_search_theme_form($form) { return _phptemplate_callback('search-theme-form', array('form' => $form)); } // */