active = false; $this->groups = new ArrayCollection(); } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set mail * * @param string $mail * * @return User */ public function setMail($mail) { $this->mail = $mail; return $this; } /** * Get mail * * @return string */ public function getMail() { return $this->mail; } /** * Set pseudonym * * @param string $pseudonym * * @return User */ public function setPseudonym($pseudonym) { $this->pseudonym = $pseudonym; return $this; } /** * Get pseudonym * * @return string */ public function getPseudonym() { return $this->pseudonym; } /** * Set forename * * @param string $forename * * @return User */ public function setForename($forename) { $this->forename = $forename; return $this; } /** * Get forename * * @return string */ public function getForename() { return $this->forename; } /** * Set surname * * @param string $surname * * @return User */ public function setSurname($surname) { $this->surname = $surname; return $this; } /** * Get surname * * @return string */ public function getSurname() { return $this->surname; } /** * Set password * * @param string $password * * @return User */ public function setPassword($password) { $this->password = $password; return $this; } /** * Get password * * @return string */ public function getPassword() { return $this->password; } /** * Set active * * @param bool $active * * @return User */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return bool */ public function getActive() { return $this->active; } /** * Set created * * @param \DateTime $created * * @return User */ public function setCreated($created) { $this->created = $created; return $this; } /** * Get created * * @return \DateTime */ public function getCreated() { return $this->created; } /** * Set updated * * @param \DateTime $updated * * @return User */ public function setUpdated($updated) { $this->updated = $updated; return $this; } /** * Get updated * * @return \DateTime */ public function getUpdated() { return $this->updated; } /** * Set title */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title */ public function getTitle() { return $this->title; } /** * Add group * * @param \Rapsys\UserBundle\Entity\Group $group * * @return User */ public function addGroup(Group $group) { $this->groups[] = $group; return $this; } /** * Remove group * * @param \Rapsys\UserBundle\Entity\Group $group */ public function removeGroup(Group $group) { $this->groups->removeElement($group); } /** * Get groups * * @return \Doctrine\Common\Collections\Collection */ public function getGroups() { return $this->groups; } public function getRoles() { $roles = [ 'ROLE_USER' ]; foreach($this->groups->toArray() as $group) { $roles[] = $group->getRole(); } return array_unique($roles); } public function getSalt() { //No salt required with bcrypt return null; } public function getUsername() { return $this->mail; } public function eraseCredentials() { } public function serialize() { return serialize(array( $this->id, $this->mail, $this->password, $this->active, $this->created, $this->updated )); } public function unserialize($serialized) { list( $this->id, $this->mail, $this->password, $this->active, $this->created, $this->updated ) = unserialize($serialized); } //XXX: was from vendor/symfony/security-core/User/AdvancedUserInterface.php, see if it's used anymore public function isEnabled() { return $this->active; } }