Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcelorodrigo/developerbar
Developer Bar (inspired on Kohana Debug Toolbar) for Kohana 3+ PHP
https://github.com/marcelorodrigo/developerbar
kohana php toolbar
Last synced: 9 days ago
JSON representation
Developer Bar (inspired on Kohana Debug Toolbar) for Kohana 3+ PHP
- Host: GitHub
- URL: https://github.com/marcelorodrigo/developerbar
- Owner: marcelorodrigo
- Created: 2011-04-26T00:26:53.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2022-10-18T12:03:27.000Z (about 2 years ago)
- Last Synced: 2024-08-02T08:07:49.721Z (4 months ago)
- Topics: kohana, php, toolbar
- Language: PHP
- Homepage:
- Size: 118 KB
- Stars: 14
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### About
Now updated to work with Kohana 3.3.1
Developer Bar displays useful debug information about your Kohana Application
This module is originally based on "Kohana Debug Toolbar" for Kohana v2.3 (by Aaron Forsander).### Usage
* Checkout or download project and put into a folder called 'developerbar' under modules
* Enable Module - see
* IMPORTANT: This module is not loaded automatically whey your project are in a production environment - see~~~
Kohana::modules(array(
...
'developerbar' => MODPATH.'developerbar', // Developer Bar
...
));
~~~### Force Enable/Disable
DeveloperBar attemps to enable/disabled ourself conform your environment settings.
If you want *force* enable or disable DeveloperBar, simple use in any point:~~~
// Force enable
Developerbar::factory()->enabled(true);// Force disable
Developerbar::factory()->enabled(false);
~~~-------
No more changes on *bootstrap.php* or *index.php* to run a simple toolbar with debug information :)Feel free to submit improvements or bug fixes.