I created module for admin specific operations. I don't want to write the same access rules for every controller, it's not pretty coding style.
|
|
One solution would be extend a common BaseClass Controller for every class authenticated. This way you can write once. |
||
|
|
|
Ismael and pestaa choices are very good even fast to implement, nevertheless I always recommend more powerful alternatives like RBAC model. You can find a very good GUI for Yii RBAC in http://code.google.com/p/srbac/ |
||
|
|
|
|
Module is like a sub-application with separated directory structure. It is not responsible for filtering or checking for permission. The only vital solution is to define a new abstraction as Ismael proposed.
|
||
|
|
