src/Entity/MobileAppEvent.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\EventFormEntity;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  8. /**
  9.  * MobileAppEvent
  10.  *
  11.  * @ORM\Table(name="MobileApp_event")
  12.  * @ORM\Entity(repositoryClass="App\Repository\MobileAppEventRepository")
  13.  * @ORM\HasLifecycleCallbacks()
  14.  */
  15. class MobileAppEvent
  16. {
  17.     /**
  18.      * @var int
  19.      *
  20.      * @ORM\Column(name="eid", type="integer")
  21.      * @ORM\Id
  22.      * @ORM\GeneratedValue(strategy="AUTO")
  23.      */
  24.     private $id;
  25.     /**
  26.      * @var string
  27.      *
  28.      * @ORM\Column(name="proposal_id", type="string")
  29.      */
  30.     private $proposalId;
  31.     /**
  32.      * @var string
  33.      *
  34.      * @ORM\Column(name="name", type="string", length=150)
  35.      */
  36.     private $name;
  37.     /**
  38.      * @var string
  39.      *
  40.      * @ORM\Column(name="name_en", type="string", length=150, nullable=true)
  41.      */
  42.     private $nameEn;
  43.     /**
  44.      * @var string
  45.      *
  46.      * @ORM\Column(name="keyword", type="string", length=250, nullable=true)
  47.      */
  48.     private $keyword;
  49.     /**
  50.      * @var string
  51.      *
  52.      * @ORM\Column(name="country", type="text", nullable=true)
  53.      */
  54.     private $country;
  55.     /**
  56.      * @var string
  57.      *
  58.      * @ORM\Column(name="city", type="text", nullable=true)
  59.      */
  60.     private $city;
  61.     /**
  62.      * @var string
  63.      *
  64.      * @ORM\Column(name="address", type="text", nullable=true)
  65.      */
  66.     private $address;
  67.     /**
  68.      * @var string
  69.      *
  70.      * @ORM\Column(name="description", type="text", nullable=true)
  71.      */
  72.     private $description;
  73.     /**
  74.      * @var string
  75.      *
  76.      * @ORM\Column(name="description_en", type="text", nullable=true)
  77.      */
  78.     private $descriptionEn;
  79.     /**
  80.      * @var string
  81.      *
  82.      * @ORM\Column(name="location", type="string", length=250, nullable=true)
  83.      */
  84.     private $location;
  85.     /**
  86.      * @var \DateTime
  87.      *
  88.      * @ORM\Column(name="start_date", type="datetime")
  89.      */
  90.     private $startDate;
  91.     /**
  92.      * @var \DateTime
  93.      *
  94.      * @ORM\Column(name="end_date", type="datetime")
  95.      */
  96.     private $endDate;
  97.     /**
  98.      * @var boolean
  99.      *
  100.      * @ORM\Column(name="status", type="boolean", options={"default"=0})
  101.      */
  102.     private $status;
  103.     /**
  104.      * @var string
  105.      *
  106.      * @ORM\Column(name="image", type="string", length=150, nullable=true)
  107.      */
  108.     private $image;
  109.     /**
  110.      * @var string
  111.      *
  112.      * @ORM\Column(name="image_background", type="string", length=150, nullable=true)
  113.      */
  114.     private $imageBackground;
  115.     /**
  116.      * @var string
  117.      *
  118.      * @ORM\Column(name="logo", type="string", length=150, nullable=true)
  119.      */
  120.     private $logo;
  121.     /**
  122.      * @var string
  123.      *
  124.      * @ORM\Column(name="image_web", type="string", length=150, nullable=true)
  125.      */
  126.     private $imageWeb;
  127.     /**
  128.      * @var string
  129.      *
  130.      * @ORM\Column(name="video", type="string", length=150, nullable=true)
  131.      */
  132.     private $video;
  133.     /**
  134.      * @var string
  135.      *
  136.      * @ORM\Column(name="music", type="string", length=150, nullable=true)
  137.      */
  138.     private $music;
  139.     /**
  140.      * @var string
  141.      *
  142.      * @ORM\Column(name="primaryColor", type="string", length=150)
  143.      */
  144.     private $primaryColor '#59cbe8';
  145.     /**
  146.      * @var string
  147.      *
  148.      * @ORM\Column(name="secondaryColor", type="string", length=150)
  149.      */
  150.     private $secondaryColor '#59cbe8';
  151.     /**
  152.      * @var string
  153.      *
  154.      * @ORM\Column(name="bg_color", type="string", length=150)
  155.      */
  156.     private $bgColor '#263238';
  157.     /**
  158.      * @var string
  159.      *
  160.      * @ORM\Column(name="register_bg_color", type="string", length=150, nullable=true)
  161.      */
  162.     private $registerBgColor '#59cbe8';
  163.     /**
  164.      * @var string
  165.      *
  166.      * @ORM\Column(name="register_text_color", type="string", length=150, nullable=true)
  167.      */
  168.     private $registerTextColor '#263238';
  169.     /**
  170.      * @var \DateTime
  171.      *
  172.      * @ORM\Column(name="created_at", type="datetime")
  173.      */
  174.     private $createdAt;
  175.     /**
  176.      * @var int
  177.      *
  178.      * @ORM\Column(name="created_id", type="integer")
  179.      */
  180.     private $createdId;
  181.     /**
  182.      * @var \DateTime
  183.      *
  184.      * @ORM\Column(name="updated_at", type="datetime")
  185.      */
  186.     private $updatedAt;
  187.     /**
  188.      * @var int
  189.      *
  190.      * @ORM\Column(name="updated_id", type="integer")
  191.      */
  192.     private $updatedId;
  193.     /**
  194.      * @var boolean
  195.      *
  196.      * @ORM\Column(name="private_gallery", type="boolean", options={"default"=0})
  197.      */
  198.     private $privateGallery 0;
  199.     /**
  200.      * @var boolean
  201.      *
  202.      * @ORM\Column(name="vote_gallery", type="boolean", options={"default"=0})
  203.      */
  204.     private $voteGallery 0;
  205.     /**
  206.      * @var boolean
  207.      *
  208.      * @ORM\Column(name="private_selfie", type="boolean", options={"default"=0})
  209.      */
  210.     private $privateSelfie 0;
  211.     /**
  212.      * @var boolean
  213.      *
  214.      * @ORM\Column(name="private_video", type="boolean", options={"default"=0})
  215.      */
  216.     private $privateVideo 0;
  217.     /**
  218.      * @var boolean
  219.      *
  220.      * @ORM\Column(name="badge_multi", type="boolean", options={"default"=0})
  221.      */
  222.     private $badgeMulti 0;
  223.     /**
  224.      * @var boolean
  225.      *
  226.      * @ORM\Column(name="private_wall", type="boolean", options={"default"=0})
  227.      */
  228.     private $privateWall 0;
  229.     /**
  230.      * @var boolean
  231.      *
  232.      * @ORM\Column(name="wall_view", type="boolean", options={"default"=0})
  233.      */
  234.     private $wallView 0;
  235.     /**
  236.      * @var string
  237.      *
  238.      * @ORM\Column(name="url_app_android", type="text", length=255, nullable=true)
  239.      */
  240.     private $urlAppAndroid;
  241.     /**
  242.      * @var string
  243.      *
  244.      * @ORM\Column(name="url_app_ios", type="text", length=255, nullable=true)
  245.      */
  246.     private $urlAppIos;
  247.     /**
  248.      * @var string
  249.      *
  250.      * @ORM\Column(name="email_send", type="string", length=255, nullable=true)
  251.      */
  252.     private $emailSend;
  253.     /**
  254.      * @var string
  255.      *
  256.      * @ORM\Column(name="pass_email_send", type="string", length=255, nullable=true)
  257.      */
  258.     private $passEmailSend;
  259.     /**
  260.      * @var string
  261.      *
  262.      * @ORM\Column(name="mail_content", type="text", nullable=true)
  263.      */
  264.     private $mailContent;
  265.     /**
  266.      * @var string
  267.      *
  268.      * @ORM\Column(name="mail_content_qr", type="text", nullable=true)
  269.      */
  270.     private $mailContentQr;
  271.     /**
  272.      * @var string
  273.      *
  274.      * @ORM\Column(name="mail_content_confirmation", type="text", nullable=true)
  275.      */
  276.     private $mailContentConfirmation;
  277.     /**
  278.      * @var string
  279.      *
  280.      * @ORM\Column(name="mail_content_reservation", type="text", nullable=true)
  281.      */
  282.     private $mailContentReservation;
  283.     /**
  284.      * @var string
  285.      *
  286.      * @ORM\Column(name="app_id_onesignal", type="string", length=255, nullable=true)
  287.      */
  288.     private $appId;
  289.     /**
  290.      * @var string
  291.      *
  292.      * @ORM\Column(name="rest_key_api_onesignal", type="string", length=255, nullable=true)
  293.      */
  294.     private $restKeyApi;
  295.     /**
  296.      * @var string
  297.      *
  298.      * @ORM\Column(name="event_icon", type="string", length=255, nullable=true)
  299.      */
  300.     private $eventIcon 'default-icon.png';
  301.     /**
  302.      * @var string
  303.      *
  304.      * @ORM\Column(name="type_register", type="string", length=150, nullable=true)
  305.      */
  306.     private $typeRegister;
  307.     /**
  308.      * @var string
  309.      *
  310.      * @ORM\Column(name="twitter", type="string", length=255, nullable=true)
  311.      */
  312.     private $twitter;
  313.     /**
  314.      * @var string
  315.      *
  316.      * @ORM\Column(name="facebook", type="string", length=255, nullable=true)
  317.      */
  318.     private $facebook;
  319.     /**
  320.      * @var string
  321.      *
  322.      * @ORM\Column(name="instagram", type="string", length=255, nullable=true)
  323.      */
  324.     private $instagram;
  325.     /**
  326.      * @var string
  327.      *
  328.      * @ORM\Column(name="linkedin", type="string", length=255, nullable=true)
  329.      */
  330.     private $linkedin;
  331.     /**
  332.      * @var string
  333.      *
  334.      * @ORM\Column(name="youtube", type="string", length=255, nullable=true)
  335.      */
  336.     private $youtube;
  337.     /**
  338.      * @var string
  339.      *
  340.      * @ORM\Column(name="terms_conditions", type="text", nullable=true)
  341.      */
  342.     private $termsConditions;
  343.     /**
  344.      * @var string
  345.      *
  346.      * @ORM\Column(name="share_contact", type="text", nullable=true)
  347.      */
  348.     private $shareContact;
  349.     /**
  350.      * @var string
  351.      *
  352.      * @ORM\Column(name="commercial_communications_title", type="text", nullable=true)
  353.      */
  354.     private $commercialCommunicationsTitle;
  355.     /**
  356.      * @var string
  357.      *
  358.      * @ORM\Column(name="commercial_communications", type="text", nullable=true)
  359.      */
  360.     private $commercialCommunications;
  361.     /**
  362.      * @var string
  363.      *
  364.      * @ORM\Column(name="company_name", type="string", length=255, nullable=true)
  365.      */
  366.     private $companyName;
  367.     /**
  368.      * @var string
  369.      * @ORM\Column(name="language", type="string", length=11, nullable=true)
  370.      */
  371.     private $language;
  372.     /**
  373.      * @var boolean
  374.      *
  375.      * @ORM\Column(name="pre_registration", type="boolean", options={"default"=0})
  376.      */
  377.     private $preRegistration 0;
  378.     /**
  379.      * @var boolean
  380.      *
  381.      * @ORM\Column(name="app_login_register", type="boolean", options={"default"=0})
  382.      */
  383.     private $appLoginRegister 0;
  384.     /**
  385.      * @var boolean
  386.      *
  387.      * @ORM\Column(name="app_login_invitation", type="boolean", options={"default"=0})
  388.      */
  389.     private $appLoginInvitation 0;
  390.     /**
  391.      * @var string
  392.      *
  393.      * @ORM\Column(name="mail_content_invitation", type="text", nullable=true)
  394.      */
  395.     private $mailContentInvitation;
  396.     /**
  397.      * @var string
  398.      *
  399.      * @ORM\Column(name="alfa", type="text", nullable=true)
  400.      */
  401.     private $alfa;
  402.     /**
  403.      * @var string
  404.      *
  405.      * @ORM\Column(name="backgroundHome", type="string", length=150, nullable=true)
  406.      */
  407.     private $backgroundHome;
  408.     /**
  409.      * @ORM\OneToMany(targetEntity="App\Entity\EventFormEntity", mappedBy="event")
  410.      */
  411.     private $eventFormEntities;
  412.     /**
  413.      * @var boolean
  414.      *
  415.      * @ORM\Column(name="form_status", type="boolean", options={"default"=0})
  416.      */
  417.     private $formStatus 0;
  418.     /**
  419.      * @var string|null
  420.      *
  421.      * @ORM\Column(name="form_closed", type="text", nullable=true)
  422.      */
  423.     private $formClosed;
  424.     public function __construct()
  425.     {
  426.         $this->eventFormEntities = new ArrayCollection();
  427.     }
  428.     /**
  429.      * Get id
  430.      *
  431.      * @return integer
  432.      */
  433.     public function getId()
  434.     {
  435.         return $this->id;
  436.     }
  437.     /**
  438.      * Set proposalId
  439.      *
  440.      * @param string $proposalId
  441.      *
  442.      * @return MobileAppEvent
  443.      */
  444.     public function setProposalId($proposalId)
  445.     {
  446.         $this->proposalId $proposalId;
  447.         return $this;
  448.     }
  449.     /**
  450.      * Get proposalId
  451.      *
  452.      * @return string
  453.      */
  454.     public function getProposalId()
  455.     {
  456.         return $this->proposalId;
  457.     }
  458.     /**
  459.      * Set name
  460.      *
  461.      * @param string $name
  462.      *
  463.      * @return MobileAppEvent
  464.      */
  465.     public function setName($name)
  466.     {
  467.         $this->name $name;
  468.         return $this;
  469.     }
  470.     /**
  471.      * Get name
  472.      *
  473.      * @return string
  474.      */
  475.     public function getName()
  476.     {
  477.         return $this->name;
  478.     }
  479.     /**
  480.      * Set nameEn
  481.      *
  482.      * @param string $nameEn
  483.      *
  484.      * @return MobileAppEvent
  485.      */
  486.     public function setNameEn($nameEn)
  487.     {
  488.         $this->nameEn $nameEn;
  489.         return $this;
  490.     }
  491.     /**
  492.      * Get nameEn
  493.      *
  494.      * @return string
  495.      */
  496.     public function getNameEn()
  497.     {
  498.         return $this->nameEn;
  499.     }
  500.     /**
  501.      * Set keyword
  502.      *
  503.      * @param string $keyword
  504.      *
  505.      * @return MobileAppEvent
  506.      */
  507.     public function setKeyword($keyword)
  508.     {
  509.         $this->keyword $keyword;
  510.         return $this;
  511.     }
  512.     /**
  513.      * Get keyword
  514.      *
  515.      * @return string
  516.      */
  517.     public function getKeyword()
  518.     {
  519.         return $this->keyword;
  520.     }
  521.     /**
  522.      * Set country
  523.      *
  524.      * @param string $country
  525.      *
  526.      * @return MobileAppEvent
  527.      */
  528.     public function setCountry($country)
  529.     {
  530.         $this->country $country;
  531.         return $this;
  532.     }
  533.     /**
  534.      * Get country
  535.      *
  536.      * @return string
  537.      */
  538.     public function getCountry()
  539.     {
  540.         return $this->country;
  541.     }
  542.     /**
  543.      * Set city
  544.      *
  545.      * @param string $city
  546.      *
  547.      * @return MobileAppEvent
  548.      */
  549.     public function setCity($city)
  550.     {
  551.         $this->city $city;
  552.         return $this;
  553.     }
  554.     /**
  555.      * Get city
  556.      *
  557.      * @return string
  558.      */
  559.     public function getCity()
  560.     {
  561.         return $this->city;
  562.     }
  563.     /**
  564.      * Set address
  565.      *
  566.      * @param string $address
  567.      *
  568.      * @return MobileAppEvent
  569.      */
  570.     public function setAddress($address)
  571.     {
  572.         $this->address $address;
  573.         return $this;
  574.     }
  575.     /**
  576.      * Get address
  577.      *
  578.      * @return string
  579.      */
  580.     public function getAddress()
  581.     {
  582.         return $this->address;
  583.     }
  584.     /**
  585.      * Set description
  586.      *
  587.      * @param string $description
  588.      *
  589.      * @return MobileAppEvent
  590.      */
  591.     public function setDescription($description)
  592.     {
  593.         $this->description $description;
  594.         return $this;
  595.     }
  596.     /**
  597.      * Get description
  598.      *
  599.      * @return string
  600.      */
  601.     public function getDescription()
  602.     {
  603.         return $this->description;
  604.     }
  605.     /**
  606.      * Set descriptionEn
  607.      *
  608.      * @param string $descriptionEn
  609.      *
  610.      * @return MobileAppEvent
  611.      */
  612.     public function setDescriptionEn($descriptionEn)
  613.     {
  614.         $this->descriptionEn $descriptionEn;
  615.         return $this;
  616.     }
  617.     /**
  618.      * Get descriptionEn
  619.      *
  620.      * @return string
  621.      */
  622.     public function getDescriptionEn()
  623.     {
  624.         return $this->descriptionEn;
  625.     }
  626.     /**
  627.      * Set location
  628.      *
  629.      * @param string $location
  630.      *
  631.      * @return MobileAppEvent
  632.      */
  633.     public function setLocation($location)
  634.     {
  635.         $this->location $location;
  636.         return $this;
  637.     }
  638.     /**
  639.      * Get location
  640.      *
  641.      * @return string
  642.      */
  643.     public function getLocation()
  644.     {
  645.         return $this->location;
  646.     }
  647.     /**
  648.      * Set startDate
  649.      *
  650.      * @param \DateTime $startDate
  651.      *
  652.      * @return MobileAppEvent
  653.      */
  654.     public function setStartDate($startDate)
  655.     {
  656.         $this->startDate $startDate;
  657.         return $this;
  658.     }
  659.     /**
  660.      * Get startDate
  661.      *
  662.      * @return \DateTime
  663.      */
  664.     public function getStartDate()
  665.     {
  666.         return $this->startDate;
  667.     }
  668.     /**
  669.      * Set endDate
  670.      *
  671.      * @param \DateTime $endDate
  672.      *
  673.      * @return MobileAppEvent
  674.      */
  675.     public function setEndDate($endDate)
  676.     {
  677.         $this->endDate $endDate;
  678.         return $this;
  679.     }
  680.     /**
  681.      * Get endDate
  682.      *
  683.      * @return \DateTime
  684.      */
  685.     public function getEndDate()
  686.     {
  687.         return $this->endDate;
  688.     }
  689.     /**
  690.      * Set status
  691.      *
  692.      * @param boolean $status
  693.      *
  694.      * @return MobileAppEvent
  695.      */
  696.     public function setStatus($status)
  697.     {
  698.         $this->status $status;
  699.         return $this;
  700.     }
  701.     /**
  702.      * Get status
  703.      *
  704.      * @return boolean
  705.      */
  706.     public function getStatus()
  707.     {
  708.         return $this->status;
  709.     }
  710.     /**
  711.      * Set image
  712.      *
  713.      * @param string $image
  714.      *
  715.      * @return MobileAppEvent
  716.      */
  717.     public function setImage($image)
  718.     {
  719.         $this->image $image;
  720.         return $this;
  721.     }
  722.     /**
  723.      * Get image
  724.      *
  725.      * @return string
  726.      */
  727.     public function getImage()
  728.     {
  729.         return $this->image;
  730.     }
  731.     /**
  732.      * Set imageBackground
  733.      *
  734.      * @param string $imageBackground
  735.      *
  736.      * @return MobileAppEvent
  737.      */
  738.     public function setImageBackground($imageBackground)
  739.     {
  740.         $this->imageBackground $imageBackground;
  741.         return $this;
  742.     }
  743.     /**
  744.      * Get imageBackground
  745.      *
  746.      * @return string
  747.      */
  748.     public function getImageBackground()
  749.     {
  750.         return $this->imageBackground;
  751.     }
  752.     /**
  753.      * Set logo
  754.      *
  755.      * @param string $logo
  756.      *
  757.      * @return MobileAppEvent
  758.      */
  759.     public function setLogo($logo)
  760.     {
  761.         $this->logo $logo;
  762.         return $this;
  763.     }
  764.     /**
  765.      * Get logo
  766.      *
  767.      * @return string
  768.      */
  769.     public function getLogo()
  770.     {
  771.         return $this->logo;
  772.     }
  773.     /**
  774.      * Set imageWeb
  775.      *
  776.      * @param string $imageWeb
  777.      *
  778.      * @return MobileAppEvent
  779.      */
  780.     public function setImageWeb($imageWeb)
  781.     {
  782.         $this->imageWeb $imageWeb;
  783.         return $this;
  784.     }
  785.     /**
  786.      * Get imageWeb
  787.      *
  788.      * @return string
  789.      */
  790.     public function getImageWeb()
  791.     {
  792.         return $this->imageWeb;
  793.     }
  794.     /**
  795.      * Set video
  796.      *
  797.      * @param string $video
  798.      *
  799.      * @return MobileAppEvent
  800.      */
  801.     public function setVideo($video)
  802.     {
  803.         $this->video $video;
  804.         return $this;
  805.     }
  806.     /**
  807.      * Get video
  808.      *
  809.      * @return string
  810.      */
  811.     public function getVideo()
  812.     {
  813.         return $this->video;
  814.     }
  815.     /**
  816.      * Set music
  817.      *
  818.      * @param string $music
  819.      *
  820.      * @return MobileAppEvent
  821.      */
  822.     public function setMusic($music)
  823.     {
  824.         $this->music $music;
  825.         return $this;
  826.     }
  827.     /**
  828.      * Get music
  829.      *
  830.      * @return string
  831.      */
  832.     public function getMusic()
  833.     {
  834.         return $this->music;
  835.     }
  836.     /**
  837.      * Set primaryColor
  838.      *
  839.      * @param string $primaryColor
  840.      *
  841.      * @return MobileAppEvent
  842.      */
  843.     public function setPrimaryColor($primaryColor)
  844.     {
  845.         $this->primaryColor $primaryColor;
  846.         return $this;
  847.     }
  848.     /**
  849.      * Get primaryColor
  850.      *
  851.      * @return string
  852.      */
  853.     public function getPrimaryColor()
  854.     {
  855.         return $this->primaryColor;
  856.     }
  857.     /**
  858.      * Set secondaryColor
  859.      *
  860.      * @param string $secondaryColor
  861.      *
  862.      * @return MobileAppEvent
  863.      */
  864.     public function setSecondaryColor($secondaryColor)
  865.     {
  866.         $this->secondaryColor $secondaryColor;
  867.         return $this;
  868.     }
  869.     /**
  870.      * Get secondaryColor
  871.      *
  872.      * @return string
  873.      */
  874.     public function getSecondaryColor()
  875.     {
  876.         return $this->secondaryColor;
  877.     }
  878.     /**
  879.      * Set bgColor
  880.      *
  881.      * @param string $bgColor
  882.      *
  883.      * @return MobileAppEvent
  884.      */
  885.     public function setBgColor($bgColor)
  886.     {
  887.         $this->bgColor $bgColor;
  888.         return $this;
  889.     }
  890.     /**
  891.      * Get bgColor
  892.      *
  893.      * @return string
  894.      */
  895.     public function getBgColor()
  896.     {
  897.         return $this->bgColor;
  898.     }
  899.     /**
  900.      * Set registerBgColor
  901.      *
  902.      * @param string $registerBgColor
  903.      *
  904.      * @return MobileAppEvent
  905.      */
  906.     public function setRegisterBgColor($registerBgColor)
  907.     {
  908.         $this->registerBgColor $registerBgColor;
  909.         return $this;
  910.     }
  911.     /**
  912.      * Get registerBgColor
  913.      *
  914.      * @return string
  915.      */
  916.     public function getRegisterBgColor()
  917.     {
  918.         return $this->registerBgColor;
  919.     }
  920.     /**
  921.      * Set registerTextColor
  922.      *
  923.      * @param string $registerTextColor
  924.      *
  925.      * @return MobileAppEvent
  926.      */
  927.     public function setRegisterTextColor($registerTextColor)
  928.     {
  929.         $this->registerTextColor $registerTextColor;
  930.         return $this;
  931.     }
  932.     /**
  933.      * Get registerTextColor
  934.      *
  935.      * @return string
  936.      */
  937.     public function getRegisterTextColor()
  938.     {
  939.         return $this->registerTextColor;
  940.     }
  941.     /**
  942.      * Set createdAt
  943.      *
  944.      * @param \DateTime $createdAt
  945.      *
  946.      * @return MobileAppEvent
  947.      */
  948.     public function setCreatedAt($createdAt)
  949.     {
  950.         $this->createdAt $createdAt;
  951.         return $this;
  952.     }
  953.     /**
  954.      * Get createdAt
  955.      *
  956.      * @return \DateTime
  957.      */
  958.     public function getCreatedAt()
  959.     {
  960.         return $this->createdAt;
  961.     }
  962.     /**
  963.      * Set createdId
  964.      *
  965.      * @param integer $createdId
  966.      *
  967.      * @return MobileAppEvent
  968.      */
  969.     public function setCreatedId($createdId)
  970.     {
  971.         $this->createdId $createdId;
  972.         return $this;
  973.     }
  974.     /**
  975.      * Get createdId
  976.      *
  977.      * @return integer
  978.      */
  979.     public function getCreatedId()
  980.     {
  981.         return $this->createdId;
  982.     }
  983.     /**
  984.      * Set updatedAt
  985.      *
  986.      * @param \DateTime $updatedAt
  987.      *
  988.      * @return MobileAppEvent
  989.      */
  990.     public function setUpdatedAt($updatedAt)
  991.     {
  992.         $this->updatedAt $updatedAt;
  993.         return $this;
  994.     }
  995.     /**
  996.      * Get updatedAt
  997.      *
  998.      * @return \DateTime
  999.      */
  1000.     public function getUpdatedAt()
  1001.     {
  1002.         return $this->updatedAt;
  1003.     }
  1004.     /**
  1005.      * Set updatedId
  1006.      *
  1007.      * @param integer $updatedId
  1008.      *
  1009.      * @return MobileAppEvent
  1010.      */
  1011.     public function setUpdatedId($updatedId)
  1012.     {
  1013.         $this->updatedId $updatedId;
  1014.         return $this;
  1015.     }
  1016.     /**
  1017.      * Get updatedId
  1018.      *
  1019.      * @return integer
  1020.      */
  1021.     public function getUpdatedId()
  1022.     {
  1023.         return $this->updatedId;
  1024.     }
  1025.     /**
  1026.      * Set privateGallery
  1027.      *
  1028.      * @param boolean $privateGallery
  1029.      *
  1030.      * @return MobileAppEvent
  1031.      */
  1032.     public function setPrivateGallery($privateGallery)
  1033.     {
  1034.         $this->privateGallery $privateGallery;
  1035.         return $this;
  1036.     }
  1037.     /**
  1038.      * Get privateGallery
  1039.      *
  1040.      * @return boolean
  1041.      */
  1042.     public function getPrivateGallery()
  1043.     {
  1044.         return $this->privateGallery;
  1045.     }
  1046.     /**
  1047.      * Set voteGallery
  1048.      *
  1049.      * @param boolean $voteGallery
  1050.      *
  1051.      * @return MobileAppEvent
  1052.      */
  1053.     public function setVoteGallery($voteGallery)
  1054.     {
  1055.         $this->voteGallery $voteGallery;
  1056.         return $this;
  1057.     }
  1058.     /**
  1059.      * Get voteGallery
  1060.      *
  1061.      * @return boolean
  1062.      */
  1063.     public function getVoteGallery()
  1064.     {
  1065.         return $this->voteGallery;
  1066.     }
  1067.     /**
  1068.      * Set privateSelfie
  1069.      *
  1070.      * @param boolean $privateSelfie
  1071.      *
  1072.      * @return MobileAppEvent
  1073.      */
  1074.     public function setPrivateSelfie($privateSelfie)
  1075.     {
  1076.         $this->privateSelfie $privateSelfie;
  1077.         return $this;
  1078.     }
  1079.     /**
  1080.      * Get privateSelfie
  1081.      *
  1082.      * @return boolean
  1083.      */
  1084.     public function getPrivateSelfie()
  1085.     {
  1086.         return $this->privateSelfie;
  1087.     }
  1088.     /**
  1089.      * Set privateVideo
  1090.      *
  1091.      * @param boolean $privateVideo
  1092.      *
  1093.      * @return MobileAppEvent
  1094.      */
  1095.     public function setPrivateVideo($privateVideo)
  1096.     {
  1097.         $this->privateVideo $privateVideo;
  1098.         return $this;
  1099.     }
  1100.     /**
  1101.      * Get privateVideo
  1102.      *
  1103.      * @return boolean
  1104.      */
  1105.     public function getPrivateVideo()
  1106.     {
  1107.         return $this->privateVideo;
  1108.     }
  1109.     /**
  1110.      * Set badgeMulti
  1111.      *
  1112.      * @param boolean $badgeMulti
  1113.      *
  1114.      * @return MobileAppEvent
  1115.      */
  1116.     public function setBadgeMulti($badgeMulti)
  1117.     {
  1118.         $this->badgeMulti $badgeMulti;
  1119.         return $this;
  1120.     }
  1121.     /**
  1122.      * Get badgeMulti
  1123.      *
  1124.      * @return boolean
  1125.      */
  1126.     public function getBadgeMulti()
  1127.     {
  1128.         return $this->badgeMulti;
  1129.     }
  1130.     /**
  1131.      * Set privateWall
  1132.      *
  1133.      * @param boolean $privateWall
  1134.      *
  1135.      * @return MobileAppEvent
  1136.      */
  1137.     public function setPrivateWall($privateWall)
  1138.     {
  1139.         $this->privateWall $privateWall;
  1140.         return $this;
  1141.     }
  1142.     /**
  1143.      * Get privateWall
  1144.      *
  1145.      * @return boolean
  1146.      */
  1147.     public function getPrivateWall()
  1148.     {
  1149.         return $this->privateWall;
  1150.     }
  1151.     /**
  1152.      * Set wallView
  1153.      *
  1154.      * @param boolean $wallView
  1155.      *
  1156.      * @return MobileAppEvent
  1157.      */
  1158.     public function setWallView($wallView)
  1159.     {
  1160.         $this->wallView $wallView;
  1161.         return $this;
  1162.     }
  1163.     /**
  1164.      * Get wallView
  1165.      *
  1166.      * @return boolean
  1167.      */
  1168.     public function getWallView()
  1169.     {
  1170.         return $this->wallView;
  1171.     }
  1172.     /**
  1173.      * Set urlAppAndroid
  1174.      *
  1175.      * @param string $urlAppAndroid
  1176.      *
  1177.      * @return MobileAppEvent
  1178.      */
  1179.     public function setUrlAppAndroid($urlAppAndroid)
  1180.     {
  1181.         $this->urlAppAndroid $urlAppAndroid;
  1182.         return $this;
  1183.     }
  1184.     /**
  1185.      * Get urlAppAndroid
  1186.      *
  1187.      * @return string
  1188.      */
  1189.     public function getUrlAppAndroid()
  1190.     {
  1191.         return $this->urlAppAndroid;
  1192.     }
  1193.     /**
  1194.      * Set urlAppIos
  1195.      *
  1196.      * @param string $urlAppIos
  1197.      *
  1198.      * @return MobileAppEvent
  1199.      */
  1200.     public function setUrlAppIos($urlAppIos)
  1201.     {
  1202.         $this->urlAppIos $urlAppIos;
  1203.         return $this;
  1204.     }
  1205.     /**
  1206.      * Get urlAppIos
  1207.      *
  1208.      * @return string
  1209.      */
  1210.     public function getUrlAppIos()
  1211.     {
  1212.         return $this->urlAppIos;
  1213.     }
  1214.     /**
  1215.      * Set emailSend
  1216.      *
  1217.      * @param string $emailSend
  1218.      *
  1219.      * @return MobileAppEvent
  1220.      */
  1221.     public function setEmailSend($emailSend)
  1222.     {
  1223.         $this->emailSend $emailSend;
  1224.         return $this;
  1225.     }
  1226.     /**
  1227.      * Get emailSend
  1228.      *
  1229.      * @return string
  1230.      */
  1231.     public function getEmailSend()
  1232.     {
  1233.         return $this->emailSend;
  1234.     }
  1235.     /**
  1236.      * Set passEmailSend
  1237.      *
  1238.      * @param string $passEmailSend
  1239.      *
  1240.      * @return MobileAppEvent
  1241.      */
  1242.     public function setPassEmailSend($passEmailSend)
  1243.     {
  1244.         $this->passEmailSend $passEmailSend;
  1245.         return $this;
  1246.     }
  1247.     /**
  1248.      * Get passEmailSend
  1249.      *
  1250.      * @return string
  1251.      */
  1252.     public function getPassEmailSend()
  1253.     {
  1254.         return $this->passEmailSend;
  1255.     }
  1256.     /**
  1257.      * Set mailContent
  1258.      *
  1259.      * @param string $mailContent
  1260.      *
  1261.      * @return MobileAppEvent
  1262.      */
  1263.     public function setMailContent($mailContent)
  1264.     {
  1265.         $this->mailContent $mailContent;
  1266.         return $this;
  1267.     }
  1268.     /**
  1269.      * Get mailContent
  1270.      *
  1271.      * @return string
  1272.      */
  1273.     public function getMailContent()
  1274.     {
  1275.         return $this->mailContent;
  1276.     }
  1277.     /**
  1278.      * Set mailContentQr
  1279.      *
  1280.      * @param string $mailContentQr
  1281.      *
  1282.      * @return MobileAppEvent
  1283.      */
  1284.     public function setMailContentQr($mailContentQr)
  1285.     {
  1286.         $this->mailContentQr $mailContentQr;
  1287.         return $this;
  1288.     }
  1289.     /**
  1290.      * Get mailContentQr
  1291.      *
  1292.      * @return string
  1293.      */
  1294.     public function getMailContentQr()
  1295.     {
  1296.         return $this->mailContentQr;
  1297.     }
  1298.     /**
  1299.      * Set mailContentConfirmation
  1300.      *
  1301.      * @param string $mailContentConfirmation
  1302.      *
  1303.      * @return MobileAppEvent
  1304.      */
  1305.     public function setMailContentConfirmation($mailContentConfirmation)
  1306.     {
  1307.         $this->mailContentConfirmation $mailContentConfirmation;
  1308.         return $this;
  1309.     }
  1310.     /**
  1311.      * Get mailContentConfirmation
  1312.      *
  1313.      * @return string
  1314.      */
  1315.     public function getMailContentConfirmation()
  1316.     {
  1317.         return $this->mailContentConfirmation;
  1318.     }
  1319.     /**
  1320.      * Set mailContentReservation
  1321.      *
  1322.      * @param string $mailContentReservation
  1323.      *
  1324.      * @return MobileAppEvent
  1325.      */
  1326.     public function setMailContentReservation($mailContentReservation)
  1327.     {
  1328.         $this->mailContentReservation $mailContentReservation;
  1329.         return $this;
  1330.     }
  1331.     /**
  1332.      * Get mailContentReservation
  1333.      *
  1334.      * @return string
  1335.      */
  1336.     public function getMailContentReservation()
  1337.     {
  1338.         return $this->mailContentReservation;
  1339.     }
  1340.     /**
  1341.      * Set appId
  1342.      *
  1343.      * @param string $appId
  1344.      *
  1345.      * @return MobileAppEvent
  1346.      */
  1347.     public function setAppId($appId)
  1348.     {
  1349.         $this->appId $appId;
  1350.         return $this;
  1351.     }
  1352.     /**
  1353.      * Get appId
  1354.      *
  1355.      * @return string
  1356.      */
  1357.     public function getAppId()
  1358.     {
  1359.         return $this->appId;
  1360.     }
  1361.     /**
  1362.      * Set restKeyApi
  1363.      *
  1364.      * @param string $restKeyApi
  1365.      *
  1366.      * @return MobileAppEvent
  1367.      */
  1368.     public function setRestKeyApi($restKeyApi)
  1369.     {
  1370.         $this->restKeyApi $restKeyApi;
  1371.         return $this;
  1372.     }
  1373.     /**
  1374.      * Get restKeyApi
  1375.      *
  1376.      * @return string
  1377.      */
  1378.     public function getRestKeyApi()
  1379.     {
  1380.         return $this->restKeyApi;
  1381.     }
  1382.     /**
  1383.      * Set eventIcon
  1384.      *
  1385.      * @param string $eventIcon
  1386.      *
  1387.      * @return MobileAppEvent
  1388.      */
  1389.     public function setEventIcon($eventIcon)
  1390.     {
  1391.         $this->eventIcon $eventIcon;
  1392.         return $this;
  1393.     }
  1394.     /**
  1395.      * Get eventIcon
  1396.      *
  1397.      * @return string
  1398.      */
  1399.     public function getEventIcon()
  1400.     {
  1401.         return $this->eventIcon;
  1402.     }
  1403.     /**
  1404.      * Set typeRegister
  1405.      *
  1406.      * @param string $typeRegister
  1407.      *
  1408.      * @return MobileAppEvent
  1409.      */
  1410.     public function setTypeRegister($typeRegister)
  1411.     {
  1412.         $this->typeRegister $typeRegister;
  1413.         return $this;
  1414.     }
  1415.     /**
  1416.      * Get typeRegister
  1417.      *
  1418.      * @return string
  1419.      */
  1420.     public function getTypeRegister()
  1421.     {
  1422.         return $this->typeRegister;
  1423.     }
  1424.     /**
  1425.      * Set twitter
  1426.      *
  1427.      * @param string $twitter
  1428.      *
  1429.      * @return MobileAppEvent
  1430.      */
  1431.     public function setTwitter($twitter)
  1432.     {
  1433.         $this->twitter $twitter;
  1434.         return $this;
  1435.     }
  1436.     /**
  1437.      * Get twitter
  1438.      *
  1439.      * @return string
  1440.      */
  1441.     public function getTwitter()
  1442.     {
  1443.         return $this->twitter;
  1444.     }
  1445.     /**
  1446.      * Set facebook
  1447.      *
  1448.      * @param string $facebook
  1449.      *
  1450.      * @return MobileAppEvent
  1451.      */
  1452.     public function setFacebook($facebook)
  1453.     {
  1454.         $this->facebook $facebook;
  1455.         return $this;
  1456.     }
  1457.     /**
  1458.      * Get facebook
  1459.      *
  1460.      * @return string
  1461.      */
  1462.     public function getFacebook()
  1463.     {
  1464.         return $this->facebook;
  1465.     }
  1466.     /**
  1467.      * Set instagram
  1468.      *
  1469.      * @param string $instagram
  1470.      *
  1471.      * @return MobileAppEvent
  1472.      */
  1473.     public function setInstagram($instagram)
  1474.     {
  1475.         $this->instagram $instagram;
  1476.         return $this;
  1477.     }
  1478.     /**
  1479.      * Get instagram
  1480.      *
  1481.      * @return string
  1482.      */
  1483.     public function getInstagram()
  1484.     {
  1485.         return $this->instagram;
  1486.     }
  1487.     /**
  1488.      * Set linkedin
  1489.      *
  1490.      * @param string $linkedin
  1491.      *
  1492.      * @return MobileAppEvent
  1493.      */
  1494.     public function setLinkedin($linkedin)
  1495.     {
  1496.         $this->linkedin $linkedin;
  1497.         return $this;
  1498.     }
  1499.     /**
  1500.      * Get linkedin
  1501.      *
  1502.      * @return string
  1503.      */
  1504.     public function getLinkedin()
  1505.     {
  1506.         return $this->linkedin;
  1507.     }
  1508.     /**
  1509.      * Set youtube
  1510.      *
  1511.      * @param string $youtube
  1512.      *
  1513.      * @return MobileAppEvent
  1514.      */
  1515.     public function setYoutube($youtube)
  1516.     {
  1517.         $this->youtube $youtube;
  1518.         return $this;
  1519.     }
  1520.     /**
  1521.      * Get youtube
  1522.      *
  1523.      * @return string
  1524.      */
  1525.     public function getYoutube()
  1526.     {
  1527.         return $this->youtube;
  1528.     }
  1529.     /**
  1530.      * Set termsConditions
  1531.      *
  1532.      * @param string $termsConditions
  1533.      *
  1534.      * @return MobileAppEvent
  1535.      */
  1536.     public function setTermsConditions($termsConditions)
  1537.     {
  1538.         $this->termsConditions $termsConditions;
  1539.         return $this;
  1540.     }
  1541.     /**
  1542.      * Get termsConditions
  1543.      *
  1544.      * @return string
  1545.      */
  1546.     public function getTermsConditions()
  1547.     {
  1548.         return $this->termsConditions;
  1549.     }
  1550.     /**
  1551.      * Set shareContact
  1552.      *
  1553.      * @param string $shareContact
  1554.      *
  1555.      * @return MobileAppEvent
  1556.      */
  1557.     public function setShareContact($shareContact)
  1558.     {
  1559.         $this->shareContact $shareContact;
  1560.         return $this;
  1561.     }
  1562.     /**
  1563.      * Get shareContact
  1564.      *
  1565.      * @return string
  1566.      */
  1567.     public function getShareContact()
  1568.     {
  1569.         return $this->shareContact;
  1570.     }
  1571.     /**
  1572.      * Set commercialCommunicationsTitle
  1573.      *
  1574.      * @param string $commercialCommunicationsTitle
  1575.      *
  1576.      * @return MobileAppEvent
  1577.      */
  1578.     public function setCommercialCommunicationsTitle($commercialCommunicationsTitle)
  1579.     {
  1580.         $this->commercialCommunicationsTitle $commercialCommunicationsTitle;
  1581.         return $this;
  1582.     }
  1583.     /**
  1584.      * Get commercialCommunicationsTitle
  1585.      *
  1586.      * @return string
  1587.      */
  1588.     public function getCommercialCommunicationsTitle()
  1589.     {
  1590.         return $this->commercialCommunicationsTitle;
  1591.     }
  1592.     /**
  1593.      * Set commercialCommunications
  1594.      *
  1595.      * @param string $commercialCommunications
  1596.      *
  1597.      * @return MobileAppEvent
  1598.      */
  1599.     public function setCommercialCommunications($commercialCommunications)
  1600.     {
  1601.         $this->commercialCommunications $commercialCommunications;
  1602.         return $this;
  1603.     }
  1604.     /**
  1605.      * Get commercialCommunications
  1606.      *
  1607.      * @return string
  1608.      */
  1609.     public function getCommercialCommunications()
  1610.     {
  1611.         return $this->commercialCommunications;
  1612.     }
  1613.     /**
  1614.      * Set companyName
  1615.      *
  1616.      * @param string $companyName
  1617.      *
  1618.      * @return MobileAppEvent
  1619.      */
  1620.     public function setCompanyName($companyName)
  1621.     {
  1622.         $this->companyName $companyName;
  1623.         return $this;
  1624.     }
  1625.     /**
  1626.      * Get companyName
  1627.      *
  1628.      * @return string
  1629.      */
  1630.     public function getCompanyName()
  1631.     {
  1632.         return $this->companyName;
  1633.     }
  1634.     /**
  1635.      * Set language
  1636.      *
  1637.      * @param string $language
  1638.      *
  1639.      * @return MobileAppEvent
  1640.      */
  1641.     public function setLanguage($language)
  1642.     {
  1643.         $this->language $language;
  1644.         return $this;
  1645.     }
  1646.     /**
  1647.      * Get language
  1648.      *
  1649.      * @return string
  1650.      */
  1651.     public function getLanguage()
  1652.     {
  1653.         return $this->language;
  1654.     }
  1655.     /**
  1656.      * Set preRegistration
  1657.      *
  1658.      * @param boolean $preRegistration
  1659.      *
  1660.      * @return MobileAppEvent
  1661.      */
  1662.     public function setPreRegistration($preRegistration)
  1663.     {
  1664.         $this->preRegistration $preRegistration;
  1665.         return $this;
  1666.     }
  1667.     /**
  1668.      * Get preRegistration
  1669.      *
  1670.      * @return boolean
  1671.      */
  1672.     public function getPreRegistration()
  1673.     {
  1674.         return $this->preRegistration;
  1675.     }
  1676.     /**
  1677.      * Set appLoginRegister
  1678.      *
  1679.      * @param boolean $appLoginRegister
  1680.      *
  1681.      * @return MobileAppEvent
  1682.      */
  1683.     public function setAppLoginRegister($appLoginRegister)
  1684.     {
  1685.         $this->appLoginRegister $appLoginRegister;
  1686.         return $this;
  1687.     }
  1688.     /**
  1689.      * Get appLoginRegister
  1690.      *
  1691.      * @return boolean
  1692.      */
  1693.     public function getAppLoginRegister()
  1694.     {
  1695.         return $this->appLoginRegister;
  1696.     }
  1697.     /**
  1698.      * Set appLoginInvitation
  1699.      *
  1700.      * @param boolean $appLoginInvitation
  1701.      *
  1702.      * @return MobileAppEvent
  1703.      */
  1704.     public function setAppLoginInvitation($appLoginInvitation)
  1705.     {
  1706.         $this->appLoginInvitation $appLoginInvitation;
  1707.         return $this;
  1708.     }
  1709.     /**
  1710.      * Get appLoginInvitation
  1711.      *
  1712.      * @return boolean
  1713.      */
  1714.     public function getAppLoginInvitation()
  1715.     {
  1716.         return $this->appLoginInvitation;
  1717.     }
  1718.     /**
  1719.      * Set mailContentInvitation
  1720.      *
  1721.      * @param string $mailContentInvitation
  1722.      *
  1723.      * @return MobileAppEvent
  1724.      */
  1725.     public function setMailContentInvitation($mailContentInvitation)
  1726.     {
  1727.         $this->mailContentInvitation $mailContentInvitation;
  1728.         return $this;
  1729.     }
  1730.     /**
  1731.      * Get mailContentInvitation
  1732.      *
  1733.      * @return string
  1734.      */
  1735.     public function getMailContentInvitation()
  1736.     {
  1737.         return $this->mailContentInvitation;
  1738.     }
  1739.     /**
  1740.      * Set alfa
  1741.      *
  1742.      * @param string $alfa
  1743.      *
  1744.      * @return MobileAppEvent
  1745.      */
  1746.     public function setAlfa($alfa)
  1747.     {
  1748.         $this->alfa $alfa;
  1749.         return $this;
  1750.     }
  1751.     /**
  1752.      * Get alfa
  1753.      *
  1754.      * @return string
  1755.      */
  1756.     public function getAlfa()
  1757.     {
  1758.         return $this->alfa;
  1759.     }
  1760.     /**
  1761.      * Set backgroundHome
  1762.      *
  1763.      * @param string $backgroundHome
  1764.      *
  1765.      * @return MobileAppEvent
  1766.      */
  1767.     public function setBackgroundHome($backgroundHome)
  1768.     {
  1769.         $this->backgroundHome $backgroundHome;
  1770.         return $this;
  1771.     }
  1772.     /**
  1773.      * Get backgroundHome
  1774.      *
  1775.      * @return string
  1776.      */
  1777.     public function getBackgroundHome()
  1778.     {
  1779.         return $this->backgroundHome;
  1780.     }
  1781.     /**
  1782.      * Get eventFormEntities
  1783.      */
  1784.     public function getEventFormEntities()
  1785.     {
  1786.         return $this->eventFormEntities;
  1787.     }
  1788.     public function addEventFormEntity(EventFormEntity $eventFormEntity)
  1789.     {
  1790.         if (!$this->eventFormEntities->contains($eventFormEntity)) {
  1791.             $this->eventFormEntities[] = $eventFormEntity;
  1792.             $eventFormEntity->setEid($this);
  1793.         }
  1794.     }
  1795.     public function removeEventFormEntity(EventFormEntity $eventFormEntity)
  1796.     {
  1797.         if ($this->eventFormEntities->contains($eventFormEntity)) {
  1798.             $this->eventFormEntities->removeElement($eventFormEntity);
  1799.             // establecer el lado inverso a null (a menos que ya se haya eliminado)
  1800.             if ($eventFormEntity->getEid() === $this) {
  1801.                 $eventFormEntity->setEid(null);
  1802.             }
  1803.         }
  1804.     }
  1805.     /**
  1806.      * Set formStatus
  1807.      *
  1808.      * @param boolean $formStatus
  1809.      *
  1810.      * @return MobileAppEvent
  1811.      */
  1812.     public function setFormStatus($formStatus)
  1813.     {
  1814.         $this->formStatus $formStatus;
  1815.         return $this;
  1816.     }
  1817.     /**
  1818.      * Get formStatus
  1819.      *
  1820.      * @return boolean
  1821.      */
  1822.     public function getFormStatus()
  1823.     {
  1824.         return $this->formStatus;
  1825.     }
  1826.     /**
  1827.      * Set formClosed
  1828.      *
  1829.      * @param string|null $formClosed
  1830.      * @return MobileAppEvent
  1831.      */
  1832.     public function setFormClosed($formClosed)
  1833.     {
  1834.         $this->formClosed $formClosed;
  1835.         return $this;
  1836.     }
  1837.     /**
  1838.      * Get formClosed
  1839.      *
  1840.      * @return string|null
  1841.      */
  1842.     public function getFormClosed()
  1843.     {
  1844.         return $this->formClosed;
  1845.     }
  1846. }