Same filename and directory in other branches
  1. 4.7.x themes/engines/phptemplate/phptemplate.engine
  2. 5.x themes/engines/phptemplate/phptemplate.engine
  3. 6.x themes/engines/phptemplate/phptemplate.engine

Handles integration of PHP templates with the Drupal theme system.

File

themes/engines/phptemplate/phptemplate.engine
View source
<?php

/**
 * @file
 * Handles integration of PHP templates with the Drupal theme system.
 */

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

/**
 * Implements hook_theme().
 */
function phptemplate_theme($existing, $type, $theme, $path) {
  $templates = drupal_find_theme_functions($existing, array(
    $theme,
  ));
  $templates += drupal_find_theme_templates($existing, '.tpl.php', $path);
  return $templates;
}

Functions

Namesort descending Description
phptemplate_init Implements hook_init().
phptemplate_theme Implements hook_theme().