Reputation: 49
I would like to know about modules in CodeIgniter, and where can I learn how to develop modules?
Upvotes: 0
Views: 684
Reputation: 62392
As far as Codeigniter (out of the box) is concerned, Modules
in terms of HMVC patterning, do not exist.
Codeigniter does have a package
system (As part of the loader class) that does allow you to use third party "packages" in a segregated directory. But make sure to note that packages are not the same as modules.
If you are interested in using HMVC modules in Codeigniter, there are some third party ways to accomplish this.
Upvotes: 2