當前位置: 首頁>>代碼示例>>PHP>>正文


PHP HC_Lib::nts_config方法代碼示例

本文整理匯總了PHP中HC_Lib::nts_config方法的典型用法代碼示例。如果您正苦於以下問題:PHP HC_Lib::nts_config方法的具體用法?PHP HC_Lib::nts_config怎麽用?PHP HC_Lib::nts_config使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在HC_Lib的用法示例。


在下文中一共展示了HC_Lib::nts_config方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 function __construct($check_active = TRUE)
 {
     parent::__construct();
     $this->load->library('migration');
     if (!$this->migration->current()) {
         //			show_error($this->migration->error_string());
         return false;
     }
     $nts_config = HC_Lib::nts_config();
     if (isset($nts_config['FORCE_LOGIN_ID'])) {
         $id = $nts_config['FORCE_LOGIN_ID'];
         $this->auth->login($id);
     }
     if ($check_active) {
         $user = $this->auth->user();
         $user_active = 1;
         if ($user && $user->id) {
             $user_active = $user->active;
         }
         if (!$user_active) {
             $to = 'auth/notallowed';
             $this->redirect($to);
             exit;
         }
     }
 }
開發者ID:RCMmedia,項目名稱:rubicon,代碼行數:26,代碼來源:Front_controller.php

示例2: __construct

 function __construct($user_level = 0)
 {
     parent::__construct();
     $this->load->library('migration');
     if (!$this->migration->current()) {
         //			show_error($this->migration->error_string());
         return false;
     }
     $nts_config = HC_Lib::nts_config();
     if (isset($nts_config['FORCE_LOGIN_ID'])) {
         $id = $nts_config['FORCE_LOGIN_ID'];
         $this->auth->login($id);
     }
     if (!$this->auth->check()) {
         $this->redirect('auth/login');
         exit;
     }
     /* check user active */
     $user_active = 0;
     if ($test_user = $this->auth->user()) {
         $user_active = $test_user->active;
     }
     if (!$user_active) {
         $to = 'auth/notallowed';
         $this->redirect($to);
         exit;
     }
     /* check user level */
     if ($user_level) {
         $this->check_level($user_level);
     }
     /* check license code */
     if ($this->hc_modules->exists('license')) {
         $license_model = HC_App::model('hitcode_license');
         $code = $license_model->get();
         if (!$code) {
             $to = 'license/admin';
             $current_slug = $this->get_current_slug();
             if ($current_slug != $to) {
                 $this->session->set_flashdata('error', 'license_code_required');
                 $this->redirect($to);
                 exit;
             }
         }
     }
 }
開發者ID:RCMmedia,項目名稱:rubicon,代碼行數:46,代碼來源:Backend_controller.php

示例3: ri

 static function ri()
 {
     $return = '';
     $nts_config = HC_Lib::nts_config();
     if (isset($nts_config['REMOTE_INTEGRATION'])) {
         $return = $nts_config['REMOTE_INTEGRATION'];
     }
     return $return;
 }
開發者ID:kumarkvk,項目名稱:vz_emp_shiftsSchedule,代碼行數:9,代碼來源:hc_lib.php


注:本文中的HC_Lib::nts_config方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。