$args array key / val where key is the var name in template
* @param bool $echo if false return template in string
*
* @return string
*/
public function render($slugTpl, $args = array(), $echo = true)
{
ob_start();
if (($renderFile = $this->getFileTemplate($slugTpl)) !== false) {
$tplData = apply_filters(self::getDataHook($slugTpl), array_merge($this->globalData, $args));
$tplMng = $this;
require($renderFile);
} else {
echo 'FILE TPL NOT FOUND: ' . $slugTpl . '
';
}
$renderResult = apply_filters(self::getRenderHook($slugTpl), ob_get_clean());
if (self::$stripSpaces) {
$renderResult = preg_replace('~>[\n\s]+<~', '><', $renderResult);
}
if ($echo) {
echo $renderResult;
return '';
} else {
return $renderResult;
}
}
/**
* Render template in json string
*
* @param string $slugTpl template file is a relative path from root template folder
* @param array $args array key / val where key is the var name in template
* @param bool $echo if false return template in string
*
* @return string
*/
public function renderJson($slugTpl, $args = array(), $echo = true)
{
$renderResult = SnapJson::jsonEncode($this->render($slugTpl, $args, false));
if ($echo) {
echo $renderResult;
return '';
} else {
return $renderResult;
}
}
/**
* Render template apply esc attr
*
* @param string $slugTpl template file is a relative path from root template folder
* @param array $args array key / val where key is the var name in template
* @param bool $echo if false return template in string
*
* @return string
*/
public function renderEscAttr($slugTpl, $args = array(), $echo = true)
{
$renderResult = esc_attr($this->render($slugTpl, $args, false));
if ($echo) {
echo $renderResult;
return '';
} else {
return $renderResult;
}
}
/**
* Get hook unique from template slug
*
* @param string $slugTpl template slug
*
* @return string
*/
public static function tplFileToHookSlug($slugTpl)
{
return str_replace(array('\\', '/', '.'), '_', $slugTpl);
}
/**
* Return data hook from template slug
*
* @param string $slugTpl template slug
*
* @return string
*/
public static function getDataHook($slugTpl)
{
return 'duplicator_template_data_' . self::tplFileToHookSlug($slugTpl);
}
/**
* Return render hook from template slug
*
* @param string $slugTpl template slug
*
* @return string
*/
public static function getRenderHook($slugTpl)
{
return 'duplicator_template_render_' . self::tplFileToHookSlug($slugTpl);
}
/**
* Acctept html of php extensions. if the file have unknown extension automatic add the php extension
*
* @param string $slugTpl template slug
*
* @return boolean|string return false if don\'t find the template file
*/
protected function getFileTemplate($slugTpl)
{
$fullPath = $this->mainFolder . $slugTpl . '.php';
if (file_exists($fullPath)) {
return $fullPath;
} else {
return false;
}
}
}