| Versionen | |
|---|---|
| drupal6 – drupal7 | phptemplate_init($template) |
Implementation of hook_init().
themes/
<?php
function phptemplate_init($template) {
$file = dirname($template->filename) . '/template.php';
if (file_exists($file)) {
include_once "./$file";
}
}
?>
Kommentare
Kommentar hinzufügen