235 lines
8.8 KiB
PHP
235 lines
8.8 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* For the full copyright and license information, please view the
|
||
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
||
|
|
*/
|
||
|
|
|
||
|
|
global $smarty;
|
||
|
|
if (Configuration::get('PS_SMARTY_LOCAL')) {
|
||
|
|
$smarty = new SmartyCustom();
|
||
|
|
} elseif (_PS_MODE_DEV_ && !defined('_PS_ADMIN_DIR_')) {
|
||
|
|
$smarty = new SmartyDev();
|
||
|
|
} else {
|
||
|
|
$smarty = new Smarty();
|
||
|
|
}
|
||
|
|
|
||
|
|
$smarty->setConfigDir([]);
|
||
|
|
$smarty->setCompileDir(_PS_CACHE_DIR_ . 'smarty/compile');
|
||
|
|
$smarty->setCacheDir(_PS_CACHE_DIR_ . 'smarty/cache');
|
||
|
|
$smarty->use_sub_dirs = true;
|
||
|
|
$smarty->caching = Smarty::CACHING_OFF;
|
||
|
|
$smarty->force_compile = Configuration::get('PS_SMARTY_FORCE_COMPILE') == _PS_SMARTY_FORCE_COMPILE_;
|
||
|
|
$smarty->compile_check = (Configuration::get('PS_SMARTY_FORCE_COMPILE') >= _PS_SMARTY_CHECK_COMPILE_) ? Smarty::COMPILECHECK_ON : Smarty::COMPILECHECK_OFF;
|
||
|
|
$smarty->debug_tpl = _PS_ALL_THEMES_DIR_ . 'debug.tpl';
|
||
|
|
|
||
|
|
// Register core classes used in smarty templates or else we cannot use the constant classes
|
||
|
|
$smarty->registerClass('Configuration', '\Configuration');
|
||
|
|
$smarty->registerClass('Context', '\Context');
|
||
|
|
$smarty->registerClass('ImageManager', '\ImageManager');
|
||
|
|
$smarty->registerClass('Module', '\Module');
|
||
|
|
$smarty->registerClass('Product', '\Product');
|
||
|
|
$smarty->registerClass('Profile', '\Profile');
|
||
|
|
$smarty->registerClass('Shop', '\Shop');
|
||
|
|
$smarty->registerClass('Tab', '\Tab');
|
||
|
|
$smarty->registerClass('Tools', '\Tools');
|
||
|
|
|
||
|
|
/* Use this constant if you want to load smarty without all PrestaShop functions */
|
||
|
|
if (defined('_PS_SMARTY_FAST_LOAD_') && _PS_SMARTY_FAST_LOAD_) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
if (defined('_PS_ADMIN_DIR_')) {
|
||
|
|
require_once dirname(__FILE__) . '/smartyadmin.config.inc.php';
|
||
|
|
} else {
|
||
|
|
require_once dirname(__FILE__) . '/smartyfront.config.inc.php';
|
||
|
|
}
|
||
|
|
|
||
|
|
require_once SMARTY_PLUGINS_DIR . 'modifier.truncate.php';
|
||
|
|
|
||
|
|
// This escape modifier is required for invoice PDF generation
|
||
|
|
function smartyEscape($string, $esc_type = 'html', $char_set = null, $double_encode = true)
|
||
|
|
{
|
||
|
|
$escapeModifierFile = implode(
|
||
|
|
DIRECTORY_SEPARATOR,
|
||
|
|
array(
|
||
|
|
SMARTY_PLUGINS_DIR,
|
||
|
|
'modifier.escape.php',
|
||
|
|
)
|
||
|
|
);
|
||
|
|
require_once $escapeModifierFile;
|
||
|
|
|
||
|
|
global $smarty;
|
||
|
|
if (($esc_type === 'html' || $esc_type === 'htmlall') && $smarty->escape_html) {
|
||
|
|
return $string;
|
||
|
|
} else {
|
||
|
|
return smarty_modifier_escape($string, $esc_type, $char_set, $double_encode);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// PrestaShop & Smarty functions
|
||
|
|
smartyRegisterFunction($smarty, 'function', 'dateFormat', array('Tools', 'dateFormat'));
|
||
|
|
smartyRegisterFunction($smarty, 'function', 'hook', 'smartyHook');
|
||
|
|
smartyRegisterFunction($smarty, 'function', 'l', 'smartyTranslate', false);
|
||
|
|
smartyRegisterFunction($smarty, 'function', 'url', array('Link', 'getUrlSmarty'));
|
||
|
|
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'boolval', array('Tools', 'boolval'));
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'classname', 'smartyClassname');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'classnames', 'smartyClassnames');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'cleanHtml', 'smartyCleanHtml');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'dump', 'dump');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'end', 'smarty_endWithoutReference');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'escape', 'smartyEscape');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'truncate', 'smarty_modifier_truncate');
|
||
|
|
|
||
|
|
// Native PHP functions
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'addcslashes', 'addcslashes');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'addslashes', 'addslashes');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'array_key_first', 'array_key_first');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'array_merge', 'array_merge');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'array_slice', 'array_slice');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'date', 'date');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'explode', 'explode');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'floatval', 'floatval');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'htmlentities', 'htmlentities');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'htmlspecialchars', 'htmlspecialchars');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'implode', 'implode');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'in_array', 'in_array');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'intval', 'intval');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'json_decode', 'json_decode');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'json_encode', 'json_encode');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'lcfirst', 'lcfirst');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'md5', 'md5');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'mt_rand', 'mt_rand');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'nl2br', 'nl2br');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'print_r', 'print_r');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'rand', 'rand');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'sizeof', 'sizeof');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'sprintf', 'sprintf');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'str_replace', 'str_replace');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'stripslashes', 'stripslashes');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'strstr', 'strstr');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'strtolower', 'strtolower');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'strval', 'strval');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'substr', 'substr');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'strpos', 'strpos');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'trim', 'trim');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'ucfirst', 'ucfirst');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'urlencode', 'urlencode');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'var_dump', 'var_dump');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'version_compare', 'version_compare');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'file_exists', 'file_exists');
|
||
|
|
smartyRegisterFunction($smarty, 'modifier', 'strpos', 'strpos');
|
||
|
|
|
||
|
|
function smarty_modifier_htmlentitiesUTF8($string)
|
||
|
|
{
|
||
|
|
return Tools::htmlentitiesUTF8($string);
|
||
|
|
}
|
||
|
|
|
||
|
|
function smartyRegisterFunction($smarty, $type, $function, $params, $lazy = true, $initial_lazy_register = null)
|
||
|
|
{
|
||
|
|
if (!in_array($type, array('function', 'modifier', 'block'))) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
// lazy is better if the function is not called on every page
|
||
|
|
if ($lazy) {
|
||
|
|
if (null !== $initial_lazy_register && $initial_lazy_register->isRegistered($params)) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
$lazy_register = SmartyLazyRegister::getInstance($smarty);
|
||
|
|
if ($lazy_register->isRegistered($params)) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
$lazy_register->register($params);
|
||
|
|
|
||
|
|
if (is_array($params)) {
|
||
|
|
$params = $params[1];
|
||
|
|
}
|
||
|
|
|
||
|
|
// SmartyLazyRegister allows to only load external class when they are needed
|
||
|
|
$smarty->registerPlugin($type, $function, array($lazy_register, $params));
|
||
|
|
} else {
|
||
|
|
$smarty->registerPlugin($type, $function, $params);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function smartyHook($params, &$smarty)
|
||
|
|
{
|
||
|
|
$id_module = null;
|
||
|
|
$hook_params = $params;
|
||
|
|
$hook_params['smarty'] = $smarty;
|
||
|
|
if (!empty($params['mod'])) {
|
||
|
|
$module = Module::getInstanceByName($params['mod']);
|
||
|
|
unset($hook_params['mod']);
|
||
|
|
if ($module && $module->id) {
|
||
|
|
$id_module = $module->id;
|
||
|
|
} else {
|
||
|
|
unset($hook_params['h']);
|
||
|
|
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (!empty($params['excl'])) {
|
||
|
|
$result = '';
|
||
|
|
$modules = Hook::getHookModuleExecList($hook_params['h']);
|
||
|
|
|
||
|
|
$moduleexcl = explode(',', $params['excl']);
|
||
|
|
foreach ($modules as $module) {
|
||
|
|
if (!in_array($module['module'], $moduleexcl)) {
|
||
|
|
$result .= Hook::exec($params['h'], $hook_params, $module['id_module']);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
unset(
|
||
|
|
$hook_params['h'],
|
||
|
|
$hook_params['excl']
|
||
|
|
);
|
||
|
|
|
||
|
|
return $result;
|
||
|
|
}
|
||
|
|
unset($hook_params['h']);
|
||
|
|
|
||
|
|
return Hook::exec($params['h'], $hook_params, $id_module);
|
||
|
|
}
|
||
|
|
|
||
|
|
function smartyCleanHtml($data)
|
||
|
|
{
|
||
|
|
// Prevent xss injection.
|
||
|
|
if (Validate::isCleanHtml($data)) {
|
||
|
|
return $data;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function smartyClassname(string $classname)
|
||
|
|
{
|
||
|
|
$classname = Tools::replaceAccentedChars(strtolower($classname));
|
||
|
|
$classname = preg_replace(['/[^A-Za-z0-9-_]/', '/-{3,}/', '/-+$/'], ['-', '-', ''], $classname);
|
||
|
|
return $classname;
|
||
|
|
}
|
||
|
|
|
||
|
|
function smartyClassnames(array $classnames)
|
||
|
|
{
|
||
|
|
$enabled_classes = array();
|
||
|
|
foreach ($classnames as $classname => $enabled) {
|
||
|
|
if ($enabled) {
|
||
|
|
$enabled_classes[] = smartyClassname($classname);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return implode(' ', $enabled_classes);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* We add this intermediate method to prevent a warning because end expects its input to be a reference
|
||
|
|
*
|
||
|
|
* @param array<mixed> $arrayValue
|
||
|
|
*
|
||
|
|
* @return false|mixed
|
||
|
|
*/
|
||
|
|
function smarty_endWithoutReference($arrayValue)
|
||
|
|
{
|
||
|
|
return end($arrayValue);
|
||
|
|
}
|
||
|
|
|