leftypol/inc/template.php

58 lines
2.0 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-11 10:49:14 +00:00
Twig_Autoloader::autoload('Twig_Extensions_Node_Trans');
Twig_Autoloader::autoload('Twig_Extensions_TokenParser_Trans');
Twig_Autoloader::autoload('Twig_Extensions_Extension_I18n');
Twig_Autoloader::autoload('Twig_Extensions_Extension_Tinyboard');
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']);
}
2012-01-09 03:15:36 +00:00
$options['body'] .= '<h3>Debug</h3><pre style="white-space: pre-wrap;font-size: 10px;">' . str_replace("\n", '<br/>', utf8tohtml(print_r($debug, true))) . '</pre>';
2011-05-21 05:22:10 +00:00
}
2011-10-15 06:06:22 +00:00
$loader->setPaths($config['dir']['template']);
2011-10-05 04:22:53 +00:00
$twig = new Twig_Environment($loader, Array(
'autoescape' => false,
'cache' => "{$config['dir']['template']}/cache",
2011-10-05 04:22:53 +00:00
'debug' => ($config['debug'] ? true : false),
));
2011-10-11 10:49:14 +00:00
$twig->addExtension(new Twig_Extensions_Extension_Tinyboard());
$twig->addExtension(new Twig_Extensions_Extension_I18n());
2011-10-05 04:22:53 +00:00
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}")) {
$body = $twig->render($templateFile, $options);
2011-11-16 05:41:57 +00:00
if($config['minify_html'] && preg_match('/\.html$/', $templateFile)) {
$body = trim(preg_replace("/[\t\r\n]/", '', $body));
}
return $body;
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
}
}
?>