Messages::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        parent::__construct();
        //  calls the constructor
        $this->load->library('pagination');
        $this->load->model('Messages_model');
        $this->load->model('Staffs_model');
        $this->lang->load('messages');
    }

Usage Example

Example #1
0
 public function __construct($name, $display_name, $path)
 {
     parent::__construct($name, $display_name, $path);
     $this->_smartyPath = PATH_SMARTY_TPL . '/web' . $path;
 }
All Usage Examples Of Messages::__construct