return array( /* ... */ 'profiling' => array( 'mode' => 'bar', ), )
return array( /* ... */ 'profiling' => array( 'hotkey' => 'ctrl+alt+c', ), )
Configuring ------------ ```php return array( /* ... */ 'profiling' => array( // Whether to enable profiling defaults to false 'tabs' => array( // An array of tab classes to display, in order. Implementing this will prevent other packages' profiler tabs from automatically appearing and you will have to add them to this array manually. 'FuelPHProfiler\Tab\Info', // Displays PHP, App, FuelPHP version and env in summary. Displays searchable result of phpinfo() in content. ...
function get_template() { return PKGPATH."/FuelPHProfiler/views/".$this->template; }
return array( /* ... */ 'profiling' => array( 'views' => array ( 'FuelPHProfiler\Tab\Info' => 'path/to/replacement/template.php', ) ), /* ... */ );
'Fuel\\Core\\Profiler' => __DIR__.'/core_replacement.php',This file, core_replacement.php, is missing. Error showed up when I enabled DB profiling.
'Fuel\\Core\\Profiler' => __DIR__.'/fuelcoreprofiler.php',It all works now.
It looks like you're new here. If you want to get involved, click one of these buttons!