function phptemplate_init

Same name and namespace in other branches
  1. 6.x drupal-6.x/themes/engines/phptemplate/phptemplate.engine \phptemplate_init()

Implements hook_init().

Archivo

drupal-7.x/themes/engines/phptemplate/phptemplate.engine, line 11
Handles integration of PHP templates with the Drupal theme system.

Código

function phptemplate_init($template) {
  $file = dirname($template->filename) . '/template.php';
  if (file_exists($file)) {
    include_once DRUPAL_ROOT . '/' . $file;
  }
}