Merge pull request #4385 from tobiasd/20180203-smarties

added missing constant
This commit is contained in:
Michael Vogel 2018-02-03 13:38:55 +01:00 committed by GitHub
commit 2a00ac790f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 61 additions and 59 deletions

View File

@ -1,59 +1,61 @@
<?php
/**
* @file src/Render/FriendicaSmartyEngine.php
*/
namespace Friendica\Render;
use Friendica\Core\Addon;
class FriendicaSmartyEngine implements ITemplateEngine
{
static $name = "smarty3";
public function __construct()
{
if (!is_writable('view/smarty3/')) {
echo "<b>ERROR:</b> folder <tt>view/smarty3/</tt> must be writable by webserver.";
killme();
}
}
// ITemplateEngine interface
public function replaceMacros($s, $r)
{
$template = '';
if (gettype($s) === 'string') {
$template = $s;
$s = new FriendicaSmarty();
}
$r['$APP'] = get_app();
// "middleware": inject variables into templates
$arr = [
"template" => basename($s->filename),
"vars" => $r
];
Addon::callHooks("template_vars", $arr);
$r = $arr['vars'];
foreach ($r as $key => $value) {
if ($key[0] === '$') {
$key = substr($key, 1);
}
$s->assign($key, $value);
}
return $s->parsed($template);
}
public function getTemplateFile($file, $root = '')
{
$a = get_app();
$template_file = get_template_file($a, SMARTY3_TEMPLATE_FOLDER . '/' . $file, $root);
$template = new FriendicaSmarty();
$template->filename = $template_file;
return $template;
}
}
<?php
/**
* @file src/Render/FriendicaSmartyEngine.php
*/
namespace Friendica\Render;
use Friendica\Core\Addon;
define('SMARTY3_TEMPLATE_FOLDER', 'templates');
class FriendicaSmartyEngine implements ITemplateEngine
{
static $name = "smarty3";
public function __construct()
{
if (!is_writable('view/smarty3/')) {
echo "<b>ERROR:</b> folder <tt>view/smarty3/</tt> must be writable by webserver.";
killme();
}
}
// ITemplateEngine interface
public function replaceMacros($s, $r)
{
$template = '';
if (gettype($s) === 'string') {
$template = $s;
$s = new FriendicaSmarty();
}
$r['$APP'] = get_app();
// "middleware": inject variables into templates
$arr = [
"template" => basename($s->filename),
"vars" => $r
];
Addon::callHooks("template_vars", $arr);
$r = $arr['vars'];
foreach ($r as $key => $value) {
if ($key[0] === '$') {
$key = substr($key, 1);
}
$s->assign($key, $value);
}
return $s->parsed($template);
}
public function getTemplateFile($file, $root = '')
{
$a = get_app();
$template_file = get_template_file($a, SMARTY3_TEMPLATE_FOLDER . '/' . $file, $root);
$template = new FriendicaSmarty();
$template->filename = $template_file;
return $template;
}
}