예제 #1
0
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('pagination', 'querystring'));
 }
예제 #2
0
파일: Captcha.php 프로젝트: smboy86/zzing
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->helper(array('captcha', 'string'));
 }
예제 #3
0
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('pagination', 'querystring', 'accesslevel', 'videoplayer', 'point'));
 }
예제 #4
0
파일: Group.php 프로젝트: smboy86/zzing
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('querystring', 'board_group'));
 }
예제 #5
0
파일: Cbversion.php 프로젝트: smboy86/zzing
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('requests'));
 }
예제 #6
0
파일: Postact.php 프로젝트: smboy86/zzing
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('querystring', 'accesslevel', 'email', 'notelib', 'point'));
 }
예제 #7
0
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('querystring', 'form_validation', 'email', 'notelib'));
 }
예제 #8
0
파일: Register.php 프로젝트: smboy86/zzing
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('querystring', 'form_validation', 'email', 'notelib', 'point'));
     if (!function_exists('password_hash')) {
         $this->load->helper('password');
     }
 }
예제 #9
0
파일: Verify.php 프로젝트: smboy86/zzing
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('querystring'));
     if (!function_exists('password_hash')) {
         $this->load->helper('password');
     }
 }
예제 #10
0
 function __construct()
 {
     parent::__construct();
     /**
      * 라이브러리를 로딩합니다
      */
     $this->load->library(array('pagination', 'querystring'));
     if (!$this->cbconfig->item('use_notification')) {
         alert('이 웹사이트는 알림기능을 사용하지 않습니다.');
     }
 }
예제 #11
0
파일: Cbconfigs.php 프로젝트: smboy86/zzing
 function __construct()
 {
     parent::__construct();
 }
예제 #12
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('upload');
 }