Skip to content

Instantly share code, notes, and snippets.

@Javlopez
Created November 10, 2011 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Javlopez/1354170 to your computer and use it in GitHub Desktop.
Save Javlopez/1354170 to your computer and use it in GitHub Desktop.
Modules enabled in Bootstrap
<?php
//more code
/**
* 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
'A1' => MODPATH.'a1', //A1 authentication
'database' => MODPATH.'database', // Database access
// 'image' => MODPATH.'image', // Image manipulation
'orm' => MODPATH.'orm', // Object Relationship Mapping
// 'unittest' => MODPATH.'unittest', // Unit testing
// '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