1 phptemplate.engine | phptemplate_theme($existing, $type, $theme, $path) |
Implements hook_theme().
File
- core/
themes/ engines/ phptemplate/ phptemplate.engine, line 20 - Handles integration of PHP templates with the Backdrop theme system.
Code
function phptemplate_theme($existing, $type, $theme, $path) {
$templates = backdrop_find_theme_functions($existing, array($theme));
$templates += backdrop_find_theme_templates($existing, '.tpl.php', $path);
return $templates;
}