Beispiel #1
0
 public function init()
 {
     /* Initialize action controller here */
     header('content-type: text/html; charset=utf8');
     //clear all other sessions
     Application_Form_FrmSessionManager::clearSessionSearch();
 }
Beispiel #2
0
 public function init()
 {
     header('content-type: text/html; charset=utf8');
     defined('BASE_URL') || define('BASE_URL', Zend_Controller_Front::getInstance()->getBaseUrl());
     // clear all other sessions
     Application_Form_FrmSessionManager::clearSessionSearch();
 }
Beispiel #3
0
 public function init()
 {
     /* Initialize action controller here */
     header('content-type: text/html; charset=utf8');
     //clear all other sessions
     Application_Form_FrmSessionManager::clearSessionSearch();
     $db = new Application_Model_DbTable_DbGlobal();
     $sql = "SELECT u.user_type_id,u.user_type FROM `rsv_acl_user_type` u where u.`status`=1";
     $results = $db->getGlobalDb($sql);
     foreach ($results as $key => $r) {
         $this->user_typelist[$r['user_type_id']] = $r['user_type'];
     }
 }