mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 09:49:05 +00:00
helpers class updated!
This commit is contained in:
parent
d6abd7b436
commit
ea9e022a60
1 changed files with 23 additions and 12 deletions
|
@ -3,19 +3,21 @@
|
|||
class Helpers{
|
||||
|
||||
|
||||
public static function loadTemplate( $template, $vars = array (), $forcelibrender = false )
|
||||
public static function loadTemplate( $template, $vars = array (), $returnHTML = false )
|
||||
{
|
||||
|
||||
global $AMS_LIB;
|
||||
global $SITEBASE;
|
||||
global $AMS_TRANS;
|
||||
global $INGAME_LAYOUT;
|
||||
define('SMARTY_SPL_AUTOLOAD',1);
|
||||
//define('SMARTY_SPL_AUTOLOAD',1);
|
||||
require_once $AMS_LIB . '/smarty/libs/Smarty.class.php';
|
||||
spl_autoload_register('__autoload');
|
||||
|
||||
$smarty = new Smarty;
|
||||
|
||||
$smarty->setCompileDir($SITEBASE.'/templates_c/');
|
||||
$smarty->setCacheDir($SITEBASE.'/cache/');
|
||||
$smarty -> setConfigDir($SITEBASE . '/configs/' );
|
||||
// turn smarty debugging on/off
|
||||
$smarty -> debugging = false;
|
||||
// caching must be disabled for multi-language support
|
||||
|
@ -23,7 +25,6 @@ class Helpers{
|
|||
$smarty -> cache_lifetime = 120;
|
||||
|
||||
helpers :: create_folders ();
|
||||
|
||||
if ( helpers::check_if_game_client() or $forcelibrender = false ){
|
||||
$smarty -> template_dir = $AMS_LIB . '/ingame_templates/';
|
||||
$smarty -> setConfigDir( $AMS_LIB . '/configs' );
|
||||
|
@ -55,9 +56,15 @@ class Helpers{
|
|||
}else{
|
||||
$inherited ="";
|
||||
}
|
||||
// extends:' . $inherited .'|register.tpl
|
||||
|
||||
|
||||
|
||||
if($returnHTML == true){
|
||||
return $smarty ->fetch($inherited . $template . '.tpl' );
|
||||
}else{
|
||||
$smarty -> display( $inherited . $template . '.tpl' );
|
||||
}
|
||||
}
|
||||
|
||||
static public function create_folders(){
|
||||
global $AMS_LIB;
|
||||
|
@ -72,8 +79,9 @@ class Helpers{
|
|||
);
|
||||
foreach ( $arr as & $value ){
|
||||
if ( !file_exists( $value ) ){
|
||||
echo $value;
|
||||
mkdir( $value);
|
||||
//echo $value;
|
||||
print($value);
|
||||
drupal_mkdir($value);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -133,6 +141,9 @@ class Helpers{
|
|||
}
|
||||
}
|
||||
|
||||
if ($_SESSION['Language'] == ""){
|
||||
$_SESSION['Language'] = $DEFAULT_LANGUAGE;
|
||||
}
|
||||
return parse_ini_file( $AMS_TRANS . '/' . $_SESSION['Language'] . '.ini', true );
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue