Modules Implementation

Hello,

I am working application where i wants to use modules. Have few questions:

  1. Will RBAC works the same way?

  2. Can module have access control?

  3. Can i have module to control rest modules?

Modules are exactly same applications as the main one. It’s just grouping some components like controllers, models and views together.

You could try to make them better separated to easily swap them between projects, that is modules should not depend on other modules or main app. But it’s just a design decision you can make, it’s not a requirement.

Thanks nineinchnick