phptemplate_init

Versions
4.7 – 7
phptemplate_init($template)

Code

themes/engines/phptemplate/phptemplate.engine, line 8

<?php
function phptemplate_init($template) {
  $file = dirname($template->filename) . '/template.php';
  if (file_exists($file)) {
   include_once "./$file";
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.