Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/src/Chamilo/UserBundle/Entity/User.php

1506 lines
31 KiB

<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\UserBundle\Entity;
use Chamilo\CoreBundle\Entity\UserFieldValues;
use Sonata\UserBundle\Entity\BaseUser as BaseUser;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Validator\Mapping\ClassMetadata;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Chamilo\CoreBundle\Component\Auth;
use Doctrine\ORM\Event\LifecycleEventArgs;
use FOS\MessageBundle\Model\ParticipantInterface;
use Chamilo\AdminThemeBundle\Model\UserInterface as ThemeUser;
//use Vich\UploaderBundle\Mapping\Annotation as Vich;
use Symfony\Component\HttpFoundation\File\File;
use Application\Sonata\MediaBundle\Entity\Media;
use Chamilo\UserBundle\Model\UserInterface as UserInterfaceModel;
use Doctrine\Common\Collections\Collection;
use Sylius\Component\Attribute\Model\AttributeValueInterface as BaseAttributeValueInterface;
use Sylius\Component\Variation\Model\OptionInterface as BaseOptionInterface;
use Sylius\Component\Variation\Model\VariantInterface as BaseVariantInterface;
use Chamilo\CoreBundle\Entity\ExtraFieldValues;
/**
* @ORM\HasLifecycleCallbacks
* @ORM\Table(name="user")
* Vich\Uploadable
* @UniqueEntity("username")
* @ORM\Entity(repositoryClass="Chamilo\UserBundle\Repository\UserRepository")
* @ORM\AttributeOverrides({
* @ORM\AttributeOverride(name="email",
* column=@ORM\Column(
* name="email",
* type="string",
* length=255,
* unique=false
* )
* ),
* @ORM\AttributeOverride(name="emailCanonical",
* column=@ORM\Column(
* name="emailCanonical",
* type="string",
* length=255,
* unique=false
* )
* )
* })
*
*/
class User extends BaseUser implements ParticipantInterface, ThemeUser
{
const COURSE_MANAGER = 1;
const TEACHER = 1;
const SESSION_ADMIN = 3;
const DRH = 4;
const STUDENT = 5;
const ANONYMOUS = 6;
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @var integer
*
* @ORM\Column(name="user_id", type="integer", nullable=true)
*/
protected $userId;
/**
* @var string
*
* @ORM\Column(name="lastname", type="string", length=60, precision=0, scale=0, nullable=true, unique=false)
*/
//protected $lastname;
/**
* @var string
*
* @ORM\Column(name="firstname", type="string", length=60, precision=0, scale=0, nullable=true, unique=false)
*/
//protected $firstname;
/**
* @var string
*
* @ORM\Column(name="password", type="string", length=50, precision=0, scale=0, nullable=false, unique=false)
*/
//protected $password;
/**
* @var string
*
* @ORM\Column(name="auth_source", type="string", length=50, precision=0, scale=0, nullable=true, unique=false)
*/
private $authSource;
/**
* @var boolean
*
* @ORM\Column(name="status", type="integer", nullable=true)
*/
private $status;
/**
* @var string
*
* @ORM\Column(name="official_code", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
*/
private $officialCode;
/**
* @var string
*
* @ORM\Column(name="phone", type="string", length=30, precision=0, scale=0, nullable=true, unique=false)
*/
//protected $phone;
/**
* Vich\UploadableField(mapping="user_image", fileNameProperty="picture_uri")
*
* note This is not a mapped field of entity metadata, just a simple property.
*
* @var File $imageFile
*/
protected $imageFile;
/**
* @var string
* @ORM\Column(name="picture_uri", type="string", length=250, precision=0, scale=0, nullable=true, unique=false)
*/
//private $pictureUri;
/**
* @ORM\ManyToOne(targetEntity="Application\Sonata\MediaBundle\Entity\Media", cascade={"all"} )
* @ORM\JoinColumn(name="picture_uri", referencedColumnName="id")
*/
protected $pictureUri;
/**
* @var integer
*
* @ORM\Column(name="creator_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
*/
private $creatorId;
/**
* @var string
*
* @ORM\Column(name="competences", type="text", precision=0, scale=0, nullable=true, unique=false)
*/
private $competences;
/**
* @var string
*
* @ORM\Column(name="diplomas", type="text", precision=0, scale=0, nullable=true, unique=false)
*/
private $diplomas;
/**
* @var string
*
* @ORM\Column(name="openarea", type="text", precision=0, scale=0, nullable=true, unique=false)
*/
private $openarea;
/**
* @var string
*
* @ORM\Column(name="teach", type="text", precision=0, scale=0, nullable=true, unique=false)
*/
private $teach;
/**
* @var string
*
* @ORM\Column(name="productions", type="string", length=250, precision=0, scale=0, nullable=true, unique=false)
*/
private $productions;
/**
* @var integer
*
* @ORM\Column(name="chatcall_user_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
*/
private $chatcallUserId;
/**
* @var \DateTime
*
* @ORM\Column(name="chatcall_date", type="datetime", precision=0, scale=0, nullable=true, unique=false)
*/
private $chatcallDate;
/**
* @var string
*
* @ORM\Column(name="chatcall_text", type="string", length=50, precision=0, scale=0, nullable=true, unique=false)
*/
private $chatcallText;
/**
* @var string
*
* @ORM\Column(name="language", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
*/
private $language;
/**
* @var \DateTime
*
* @ORM\Column(name="registration_date", type="datetime", precision=0, scale=0, nullable=false, unique=false)
*/
private $registrationDate;
/**
* @var \DateTime
*
* @ORM\Column(name="expiration_date", type="datetime", precision=0, scale=0, nullable=true, unique=false)
*/
private $expirationDate;
/**
* @var boolean
*
* @ORM\Column(name="active", type="boolean", precision=0, scale=0, nullable=false, unique=false)
*/
private $active;
/**
* @var string
*
* @ORM\Column(name="openid", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
*/
private $openid;
/**
* @var string
*
* @ORM\Column(name="theme", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
*/
private $theme;
/**
* @var integer
*
* @ORM\Column(name="hr_dept_id", type="smallint", precision=0, scale=0, nullable=true, unique=false)
*/
private $hrDeptId;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\CourseRelUser", mappedBy="user")
**/
protected $courses;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CourseBundle\Entity\CItemProperty", mappedBy="user")
**/
//protected $items;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\UsergroupRelUser", mappedBy="user")
**/
protected $classes;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CourseBundle\Entity\CDropboxPost", mappedBy="user")
**/
protected $dropBoxReceivedFiles;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CourseBundle\Entity\CDropboxFile", mappedBy="userSent")
**/
protected $dropBoxSentFiles;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\JuryMembers", mappedBy="user")
**/
//protected $jurySubscriptions;
/**
* @ORM\ManyToMany(targetEntity="Chamilo\UserBundle\Entity\Group")
* @ORM\JoinTable(name="fos_user_user_group",
* joinColumns={@ORM\JoinColumn(name="user_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="group_id", referencedColumnName="id")}
* )
*/
protected $groups;
/**
* @ORM\Column(type="string", length=255)
*/
//protected $salt;
private $isActive;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\CurriculumItemRelUser", mappedBy="user")
**/
protected $curriculumItems;
/**
* @ORM\ManyToMany(targetEntity="Chamilo\CoreBundle\Entity\AccessUrl")
* @ORM\JoinTable(
* joinColumns={@ORM\JoinColumn(name="user_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="access_url_id", referencedColumnName="id")}
* )
*/
protected $portals;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\Session", mappedBy="generalCoach")
**/
protected $sessionAsGeneralCoach;
/**
* @var ArrayCollection
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\UserFieldValues", mappedBy="user", orphanRemoval=true, cascade={"persist"})
**/
protected $extraFields;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\Resource\ResourceNode", mappedBy="creator")
**/
protected $resourceNodes;
/**
* @ORM\OneToMany(targetEntity="Chamilo\CoreBundle\Entity\SessionRelCourseRelUser", mappedBy="user", cascade={"persist"})
**/
protected $sessionCourseSubscriptions;
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
//$this->salt = sha1(uniqid(null, true));
$this->isActive = true;
$this->active = 1;
$this->registrationDate = new \DateTime();
$this->courses = new ArrayCollection();
$this->items = new ArrayCollection();
$this->classes = new ArrayCollection();
//$this->roles = new ArrayCollection();
$this->curriculumItems = new ArrayCollection();
$this->portals = new ArrayCollection();
$this->dropBoxSentFiles = new ArrayCollection();
$this->dropBoxReceivedFiles = new ArrayCollection();
//$this->extraFields = new ArrayCollection();
//$this->userId = 0;
//$this->createdAt = new \DateTime();
//$this->updatedAt = new \DateTime();
}
/**
* @return string
*/
public function __toString()
{
return $this->getUsername();
}
/**
* Updates the id with the user_id
* @ORM\PostPersist()
*/
public function postPersist(LifecycleEventArgs $args)
{
//parent::postPersist();
// Updates the user_id field
$user = $args->getEntity();
$this->setUserId($user->getId());
/*$em = $args->getEntityManager();
$em->persist($user);
$em->flush();*/
}
/**
* @param int $userId
*/
public function setId($userId)
{
$this->id = $userId;
}
/**
* @param int $userId
*/
public function setUserId($userId)
{
if (!empty($userId)) {
$this->userId = $userId;
}
}
/**
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getEncoderName()
{
return "legacy_encoder";
}
/**
* @return ArrayCollection
*/
public function getDropBoxSentFiles()
{
return $this->dropBoxSentFiles;
}
/**
* @return ArrayCollection
*/
public function getDropBoxReceivedFiles()
{
return $this->dropBoxReceivedFiles;
}
/**
* @return ArrayCollection
*/
public function getCourses()
{
return $this->courses;
}
/**
* @return array
*/
public static function getPasswordConstraints()
{
return
array(
new Assert\Length(array('min' => 5)),
// Alpha numeric + "_" or "-"
new Assert\Regex(array(
'pattern' => '/^[a-z\-_0-9]+$/i',
'htmlPattern' => '/^[a-z\-_0-9]+$/i')
),
// Min 3 letters - not needed
/*new Assert\Regex(array(
'pattern' => '/[a-z]{3}/i',
'htmlPattern' => '/[a-z]{3}/i')
),*/
// Min 2 numbers
new Assert\Regex(array(
'pattern' => '/[0-9]{2}/',
'htmlPattern' => '/[0-9]{2}/')
)
)
;
}
/**
* @param ClassMetadata $metadata
*/
public static function loadValidatorMetadata(ClassMetadata $metadata)
{
//$metadata->addPropertyConstraint('firstname', new Assert\NotBlank());
//$metadata->addPropertyConstraint('lastname', new Assert\NotBlank());
//$metadata->addPropertyConstraint('email', new Assert\Email());
/*
$metadata->addPropertyConstraint('password',
new Assert\Collection(self::getPasswordConstraints())
);*/
/*$metadata->addConstraint(new UniqueEntity(array(
'fields' => 'username',
'message' => 'This value is already used.',
)));*/
/*$metadata->addPropertyConstraint(
'username',
new Assert\Length(array(
'min' => 2,
'max' => 50,
'minMessage' => 'This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.',
'maxMessage' => 'This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.',
))
);*/
}
/**
* @inheritDoc
*/
public function isEqualTo(UserInterface $user)
{
if (!$user instanceof User) {
return false;
}
/*if ($this->password !== $user->getPassword()) {
return false;
}*/
/*if ($this->getSalt() !== $user->getSalt()) {
return false;
}*/
/*if ($this->username !== $user->getUsername()) {
return false;
}*/
return true;
}
/**
* @return ArrayCollection
*/
public function getPortals()
{
return $this->portals;
}
/**
* @param $portal
*/
public function setPortal($portal)
{
$this->portals->add($portal);
}
/**
* @return ArrayCollection
*/
public function getCurriculumItems()
{
return $this->curriculumItems;
}
/**
* @param $items
*/
public function setCurriculumItems($items)
{
$this->curriculumItems = $items;
}
/**
* @return bool
*/
public function getIsActive()
{
return $this->active == 1;
}
/**
* @return bool
*/
public function isActive()
{
return $this->getIsActive();
}
/**
* @inheritDoc
*/
public function isAccountNonExpired()
{
return true;
/*$now = new \DateTime();
return $this->getExpirationDate() < $now;*/
}
/**
* @inheritDoc
*/
public function isAccountNonLocked()
{
return true;
}
/**
* @inheritDoc
*/
public function isCredentialsNonExpired()
{
return true;
}
/**
* @inheritDoc
*/
public function isEnabled()
{
return $this->getActive() == 1;
}
/**
* @inheritDoc
*/
public function eraseCredentials()
{
}
/**
*
* @return ArrayCollection
*/
/*public function getRolesObj()
{
return $this->roles;
}*/
/**
* Set salt
*
* @param string $salt
*
* @return User
*/
public function setSalt($salt)
{
$this->salt = $salt;
return $this;
}
/**
* Get salt
*
* @return string
*/
public function getSalt()
{
return $this->salt;
}
/**
* @return ArrayCollection
*/
public function getClasses()
{
return $this->classes;
}
/**
*
*/
public function getLps()
{
//return $this->lps;
/*$criteria = Criteria::create()
->where(Criteria::expr()->eq("id", "666"))
//->orderBy(array("username" => "ASC"))
//->setFirstResult(0)
//->setMaxResults(20)
;
$lps = $this->lps->matching($criteria);*/
/*return $this->lps->filter(
function($entry) use ($idsToFilter) {
return $entry->getId() == 1;
});*/
}
/**
* @return string
*/
public function getCompleteName()
{
return $this->lastname .', '. $this->firstname;
}
/**
* Returns the list of classes for the user
* @return string
*/
public function getCompleteNameWithClasses()
{
$classSubscription = $this->getClasses();
$classList = array();
foreach ($classSubscription as $subscription) {
$class = $subscription->getClass();
$classList[] = $class->getName();
}
$classString = !empty($classList) ? ' ['.implode(', ', $classList).']' : null;
return $this->getCompleteName().$classString;
}
/**
* Get userId
*
* @return integer
*/
public function getUserId()
{
return $this->userId;
}
/**
* Set lastname
*
* @param string $lastname
*
* @return User
*/
public function setLastname($lastname)
{
$this->lastname = $lastname;
return $this;
}
/**
* Get lastname
*
* @return string
*/
public function getLastname()
{
return $this->lastname;
}
/**
* Set firstname
*
* @param string $firstname
*
* @return User
*/
public function setFirstname($firstname)
{
$this->firstname = $firstname;
return $this;
}
/**
* Get firstname
*
* @return string
*/
public function getFirstname()
{
return $this->firstname;
}
/**
* Set username
*
* @param string $username
* @return User
*/
public function setUsername($username)
{
$this->username = $username;
return $this;
}
/**
* Get username
*
* @return string
*/
public function getUsername()
{
return $this->username;
}
/**
* 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 authSource
*
* @param string $authSource
* @return User
*/
public function setAuthSource($authSource)
{
$this->authSource = $authSource;
return $this;
}
/**
* Get authSource
*
* @return string
*/
public function getAuthSource()
{
return $this->authSource;
}
/**
* Set email
*
* @param string $email
* @return User
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set status
*
* @param boolean $status
* @return User
*/
public function setStatus($status)
{
$this->status = $status;
return $this;
}
/**
* Get status
*
* @return boolean
*/
public function getStatus()
{
return $this->status;
}
/**
* Set officialCode
*
* @param string $officialCode
* @return User
*/
public function setOfficialCode($officialCode)
{
$this->officialCode = $officialCode;
return $this;
}
/**
* Get officialCode
*
* @return string
*/
public function getOfficialCode()
{
return $this->officialCode;
}
/**
* Set phone
*
* @param string $phone
* @return User
*/
public function setPhone($phone)
{
$this->phone = $phone;
return $this;
}
/**
* Get phone
*
* @return string
*/
public function getPhone()
{
return $this->phone;
}
/**
* Set pictureUri
*
* @param string $pictureUri
* @return User
*/
public function setPictureUri($pictureUri)
{
$this->pictureUri = $pictureUri;
return $this;
}
/**
* Get pictureUri
*
* @return Media
*/
public function getPictureUri()
{
return $this->pictureUri;
}
/**
* Set creatorId
*
* @param integer $creatorId
* @return User
*/
public function setCreatorId($creatorId)
{
$this->creatorId = $creatorId;
return $this;
}
/**
* Get creatorId
*
* @return integer
*/
public function getCreatorId()
{
return $this->creatorId;
}
/**
* Set competences
*
* @param string $competences
* @return User
*/
public function setCompetences($competences)
{
$this->competences = $competences;
return $this;
}
/**
* Get competences
*
* @return string
*/
public function getCompetences()
{
return $this->competences;
}
/**
* Set diplomas
*
* @param string $diplomas
* @return User
*/
public function setDiplomas($diplomas)
{
$this->diplomas = $diplomas;
return $this;
}
/**
* Get diplomas
*
* @return string
*/
public function getDiplomas()
{
return $this->diplomas;
}
/**
* Set openarea
*
* @param string $openarea
* @return User
*/
public function setOpenarea($openarea)
{
$this->openarea = $openarea;
return $this;
}
/**
* Get openarea
*
* @return string
*/
public function getOpenarea()
{
return $this->openarea;
}
/**
* Set teach
*
* @param string $teach
* @return User
*/
public function setTeach($teach)
{
$this->teach = $teach;
return $this;
}
/**
* Get teach
*
* @return string
*/
public function getTeach()
{
return $this->teach;
}
/**
* Set productions
*
* @param string $productions
* @return User
*/
public function setProductions($productions)
{
$this->productions = $productions;
return $this;
}
/**
* Get productions
*
* @return string
*/
public function getProductions()
{
return $this->productions;
}
/**
* Set chatcallUserId
*
* @param integer $chatcallUserId
* @return User
*/
public function setChatcallUserId($chatcallUserId)
{
$this->chatcallUserId = $chatcallUserId;
return $this;
}
/**
* Get chatcallUserId
*
* @return integer
*/
public function getChatcallUserId()
{
return $this->chatcallUserId;
}
/**
* Set chatcallDate
*
* @param \DateTime $chatcallDate
* @return User
*/
public function setChatcallDate($chatcallDate)
{
$this->chatcallDate = $chatcallDate;
return $this;
}
/**
* Get chatcallDate
*
* @return \DateTime
*/
public function getChatcallDate()
{
return $this->chatcallDate;
}
/**
* Set chatcallText
*
* @param string $chatcallText
* @return User
*/
public function setChatcallText($chatcallText)
{
$this->chatcallText = $chatcallText;
return $this;
}
/**
* Get chatcallText
*
* @return string
*/
public function getChatcallText()
{
return $this->chatcallText;
}
/**
* Set language
*
* @param string $language
* @return User
*/
public function setLanguage($language)
{
$this->language = $language;
return $this;
}
/**
* Get language
*
* @return string
*/
public function getLanguage()
{
return $this->language;
}
/**
* Set registrationDate
*
* @param \DateTime $registrationDate
* @return User
*/
public function setRegistrationDate($registrationDate)
{
$this->registrationDate = $registrationDate;
return $this;
}
/**
* Get registrationDate
*
* @return \DateTime
*/
public function getRegistrationDate()
{
return $this->registrationDate;
}
/**
* Set expirationDate
*
* @param \DateTime $expirationDate
* @return User
*/
public function setExpirationDate($expirationDate)
{
if (!empty($expirationDate)) {
$this->expirationDate = $expirationDate;
}
return $this;
}
/**
* Get expirationDate
*
* @return \DateTime
*/
public function getExpirationDate()
{
return $this->expirationDate;
}
/**
* Set active
*
* @param boolean $active
* @return User
*/
public function setActive($active)
{
$this->active = $active;
return $this;
}
/**
* Get active
*
* @return boolean
*/
public function getActive()
{
return $this->active;
}
/**
* Set openid
*
* @param string $openid
* @return User
*/
public function setOpenid($openid)
{
$this->openid = $openid;
return $this;
}
/**
* Get openid
*
* @return string
*/
public function getOpenid()
{
return $this->openid;
}
/**
* Set theme
*
* @param string $theme
* @return User
*/
public function setTheme($theme)
{
$this->theme = $theme;
return $this;
}
/**
* Get theme
*
* @return string
*/
public function getTheme()
{
return $this->theme;
}
/**
* Set hrDeptId
*
* @param integer $hrDeptId
* @return User
*/
public function setHrDeptId($hrDeptId)
{
$this->hrDeptId = $hrDeptId;
return $this;
}
/**
* Get hrDeptId
*
* @return integer
*/
public function getHrDeptId()
{
return $this->hrDeptId;
}
/**
* @return Media
*/
public function getAvatar()
{
return $this->getPictureUri();
}
/**
* @return \DateTime
*/
public function getMemberSince()
{
return $this->registrationDate;
}
/**
* @return bool
*/
public function isOnline()
{
return false;
}
/**
* @return int
*/
public function getIdentifier()
{
return $this->getId();
}
/**
* If manually uploading a file (i.e. not using Symfony Form) ensure an instance
* of 'UploadedFile' is injected into this setter to trigger the update. If this
* bundle's configuration parameter 'inject_on_load' is set to 'true' this setter
* must be able to accept an instance of 'File' as the bundle will inject one here
* during Doctrine hydration.
*
* @param File|\Symfony\Component\HttpFoundation\File\UploadedFile $image
*/
public function setImageFile(File $image)
{
$this->imageFile = $image;
if ($image) {
// It is required that at least one field changes if you are using doctrine
// otherwise the event listeners won't be called and the file is lost
$this->updatedAt = new \DateTime('now');
}
}
/**
* @return File
*/
public function getImageFile()
{
return $this->imageFile;
}
/**
* @param string $imageName
*/
public function setImageName($imageName)
{
$this->imageName = $imageName;
}
/**
* @return string
*/
public function getImageName()
{
return $this->imageName;
}
/**
* @return string
*/
public function getSlug()
{
return $this->getUsername();
}
/**
* @param $slug
* @return User
*/
public function setSlug($slug)
{
return $this->setUsername($slug);
}
/**
* {@inheritdoc}
*/
public function getExtraFields()
{
return $this->extraFields;
}
/**
* {@inheritdoc}
*/
public function setExtraFields($extraFields)
{
$this->extraFields = new ArrayCollection();
foreach ($extraFields as $extraField) {
$this->addExtraFields($extraField);
}
return $this;
}
/**
* {@inheritdoc}
*/
/*public function addExtraFields(ExtraFieldValues $extraFieldValue)
{
$extraFieldValue->setUser($this);
$this->extraFields[] = $extraFieldValue;
return $this;
}*/
/**
* {@inheritdoc}
*/
public function addExtraFields(UserFieldValues $extraFieldValue)
{
//if (!$this->hasExtraField($attribute)) {
$extraFieldValue->setUser($this);
$this->extraFields[] = $extraFieldValue;
//}
return $this;
}
/**
* {@inheritdoc}
*/
public function removeExtraField(ExtraFieldValues $attribute)
{
//if ($this->hasExtraField($attribute)) {
//$this->extraFields->removeElement($attribute);
//$attribute->setUser($this);
//}
return $this;
}
/**
* {@inheritdoc}
*/
/*public function hasExtraField($attribute)
{
if (!$this->extraFields) {
return false;
}
return $this->extraFields->contains($attribute);
}*/
/**
* {@inheritdoc}
*/
public function hasExtraFieldByName($attributeName)
{
foreach ($this->extraFields as $attribute) {
if ($attribute->getName() === $attributeName) {
return true;
}
}
return false;
}
/**
* {@inheritdoc}
*/
public function getExtraFieldByName($attributeName)
{
foreach ($this->extraFields as $attribute) {
if ($attribute->getName() === $attributeName) {
return $attribute;
}
}
return null;
}
}