Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
themes /
engines /
phptemplate /
Delete
Unzip
Name
Size
Permission
Date
Action
phptemplate.engine
584
B
-rw-r--r--
2014-12-11 05:46
Save
Rename
<?php /** * @file * Handles integration of PHP templates with the Drupal theme system. */ /** * Implementation of hook_init(). */ function phptemplate_init($template) { $file = dirname($template->filename) .'/template.php'; if (file_exists($file)) { include_once "./$file"; } } /** * Implementation of hook_theme(). */ 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; }