1
0
Fork 0
mirror of https://github.com/Oreolek/oreolek.ru.git synced 2024-04-29 15:49:24 +03:00

Kohana Debug Toolbar

This commit is contained in:
Alexander Yakovlev 2013-05-08 12:49:02 +07:00
parent e9667abe6b
commit 65b78e5205
4 changed files with 17 additions and 12 deletions

3
.gitmodules vendored
View file

@ -19,3 +19,6 @@
[submodule "modules/kostache"]
path = modules/kostache
url = git@github.com:zombor/KOstache.git
[submodule "modules/debug-toolbar"]
path = modules/debug-toolbar
url = git://github.com/biakaveron/debug-toolbar.git

View file

@ -106,15 +106,16 @@ Cookie::$salt = 'Dz75cE_TgeDXvo2';
* Enable modules. Modules are referenced by a relative or absolute path.
*/
Kohana::modules(array(
'auth' => MODPATH.'auth', // Basic authentication
// 'cache' => MODPATH.'cache', // Caching with multiple backends
// 'codebench' => MODPATH.'codebench', // Benchmarking tool
'database' => MODPATH.'database', // Database access
// 'image' => MODPATH.'image', // Image manipulation
'orm' => MODPATH.'orm', // Object Relationship Mapping
// 'unittest' => MODPATH.'unittest', // Unit testing
'markdown' => MODPATH.'markdown', // Markdown module
'less' => MODPATH.'less', // LEaner CSS
'auth' => MODPATH.'auth', // Basic authentication
'database' => MODPATH.'database', // Database access
'orm' => MODPATH.'orm', // Object Relationship Mapping
'markdown' => MODPATH.'markdown', // Markdown module
'less' => MODPATH.'less', // LEaner CSS
'debug-toolbar' => MODPATH.'debug-toolbar', // Debug toolbar
// 'cache' => MODPATH.'cache', // Caching with multiple backends
// 'codebench' => MODPATH.'codebench', // Benchmarking tool
// 'image' => MODPATH.'image', // Image manipulation
// 'unittest' => MODPATH.'unittest', // Unit testing
));
/**

View file

@ -107,6 +107,6 @@ require APPPATH.'bootstrap'.EXT;
* If no source is specified, the URI will be automatically detected.
*/
echo Request::factory()
->execute()
->send_headers()
->body();
->execute()
->send_headers()
->body();

1
modules/debug-toolbar Submodule

@ -0,0 +1 @@
Subproject commit dc96821f2c7a6e2894d652733dbded5f2782f70e