helpers class updated!

--HG--
branch : quitta-gsoc-2013
This commit is contained in:
Quitta 2013-09-04 17:49:46 +02:00
parent 9101cd2f6e
commit 0ec8e76d8e

View file

@ -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 );
}