Example Page template

  1. <?php
  2. //your template can be found at myspecialtemplate.tpl.php
  3. function _phptemplate_variables($hook, $vars = array()) {
  4. switch ($hook) {
  5.     case 'page':
  6.       if($vars['node']->type == 'forum'){
  7.           $vars['template_files'][] = 'myspecialtemplate';
  8.         }
  9.     }
  10.       return $vars;
  11. }