Skip to content

Commit

Permalink
Added all the default modules, so that the user guide is complete
Browse files Browse the repository at this point in the history
  • Loading branch information
Woody Gilk committed Apr 24, 2010
1 parent a866ef9 commit ec1659c
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,18 @@
[submodule "modules/userguide"]
path = modules/userguide
url = git://github.com/kohana/userguide.git
[submodule "modules/auth"]
path = modules/auth
url = git://github.com/kohana/auth.git
[submodule "modules/codebench"]
path = modules/codebench
url = git://github.com/kohana/codebench.git
[submodule "modules/image"]
path = modules/image
url = git://github.com/kohana/image.git
[submodule "modules/pagination"]
path = modules/pagination
url = git://github.com/kohana/pagination.git
[submodule "modules/orm"]
path = modules/orm
url = git://github.com/kohana/orm.git
5 changes: 5 additions & 0 deletions application/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@
* Enable modules. Modules are referenced by a relative or absolute path.
*/
Kohana::modules(array(
'auth' => MODPATH.'auth', // Basic authentication
'codebench' => MODPATH.'codebench', // Benchmarking tool
'database' => MODPATH.'database', // Database access
'image' => MODPATH.'image', // Image manipulation
'orm' => MODPATH.'orm', // Object Relationship Mapping
'pagination' => MODPATH.'pagination', // Paging of results
'userguide' => MODPATH.'userguide', // User guide and API documentation
));

Expand Down
1 change: 1 addition & 0 deletions modules/auth
Submodule auth added at 4720c0
1 change: 1 addition & 0 deletions modules/codebench
Submodule codebench added at d2677e
1 change: 1 addition & 0 deletions modules/image
Submodule image added at 52010f
1 change: 1 addition & 0 deletions modules/orm
Submodule orm added at bc1dba
1 change: 1 addition & 0 deletions modules/pagination
Submodule pagination added at e0621c

0 comments on commit ec1659c

Please sign in to comment.