本文整理匯總了PHP中sfGuardGroupPeer::retrieveByName方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfGuardGroupPeer::retrieveByName方法的具體用法?PHP sfGuardGroupPeer::retrieveByName怎麽用?PHP sfGuardGroupPeer::retrieveByName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sfGuardGroupPeer
的用法示例。
在下文中一共展示了sfGuardGroupPeer::retrieveByName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: grantProjectGroupPermission
public function grantProjectGroupPermission($group_name, $permission_name)
{
$permission = sfGuardPermissionPeer::retrieveByName($this->getUuid() . '-' . $permission_name);
$group = sfGuardGroupPeer::retrieveByName($this->getUuid() . '-' . $group_name);
if ($permission == null) {
sfContext::getInstance()->getLogger()->info('permission not found: [' . $this->getUuid() . $permission_name . ']');
return false;
} elseif ($group == null) {
sfContext::getInstance()->getLogger()->info('group not found: [' . $this->getUuid() . $group_name . ']');
return false;
}
// TODO: make sure that the group permission name does not already exist
$groupPermission = new sfGuardGroupPermission();
$groupPermission->setGroupId($group->getPrimaryKey());
$groupPermission->setPermissionId($permission->getId());
$groupPermission->save();
sfContext::getInstance()->getLogger()->info('group permission saved: [' . $this->getUuid() . $group_name . ']:[' . $this->getUuid() . $permission_name . ']');
}
示例2: addGroupByName
public function addGroupByName($name, $con = null)
{
$group = sfGuardGroupPeer::retrieveByName($name);
if (!$group) {
throw new Exception(sprintf('The group "%s" does not exist.', $name));
}
$ug = new sfGuardUserGroup();
$ug->setsfGuardUser($this);
$ug->setGroupId($group->getId());
$ug->save($con);
}
示例3: executeChangeRole
public function executeChangeRole($request)
{
$this->form = new ChangeRoleForm(array(), array('actual_user' => $this->getUser()));
$values = $request->getParameter($this->form->getName());
if (isset($values['roles']) && !empty($values['roles'])) {
$this->getUser()->clearCredentials();
$new_login_role = sfGuardGroupPeer::retrieveByPK($values['roles']);
$this->getUser()->setLoginRole($new_login_role->getName());
//die(var_dump($this->getUser()->getAttribute('login_role')));
$this->getUser()->addCredentials(sfGuardPermissionPeer::retrieveAllCredentialsForARole(sfGuardGroupPeer::retrieveByName($this->getUser()->getLoginRole())));
}
return $this->redirect("mainBackend/index");
}