コード例 #1
0
 public function __construct()
 {
     parent::__construct();
     $this->imagedir = WEB_ROOT . "/imagetmp/" . date("ymd") . "/";
     $this->imagebaseurl = HOST_NAME . "/imagetmp/" . date("ymd") . "/";
     $this->res = new resobjobj();
 }
コード例 #2
0
ファイル: utest.php プロジェクト: robinmin/swale
 /**
  * __construct : ctor
  * @param string $name model name
  */
 public function __construct($name = '')
 {
     parent::__construct();
     $this->modelname = $name;
     $this->modelname_short = basename($name, '.php');
     $this->messages = array();
     $this->_method_name = '';
 }
コード例 #3
0
ファイル: Student_ctrl.php プロジェクト: eunovate/AMS
 function __construct()
 {
     parent::__construct();
     $this->load->model('Student_mdl', 'model');
 }
コード例 #4
0
ファイル: Notification_ctrl.php プロジェクト: eunovate/AMS
 function __construct()
 {
     parent::__construct();
     $this->load->model('Notification_mdl', 'model');
 }
コード例 #5
0
ファイル: Login_ctrl.php プロジェクト: eunovate/AMS
 public function __construct()
 {
     parent::__construct();
     $this->headers = apache_request_headers();
     $this->load->model('Login_mdl');
 }
コード例 #6
0
ファイル: Course_ctrl.php プロジェクト: eunovate/AMS
 function __construct()
 {
     parent::__construct();
     $this->headers = apache_request_headers();
     $this->load->model('Course_mdl', 'model');
 }
コード例 #7
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('Roles_model', 'model');
 }
コード例 #8
0
ファイル: png_ctrl.class.php プロジェクト: swordphp/devtools
 public function __construct()
 {
     parent::__construct();
 }
コード例 #9
0
ファイル: Behaviour_ctrl.php プロジェクト: eunovate/AMS
 function __construct()
 {
     parent::__construct();
     $this->load->model('Behaviour_mdl', 'model');
 }
コード例 #10
0
 function __construct()
 {
     parent::__construct();
     $this->load->helper('url');
     $this->load->model('Project_model', 'model');
 }
コード例 #11
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('NavigViewRight_model', 'model');
 }
コード例 #12
0
ファイル: Vehicle_ctrl.php プロジェクト: eunovate/AMS
 function __construct()
 {
     parent::__construct();
     $this->load->model('Vehicle_mdl', 'model');
 }