Create Core\Renderer Class
create new class and redirect old functions
This commit is contained in:
parent
c6ce9ddaa4
commit
f6c86649c2
|
@ -24,6 +24,7 @@ use Friendica\Util\Map;
|
||||||
use Friendica\Util\Proxy as ProxyUtils;
|
use Friendica\Util\Proxy as ProxyUtils;
|
||||||
|
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
|
use Friendica\Core\Renderer;
|
||||||
use Friendica\Model\FileTag;
|
use Friendica\Model\FileTag;
|
||||||
|
|
||||||
require_once "include/conversation.php";
|
require_once "include/conversation.php";
|
||||||
|
@ -36,26 +37,21 @@ require_once "include/conversation.php";
|
||||||
* @param array $r key value pairs (search => replace)
|
* @param array $r key value pairs (search => replace)
|
||||||
* @return string substituted string
|
* @return string substituted string
|
||||||
*/
|
*/
|
||||||
function replace_macros($s, $r) {
|
function replace_macros($s, $r)
|
||||||
|
{
|
||||||
|
return Renderer::replaceMacros($s, $r);
|
||||||
|
}
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
/**
|
||||||
|
* load template $s
|
||||||
$a = get_app();
|
*
|
||||||
|
* @param string $s
|
||||||
// pass $baseurl to all templates
|
* @param string $root
|
||||||
$r['$baseurl'] = System::baseUrl();
|
* @return string
|
||||||
|
*/
|
||||||
$t = $a->getTemplateEngine();
|
function get_markup_template($s, $root = '')
|
||||||
try {
|
{
|
||||||
$output = $t->replaceMacros($s, $r);
|
return Renderer::getMarkupTemplate($s, $root);
|
||||||
} catch (Exception $e) {
|
|
||||||
echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
|
|
||||||
killme();
|
|
||||||
}
|
|
||||||
|
|
||||||
$a->saveTimestamp($stamp1, "rendering");
|
|
||||||
|
|
||||||
return $output;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -339,30 +335,6 @@ function perms2str($p) {
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* load template $s
|
|
||||||
*
|
|
||||||
* @param string $s
|
|
||||||
* @param string $root
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function get_markup_template($s, $root = '') {
|
|
||||||
$stamp1 = microtime(true);
|
|
||||||
|
|
||||||
$a = get_app();
|
|
||||||
$t = $a->getTemplateEngine();
|
|
||||||
try {
|
|
||||||
$template = $t->getTemplateFile($s, $root);
|
|
||||||
} catch (Exception $e) {
|
|
||||||
echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
|
|
||||||
killme();
|
|
||||||
}
|
|
||||||
|
|
||||||
$a->saveTimestamp($stamp1, "file");
|
|
||||||
|
|
||||||
return $template;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* for html,xml parsing - let's say you've got
|
* for html,xml parsing - let's say you've got
|
||||||
* an attribute foobar="class1 class2 class3"
|
* an attribute foobar="class1 class2 class3"
|
||||||
|
|
71
src/Core/Renderer.php
Normal file
71
src/Core/Renderer.php
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @file src/Core/Renderer.php
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Friendica\Core;
|
||||||
|
|
||||||
|
use Friendica\BaseObject;
|
||||||
|
use Friendica\Core\System;
|
||||||
|
use Friendica\Render\FriendicaSmarty;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This class handles Renderer related functions.
|
||||||
|
*/
|
||||||
|
class Renderer extends BaseObject
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @brief This is our template processor
|
||||||
|
*
|
||||||
|
* @param string|FriendicaSmarty $s The string requiring macro substitution or an instance of FriendicaSmarty
|
||||||
|
* @param array $r key value pairs (search => replace)
|
||||||
|
*
|
||||||
|
* @return string substituted string
|
||||||
|
*/
|
||||||
|
public static function replaceMacros($s, $r)
|
||||||
|
{
|
||||||
|
$stamp1 = microtime(true);
|
||||||
|
$a = self::getApp();
|
||||||
|
|
||||||
|
// pass $baseurl to all templates
|
||||||
|
$r['$baseurl'] = System::baseUrl();
|
||||||
|
$t = $a->getTemplateEngine();
|
||||||
|
|
||||||
|
try {
|
||||||
|
$output = $t->replaceMacros($s, $r);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
|
||||||
|
$a->saveTimestamp($stamp1, "rendering");
|
||||||
|
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Load a given template $s
|
||||||
|
*
|
||||||
|
* @param string $s Template to load.
|
||||||
|
* @param string $root Optional.
|
||||||
|
*
|
||||||
|
* @return string template.
|
||||||
|
*/
|
||||||
|
public static function getMarkupTemplate($s, $root = '')
|
||||||
|
{
|
||||||
|
$stamp1 = microtime(true);
|
||||||
|
$a = self::getApp();
|
||||||
|
$t = $a->getTemplateEngine();
|
||||||
|
|
||||||
|
try {
|
||||||
|
$template = $t->getTemplateFile($s, $root);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
|
||||||
|
$a->saveTimestamp($stamp1, "file");
|
||||||
|
|
||||||
|
return $template;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue