khanat-opennel-code/code/ryzom/tools/server/ryzom_ams/ams_lib/autoload/helpers.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2013-06-06 06:04:46 +00:00
<?php
2013-06-06 06:39:33 +00:00
class Helpers{
public function loadTemplate( $template, $vars = array () )
2013-06-06 06:39:33 +00:00
{
global $AMS_LIB;
global $NELTOOL_SITEBASE;
require_once $AMS_LIB . '/smarty/libs/Smarty.class.php';
$smarty = new Smarty;
$smarty -> debugging = true;
$smarty -> caching = true;
$smarty -> cache_lifetime = 120;
if ( !helpers :: check_if_game_client () ){
$smarty -> template_dir = $AMS_LIB . '/templates/';
$smarty->setConfigDir($AMS_LIB .'/config');
}else{
$smarty -> template_dir = $NELTOOL_SITEBASE . '/templates/';
$smarty->setConfigDir($NELTOOL_SITEBASE .'/config');
}
$smarty -> assign( "option_selected", "NE" );
$smarty -> display( $template . '.tpl' );
2013-06-06 06:39:33 +00:00
}
public function check_if_game_client()
2013-06-06 06:39:33 +00:00
{
// if HTTP_USER_AGENT is not set then its ryzom core
if ( !isset( $_SERVER['HTTP_USER_AGENT'] ) ){
return true;
}else{
return false;
}
}
}
2013-06-06 06:04:46 +00:00