leftypol/inc/template.php

43 lines
1.4 KiB
PHP
Raw Normal View History

2010-11-02 10:57:33 +00:00
<?php
2011-04-13 12:21:07 +00:00
if($_SERVER['SCRIPT_FILENAME'] == str_replace('\\', '/', __FILE__)) {
// You cannot request this file directly.
header('Location: ../', true, 302);
exit;
}
2010-11-02 10:57:33 +00:00
2011-10-05 04:22:53 +00:00
require 'contrib/Twig/Autoloader.php';
Twig_Autoloader::register();
2010-11-02 10:57:33 +00:00
2011-10-05 04:22:53 +00:00
$loader = new Twig_Loader_Filesystem($config['dir']['template']);
2010-11-02 10:57:33 +00:00
function Element($templateFile, array $options) {
2011-10-05 04:22:53 +00:00
global $config, $debug, $loader;
2011-03-17 05:52:43 +00:00
if(function_exists('create_pm_header') && ((isset($options['mod']) && $options['mod']) || isset($options['__mod']))) {
2011-03-17 05:52:43 +00:00
$options['pm'] = create_pm_header();
}
2011-05-21 05:22:10 +00:00
if(isset($options['body']) && $config['debug']) {
2011-05-25 05:22:29 +00:00
if(isset($debug['start'])) {
$debug['time'] = '~' . round((microtime(true) - $debug['start']) * 1000, 2) . 'ms';
unset($debug['start']);
}
2011-05-21 05:22:10 +00:00
$options['body'] .= '<h3>Debug</h3><pre style="white-space: pre-wrap;font-size: 10px;">' . print_r($debug, true) . '</pre><hr/>';
}
2011-10-05 04:22:53 +00:00
$twig = new Twig_Environment($loader, Array(
'autoescape' => false,
'cache' => 'cache',
'debug' => ($config['debug'] ? true : false),
));
2010-11-02 10:57:33 +00:00
// Read the template file
2011-10-05 04:22:53 +00:00
if(@file_get_contents("{$config['dir']['template']}/${templateFile}")) {
return $twig->render($templateFile, $options);
2010-11-02 10:57:33 +00:00
} else {
2011-03-17 05:52:43 +00:00
throw new Exception("Template file '${templateFile}' does not exist or is empty in '{$config['dir']['template']}'!");
2010-11-02 10:57:33 +00:00
}
}
?>