Skip to content

Instantly share code, notes, and snippets.

@richlove1
Created November 23, 2011 15:19
Show Gist options
  • Save richlove1/1388938 to your computer and use it in GitHub Desktop.
Save richlove1/1388938 to your computer and use it in GitHub Desktop.
Load FirePHP
<?php
/**
* Most controllers in CloudEngine should be extended from this one.
*
* @copyright 2009, 2010 The Open University. See CREDITS.txt
* @license GNU General Public License version 2. See LICENCE.txt
* @package
*/
class MY_Controller extends Controller {
public function MY_Controller () {
parent::Controller();
$this->load->library('firephp');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment