예제 #1
0
 public static function load()
 {
     //Define Theme depend to session
     define('THEME_PATH', MPATH_THEMES . Mcfg::get('theme'));
     //exit(THEME_PATH);
     $ajax = MReq::tg('ajax') == 1 ? 1 : 0;
     if ($ajax == 1) {
         //Excute app on ajax
         ajax::load();
     } else {
         //Excute app on theme
         $theme_path = THEME_PATH;
         $theme = session::get('userid') == FALSE ? $theme_path . '/mainns.php' : $theme_path . '/main.php';
         include $theme;
     }
 }
예제 #2
0
파일: ajax.php 프로젝트: ATS001/MRN_ERP
<?php

ajax::load();
?>

예제 #3
0
파일: ajax.php 프로젝트: ATS001/PRSIT
<?php

$ajaxappli = new ajax();
$ajaxappli->load();
?>