Last active
October 22, 2016 22:48
-
-
Save walkerdigital/d94aabdfad94091f65322b656d9aac06 to your computer and use it in GitHub Desktop.
Codeigniter - Default Controller Construct
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function __construct() | |
{ | |
parent::__construct(); | |
$this->load->model(array()); | |
$this->load->helper(array()); | |
$this->load->library(array()); | |
$this->data = []; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment