hi i'm new to kohana when i'm trying to use kohana pagination module i got error like this
ErrorException [ Fatal Error ]: Class 'Pagination' not found
later i look in bootstrap
file then there is no Pagination
module in Kohana::modules()
my bootstrap file is like this
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
'userguide' => MODPATH.'userguide', // User guide and API documentation
));
where can i get module and how to add it and enable ???
please give some clarity
thanks in advance