Commit daea5fee authored by Dayle Rees's avatar Dayle Rees

changed anbu to load automatically at end of request- taylors idea

parent 8d16ce8d
......@@ -3,6 +3,19 @@
return array(
/*
|--------------------------------------------------------------------------
| Enable Anbu
|--------------------------------------------------------------------------
|
| This will cause anbu to be rendered on every request, if you would prefer
| to enable anbu in your templates manually, simply add Anbu::render();
| after the <body> tag.
|
*/
'enable' => true,
/*
|--------------------------------------------------------------------------
| Show the LOG tab.
......
......@@ -88,7 +88,6 @@
</style>
</head>
<body>
<?php Anbu::render(); ?>
<div id="main">
<h1>Welcome To Laravel</h1>
......
......@@ -3,6 +3,7 @@
use Laravel\View;
use Laravel\File;
use Laravel\Config;
use Laravel\Event;
/**
* Anbu, the light weight profiler for Laravel.
......@@ -92,6 +93,14 @@ class Anbu {
// modify them
$listener = Config::get('anbu.event_listeners');
$listener();
// echo anbu on laravel.done if enabled
if(Config::get('anbu.enable'))
{
Event::listen('laravel.done', function() {
Anbu::render();
});
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment