Skip to content

Instantly share code, notes, and snippets.

@walkerdigital
Last active October 22, 2016 22:48
Show Gist options
  • Save walkerdigital/d94aabdfad94091f65322b656d9aac06 to your computer and use it in GitHub Desktop.
Save walkerdigital/d94aabdfad94091f65322b656d9aac06 to your computer and use it in GitHub Desktop.
Codeigniter - Default Controller Construct
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