getGroups() public method

Get groups
public getGroups ( ) : array
return array of Newscoop\Entity\User\Group
Ejemplo n.º 1
0
 /**
  * Save staff
  *
  * @param Newscoop\Entity\User\Staff $staff
  * @param array $values
  * @return void
  */
 public function save(Staff $staff, array $values)
 {
     $em = $this->getEntityManager();
     // set groups
     $groups = $staff->getGroups();
     $groups->clear();
     if (!empty($values['groups'])) {
         foreach ($values['groups'] as $groupId) {
             $group = $em->getReference('Newscoop\\Entity\\User\\Group', (int) $groupId);
             $groups->add($group);
         }
     }
     // try if will be able to manage users
     $acl = \Zend_Registry::get('acl')->getAcl($staff);
     $auth = \Zend_Auth::getInstance();
     if ($auth->getIdentity() == $staff->getId() && !$acl->isAllowed($staff, 'user', 'manage')) {
         throw new \InvalidArgumentException("Can't prevent yourself from managing users");
     }
     // set role
     if ($staff->getId() == NULL) {
         // add
         $role = new Role();
         $em->persist($role);
         $staff->setRole($role);
     }
     parent::save($staff, $values);
 }
 public function getGroups()
 {
     $this->__load();
     return parent::getGroups();
 }