src/Entity/SettingsRol.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. /**
  6.  * SettingsRol
  7.  *
  8.  * @ORM\Table(name="settings_rol")
  9.  * @ORM\Entity(repositoryClass="App\Repository\SettingsTypeRepository")
  10.  */
  11. class SettingsRol
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Column(name="id", type="integer")
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @var string
  23.      * @ORM\Column(name="team", type="string", length=255)
  24.      */
  25.     private $team;
  26.     /**
  27.      * @var string
  28.      * @Assert\NotBlank()
  29.      * @ORM\Column(name="rol", type="string", length=255)
  30.      */
  31.     private $rol;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="modulo_admin", type="integer")
  36.      */
  37.     private $madmin;
  38.     /**
  39.      * @var int
  40.      *
  41.      * @ORM\Column(name="modulo_my_flight", type="integer")
  42.      */
  43.     private $mmyflight;
  44.     /**
  45.      * @var int
  46.      *
  47.      * @ORM\Column(name="modulo_hotel", type="integer")
  48.      */
  49.     private $mhotel;
  50.     /**
  51.      * @var int
  52.      *
  53.      * @ORM\Column(name="modulo_agenda", type="integer")
  54.      */
  55.     private $magenda;
  56.     /**
  57.      * @var int
  58.      *
  59.      * @ORM\Column(name="modulo_speakers", type="integer")
  60.      */
  61.     private $mspeakers;
  62.     /**
  63.      * @var int
  64.      *
  65.      * @ORM\Column(name="modulo_documents", type="integer")
  66.      */
  67.     private $mdocuments;
  68.     /**
  69.      * @var int
  70.      *
  71.      * @ORM\Column(name="modulo_locations", type="integer")
  72.      */
  73.     private $mlocations;
  74.     /**
  75.      * @var int
  76.      *
  77.      * @ORM\Column(name="modulo_contacts", type="integer")
  78.      */
  79.     private $mcontacts;
  80.     /**
  81.      * @var int
  82.      *
  83.      * @ORM\Column(name="modulo_rate_events", type="integer")
  84.      */
  85.     private $mrateevents;
  86.     /**
  87.      * @var int
  88.      *
  89.      * @ORM\Column(name="modulo_my_badge", type="integer")
  90.      */
  91.     private $mmybadge;
  92.     /**
  93.      * @var int
  94.      *
  95.      * @ORM\Column(name="modulo_event_questions", type="integer")
  96.      */
  97.     private $meventquestions;
  98.     /**
  99.      * @var int
  100.      *
  101.      * @ORM\Column(name="modulo_gallery", type="integer")
  102.      */
  103.     private $mgallery;
  104.     /**
  105.      * @var int
  106.      *
  107.      * @ORM\Column(name="modulo_games", type="integer")
  108.      */
  109.     private $mgames;
  110.     /**
  111.      * @var int
  112.      *
  113.      * @ORM\Column(name="modulo_flights", type="integer")
  114.      */
  115.     private $mflights;
  116.     /**
  117.      * @var int
  118.      *
  119.      * @ORM\Column(name="modulo_rates", type="integer")
  120.      */
  121.     private $mrates;
  122.     /**
  123.      * @var int
  124.      *
  125.      * @ORM\Column(name="modulo_video", type="integer")
  126.      */
  127.     private $mvideo;
  128.     /**
  129.      * @var int
  130.      *
  131.      * @ORM\Column(name="modulo_video_collage", type="integer")
  132.      */
  133.     private $mvideocollage;
  134.     /**
  135.      * @var bool
  136.      *
  137.      * @ORM\Column(name="mchats", type="boolean")
  138.      */
  139.     private $mchats;
  140.     /**
  141.      * @var bool
  142.      *
  143.      * @ORM\Column(name="mforum", type="boolean")
  144.      */
  145.     private $mforum;
  146.     /**
  147.      * @var bool
  148.      *
  149.      * @ORM\Column(name="msocial", type="boolean")
  150.      */
  151.     private $msocial;
  152.     /**
  153.      * @var bool
  154.      *
  155.      * @ORM\Column(name="mscancard", type="boolean")
  156.      */
  157.     private $mscancard;
  158.     /**
  159.      * @var bool
  160.      *
  161.      * @ORM\Column(name="mattendants", type="boolean")
  162.      */
  163.     private $mattendants;
  164.     /**
  165.      * @var bool
  166.      *
  167.      * @ORM\Column(name="mtransfer", type="boolean")
  168.      */
  169.     private $mtransfer;
  170.     /**
  171.      * @var bool
  172.      *
  173.      * @ORM\Column(name="mroominglist", type="boolean")
  174.      */
  175.     private $mroominglist;
  176.     /**
  177.      * @var bool
  178.      *
  179.      * @ORM\Column(name="mreservationhotel", type="boolean")
  180.      */
  181.     private $mreservationhotel;
  182.     /**
  183.      * @var bool
  184.      *
  185.      * @ORM\Column(name="mavtechnical", type="boolean")
  186.      */
  187.     private $mavtechnical;
  188.     /**
  189.      * @var bool
  190.      *
  191.      * @ORM\Column(name="modulo_supplier", type="boolean")
  192.      */
  193.     private $msupplier;
  194.     /**
  195.      * @var bool
  196.      *
  197.      * @ORM\Column(name="modulo_activity", type="boolean")
  198.      */
  199.     private $mactivity;
  200.     /**
  201.      * @var bool
  202.      *
  203.      * @ORM\Column(name="modulo_seating", type="boolean")
  204.      */
  205.     private $mseating;
  206.     /**
  207.      * @var bool
  208.      *
  209.      * @ORM\Column(name="modulo_itinerary_flight", type="boolean")
  210.      */
  211.     private $mitineraryflight;
  212.     /**
  213.      * @var bool
  214.      *
  215.      * @ORM\Column(name="modulo_gds_flight", type="boolean")
  216.      */
  217.     private $mgdsflight;
  218.     /**
  219.      * @var bool
  220.      *
  221.      * @ORM\Column(name="modulo_admin_lounges", type="boolean")
  222.      */
  223.     private $madminlounges;
  224.     /**
  225.      * @var bool
  226.      *
  227.      * @ORM\Column(name="modulo_news_promotions", type="boolean")
  228.      */
  229.     private $mnewspromotions;
  230.     /**
  231.      * @var bool
  232.      *
  233.      * @ORM\Column(name="modulo_sponsors", type="boolean")
  234.      */
  235.     private $msponsors;
  236.     /**
  237.      * @var bool
  238.      *
  239.      * @ORM\Column(name="modulo_package_sale", type="boolean")
  240.      */
  241.     private $mpackagesale;
  242.     /**
  243.      * @var bool
  244.      *
  245.      * @ORM\Column(name="modulo_parking", type="boolean")
  246.      */
  247.     private $mparking;
  248.     /**
  249.      * @var bool
  250.      *
  251.      * @ORM\Column(name="modulo_product_presentation", type="boolean")
  252.      */
  253.     private $mproductpresentation;
  254.     /**
  255.      * @var bool
  256.      *
  257.      * @ORM\Column(name="modulo_schedule", type="boolean")
  258.      */
  259.     private $mschedule;
  260.     /**
  261.      * @var bool
  262.      *
  263.      * @ORM\Column(name="modulo_selfie", type="boolean")
  264.      */
  265.     private $mselfie;
  266.     /**
  267.      * @var bool
  268.      *
  269.      * @ORM\Column(name="modulo_taparally", type="boolean")
  270.      */
  271.     private $mtaparally;
  272.     /**
  273.      * @var bool
  274.      *
  275.      * @ORM\Column(name="modulo_virtualevent", type="boolean")
  276.      */
  277.     private $mvirtualevent;
  278.     /**
  279.      * @var bool
  280.      *
  281.      * @ORM\Column(name="modulo_partners", type="boolean")
  282.      */
  283.     private $mpartners;
  284.     /**
  285.      * @var bool
  286.      *
  287.      * @ORM\Column(name="modulo_register", type="boolean")
  288.      */
  289.     private $mregister;
  290.     /**
  291.      * @var bool
  292.      *
  293.      * @ORM\Column(name="modulo_surveys", type="boolean")
  294.      */
  295.     private $msurveys;
  296.     /**
  297.      * @var bool
  298.      *
  299.      * @ORM\Column(name="modulo_mads", type="boolean")
  300.      */
  301.     private $mmads;
  302.     /**
  303.      * Get id
  304.      *
  305.      * @return integer
  306.      */
  307.     public function getId()
  308.     {
  309.         return $this->id;
  310.     }
  311.     /**
  312.      * Set team
  313.      *
  314.      * @param string $team
  315.      *
  316.      * @return SettingsRol
  317.      */
  318.     public function setTeam($team)
  319.     {
  320.         $this->team $team;
  321.         return $this;
  322.     }
  323.     /**
  324.      * Get team
  325.      *
  326.      * @return string
  327.      */
  328.     public function getTeam()
  329.     {
  330.         return $this->team;
  331.     }
  332.     /**
  333.      * Set rol
  334.      *
  335.      * @param string $rol
  336.      *
  337.      * @return SettingsRol
  338.      */
  339.     public function setRol($rol)
  340.     {
  341.         $this->rol $rol;
  342.         return $this;
  343.     }
  344.     /**
  345.      * Get rol
  346.      *
  347.      * @return string
  348.      */
  349.     public function getRol()
  350.     {
  351.         return $this->rol;
  352.     }
  353.     /**
  354.      * Set mmyflight
  355.      *
  356.      * @param integer $mmyflight
  357.      *
  358.      * @return SettingsRol
  359.      */
  360.     public function setMmyflight($mmyflight)
  361.     {
  362.         $this->mmyflight $mmyflight;
  363.     
  364.         return $this;
  365.     }
  366.     /**
  367.      * Get mmyflight
  368.      *
  369.      * @return integer
  370.      */
  371.     public function getMmyflight()
  372.     {
  373.         return $this->mmyflight;
  374.     }
  375.     /**
  376.      * Set mhotel
  377.      *
  378.      * @param integer $mhotel
  379.      *
  380.      * @return SettingsRol
  381.      */
  382.     public function setMhotel($mhotel)
  383.     {
  384.         $this->mhotel $mhotel;
  385.     
  386.         return $this;
  387.     }
  388.     /**
  389.      * Get mhotel
  390.      *
  391.      * @return integer
  392.      */
  393.     public function getMhotel()
  394.     {
  395.         return $this->mhotel;
  396.     }
  397.     /**
  398.      * Set magenda
  399.      *
  400.      * @param integer $magenda
  401.      *
  402.      * @return SettingsRol
  403.      */
  404.     public function setMagenda($magenda)
  405.     {
  406.         $this->magenda $magenda;
  407.     
  408.         return $this;
  409.     }
  410.     /**
  411.      * Get magenda
  412.      *
  413.      * @return integer
  414.      */
  415.     public function getMagenda()
  416.     {
  417.         return $this->magenda;
  418.     }
  419.     /**
  420.      * Set mspeakers
  421.      *
  422.      * @param integer $mspeakers
  423.      *
  424.      * @return SettingsRol
  425.      */
  426.     public function setMspeakers($mspeakers)
  427.     {
  428.         $this->mspeakers $mspeakers;
  429.     
  430.         return $this;
  431.     }
  432.     /**
  433.      * Get mspeakers
  434.      *
  435.      * @return integer
  436.      */
  437.     public function getMspeakers()
  438.     {
  439.         return $this->mspeakers;
  440.     }
  441.     /**
  442.      * Set mdocuments
  443.      *
  444.      * @param integer $mdocuments
  445.      *
  446.      * @return SettingsRol
  447.      */
  448.     public function setMdocuments($mdocuments)
  449.     {
  450.         $this->mdocuments $mdocuments;
  451.     
  452.         return $this;
  453.     }
  454.     /**
  455.      * Get mdocuments
  456.      *
  457.      * @return integer
  458.      */
  459.     public function getMdocuments()
  460.     {
  461.         return $this->mdocuments;
  462.     }
  463.     /**
  464.      * Set mlocations
  465.      *
  466.      * @param integer $mlocations
  467.      *
  468.      * @return SettingsRol
  469.      */
  470.     public function setMlocations($mlocations)
  471.     {
  472.         $this->mlocations $mlocations;
  473.     
  474.         return $this;
  475.     }
  476.     /**
  477.      * Get mlocations
  478.      *
  479.      * @return integer
  480.      */
  481.     public function getMlocations()
  482.     {
  483.         return $this->mlocations;
  484.     }
  485.     /**
  486.      * Set mcontacts
  487.      *
  488.      * @param integer $mcontacts
  489.      *
  490.      * @return SettingsRol
  491.      */
  492.     public function setMcontacts($mcontacts)
  493.     {
  494.         $this->mcontacts $mcontacts;
  495.     
  496.         return $this;
  497.     }
  498.     /**
  499.      * Get mcontacts
  500.      *
  501.      * @return integer
  502.      */
  503.     public function getMcontacts()
  504.     {
  505.         return $this->mcontacts;
  506.     }
  507.     /**
  508.      * Set mrateevents
  509.      *
  510.      * @param integer $mrateevents
  511.      *
  512.      * @return SettingsRol
  513.      */
  514.     public function setMrateevents($mrateevents)
  515.     {
  516.         $this->mrateevents $mrateevents;
  517.     
  518.         return $this;
  519.     }
  520.     /**
  521.      * Get mrateevents
  522.      *
  523.      * @return integer
  524.      */
  525.     public function getMrateevents()
  526.     {
  527.         return $this->mrateevents;
  528.     }
  529.     /**
  530.      * Set mmybadge
  531.      *
  532.      * @param integer $mmybadge
  533.      *
  534.      * @return SettingsRol
  535.      */
  536.     public function setMmybadge($mmybadge)
  537.     {
  538.         $this->mmybadge $mmybadge;
  539.     
  540.         return $this;
  541.     }
  542.     /**
  543.      * Get mmybadge
  544.      *
  545.      * @return integer
  546.      */
  547.     public function getMmybadge()
  548.     {
  549.         return $this->mmybadge;
  550.     }
  551.     /**
  552.      * Set meventquestions
  553.      *
  554.      * @param integer $meventquestions
  555.      *
  556.      * @return SettingsRol
  557.      */
  558.     public function setMeventquestions($meventquestions)
  559.     {
  560.         $this->meventquestions $meventquestions;
  561.     
  562.         return $this;
  563.     }
  564.     /**
  565.      * Get meventquestions
  566.      *
  567.      * @return integer
  568.      */
  569.     public function getMeventquestions()
  570.     {
  571.         return $this->meventquestions;
  572.     }
  573.     /**
  574.      * Set madmin
  575.      *
  576.      * @param integer $madmin
  577.      *
  578.      * @return SettingsRol
  579.      */
  580.     public function setMadmin($madmin)
  581.     {
  582.         $this->madmin $madmin;
  583.     
  584.         return $this;
  585.     }
  586.     /**
  587.      * Get madmin
  588.      *
  589.      * @return integer
  590.      */
  591.     public function getMadmin()
  592.     {
  593.         return $this->madmin;
  594.     }
  595.     /**
  596.      * Set mgallery
  597.      *
  598.      * @param integer $mgallery
  599.      *
  600.      * @return SettingsRol
  601.      */
  602.     public function setMgallery($mgallery)
  603.     {
  604.         $this->mgallery $mgallery;
  605.     
  606.         return $this;
  607.     }
  608.     /**
  609.      * Get mgallery
  610.      *
  611.      * @return integer
  612.      */
  613.     public function getMgallery()
  614.     {
  615.         return $this->mgallery;
  616.     }
  617.     /**
  618.      * Set mgames
  619.      *
  620.      * @param integer $mgames
  621.      *
  622.      * @return SettingsRol
  623.      */
  624.     public function setMgames($mgames)
  625.     {
  626.         $this->mgames $mgames;
  627.         return $this;
  628.     }
  629.     /**
  630.      * Get mgames
  631.      *
  632.      * @return integer
  633.      */
  634.     public function getMgames()
  635.     {
  636.         return $this->mgames;
  637.     }
  638.     /**
  639.      * Set mflights
  640.      *
  641.      * @param integer $mflights
  642.      *
  643.      * @return SettingsRol
  644.      */
  645.     public function setMflights($mflights)
  646.     {
  647.         $this->mflights $mflights;
  648.         return $this;
  649.     }
  650.     /**
  651.      * Get mflights
  652.      *
  653.      * @return integer
  654.      */
  655.     public function getMflights()
  656.     {
  657.         return $this->mflights;
  658.     }
  659.     /**
  660.      * Set mrates
  661.      *
  662.      * @param integer $mrates
  663.      *
  664.      * @return SettingsRol
  665.      */
  666.     public function setMrates($mrates)
  667.     {
  668.         $this->mrates $mrates;
  669.         return $this;
  670.     }
  671.     /**
  672.      * Get mrates
  673.      *
  674.      * @return integer
  675.      */
  676.     public function getMrates()
  677.     {
  678.         return $this->mrates;
  679.     }
  680.     /**
  681.      * Set mchats
  682.      *
  683.      * @param boolean $mchats
  684.      *
  685.      * @return SettingsRol
  686.      */
  687.     public function setMchats($mchats)
  688.     {
  689.         $this->mchats $mchats;
  690.     
  691.         return $this;
  692.     }
  693.     /**
  694.      * Get mchats
  695.      *
  696.      * @return boolean
  697.      */
  698.     public function getMchats()
  699.     {
  700.         return $this->mchats;
  701.     }
  702.     /**
  703.      * Set mforum
  704.      *
  705.      * @param boolean $mforum
  706.      *
  707.      * @return SettingsRol
  708.      */
  709.     public function setMforum($mforum)
  710.     {
  711.         $this->mforum $mforum;
  712.     
  713.         return $this;
  714.     }
  715.     /**
  716.      * Get mforum
  717.      *
  718.      * @return boolean
  719.      */
  720.     public function getMforum()
  721.     {
  722.         return $this->mforum;
  723.     }
  724.     /**
  725.      * Set msocial
  726.      *
  727.      * @param boolean $msocial
  728.      *
  729.      * @return SettingsRol
  730.      */
  731.     public function setMsocial($msocial)
  732.     {
  733.         $this->msocial $msocial;
  734.     
  735.         return $this;
  736.     }
  737.     /**
  738.      * Get msocial
  739.      *
  740.      * @return boolean
  741.      */
  742.     public function getMsocial()
  743.     {
  744.         return $this->msocial;
  745.     }
  746.     /**
  747.      * Set mscancard
  748.      *
  749.      * @param boolean $mscancard
  750.      *
  751.      * @return SettingsRol
  752.      */
  753.     public function setMscancard($mscancard)
  754.     {
  755.         $this->mscancard $mscancard;
  756.     
  757.         return $this;
  758.     }
  759.     /**
  760.      * Get mscancard
  761.      *
  762.      * @return boolean
  763.      */
  764.     public function getMscancard()
  765.     {
  766.         return $this->mscancard;
  767.     }
  768.     /**
  769.      * Set mattendants
  770.      *
  771.      * @param boolean $mattendants
  772.      *
  773.      * @return SettingsRol
  774.      */
  775.     public function setMattendants($mattendants)
  776.     {
  777.         $this->mattendants $mattendants;
  778.     
  779.         return $this;
  780.     }
  781.     /**
  782.      * Get mattendants
  783.      *
  784.      * @return boolean
  785.      */
  786.     public function getMattendants()
  787.     {
  788.         return $this->mattendants;
  789.     }
  790.     /**
  791.      * Set mtransfer
  792.      *
  793.      * @param boolean $mtransfer
  794.      *
  795.      * @return SettingsRol
  796.      */
  797.     public function setMtransfer($mtransfer)
  798.     {
  799.         $this->mtransfer $mtransfer;
  800.     
  801.         return $this;
  802.     }
  803.     /**
  804.      * Get mtransfer
  805.      *
  806.      * @return boolean
  807.      */
  808.     public function getMtransfer()
  809.     {
  810.         return $this->mtransfer;
  811.     }
  812.     /**
  813.      * Set mroominglist
  814.      *
  815.      * @param boolean $mroominglist
  816.      *
  817.      * @return SettingsRol
  818.      */
  819.     public function setMroominglist($mroominglist)
  820.     {
  821.         $this->mroominglist $mroominglist;
  822.     
  823.         return $this;
  824.     }
  825.     /**
  826.      * Get mroominglist
  827.      *
  828.      * @return boolean
  829.      */
  830.     public function getMroominglist()
  831.     {
  832.         return $this->mroominglist;
  833.     }
  834.     /**
  835.      * Set mreservationhotel
  836.      *
  837.      * @param boolean $mreservationhotel
  838.      *
  839.      * @return SettingsRol
  840.      */
  841.     public function setMreservationhotel($mreservationhotel)
  842.     {
  843.         $this->mreservationhotel $mreservationhotel;
  844.     
  845.         return $this;
  846.     }
  847.     /**
  848.      * Get mreservationhotel
  849.      *
  850.      * @return boolean
  851.      */
  852.     public function getMreservationhotel()
  853.     {
  854.         return $this->mreservationhotel;
  855.     }
  856.     /**
  857.      * Set mavtechnical
  858.      *
  859.      * @param boolean $mavtechnical
  860.      *
  861.      * @return SettingsRol
  862.      */
  863.     public function setMavtechnical($mavtechnical)
  864.     {
  865.         $this->mavtechnical $mavtechnical;
  866.     
  867.         return $this;
  868.     }
  869.     /**
  870.      * Get mavtechnical
  871.      *
  872.      * @return boolean
  873.      */
  874.     public function getMavtechnical()
  875.     {
  876.         return $this->mavtechnical;
  877.     }
  878.     /**
  879.      * Set msupplier
  880.      *
  881.      * @param boolean $msupplier
  882.      *
  883.      * @return SettingsRol
  884.      */
  885.     public function setMsupplier($msupplier)
  886.     {
  887.         $this->msupplier $msupplier;
  888.     
  889.         return $this;
  890.     }
  891.     /**
  892.      * Get msupplier
  893.      *
  894.      * @return boolean
  895.      */
  896.     public function getMsupplier()
  897.     {
  898.         return $this->msupplier;
  899.     }
  900.     /**
  901.      * Set mactivity
  902.      *
  903.      * @param boolean $mactivity
  904.      *
  905.      * @return SettingsRol
  906.      */
  907.     public function setMactivity($mactivity)
  908.     {
  909.         $this->mactivity $mactivity;
  910.     
  911.         return $this;
  912.     }
  913.     /**
  914.      * Get mactivity
  915.      *
  916.      * @return boolean
  917.      */
  918.     public function getMactivity()
  919.     {
  920.         return $this->mactivity;
  921.     }
  922.     /**
  923.      * Set mseating
  924.      *
  925.      * @param boolean $mseating
  926.      *
  927.      * @return SettingsRol
  928.      */
  929.     public function setMseating($mseating)
  930.     {
  931.         $this->mseating $mseating;
  932.     
  933.         return $this;
  934.     }
  935.     /**
  936.      * Get mseating
  937.      *
  938.      * @return boolean
  939.      */
  940.     public function getMseating()
  941.     {
  942.         return $this->mseating;
  943.     }
  944.     /**
  945.      * Set mitineraryflight
  946.      *
  947.      * @param boolean $mitineraryflight
  948.      *
  949.      * @return SettingsRol
  950.      */
  951.     public function setMitineraryflight($mitineraryflight)
  952.     {
  953.         $this->mitineraryflight $mitineraryflight;
  954.     
  955.         return $this;
  956.     }
  957.     /**
  958.      * Get mitineraryflight
  959.      *
  960.      * @return boolean
  961.      */
  962.     public function getMitineraryflight()
  963.     {
  964.         return $this->mitineraryflight;
  965.     }
  966.     /**
  967.      * Set mgdsflight
  968.      *
  969.      * @param boolean $mgdsflight
  970.      *
  971.      * @return SettingsRol
  972.      */
  973.     public function setMgdsflight($mgdsflight)
  974.     {
  975.         $this->mgdsflight $mgdsflight;
  976.     
  977.         return $this;
  978.     }
  979.     /**
  980.      * Get mgdsflight
  981.      *
  982.      * @return boolean
  983.      */
  984.     public function getMgdsflight()
  985.     {
  986.         return $this->mgdsflight;
  987.     }
  988.     /**
  989.      * Set madminlounges
  990.      *
  991.      * @param boolean $madminlounges
  992.      *
  993.      * @return SettingsRol
  994.      */
  995.     public function setMadminlounges($madminlounges)
  996.     {
  997.         $this->madminlounges $madminlounges;
  998.     
  999.         return $this;
  1000.     }
  1001.     /**
  1002.      * Get madminlounges
  1003.      *
  1004.      * @return boolean
  1005.      */
  1006.     public function getMadminlounges()
  1007.     {
  1008.         return $this->madminlounges;
  1009.     }
  1010.     /**
  1011.      * Set mnewspromotions
  1012.      *
  1013.      * @param boolean $mnewspromotions
  1014.      *
  1015.      * @return SettingsRol
  1016.      */
  1017.     public function setMnewspromotions($mnewspromotions)
  1018.     {
  1019.         $this->mnewspromotions $mnewspromotions;
  1020.     
  1021.         return $this;
  1022.     }
  1023.     /**
  1024.      * Get mnewspromotions
  1025.      *
  1026.      * @return boolean
  1027.      */
  1028.     public function getMnewspromotions()
  1029.     {
  1030.         return $this->mnewspromotions;
  1031.     }
  1032.     /**
  1033.      * Set msponsors
  1034.      *
  1035.      * @param boolean $msponsors
  1036.      *
  1037.      * @return SettingsRol
  1038.      */
  1039.     public function setMsponsors($msponsors)
  1040.     {
  1041.         $this->msponsors $msponsors;
  1042.     
  1043.         return $this;
  1044.     }
  1045.     /**
  1046.      * Get msponsors
  1047.      *
  1048.      * @return boolean
  1049.      */
  1050.     public function getMsponsors()
  1051.     {
  1052.         return $this->msponsors;
  1053.     }
  1054.     /**
  1055.      * Set mpackagesale
  1056.      *
  1057.      * @param boolean $mpackagesale
  1058.      *
  1059.      * @return SettingsRol
  1060.      */
  1061.     public function setMpackagesale($mpackagesale)
  1062.     {
  1063.         $this->mpackagesale $mpackagesale;
  1064.     
  1065.         return $this;
  1066.     }
  1067.     /**
  1068.      * Get mpackagesale
  1069.      *
  1070.      * @return boolean
  1071.      */
  1072.     public function getMpackagesale()
  1073.     {
  1074.         return $this->mpackagesale;
  1075.     }
  1076.     /**
  1077.      * Set mvideo
  1078.      *
  1079.      * @param integer $mvideo
  1080.      *
  1081.      * @return SettingsRol
  1082.      */
  1083.     public function setMvideo($mvideo)
  1084.     {
  1085.         $this->mvideo $mvideo;
  1086.     
  1087.         return $this;
  1088.     }
  1089.     /**
  1090.      * Get mvideo
  1091.      *
  1092.      * @return integer
  1093.      */
  1094.     public function getMvideo()
  1095.     {
  1096.         return $this->mvideo;
  1097.     }
  1098.     /**
  1099.      * Set mparking
  1100.      *
  1101.      * @param boolean $mparking
  1102.      *
  1103.      * @return SettingsRol
  1104.      */
  1105.     public function setMparking($mparking)
  1106.     {
  1107.         $this->mparking $mparking;
  1108.     
  1109.         return $this;
  1110.     }
  1111.     /**
  1112.      * Get mparking
  1113.      *
  1114.      * @return boolean
  1115.      */
  1116.     public function getMparking()
  1117.     {
  1118.         return $this->mparking;
  1119.     }
  1120.     /**
  1121.      * Set mproductpresentation
  1122.      *
  1123.      * @param boolean $mproductpresentation
  1124.      *
  1125.      * @return SettingsRol
  1126.      */
  1127.     public function setMproductpresentation($mproductpresentation)
  1128.     {
  1129.         $this->mproductpresentation $mproductpresentation;
  1130.     
  1131.         return $this;
  1132.     }
  1133.     /**
  1134.      * Get mproductpresentation
  1135.      *
  1136.      * @return boolean
  1137.      */
  1138.     public function getMproductpresentation()
  1139.     {
  1140.         return $this->mproductpresentation;
  1141.     }
  1142.     /**
  1143.      * Set mvideocollage
  1144.      *
  1145.      * @param integer $mvideocollage
  1146.      *
  1147.      * @return SettingsRol
  1148.      */
  1149.     public function setMvideocollage($mvideocollage)
  1150.     {
  1151.         $this->mvideocollage $mvideocollage;
  1152.     
  1153.         return $this;
  1154.     }
  1155.     /**
  1156.      * Get mvideocollage
  1157.      *
  1158.      * @return integer
  1159.      */
  1160.     public function getMvideocollage()
  1161.     {
  1162.         return $this->mvideocollage;
  1163.     }
  1164.     /**
  1165.      * Set mschedule
  1166.      *
  1167.      * @param integer $mschedule
  1168.      *
  1169.      * @return SettingsRol
  1170.      */
  1171.     public function setMschedule($mschedule)
  1172.     {
  1173.         $this->mschedule $mschedule;
  1174.         return $this;
  1175.     }
  1176.     /**
  1177.      * Get mschedule
  1178.      *
  1179.      * @return integer
  1180.      */
  1181.     public function getMschedule()
  1182.     {
  1183.         return $this->mschedule;
  1184.     }
  1185.     /**
  1186.      * Set mselfie
  1187.      *
  1188.      * @param integer $mselfie
  1189.      *
  1190.      * @return SettingsRol
  1191.      */
  1192.     public function setMselfie($mselfie)
  1193.     {
  1194.         $this->mselfie $mselfie;
  1195.         return $this;
  1196.     }
  1197.     /**
  1198.      * Get mselfie
  1199.      *
  1200.      * @return integer
  1201.      */
  1202.     public function getMselfie()
  1203.     {
  1204.         return $this->mselfie;
  1205.     }
  1206.     /**
  1207.      * Set mtaparally
  1208.      *
  1209.      * @param integer $mtaparally
  1210.      *
  1211.      * @return SettingsRol
  1212.      */
  1213.     public function setMtaparally($mtaparally)
  1214.     {
  1215.         $this->mtaparally $mtaparally;
  1216.         return $this;
  1217.     }
  1218.     /**
  1219.      * Get mtaparally
  1220.      *
  1221.      * @return integer
  1222.      */
  1223.     public function getMtaparally()
  1224.     {
  1225.         return $this->mtaparally;
  1226.     }
  1227.     /**
  1228.      * Set mvirtualevent
  1229.      *
  1230.      * @param integer $mvirtualevent
  1231.      *
  1232.      * @return SettingsRol
  1233.      */
  1234.     public function setMvirtualevent($mvirtualevent)
  1235.     {
  1236.         $this->mvirtualevent $mvirtualevent;
  1237.         return $this;
  1238.     }
  1239.     /**
  1240.      * Get mvirtualevent
  1241.      *
  1242.      * @return integer
  1243.      */
  1244.     public function getMvirtualevent()
  1245.     {
  1246.         return $this->mvirtualevent;
  1247.     }
  1248.     /**
  1249.      * Set mpartners
  1250.      *
  1251.      * @param integer $mpartners
  1252.      *
  1253.      * @return SettingsRol
  1254.      */
  1255.     public function setMpartners($mpartners)
  1256.     {
  1257.         $this->mpartners $mpartners;
  1258.         return $this;
  1259.     }
  1260.     /**
  1261.      * Get mpartners
  1262.      *
  1263.      * @return integer
  1264.      */
  1265.     public function getMpartners()
  1266.     {
  1267.         return $this->mpartners;
  1268.     }
  1269.     /**
  1270.      * Set mregister
  1271.      *
  1272.      * @param integer $mregister
  1273.      *
  1274.      * @return SettingsRol
  1275.      */
  1276.     public function setMregister($mregister)
  1277.     {
  1278.         $this->mregister $mregister;
  1279.         return $this;
  1280.     }
  1281.     /**
  1282.      * Get mregister
  1283.      *
  1284.      * @return integer
  1285.      */
  1286.     public function getMregister()
  1287.     {
  1288.         return $this->mregister;
  1289.     }
  1290.     /**
  1291.      * Set msurveys
  1292.      *
  1293.      * @param integer $msurveys
  1294.      *
  1295.      * @return SettingsRol
  1296.      */
  1297.     public function setMsurveys($msurveys)
  1298.     {
  1299.         $this->msurveys $msurveys;
  1300.         return $this;
  1301.     }
  1302.     /**
  1303.      * Get msurveys
  1304.      *
  1305.      * @return integer
  1306.      */
  1307.     public function getMsurveys()
  1308.     {
  1309.         return $this->msurveys;
  1310.     }
  1311.     /**
  1312.      * Set mmads
  1313.      *
  1314.      * @param integer $mmads
  1315.      *
  1316.      * @return SettingsRol
  1317.      */
  1318.     public function setMmads($mmads)
  1319.     {
  1320.         $this->mmads $mmads;
  1321.         return $this;
  1322.     }
  1323.     /**
  1324.      * Get mmads
  1325.      *
  1326.      * @return integer
  1327.      */
  1328.     public function getMmads()
  1329.     {
  1330.         return $this->mmads;
  1331.     }
  1332. }