我们有这样的事情,例如:
$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表?