src/Entity/User.php line 23

Open in your IDE?
  1. <?php
  2. // src/AppBundle/Entity/User.php
  3. namespace App\Entity;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use FOS\UserBundle\Model\User as BaseUser;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Component\HttpFoundation\File\File;
  9. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  10. /**
  11.  * @ORM\Entity
  12.  * @ORM\Table(name="fos_user", uniqueConstraints={@ORM\UniqueConstraint(name="user_code_idx", columns={"code"})})
  13.  * @ORM\HasLifecycleCallbacks
  14.  * @UniqueEntity(fields="usernameCanonical", errorPath="username", message="fos_user.username.already_used")
  15.  * @ORM\AttributeOverrides({
  16.  *      @ORM\AttributeOverride(name="email", column=@ORM\Column(type="string", name="email", length=255, unique=false, nullable=true)),
  17.  *      @ORM\AttributeOverride(name="emailCanonical", column=@ORM\Column(type="string", name="email_canonical", length=255, unique=false, nullable=true))
  18.  * })
  19.  */
  20. class User extends BaseUser
  21. {
  22.     use \Knp\DoctrineBehaviors\Model\Blameable\Blameable;
  23.     use \Knp\DoctrineBehaviors\Model\Timestampable\Timestampable;
  24.     const TYPE_WORKER 1;
  25.     const TYPE_CUSTOMER 0;
  26.     const ROLE_ADMIN 'ROLE_ADMIN';
  27.     const ROLE_CUSTOMER 'ROLE_CUSTOMER';
  28.     const ROLE_CUSTOMER_UNREGISTERED 'ROLE_CUSTOMER_UNREGISTERED';
  29.     const ROLE_CUSTOMER_REGISTERED 'ROLE_CUSTOMER_REGISTERED';
  30.     /**
  31.      * @ORM\Id
  32.      * @ORM\Column(type="integer")
  33.      * @ORM\GeneratedValue(strategy="AUTO")
  34.      */
  35.     protected $id;
  36.     public function __construct()
  37.     {
  38.         parent::__construct();
  39.         $this->comments = new ArrayCollection();
  40.         $this->notifications = new ArrayCollection();
  41.         $this->manageLanguages = new ArrayCollection();
  42.         // your own logic
  43.         $this->orders = new ArrayCollection();
  44.     }
  45.     public function getFullName()
  46.     {
  47.         return $this->firstname.' '.$this->surname;
  48.     }
  49.     public function isAdmin()
  50.     {
  51.         return $this->userGroup && $this->userGroup->getId() === true false;
  52.     }
  53.     /**
  54.      * Generate $length random code
  55.      * @param int $length (number of chars
  56.      * @return string
  57.      */
  58.     public function generateCode($length) {
  59.         $code md5(uniqid(rand(), true));
  60.         $kod substr($code0$length);
  61.         return $kod;
  62.     }
  63.     /**
  64.      * @var string
  65.      *
  66.      * @ORM\Column(name="code", type="string", length=255, nullable=true)
  67.      */
  68.     private $code;
  69.     /**
  70.      * @var string
  71.      *
  72.      * @ORM\Column(name="login", type="string", length=255, nullable=true)
  73.      */
  74.     private $login;
  75.     /**
  76.      * @var string
  77.      *
  78.      * @ORM\Column(name="firstname", type="string", length=255, nullable=true)
  79.      */
  80.     private $firstname;
  81.     /**
  82.      * @var string
  83.      *
  84.      * @ORM\Column(name="phone", type="string", length=255, nullable=true)
  85.      */
  86.     private $phone;
  87.     /**
  88.      * @var string
  89.      *
  90.      * @ORM\Column(name="first_login", type="integer", length=1, nullable=true, options={"default" = 1})
  91.      */
  92.     private $firstLogin 1;
  93.     /**
  94.      * @var string
  95.      *
  96.      * @ORM\Column(name="profile_picture", type="string", length=255, nullable=true)
  97.      */
  98.     private $profilePicture;
  99.     /**
  100.      * @var string
  101.      *
  102.      * @ORM\Column(name="fb_token", type="string", length=255, nullable=true)
  103.      */
  104.     private $fbToken;
  105.     /**
  106.      * @var string
  107.      *
  108.      * @ORM\Column(name="fb_name", type="string", length=255, nullable=true)
  109.      */
  110.     private $fbName;
  111.     /**
  112.      * @var string
  113.      *
  114.      * @ORM\Column(name="fb_id", type="string", length=255, nullable=true)
  115.      */
  116.     private $fbId;
  117.     /**
  118.      * @var string
  119.      *
  120.      * @ORM\Column(name="surname", type="string", length=255, nullable=true)
  121.      */
  122.     private $surname;
  123.     /**
  124.      * @var string
  125.      *
  126.      * @ORM\Column(name="street_housenum", type="string", length=255, nullable=true)
  127.      */
  128.     protected $streetHousenum;
  129.     /**
  130.      * @ORM\OneToMany(targetEntity="App\Entity\ProductComment", mappedBy="user", cascade={"all"})
  131.      */
  132.     protected $comments;
  133.     /**
  134.      * @ORM\OneToMany(targetEntity="App\Entity\Order", mappedBy="user", cascade={"all"})
  135.      */
  136.     protected $orders;
  137.     /**
  138.      * @ORM\OneToMany(targetEntity="App\Entity\Notification", mappedBy="user", cascade={"all"})
  139.      */
  140.     protected $notifications;
  141.     /**
  142.      * @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
  143.      * @ORM\JoinColumn(name="address_id", referencedColumnName="id", onDelete="CASCADE")
  144.      */
  145.     protected $address;
  146.     /**
  147.      * @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
  148.      * @ORM\JoinColumn(name="invoice_address_id", referencedColumnName="id", onDelete="CASCADE")
  149.      */
  150.     protected $invoiceAddress;
  151.     /**
  152.      * @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
  153.      * @ORM\JoinColumn(name="default_address_id", referencedColumnName="id", onDelete="CASCADE")
  154.      */
  155.     protected $defaultAddress;
  156.     /**
  157.      * @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
  158.      * @ORM\JoinColumn(name="default_invoice_address_id", referencedColumnName="id", onDelete="CASCADE")
  159.      */
  160.     protected $defaultInvoiceAddress;
  161.     /**
  162.      * @Doctrine\ORM\Mapping\ManyToOne(targetEntity="App\Entity\Language")
  163.      * @Doctrine\ORM\Mapping\JoinColumn(name="lang_id", referencedColumnName="id")
  164.      */
  165.     protected $language;
  166.     /**
  167.      * Pracownik obsługujący sklep czy klient w sklepie internetowym?
  168.      * @Doctrine\ORM\Mapping\Column(name="user_type", type="boolean", options={"default"=0}, nullable=true)
  169.      */
  170.     protected $type;
  171.     /**
  172.      * @Doctrine\ORM\Mapping\Column(name="registered", type="boolean", options={"default"=0}, nullable=true)
  173.      */
  174.     protected $registered;
  175.     /**
  176.      * @Doctrine\ORM\Mapping\Column(name="different_invoice_address", type="boolean", options={"default"=0}, nullable=true)
  177.      */
  178.     protected $differentInvoiceAddress;
  179.     /**
  180.      * @Doctrine\ORM\Mapping\Column(name="different_delivery_address", type="boolean", options={"default"=0}, nullable=true)
  181.      */
  182.     protected $differentDeliveryAddress;
  183.     /**
  184.      * @Doctrine\ORM\Mapping\Column(name="term_condition_agree", type="boolean", options={"default"=0}, nullable=true)
  185.      */
  186.     protected $termConditionAgree;
  187.     /**
  188.      * @Doctrine\ORM\Mapping\Column(name="opinion_agree", type="boolean", options={"default"=0}, nullable=true)
  189.      */
  190.     protected $opinionAgree;
  191.     /**
  192.      * @Doctrine\ORM\Mapping\Column(name="marketing_agree", type="boolean", options={"default"=0}, nullable=true)
  193.      */
  194.     protected $marketingAgree;
  195.     /**
  196.      * @Doctrine\ORM\Mapping\Column(name="agree_all_select", type="boolean", options={"default"=0}, nullable=true)
  197.      */
  198.     protected $agreeAllSelect;
  199.     /**
  200.      * @var string
  201.      *
  202.      * @ORM\Column(name="street", type="string", length=255, nullable=true)
  203.      */
  204.     protected $street;
  205.     /**
  206.      * @var string
  207.      *
  208.      * @ORM\Column(name="citycode", type="string", length=255, nullable=true)
  209.      */
  210.     protected $citycode;
  211.     /**
  212.      * @ORM\ManyToOne(targetEntity="App\Entity\Country")
  213.      * @ORM\JoinColumn(name="country_id", referencedColumnName="id")
  214.      */
  215.     protected $country;
  216.     /**
  217.      * @var string
  218.      *
  219.      * @ORM\Column(name="city", type="string", length=255, nullable=true)
  220.      */
  221.     protected $city;
  222.     /**
  223.      * @Doctrine\ORM\Mapping\ManyToOne(targetEntity="App\Entity\UserGroup", inversedBy="users")
  224.      * @Doctrine\ORM\Mapping\JoinColumn(name="userGroup", referencedColumnName="id")
  225.      */
  226.     protected $userGroup;
  227.     /**
  228.      * Wersje językowe, którymi może zarządzać
  229.      * @Doctrine\ORM\Mapping\ManyToMany(targetEntity="App\Entity\Language")
  230.      * @Doctrine\ORM\Mapping\JoinTable(name="user_managed_languages",
  231.      *      joinColumns={@Doctrine\ORM\Mapping\JoinColumn(name="user_id", referencedColumnName="id")},
  232.      *      inverseJoinColumns={@Doctrine\ORM\Mapping\JoinColumn(name="language_id", referencedColumnName="id")}
  233.      *      )
  234.      **/
  235.     protected $manageLanguages;
  236.     /**
  237.      * @ORM\ManyToOne(targetEntity="App\Entity\RoJudet")
  238.      */
  239.     private $roJudet;
  240.     /**
  241.      * Kiedy ostatni raz było zmieniane hasło
  242.      * @Doctrine\ORM\Mapping\Column(type="datetime", nullable=true)
  243.      */
  244.     protected $passwordChangedAt;
  245.     /**
  246.      * Wysłanie e-maila potwierdzającego założenie konta
  247.      * @Doctrine\ORM\Mapping\Column(type="datetime", nullable=true)
  248.      */
  249.     protected $confirmationEmailAt;
  250.     /**
  251.      * @var string
  252.      *
  253.      * @ORM\Column(name="register_confirmation_token", type="string", length=255, nullable=true)
  254.      */
  255.     protected $registerConfirmationToken;
  256.     /**
  257.      * @Doctrine\ORM\Mapping\Column(name="confirmed", type="boolean", nullable=true, options={"default" = 0})
  258.      */
  259.     protected $confirmed false;
  260.     /**
  261.      * @Doctrine\ORM\Mapping\Column(name="consent_feedback", type="boolean", nullable=true)
  262.      */
  263.     protected $consentFeedback false;
  264.     /**
  265.      * @return bool
  266.      */
  267.     public function isConsentFeedback(): bool
  268.     {
  269.         return $this->consentFeedback;
  270.     }
  271.     /**
  272.      * @param bool $consentFeedback
  273.      */
  274.     public function setConsentFeedback(bool $consentFeedback)
  275.     {
  276.         $this->consentFeedback $consentFeedback;
  277.     }
  278.     /**
  279.      * Set code
  280.      *
  281.      * @param string $code
  282.      *
  283.      * @return User
  284.      */
  285.     public function setCode($code)
  286.     {
  287.         $this->code $code;
  288.         return $this;
  289.     }
  290.     /**
  291.      * Get code
  292.      *
  293.      * @return string
  294.      */
  295.     public function getCode()
  296.     {
  297.         return $this->code;
  298.     }
  299.     /**
  300.      * Set login
  301.      *
  302.      * @param string $login
  303.      *
  304.      * @return User
  305.      */
  306.     public function setLogin($login)
  307.     {
  308.         $this->login $login;
  309.         return $this;
  310.     }
  311.     /**
  312.      * Get login
  313.      *
  314.      * @return string
  315.      */
  316.     public function getLogin()
  317.     {
  318.         return $this->login;
  319.     }
  320.     /**
  321.      * Set firstname
  322.      *
  323.      * @param string $firstname
  324.      *
  325.      * @return User
  326.      */
  327.     public function setFirstname($firstname)
  328.     {
  329.         $this->firstname $firstname;
  330.         return $this;
  331.     }
  332.     /**
  333.      * Get firstname
  334.      *
  335.      * @return string
  336.      */
  337.     public function getFirstname()
  338.     {
  339.         return $this->firstname;
  340.     }
  341.     /**
  342.      * Set firstLogin
  343.      *
  344.      * @param integer $firstLogin
  345.      *
  346.      * @return User
  347.      */
  348.     public function setFirstLogin($firstLogin)
  349.     {
  350.         $this->firstLogin $firstLogin;
  351.         return $this;
  352.     }
  353.     /**
  354.      * Get firstLogin
  355.      *
  356.      * @return integer
  357.      */
  358.     public function getFirstLogin()
  359.     {
  360.         return $this->firstLogin;
  361.     }
  362.     /**
  363.      * Set profilePicture
  364.      *
  365.      * @param string $profilePicture
  366.      *
  367.      * @return User
  368.      */
  369.     public function setProfilePicture($profilePicture)
  370.     {
  371.         $this->profilePicture $profilePicture;
  372.         return $this;
  373.     }
  374.     /**
  375.      * Get profilePicture
  376.      *
  377.      * @return string
  378.      */
  379.     public function getProfilePicture()
  380.     {
  381.         return $this->profilePicture;
  382.     }
  383.     /**
  384.      * Set fbToken
  385.      *
  386.      * @param string $fbToken
  387.      *
  388.      * @return User
  389.      */
  390.     public function setFbToken($fbToken)
  391.     {
  392.         $this->fbToken $fbToken;
  393.         return $this;
  394.     }
  395.     /**
  396.      * Get fbToken
  397.      *
  398.      * @return string
  399.      */
  400.     public function getFbToken()
  401.     {
  402.         return $this->fbToken;
  403.     }
  404.     /**
  405.      * Set fbName
  406.      *
  407.      * @param string $fbName
  408.      *
  409.      * @return User
  410.      */
  411.     public function setFbName($fbName)
  412.     {
  413.         $this->fbName $fbName;
  414.         return $this;
  415.     }
  416.     /**
  417.      * Get fbName
  418.      *
  419.      * @return string
  420.      */
  421.     public function getFbName()
  422.     {
  423.         return $this->fbName;
  424.     }
  425.     /**
  426.      * Set fbId
  427.      *
  428.      * @param string $fbId
  429.      *
  430.      * @return User
  431.      */
  432.     public function setFbId($fbId)
  433.     {
  434.         $this->fbId $fbId;
  435.         return $this;
  436.     }
  437.     /**
  438.      * Get fbId
  439.      *
  440.      * @return string
  441.      */
  442.     public function getFbId()
  443.     {
  444.         return $this->fbId;
  445.     }
  446.     /**
  447.      * Set surname
  448.      *
  449.      * @param string $surname
  450.      *
  451.      * @return User
  452.      */
  453.     public function setSurname($surname)
  454.     {
  455.         $this->surname $surname;
  456.         return $this;
  457.     }
  458.     /**
  459.      * Get surname
  460.      *
  461.      * @return string
  462.      */
  463.     public function getSurname()
  464.     {
  465.         return $this->surname;
  466.     }
  467.     /**
  468.      * Add comment
  469.      *
  470.      * @param \App\Entity\ProductComment $comment
  471.      *
  472.      * @return User
  473.      */
  474.     public function addComment(\App\Entity\ProductComment $comment)
  475.     {
  476.         $this->comments[] = $comment;
  477.         return $this;
  478.     }
  479.     /**
  480.      * Remove comment
  481.      *
  482.      * @param \App\Entity\ProductComment $comment
  483.      */
  484.     public function removeComment(\App\Entity\ProductComment $comment)
  485.     {
  486.         $this->comments->removeElement($comment);
  487.     }
  488.     /**
  489.      * Get comments
  490.      *
  491.      * @return \Doctrine\Common\Collections\Collection
  492.      */
  493.     public function getComments()
  494.     {
  495.         return $this->comments;
  496.     }
  497.     /**
  498.      * Add notification
  499.      *
  500.      * @param \App\Entity\Notification $notification
  501.      *
  502.      * @return User
  503.      */
  504.     public function addNotification(\App\Entity\Notification $notification)
  505.     {
  506.         $this->notifications[] = $notification;
  507.         return $this;
  508.     }
  509.     /**
  510.      * Remove notification
  511.      *
  512.      * @param \App\Entity\Notification $notification
  513.      */
  514.     public function removeNotification(\App\Entity\Notification $notification)
  515.     {
  516.         $this->notifications->removeElement($notification);
  517.     }
  518.     /**
  519.      * Get notifications
  520.      *
  521.      * @return \Doctrine\Common\Collections\Collection
  522.      */
  523.     public function getNotifications()
  524.     {
  525.         return $this->notifications;
  526.     }
  527.     /**
  528.      * Set address
  529.      *
  530.      * @param \App\Entity\Address $address
  531.      *
  532.      * @return User
  533.      */
  534.     public function setAddress(\App\Entity\Address $address null)
  535.     {
  536.         $this->address $address;
  537.         return $this;
  538.     }
  539.     /**
  540.      * Get address
  541.      *
  542.      * @return \App\Entity\Address
  543.      */
  544.     public function getAddress()
  545.     {
  546.         return $this->address;
  547.     }
  548.     /**
  549.      * Set language
  550.      *
  551.      * @param \App\Entity\Language $language
  552.      *
  553.      * @return User
  554.      */
  555.     public function setLanguage(\App\Entity\Language $language null)
  556.     {
  557.         $this->language $language;
  558.         return $this;
  559.     }
  560.     /**
  561.      * Get language
  562.      *
  563.      * @return \App\Entity\Language
  564.      */
  565.     public function getLanguage()
  566.     {
  567.         return $this->language;
  568.     }
  569.     /**
  570.      * Set phone
  571.      *
  572.      * @param string $phone
  573.      *
  574.      * @return User
  575.      */
  576.     public function setPhone($phone)
  577.     {
  578.         $this->phone $phone;
  579.         return $this;
  580.     }
  581.     /**
  582.      * Get phone
  583.      *
  584.      * @return string
  585.      */
  586.     public function getPhone()
  587.     {
  588.         return $this->phone;
  589.     }
  590.     /**
  591.      * Set differentInvoiceAddress
  592.      *
  593.      * @param boolean $differentInvoiceAddress
  594.      *
  595.      * @return User
  596.      */
  597.     public function setDifferentInvoiceAddress($differentInvoiceAddress)
  598.     {
  599.         $this->differentInvoiceAddress $differentInvoiceAddress;
  600.         return $this;
  601.     }
  602.     /**
  603.      * Get differentInvoiceAddress
  604.      *
  605.      * @return boolean
  606.      */
  607.     public function getDifferentInvoiceAddress()
  608.     {
  609.         return $this->differentInvoiceAddress;
  610.     }
  611.     /**
  612.      * Set invoiceAddress
  613.      *
  614.      * @param \App\Entity\Address $invoiceAddress
  615.      *
  616.      * @return User
  617.      */
  618.     public function setInvoiceAddress(\App\Entity\Address $invoiceAddress null)
  619.     {
  620.         $this->invoiceAddress $invoiceAddress;
  621.         return $this;
  622.     }
  623.     /**
  624.      * Get invoiceAddress
  625.      *
  626.      * @return \App\Entity\Address
  627.      */
  628.     public function getInvoiceAddress()
  629.     {
  630.         return $this->invoiceAddress;
  631.     }
  632.     /**
  633.      * Set differentDeliveryAddress
  634.      *
  635.      * @param boolean $differentDeliveryAddress
  636.      *
  637.      * @return User
  638.      */
  639.     public function setDifferentDeliveryAddress($differentDeliveryAddress)
  640.     {
  641.         $this->differentDeliveryAddress $differentDeliveryAddress;
  642.         return $this;
  643.     }
  644.     /**
  645.      * Get differentDeliveryAddress
  646.      *
  647.      * @return boolean
  648.      */
  649.     public function getDifferentDeliveryAddress()
  650.     {
  651.         return $this->differentDeliveryAddress;
  652.     }
  653.     /**
  654.      * Set street
  655.      *
  656.      * @param string $street
  657.      *
  658.      * @return User
  659.      */
  660.     public function setStreet($street)
  661.     {
  662.         $this->street $street;
  663.         return $this;
  664.     }
  665.     /**
  666.      * Get street
  667.      *
  668.      * @return string
  669.      */
  670.     public function getStreet()
  671.     {
  672.         return $this->street;
  673.     }
  674.     /**
  675.      * Set citycode
  676.      *
  677.      * @param string $citycode
  678.      *
  679.      * @return User
  680.      */
  681.     public function setCitycode($citycode)
  682.     {
  683.         $this->citycode $citycode;
  684.         return $this;
  685.     }
  686.     /**
  687.      * Get citycode
  688.      *
  689.      * @return string
  690.      */
  691.     public function getCitycode()
  692.     {
  693.         return $this->citycode;
  694.     }
  695.     /**
  696.      * Set city
  697.      *
  698.      * @param string $city
  699.      *
  700.      * @return User
  701.      */
  702.     public function setCity($city)
  703.     {
  704.         $this->city $city;
  705.         return $this;
  706.     }
  707.     /**
  708.      * Get city
  709.      *
  710.      * @return string
  711.      */
  712.     public function getCity()
  713.     {
  714.         return $this->city;
  715.     }
  716.     /**
  717.      * Set country
  718.      *
  719.      * @param \App\Entity\Country $country
  720.      *
  721.      * @return User
  722.      */
  723.     public function setCountry(\App\Entity\Country $country null)
  724.     {
  725.         $this->country $country;
  726.         return $this;
  727.     }
  728.     /**
  729.      * Get country
  730.      *
  731.      * @return \App\Entity\Country
  732.      */
  733.     public function getCountry()
  734.     {
  735.         return $this->country;
  736.     }
  737.     /**
  738.      * Set streetHousenum
  739.      *
  740.      * @param string $streetHousenum
  741.      *
  742.      * @return User
  743.      */
  744.     public function setStreetHousenum($streetHousenum)
  745.     {
  746.         $this->streetHousenum $streetHousenum;
  747.         return $this;
  748.     }
  749.     /**
  750.      * Get streetHousenum
  751.      *
  752.      * @return string
  753.      */
  754.     public function getStreetHousenum()
  755.     {
  756.         return $this->streetHousenum;
  757.     }
  758.     /**
  759.      * Set termConditionAgree
  760.      *
  761.      * @param boolean $termConditionAgree
  762.      *
  763.      * @return User
  764.      */
  765.     public function setTermConditionAgree($termConditionAgree)
  766.     {
  767.         $this->termConditionAgree $termConditionAgree;
  768.         return $this;
  769.     }
  770.     /**
  771.      * Get termConditionAgree
  772.      *
  773.      * @return boolean
  774.      */
  775.     public function getTermConditionAgree()
  776.     {
  777.         return $this->termConditionAgree;
  778.     }
  779.     /**
  780.      * Set opinionAgree
  781.      *
  782.      * @param boolean $opinionAgree
  783.      *
  784.      * @return User
  785.      */
  786.     public function setOpinionAgree($opinionAgree)
  787.     {
  788.         $this->opinionAgree $opinionAgree;
  789.         return $this;
  790.     }
  791.     /**
  792.      * Get opinionAgree
  793.      *
  794.      * @return boolean
  795.      */
  796.     public function getOpinionAgree()
  797.     {
  798.         return $this->opinionAgree;
  799.     }
  800.     /**
  801.      * Set marketingAgree
  802.      *
  803.      * @param boolean $marketingAgree
  804.      *
  805.      * @return User
  806.      */
  807.     public function setMarketingAgree($marketingAgree)
  808.     {
  809.         $this->marketingAgree $marketingAgree;
  810.         return $this;
  811.     }
  812.     /**
  813.      * Get marketingAgree
  814.      *
  815.      * @return boolean
  816.      */
  817.     public function getMarketingAgree()
  818.     {
  819.         return $this->marketingAgree;
  820.     }
  821.     /**
  822.      * Set agreeAllSelect
  823.      *
  824.      * @param boolean $agreeAllSelect
  825.      *
  826.      * @return User
  827.      */
  828.     public function setAgreeAllSelect($agreeAllSelect)
  829.     {
  830.         $this->agreeAllSelect $agreeAllSelect;
  831.         return $this;
  832.     }
  833.     /**
  834.      * Get agreeAllSelect
  835.      *
  836.      * @return boolean
  837.      */
  838.     public function getAgreeAllSelect()
  839.     {
  840.         return $this->agreeAllSelect;
  841.     }
  842.     /**
  843.      * Get enabled
  844.      *
  845.      * @return boolean
  846.      */
  847.     public function getEnabled()
  848.     {
  849.         return $this->enabled;
  850.     }
  851.     /**
  852.      * Set registered
  853.      *
  854.      * @param boolean $registered
  855.      *
  856.      * @return User
  857.      */
  858.     public function setRegistered($registered)
  859.     {
  860.         $this->registered $registered;
  861.         return $this;
  862.     }
  863.     /**
  864.      * Get registered
  865.      *
  866.      * @return boolean
  867.      */
  868.     public function getRegistered()
  869.     {
  870.         return $this->registered;
  871.     }
  872.     public function getId(): ?int
  873.     {
  874.         return $this->id;
  875.     }
  876.     public function getType(): ?bool
  877.     {
  878.         return $this->type;
  879.     }
  880.     public function setType(?bool $type): self
  881.     {
  882.         $this->type $type;
  883.         return $this;
  884.     }
  885.     public function getUserGroup(): ?UserGroup
  886.     {
  887.         return $this->userGroup;
  888.     }
  889.     public function setUserGroup(?UserGroup $userGroup): self
  890.     {
  891.         $this->userGroup $userGroup;
  892.         return $this;
  893.     }
  894.     public function getManageLanguagesIds() {
  895.         $ids = [];
  896.         foreach ($this->getManageLanguages() as $manageLanguage) {
  897.             $ids[] = $manageLanguage->getId();
  898.         }
  899.         return $ids;
  900.     }
  901.     public function getManageLanguagesLocales() {
  902.         $ids = [];
  903.         foreach ($this->getManageLanguages() as $manageLanguage) {
  904.             $ids[] = $manageLanguage->getLocale();
  905.         }
  906.         return $ids;
  907.     }
  908.     /**
  909.      * @return Collection|Language[]
  910.      */
  911.     public function getManageLanguages(): Collection
  912.     {
  913.         return $this->manageLanguages;
  914.     }
  915.     public function addManageLanguage(Language $manageLanguage): self
  916.     {
  917.         if (!$this->manageLanguages->contains($manageLanguage)) {
  918.             $this->manageLanguages[] = $manageLanguage;
  919.         }
  920.         return $this;
  921.     }
  922.     public function removeManageLanguage(Language $manageLanguage): self
  923.     {
  924.         if ($this->manageLanguages->contains($manageLanguage)) {
  925.             $this->manageLanguages->removeElement($manageLanguage);
  926.         }
  927.         return $this;
  928.     }
  929.     /**
  930.      * Set roJudet
  931.      *
  932.      * @param \App\Entity\RoJudet $roJudet
  933.      *
  934.      * @return User
  935.      */
  936.     public function setRoJudet(\App\Entity\RoJudet $roJudet null)
  937.     {
  938.         $this->roJudet $roJudet;
  939.         return $this;
  940.     }
  941.     /**
  942.      * Get roJudet
  943.      *
  944.      * @return \App\Entity\RoJudet
  945.      */
  946.     public function getRoJudet()
  947.     {
  948.         return $this->roJudet;
  949.     }
  950.     /**
  951.      * @return mixed
  952.      */
  953.     public function getPasswordChangedAt()
  954.     {
  955.         return $this->passwordChangedAt;
  956.     }
  957.     /**
  958.      * @param mixed $passwordChangedAt
  959.      */
  960.     public function setPasswordChangedAt($passwordChangedAt)
  961.     {
  962.         $this->passwordChangedAt $passwordChangedAt;
  963.     }
  964.     public function getConsentFeedback(): ?bool
  965.     {
  966.         return $this->consentFeedback;
  967.     }
  968.     public function getDefaultAddress(): ?Address
  969.     {
  970.         return $this->defaultAddress;
  971.     }
  972.     public function setDefaultAddress(?Address $defaultAddress): self
  973.     {
  974.         $this->defaultAddress $defaultAddress;
  975.         return $this;
  976.     }
  977.     public function getDefaultInvoiceAddress(): ?Address
  978.     {
  979.         return $this->defaultInvoiceAddress;
  980.     }
  981.     public function setDefaultInvoiceAddress(?Address $defaultInvoiceAddress): self
  982.     {
  983.         $this->defaultInvoiceAddress $defaultInvoiceAddress;
  984.         return $this;
  985.     }
  986.     /**
  987.      * @return mixed
  988.      */
  989.     public function getConfirmationEmailAt()
  990.     {
  991.         return $this->confirmationEmailAt;
  992.     }
  993.     /**
  994.      * @param mixed $confirmationEmailAt
  995.      */
  996.     public function setConfirmationEmailAt($confirmationEmailAt)
  997.     {
  998.         $this->confirmationEmailAt $confirmationEmailAt;
  999.     }
  1000.     /**
  1001.      * @return bool
  1002.      */
  1003.     public function isConfirmed()
  1004.     {
  1005.         return $this->confirmed;
  1006.     }
  1007.     /**
  1008.      * @param bool $confirmed
  1009.      */
  1010.     public function setConfirmed($confirmed)
  1011.     {
  1012.         $this->confirmed $confirmed;
  1013.     }
  1014.     /**
  1015.      * @return string
  1016.      */
  1017.     public function getRegisterConfirmationToken()
  1018.     {
  1019.         return $this->registerConfirmationToken;
  1020.     }
  1021.     /**
  1022.      * @param string $registerConfirmationToken
  1023.      */
  1024.     public function setRegisterConfirmationToken($registerConfirmationToken)
  1025.     {
  1026.         $this->registerConfirmationToken $registerConfirmationToken;
  1027.     }
  1028.     public function getConfirmed(): ?bool
  1029.     {
  1030.         return $this->confirmed;
  1031.     }
  1032.     /**
  1033.      * @return Collection|Order[]
  1034.      */
  1035.     public function getOrders(): Collection
  1036.     {
  1037.         return $this->orders;
  1038.     }
  1039.     public function addOrder(Order $order): self
  1040.     {
  1041.         if (!$this->orders->contains($order)) {
  1042.             $this->orders[] = $order;
  1043.             $order->setUser($this);
  1044.         }
  1045.         return $this;
  1046.     }
  1047.     public function removeOrder(Order $order): self
  1048.     {
  1049.         if ($this->orders->removeElement($order)) {
  1050.             // set the owning side to null (unless already changed)
  1051.             if ($order->getUser() === $this) {
  1052.                 $order->setUser(null);
  1053.             }
  1054.         }
  1055.         return $this;
  1056.     }
  1057.     public function ordersCount() {
  1058.         $c 0;
  1059.         /** @var $order Order */
  1060.         foreach ($this->getOrders() as $order) {
  1061.             if ($order->getStatus() && $order->getStatus()->getId() != 1) {
  1062.                 $c $c 1;
  1063.             }
  1064.         }
  1065.         return $c;
  1066.     }
  1067.     public function ordersValue() {
  1068.         $c 0;
  1069.         /** @var $order Order */
  1070.         foreach ($this->getOrders() as $order) {
  1071.             if ($order->getStatus() && $order->getStatus()->getId() != 1) {
  1072.                 $c $c $order->getTotalCostBrutto();
  1073.             }
  1074.         }
  1075.         return $c;
  1076.     }
  1077. }