Beispiel #1
0
 function __construct()
 {
     parent::__construct();
     $this->load->config('kals_exp_201012');
     $this->obs_webpage_url = $this->config->item('obs_webpage_url');
     $this->load->library('kals_resource/Annotation');
     $this->load->library('kals_resource/Webpage');
     $this->obs_webpage_id = $this->webpage->filter_webpage_id($this->obs_webpage_url);
     //$this->load->library('kals_resource/Domain');
     //$this->obs_domain_id = $this->domain->filter_id($this->obs_webpage_url);
     $this->obs_date_from = $this->config->item('obs_date_from');
     $this->obs_date_to = $this->config->item('obs_date_to');
     $this->obs_email = $this->config->item('obs_email');
     $this->in_email = 'in (';
     foreach ($this->obs_email as $email) {
         if ($this->in_email != 'in (') {
             $this->in_email .= ',';
         }
         $this->in_email .= "'" . $email . "'";
     }
     $this->in_email .= ')';
     $this->obs_group = $this->config->item('obs_group');
     $this->obs_mix_score = $this->config->item('obs_mix_score');
     $this->obs_report_score = $this->config->item('obs_report_score');
     $this->obs_test_score = $this->config->item('obs_test_score');
     $this->paragraph_scope = $this->config->item('paragraph_scope');
     $this->lang->load('kals_web_apps');
 }
Beispiel #2
0
 function __construct()
 {
     parent::__construct();
 }
Beispiel #3
0
 function __construct()
 {
     parent::__construct();
     $this->load->helper('url');
 }