/**
  *
  * @package     application
  * @category    controller
  * @author      Binalie Liyanage 
  *@method name  constructor
  *@desciption   constructor of view all issues controller
  */
 public function __construct()
 {
     parent::__construct();
     //load the model class of view all issues controller
     $this->load->model("View_all_issues_model");
     //load the model class of create issue controller
     $this->load->model("Create_issue_model");
 }
Пример #2
0
 /**
  * Constructor withe the required library classes loaded
  */
 public function __construct()
 {
     parent::__construct();
     //libraries for form validation
     $this->load->helper('form');
     $this->load->helper('security');
     $this->load->helper(array('form', 'url'));
     $this->load->library('form_validation');
     $this->load->library('encrypt');
     //read folder specified
     $this->load->helper('directory');
     //get base url
     $this->load->helper('url');
     //file handling library
     $this->load->helper("file");
 }
Пример #3
0
 /**
  * Constructor withe the required library classes loaded
  */
 public function __construct()
 {
     parent::__construct();
     //libraries for form validation
     $this->load->helper('form');
     $this->load->helper('security');
     $this->load->helper(array('form', 'url'));
     $this->load->library('form_validation');
     $this->load->library('encrypt');
     //load the email configuration class
     $this->load->library('email_config');
     //file handling library
     $this->load->helper("file");
     //get base url
     $this->load->helper('url');
     //retain session data
     $this->load->library('session');
 }
Пример #4
0
 /**
  * @author : Roledene
  * Type : Constructor
  * Name : __construct
  * Description : this is the default construtor of User class
  */
 public function __construct()
 {
     parent::__construct();
 }
Пример #5
0
 public function __constructor()
 {
     parent::__constructor();
     $this->load->model('user_m');
 }
Пример #6
0
 /**
  *
  * @package     application
  * @category    controller
  * @author      Binalie Liyanage 
  *@method name  constructor
  *@desciption   constructor of issue creation controller
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->model('Create_issue_model');
 }
Пример #7
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('project_m');
 }
Пример #8
0
 public function __construct()
 {
     parent::__construct();
     $this->load->helper('url');
 }
Пример #9
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('chart_model');
 }
 /**
  *
  * @package     application
  * @category    controller
  * @author      Binalie Liyanage 
  *@method name  constructor
  *@desciption   constructor of view issue details controller
  */
 public function __construct()
 {
     parent::__construct();
     //load the model class
     $this->load->model("View_issue_details_model");
 }