anbu.php 1.8 KB

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