コード例 #1
0
ファイル: Fileupload.php プロジェクト: smboy86/zzing
 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
ファイル: Board_post.php プロジェクト: smboy86/zzing
 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
ファイル: Membermodify.php プロジェクト: smboy86/zzing
 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
ファイル: Notification.php プロジェクト: smboy86/zzing
 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
ファイル: Editorfileupload.php プロジェクト: smboy86/zzing
 function __construct()
 {
     parent::__construct();
     $this->load->library('upload');
 }