예제 #1
0
파일: feedback.php 프로젝트: 119155012/kals
 function __construct()
 {
     parent::__construct();
     $this->load->library("email");
     $this->url = get_referer_url(false);
     $this->client_ip = array('ip' => get_client_ip(), 'browser' => $_SERVER['HTTP_USER_AGENT']);
 }
예제 #2
0
파일: log.php 프로젝트: 119155012/kals
 function __construct()
 {
     parent::__construct();
     $this->load->library('kals_actor/User');
     $this->user = get_context_user();
     $this->url = get_referer_url(TRUE);
 }
예제 #3
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('kals_actor/User');
     $this->url = get_referer_url(TRUE);
     $this->client_ip = array('ip' => get_client_ip(), 'browser' => $_SERVER['HTTP_USER_AGENT']);
     $this->load->library("kals_actor/User_statistic");
 }
예제 #4
0
파일: mobile.php 프로젝트: 119155012/kals
 function __construct()
 {
     parent::__construct();
     $this->load->library('kals_actor/User');
     //$this->url = get_referer_url(TRUE);
     $this->client_ip = array('ip' => get_client_ip(), 'browser' => $_SERVER['HTTP_USER_AGENT']);
     // 新增標註用
     $this->load->library('scope/Annotation_scope_collection');
     $this->load->library('scope/Annotation_scope');
     $this->load->library('kals_resource/Annotation');
     $this->lang->load('kals_mobile');
 }
예제 #5
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('scope/Annotation_scope_collection');
     $this->load->library('scope/Annotation_scope');
     $this->load->library('kals_resource/Annotation');
     $this->load->library('kals_actor/User');
     $this->user = get_context_user();
     $this->url = get_referer_url(TRUE);
     require_once 'annotation_getter.php';
     $this->annotation_getter = new annotation_getter();
 }
예제 #6
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('scope/Annotation_scope_collection');
     $this->load->library('scope/Annotation_scope');
     $this->load->library('kals_resource/Domain');
     $this->load->library('kals_resource/Webpage');
     $this->load->library('kals_resource/Annotation');
     $this->load->library('kals_actor/User');
     $this->load->library('search/Search_annotation_collection');
     $this->load->library('search/Search_annotation_id_collection');
     $this->load->library('search/Search_annotation_user_collection');
     $this->load->library('search/Search_scope_collection');
     $this->load->library('type/Type_factory');
     $this->url = get_referer_url(TRUE);
 }
예제 #7
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('scope/Annotation_scope_collection');
     $this->load->library('scope/Annotation_scope');
     $this->load->library('kals_resource/Domain');
     $this->load->library('kals_resource/Webpage');
     $this->load->library('kals_resource/Annotation');
     $this->load->library('kals_actor/User');
     $this->load->library('search/Search_annotation_collection');
     $this->load->library('search/Search_annotation_id_collection');
     $this->load->library('search/Search_annotation_user_collection');
     $this->load->library('search/Search_scope_collection');
     $this->load->library('type/Type_factory');
     $this->url = get_referer_url(TRUE);
     $this->user = get_context_user();
     require_once 'annotation_getter.php';
     $this->annotation_getter = new annotation_getter();
 }
예제 #8
0
파일: help.php 프로젝트: 119155012/kals
 function __construct()
 {
     parent::Controller();
 }
예제 #9
0
파일: style.php 프로젝트: 119155012/kals
 function __construct()
 {
     parent::__construct();
 }
예제 #10
0
 function __construct()
 {
     parent::__construct();
     //檢查是否已經登入,未登入則丟出例外訊息
     login_require();
 }
예제 #11
0
 function __construct()
 {
     parent::__construct();
     //parent::Controller();
     $this->load->helper('url');
 }