What are modules in CodeIgniter?
I would like to know about modules in CodeI开发者_开发技巧gniter, and where can I learn how to develop modules?
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.
精彩评论