anbu.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Show the LOG tab.
  6. |--------------------------------------------------------------------------
  7. |
  8. | Display a tog showing all entries made using the Laravel Log class.
  9. |
  10. */
  11. 'tab_logs' => true,
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Show the QUERIES tab.
  15. |--------------------------------------------------------------------------
  16. |
  17. | Display a tab showing all queries performed by the Database layer.
  18. |
  19. */
  20. 'tab_queries' => true,
  21. /*
  22. |--------------------------------------------------------------------------
  23. | Include jQuery?
  24. |--------------------------------------------------------------------------
  25. |
  26. | Anbu needs the jQuery JavaScript framework to function, if you are already
  27. | using jQuery in your templates, set this value to false.
  28. |
  29. */
  30. 'include_jquery' => true,
  31. /*
  32. |--------------------------------------------------------------------------
  33. | Event Listeners
  34. |--------------------------------------------------------------------------
  35. |
  36. | These are the Laravel event listeners, feel free to modify them to use
  37. | a different data source, or include more if necessary.
  38. |
  39. */
  40. 'event_listeners' => function()
  41. {
  42. // pass laravel log entries to anbu
  43. Event::listen('laravel.log', 'Anbu::log');
  44. // pass executed SQL queries to anbu
  45. Event::listen('laravel.query', 'Anbu::sql');
  46. },
  47. );