2018-02-09 04:49:49 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Render/FriendicaSmarty.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Render;
|
|
|
|
|
|
|
|
use Smarty;
|
2018-10-31 17:12:15 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-02-09 04:49:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Friendica extension of the Smarty3 template engine
|
|
|
|
*
|
2018-09-16 01:28:38 +02:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-02-09 04:49:49 +01:00
|
|
|
*/
|
|
|
|
class FriendicaSmarty extends Smarty
|
|
|
|
{
|
|
|
|
const SMARTY3_TEMPLATE_FOLDER = 'templates';
|
|
|
|
|
|
|
|
public $filename;
|
|
|
|
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
2018-12-28 01:22:35 +01:00
|
|
|
$a = \get_app();
|
2018-04-29 00:37:04 +02:00
|
|
|
$theme = $a->getCurrentTheme();
|
2018-02-09 04:49:49 +01:00
|
|
|
|
|
|
|
// setTemplateDir can be set to an array, which Smarty will parse in order.
|
|
|
|
// The order is thus very important here
|
|
|
|
$template_dirs = ['theme' => "view/theme/$theme/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($a->theme_info['extends'])) {
|
2018-02-09 04:49:49 +01:00
|
|
|
$template_dirs = $template_dirs + ['extends' => "view/theme/" . $a->theme_info["extends"] . "/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
|
|
|
|
}
|
|
|
|
|
|
|
|
$template_dirs = $template_dirs + ['base' => "view/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
|
|
|
|
$this->setTemplateDir($template_dirs);
|
|
|
|
|
|
|
|
$this->setCompileDir('view/smarty3/compiled/');
|
|
|
|
$this->setConfigDir('view/smarty3/config/');
|
|
|
|
$this->setCacheDir('view/smarty3/cache/');
|
|
|
|
|
2018-10-31 17:12:15 +01:00
|
|
|
$this->left_delimiter = Renderer::getTemplateLeftDelimiter('smarty3');
|
|
|
|
$this->right_delimiter = Renderer::getTemplateRightDelimiter('smarty3');
|
2018-02-09 04:49:49 +01:00
|
|
|
|
2018-12-14 04:35:12 +01:00
|
|
|
$this->escape_html = true;
|
|
|
|
|
2018-02-09 04:49:49 +01:00
|
|
|
// Don't report errors so verbosely
|
|
|
|
$this->error_reporting = E_ALL & ~E_NOTICE;
|
|
|
|
}
|
|
|
|
|
|
|
|
function parsed($template = '')
|
|
|
|
{
|
|
|
|
if ($template) {
|
|
|
|
return $this->fetch('string:' . $template);
|
|
|
|
}
|
|
|
|
return $this->fetch('file:' . $this->filename);
|
|
|
|
}
|
|
|
|
|
2018-02-01 19:31:03 +01:00
|
|
|
}
|