| Versionen | |
|---|---|
| drupal6 – drupal7 | phptemplate_theme($existing, $type, $theme, $path) |
Implementation of hook_theme().
themes/
<?php
function phptemplate_theme($existing, $type, $theme, $path) {
$templates = drupal_find_theme_functions($existing, array('phptemplate', $theme));
$templates += drupal_find_theme_templates($existing, '.tpl.php', $path);
return $templates;
}
?>
Kommentare
Kommentar hinzufügen