Created
June 18, 2011 17:35
-
-
Save Javlopez/1033303 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//............. | |
/** | |
* 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 | |
'email' => MODPATH.'email', // Email module | |
// 'userguide' => MODPATH.'userguide', // User guide and API documentation | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment