2010-11-02 06:57:33 -04:00
|
|
|
<?php
|
2012-04-11 12:49:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2012 Tinyboard Development Group
|
|
|
|
*/
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (realpath($_SERVER['SCRIPT_FILENAME']) == str_replace('\\', '/', __FILE__)) {
|
2012-04-11 12:49:22 -04:00
|
|
|
// You cannot request this file directly.
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$twig = false;
|
|
|
|
|
|
|
|
function load_twig() {
|
|
|
|
global $twig, $config;
|
2010-11-02 06:57:33 -04:00
|
|
|
|
2012-04-09 06:52:26 -04:00
|
|
|
require 'lib/Twig/Autoloader.php';
|
2011-10-05 00:22:53 -04:00
|
|
|
Twig_Autoloader::register();
|
2012-04-11 12:49:22 -04:00
|
|
|
|
2011-10-11 06:49:14 -04: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 08:53:43 -04:00
|
|
|
|
2011-10-05 00:22:53 -04:00
|
|
|
$loader = new Twig_Loader_Filesystem($config['dir']['template']);
|
2012-04-11 12:49:22 -04:00
|
|
|
$loader->setPaths($config['dir']['template']);
|
2012-04-12 07:56:01 -04:00
|
|
|
$twig = new Twig_Environment($loader, array(
|
2012-04-11 12:49:22 -04:00
|
|
|
'autoescape' => false,
|
|
|
|
'cache' => "{$config['dir']['template']}/cache",
|
|
|
|
'debug' => ($config['debug'] ? true : false),
|
|
|
|
));
|
|
|
|
$twig->addExtension(new Twig_Extensions_Extension_Tinyboard());
|
|
|
|
$twig->addExtension(new Twig_Extensions_Extension_I18n());
|
|
|
|
}
|
|
|
|
|
|
|
|
function Element($templateFile, array $options) {
|
|
|
|
global $config, $debug, $twig;
|
2010-11-02 06:57:33 -04:00
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (!$twig)
|
2012-04-11 12:49:22 -04:00
|
|
|
load_twig();
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (function_exists('create_pm_header') && ((isset($options['mod']) && $options['mod']) || isset($options['__mod']))) {
|
2012-04-11 12:49:22 -04:00
|
|
|
$options['pm'] = create_pm_header();
|
|
|
|
}
|
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if (isset($options['body']) && $config['debug']) {
|
|
|
|
if (isset($debug['start'])) {
|
2012-04-11 12:49:22 -04:00
|
|
|
$debug['time'] = '~' . round((microtime(true) - $debug['start']) * 1000, 2) . 'ms';
|
|
|
|
unset($debug['start']);
|
2011-03-17 01:52:43 -04:00
|
|
|
}
|
2012-04-11 12:49:22 -04:00
|
|
|
$debug['included'] = get_included_files();
|
|
|
|
$debug['memory'] = round(memory_get_usage(true) / (1024 * 1024), 2) . ' MiB';
|
|
|
|
$options['body'] .=
|
|
|
|
'<h3>Debug</h3><pre style="white-space: pre-wrap;font-size: 10px;">' .
|
|
|
|
str_replace("\n", '<br/>', utf8tohtml(print_r($debug, true))) .
|
|
|
|
'</pre>';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the template file
|
2012-04-12 10:18:19 -04:00
|
|
|
if (@file_get_contents("{$config['dir']['template']}/${templateFile}")) {
|
2012-04-11 12:49:22 -04:00
|
|
|
$body = $twig->render($templateFile, $options);
|
2011-03-17 01:52:43 -04:00
|
|
|
|
2012-04-12 10:18:19 -04:00
|
|
|
if ($config['minify_html'] && preg_match('/\.html$/', $templateFile)) {
|
2012-04-11 12:49:22 -04:00
|
|
|
$body = trim(preg_replace("/[\t\r\n]/", '', $body));
|
2011-05-21 01:22:10 -04:00
|
|
|
}
|
|
|
|
|
2012-04-11 12:49:22 -04:00
|
|
|
return $body;
|
|
|
|
} else {
|
|
|
|
throw new Exception("Template file '${templateFile}' does not exist or is empty in '{$config['dir']['template']}'!");
|
2010-11-02 06:57:33 -04:00
|
|
|
}
|
2012-04-11 12:49:22 -04:00
|
|
|
}
|
|
|
|
|