Skip to content

Instantly share code, notes, and snippets.

@techies23
Created February 1, 2016 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techies23/16df09dc9be7bdc57026 to your computer and use it in GitHub Desktop.
Save techies23/16df09dc9be7bdc57026 to your computer and use it in GitHub Desktop.
MY_CONTROLLER
<?php
class MY_Controller extends CI_Controller {
public $data = array();
function __construct() {
parent::__construct();
$this->data['site_title'] = config_item('site_name');
$this->load->helper('language');
$this->data['errors'] = array();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment