Skip to content
Derek Jones edited this page Jul 4, 2012 · 6 revisions

Category:Core::Profiler

[h3]Tips and tricks[/h3] [h4]The profiler like the scaffolding feature[/h4]

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);
  }
}
Clone this wiki locally