我们如何更新Yii RBAC表中的授权项?

时间:2014-09-06 16:41:29

标签: yii

我们有这样的事情,例如:

$auth=Yii::app()->authManager;

$auth->createOperation('createPost','create a post');
$auth->createOperation('readPost','read a post');

$bizRule='return Yii::app()->user->id==$params["post"]->authID;';
$task=$auth->createTask('updateOwnPost','update a post by author himself',$bizRule);
$task->addChild('updatePost');

$role=$auth->createRole('reader');
$role->addChild('readPost');

然后我们运行,我们填充数据库。大。

我们说我发现了一些问题,我需要调整代码。

有没有办法以编程方式更新RBAC Yii表?

0 个答案:

没有答案