forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 4
Profiler
Derek Jones edited this page Jul 5, 2012
·
6 revisions
Using this code would open the profiler whenever 'profiler' is used in the url. Handy for debugging. Adapt for your own purposes. E.g. you might want to change the word 'profiler' into something else like the magic word used for the scaffolding feature.
function Mycontroller(){
parent::controller();
if(in_array('profiler', $this->uri->segment_array())){
$this->output->enable_profiler(True);
}
}