Exemple #1
0
 public function after()
 {
     $firebugEnabled = ProfilerToolbar::cfg('firebug.enabled');
     $firebugShowEverywhere = ProfilerToolbar::cfg('firebug.showEverywhere');
     if ($this->request->is_initial() && $firebugEnabled && $firebugShowEverywhere) {
         ProfilerToolbar::firebug();
     }
 }
 public function after()
 {
     if ($this->request->is_initial() && ProfilerToolbar::cfg('firebug.enabled') && ProfilerToolbar::cfg('firebug.showEverywhere')) {
         ProfilerToolbar::firebug();
     }
 }