| Server IP : 104.21.17.213 / Your IP : 216.73.217.141 Web Server : Apache System : Linux hosting01.arsenalhost.com 4.18.0-425.13.1.lve.el8.x86_64 #1 SMP Mon Feb 27 15:23:24 EST 2023 x86_64 User : corbizre ( 1013) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/corbizre/rentalssearch.com/lib/ |
Upload File : |
<?php
if (!defined('SMARTY_DIR')) {
exit();
}
/**
* Base class: Smarty template engine
*/
require_once SMARTY_DIR.'Smarty.class.php';
class AwtTpl extends Smarty
{
function __construct($template_dir=TEMPLATE_DIR)
{
parent::__construct();
$this->compile_id = null;
$this->_canUpdateFromFile = false;
$this->compile_check = true;
// $this->left_delimiter = '<{';
// $this->right_delimiter = '}>';
$this->template_dir = $template_dir;
$this->plugins_dir = dirname(__FILE__).'/../smarty/plugins/';
$this->cache_dir = CACHE_DIR;
$this->compile_dir = COMPILE_DIR;
$this->force_compile = false;
$this->assign('HTTP_HOST', GLOBAL_URL);
$this->assign('HTTP_STATIC', STATIC_URL);
$this->assign('HTTP_IMG', IMAGES_URL);
$this->assign('DELIMITER', "_");
$this->assign('DELIMITER2', "_");
$this->use_sub_dirs = false;
}
}
?>