AuthManagerAdmin

It will be nice if there is an authmanager Admin like the crud.

I can make it, but i need some guidance…

Sebas

We are thinking about implementing a web-based yiic tool, which can be extended with features like managing RBAC, etc. This is set for 1.1 release.

OK, I could start doing it now, because i need it. if you have some requirements, i could do it like you want and add it as an extension.

There's no requirement from my side since I haven't started this work yet. You may work on this subsystem first, and when it is ready, I can incorporate it into the new tool with suitable modifications.

I was starting, and see that the controller must extends from CExtController.

Where did the framework find this file? In Controllers? Is there another way to say where the controllers are in the app config?

Thanks

Sebas

See http://www.yiiframew…use#controller

I was doing this, but i can't find any function

CAuthItem::getAuthorizedUsers() that return all the users that have this assignament. Is there any function that i wasn't see?

If not, are you going to create this function??

Thanks

Sebas

Could you create a ticket for this?

Sure, ticket was created!

Thanks

http://code.google.c…es/detail?id=78

Another question:

I was creating all this with a CExtController. How do i create the form models? Just in the same file?? or is there another way to import the files from an extension and to check the formmodel exist?

Place each form class in a separate file.

You should prepare a unique for your extension.

Because extensions are supposed to be installed under protected/extensions, you can use path alias to import your model classes when needed. For example:

Yii::import('application.extensions.authgui.models.MyModel');

Ok, i'll do like this, i will add comments about this too.