vote up 0 vote down star

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.

flag

3 Answers

vote up 1 vote down check

One solution would be extend a common BaseClass Controller for every class authenticated.

This way you can write once.

link|flag
Yes, I can, but I think module can contain logic for managing its controllers, otherwise I don't know the sense of module. – YS-PRO Oct 23 at 10:18
vote up 0 vote down

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/

link|flag
vote up 1 vote down

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.

class ExtendedController
{
    public function rules()
    {
        return array_merge(parent::rules(), array(
           // your rules
        ));
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.