Skip to content

Instantly share code, notes, and snippets.

@Javlopez
Created June 18, 2011 17:35
Show Gist options
  • Save Javlopez/1033303 to your computer and use it in GitHub Desktop.
Save Javlopez/1033303 to your computer and use it in GitHub Desktop.
<?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