业务规则集是,
return isset($params["profile"]) && $params["profile"]->isUserinRole("manager");
我正在使用组件显示用户菜单,现在在此组件视图中我想要的选项只有'经理'可以看到并申请。
我尝试过这样做但它没有工作
Yii::app()->user->checkAccess('manager', array('profile'=>Profile::model())))
请纠正我,谢谢。