src/Entity/User.php line 27

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by Mediterranean Develup Solutions.
  4.  * User: jorge.defreitas@develup.solutions
  5.  * Date: 14/06/2017
  6.  * Time: 16:51
  7.  */
  8. namespace App\Entity;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Symfony\Component\Security\Core\User\UserInterface;
  11. use Symfony\Component\Validator\Constraints as Assert;
  12. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  13. /**
  14.  * User
  15.  *
  16.  * @ORM\Table(name="users")
  17.  * @ORM\Entity
  18.  * @UniqueEntity("username")
  19.  * @UniqueEntity("email")
  20.  * @ORM\HasLifecycleCallbacks()
  21.  * @method string getUserIdentifier()
  22.  */
  23. class User implements UserInterface{
  24.     /**
  25.      * @ORM\Id
  26.      * @ORM\GeneratedValue(strategy="AUTO")
  27.      * @ORM\Column(type="integer")
  28.      */
  29.     private $id;
  30.     /**
  31.      * @ORM\Column(name="picture", type="string", length=255, nullable=true)
  32.      *
  33.      */
  34.     private $picture;
  35.     /**
  36.      * @ORM\Column(name="username", type="string", length=255, unique=true)
  37.      * @Assert\NotBlank()
  38.      */
  39.     private $username;
  40.     /**
  41.      * @ORM\Column(name="email", type="string", length=255, unique=true)
  42.      * @Assert\NotBlank()
  43.      * @Assert\Email()
  44.      */
  45.     private $email;
  46.     /**
  47.      * @ORM\Column(name="password", type="string", length=64)
  48.      */
  49.     private $password;
  50.     /**
  51.      * @ORM\Column(name="name", type="string", length=255)
  52.      * @Assert\NotBlank()
  53.      */
  54.     private $name;
  55.     /**
  56.      * @ORM\Column(name="last_name", type="string", length=255)
  57.      * @Assert\NotBlank()
  58.      */
  59.     private $lastname;
  60.     /**
  61.      * @ORM\Column(name="telephone", type="string", length=255, nullable=true)
  62.      */
  63.     private $telephone;
  64.     /**
  65.      * @ORM\Column(name="mobile", type="string", length=255, nullable=true)
  66.      */
  67.     private $mobile;
  68.     /**
  69.      * @ORM\Column(name="status", type="boolean")
  70.      */
  71.     private $status;
  72.     /**
  73.      * @ORM\ManyToOne(targetEntity=SettingsRol::class)
  74.      * @ORM\JoinColumn(name="id_user_rol", referencedColumnName="id", nullable=true)
  75.      */
  76.     private ?SettingsRol $userrol;
  77.     /**
  78.      * @ORM\Column(name="id_team", type="integer", length=11, nullable=true)
  79.      */
  80.     private $team;
  81.     /**
  82.      * @ORM\Column(name="role", type="string", length=50)
  83.      */
  84.     private $role;
  85.     /**
  86.      * @ORM\Column(type="string", length=255, nullable=true)
  87.      */
  88.     private $accessKey;
  89.     /**
  90.      * @var string
  91.      * @ORM\Column(name="language", type="string", length=11, nullable=true)
  92.      */
  93.     private $language;
  94.     /**
  95.      * @var \Datetime
  96.      *
  97.      * @ORM\Column(name="created_at", type="datetime")
  98.      */
  99.     private $createdAt;
  100.     /**
  101.      * @var \Datetime
  102.      *
  103.      * @ORM\Column(name="updated_at", type="datetime")
  104.      */
  105.     private $updatedAt;
  106.     /**
  107.      * @ORM\Column(name="phone_sidebar", type="boolean")
  108.      */
  109.     private $phoneSidebar;
  110.     public function getId()
  111.     {
  112.         return $this->id;
  113.     }
  114.     public function setId($id)
  115.     {
  116.         $this->id $id;
  117.     }
  118.     public function getEmail()
  119.     {
  120.         return $this->email;
  121.     }
  122.     public function setEmail($email)
  123.     {
  124.         $this->email $email;
  125.     }
  126.     public function getUsername()
  127.     {
  128.         return $this->username;
  129.     }
  130.     public function setUsername($username)
  131.     {
  132.         $this->username $username;
  133.     }
  134.     public function getPassword()
  135.     {
  136.         return $this->password;
  137.     }
  138.     public function setPassword($password)
  139.     {
  140.         $this->password $password;
  141.     }
  142.     public function getSalt()
  143.     {
  144.         // The bcrypt algorithm doesn't require a separate salt.
  145.         // You *may* need a real salt if you choose a different encoder.
  146.         //return null;
  147.     }
  148.     public function eraseCredentials()
  149.     {
  150.     }
  151.     public function getRole()
  152.     {
  153.         return $this->role;
  154.     }
  155.     public function setRole($role null)
  156.     {
  157.         $this->role $role;
  158.     }
  159.     public function getRoles()
  160.     {
  161.         return [$this->getRole()];
  162.     }
  163.     public function getAccessKey()
  164.     {
  165.         return $this->accessKey;
  166.     }
  167.     public function setAccessKey($accessKey null)
  168.     {
  169.         $this->accessKey $accessKey;
  170.     }
  171.     /**
  172.      * Set createdAt
  173.      *
  174.      * @param \Datetime $createdAt
  175.      *
  176.      * @return User
  177.      */
  178.     public function setCreatedAt(\Datetime $createdAt)
  179.     {
  180.         $this->createdAt $createdAt;
  181.         return $this;
  182.     }
  183.     /**
  184.      * Get createdAt
  185.      *
  186.      * @return \Datetime
  187.      */
  188.     public function getCreatedAt()
  189.     {
  190.         return $this->createdAt;
  191.     }
  192.     /**
  193.      * Set updatedAt
  194.      *
  195.      * @param \Datetime $updatedAt
  196.      *
  197.      * @return User
  198.      */
  199.     public function setUpdatedAt(\Datetime $updatedAt)
  200.     {
  201.         $this->updatedAt $updatedAt;
  202.         return $this;
  203.     }
  204.     /**
  205.      * Get updatedAt
  206.      *
  207.      * @return \Datetime
  208.      */
  209.     public function getUpdatedAt()
  210.     {
  211.         return $this->updatedAt;
  212.     }
  213.     /**
  214.      * @ORM\PrePersist
  215.      */
  216.     public function setCreatedAtValue()
  217.     {
  218.         $this->createdAt = new \Datetime();
  219.     }
  220.     /**
  221.      * @ORM\PrePersist
  222.      * @ORM\PreUpdate
  223.      */
  224.     public function setUpdatedAtValue()
  225.     {
  226.         $this->updatedAt = new \Datetime();
  227.     }
  228.     /**
  229.      * Set picture
  230.      *
  231.      * @param string $picture
  232.      *
  233.      * @return User
  234.      */
  235.     public function setPicture($picture)
  236.     {
  237.         $this->picture $picture;
  238.         return $this;
  239.     }
  240.     /**
  241.      * Get picture
  242.      *
  243.      * @return string
  244.      */
  245.     public function getPicture()
  246.     {
  247.         return $this->picture;
  248.     }
  249.     /**
  250.      * Set name
  251.      *
  252.      * @param string $name
  253.      *
  254.      * @return User
  255.      */
  256.     public function setName($name)
  257.     {
  258.         $this->name $name;
  259.         return $this;
  260.     }
  261.     /**
  262.      * Get name
  263.      *
  264.      * @return string
  265.      */
  266.     public function getName()
  267.     {
  268.         return $this->name;
  269.     }
  270.     /**
  271.      * Set lastname
  272.      *
  273.      * @param string $lastname
  274.      *
  275.      * @return User
  276.      */
  277.     public function setLastname($lastname)
  278.     {
  279.         $this->lastname $lastname;
  280.         return $this;
  281.     }
  282.     /**
  283.      * Get lastname
  284.      *
  285.      * @return string
  286.      */
  287.     public function getLastname()
  288.     {
  289.         return $this->lastname;
  290.     }
  291.     /**
  292.      * Set telephone
  293.      *
  294.      * @param string $telephone
  295.      *
  296.      * @return User
  297.      */
  298.     public function setTelephone($telephone)
  299.     {
  300.         $this->telephone $telephone;
  301.         return $this;
  302.     }
  303.     /**
  304.      * Get telephone
  305.      *
  306.      * @return string
  307.      */
  308.     public function getTelephone()
  309.     {
  310.         return $this->telephone;
  311.     }
  312.     /**
  313.      * Set mobile
  314.      *
  315.      * @param string $mobile
  316.      *
  317.      * @return User
  318.      */
  319.     public function setMobile($mobile)
  320.     {
  321.         $this->mobile $mobile;
  322.         return $this;
  323.     }
  324.     /**
  325.      * Get mobile
  326.      *
  327.      * @return string
  328.      */
  329.     public function getMobile()
  330.     {
  331.         return $this->mobile;
  332.     }
  333.     /**
  334.      * Set status
  335.      *
  336.      * @param boolean $status
  337.      *
  338.      * @return User
  339.      */
  340.     public function setStatus($status)
  341.     {
  342.         $this->status $status;
  343.         return $this;
  344.     }
  345.     /**
  346.      * Get status
  347.      *
  348.      * @return boolean
  349.      */
  350.     public function getStatus()
  351.     {
  352.         return $this->status;
  353.     }
  354.     public function setUserrol(?SettingsRol $userrol): self
  355.     {
  356.         $this->userrol $userrol;
  357.         return $this;
  358.     }
  359.     public function getUserrol(): ?SettingsRol
  360.     {
  361.         return $this->userrol;
  362.     }
  363.     /**
  364.      * Set team
  365.      *
  366.      * @param integer $team
  367.      *
  368.      * @return User
  369.      */
  370.     public function setTeam($team)
  371.     {
  372.         $this->team $team;
  373.         return $this;
  374.     }
  375.     /**
  376.      * Get team
  377.      *
  378.      * @return integer
  379.      */
  380.     public function getTeam()
  381.     {
  382.         return $this->team;
  383.     }
  384.     /**
  385.      * Set language
  386.      *
  387.      * @param string $language
  388.      *
  389.      * @return User
  390.      */
  391.     public function setLanguage($language)
  392.     {
  393.         $this->language $language;
  394.         return $this;
  395.     }
  396.     /**
  397.      * Get language
  398.      *
  399.      * @return string
  400.      */
  401.     public function getLanguage()
  402.     {
  403.         return $this->language;
  404.     }
  405.     /**
  406.      * Set phoneSidebar
  407.      *
  408.      * @param boolean $phoneSidebar
  409.      *
  410.      * @return User
  411.      */
  412.     public function setPhoneSidebar($phoneSidebar)
  413.     {
  414.         $this->phoneSidebar $phoneSidebar;
  415.     
  416.         return $this;
  417.     }
  418.     /**
  419.      * Get phoneSidebar
  420.      *
  421.      * @return boolean
  422.      */
  423.     public function getPhoneSidebar()
  424.     {
  425.         return $this->phoneSidebar;
  426.     }
  427.     public function __call($name$arguments)
  428.     {
  429.         // TODO: Implement @method string getUserIdentifier()
  430.     }
  431. }