function phptemplate_theme
Same name and namespace in other branches
- 6.x drupal-6.x/themes/engines/phptemplate/phptemplate.engine \phptemplate_theme()
Implements hook_theme().
Archivo
- drupal-7.x/
themes/ engines/ phptemplate/ phptemplate.engine, line 21 - Handles integration of PHP templates with the Drupal theme system.
Código
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;
}