kmith
kmith

Reputation: 49

What are modules in CodeIgniter?

I would like to know about modules in CodeIgniter, and where can I learn how to develop modules?

Upvotes: 0

Views: 684

Answers (1)

jondavidjohn
jondavidjohn

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

Related Questions