Hi guys! It's me again.
I like the Profiler. It gives me the information I need like benchmarks, queries, etc.
But honestly, I don't like how it shows up in my website. Well, at least for me.
So, I came up with this idea of returning an array from the Profiler. So I can create a view file named profiler_stats.php then load the profiler arrays "automatically" ( without passing it in the 2nd param in $this->load->view() ).
Or maybe some pseudovariables:
PHP Code:
Like this:
{time_elapsed}
{memory_usage}
For Profiler:
PHP Code:
{profiler_benchmarks}
{profiler_query}
{profiler_get_request}
{profiler_post_request}
...
Maybe I can do this using hooks, but HOW? Is it possible?
Thanks for the help.