src/Entity/Redsocial.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Redsocial
  6.  *
  7.  * @ORM\Table(name="redsocial")
  8.  * @ORM\Entity(repositoryClass="App\Repository\RedsocialRepository")
  9.  */
  10. class Redsocial {
  11.     /**
  12.      * @var integer
  13.      *
  14.      * @ORM\Column(name="redsocial_id", type="integer", nullable=false)
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue(strategy="AUTO")
  17.      */
  18.     private $redsocialId;
  19.     
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="facebook", type="string", length=255, nullable=false)
  24.      */
  25.     private $facebook;
  26.    
  27.     /**
  28.      * @var boolean
  29.      *
  30.      * @ORM\Column(name="activarfacebook", type="boolean", nullable=true)
  31.      */
  32.     private $activarfacebook;  
  33.     
  34.     /**
  35.      * @var string
  36.      *
  37.      * @ORM\Column(name="youtube", type="string", length=255, nullable=false)
  38.      */
  39.     private $youtube;
  40.    
  41.     /**
  42.      * @var boolean
  43.      *
  44.      * @ORM\Column(name="activaryoutube", type="boolean", nullable=true)
  45.      */
  46.     private $activaryoutube;  
  47.     
  48.     /**
  49.      * @var string
  50.      *
  51.      * @ORM\Column(name="twitter", type="string", length=255, nullable=false)
  52.      */
  53.     private $twitter;
  54.    
  55.     /**
  56.      * @var boolean
  57.      *
  58.      * @ORM\Column(name="activartwitter", type="boolean", nullable=true)
  59.      */
  60.     private $activartwitter;  
  61.     
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="flickr", type="string", length=255, nullable=false)
  66.      */
  67.     private $flickr;
  68.    
  69.     /**
  70.      * @var boolean
  71.      *
  72.      * @ORM\Column(name="activarflickr", type="boolean", nullable=true)
  73.      */
  74.     private $activarflickr
  75.     
  76.     /**
  77.      * @var string
  78.      *
  79.      * @ORM\Column(name="instagram", type="string", length=255, nullable=false)
  80.      */
  81.     private $instagram;
  82.    
  83.     /**
  84.      * @var boolean
  85.      *
  86.      * @ORM\Column(name="activarinstagram", type="boolean", nullable=true)
  87.      */
  88.     private $activarinstagram
  89.     
  90.     /**
  91.      * @var string
  92.      *
  93.      * @ORM\Column(name="linkedin", type="string", length=255, nullable=false)
  94.      */
  95.     private $linkedin;
  96.    
  97.     /**
  98.      * @var boolean
  99.      *
  100.      * @ORM\Column(name="activarlinkedin", type="boolean", nullable=true)
  101.      */
  102.     private $activarlinkedin
  103.     
  104.     /**
  105.      * @var string
  106.      *
  107.      * @ORM\Column(name="soundcloud", type="string", length=255, nullable=false)
  108.      */
  109.     private $soundcloud;
  110.    
  111.     /**
  112.      * @var boolean
  113.      *
  114.      * @ORM\Column(name="activarsoundcloud", type="boolean", nullable=true)
  115.      */
  116.     private $activarsoundcloud
  117.     
  118.     /**
  119.      * @var string
  120.      *
  121.      * @ORM\Column(name="tumblr", type="string", length=255, nullable=false)
  122.      */
  123.     private $tumblr;
  124.    
  125.     /**
  126.      * @var boolean
  127.      *
  128.      * @ORM\Column(name="activartumblr", type="boolean", nullable=true)
  129.      */
  130.     private $activartumblr
  131.     
  132.     /**
  133.      * @var string
  134.      *
  135.      * @ORM\Column(name="vimeo", type="string", length=255, nullable=false)
  136.      */
  137.     private $vimeo;
  138.    
  139.     /**
  140.      * @var boolean
  141.      *
  142.      * @ORM\Column(name="activarvimeo", type="boolean", nullable=true)
  143.      */
  144.     private $activarvimeo
  145.     
  146.     /**
  147.      * @var string
  148.      *
  149.      * @ORM\Column(name="google", type="string", length=255, nullable=false)
  150.      */
  151.     private $google;
  152.    
  153.     /**
  154.      * @var boolean
  155.      *
  156.      * @ORM\Column(name="activargoogle", type="boolean", nullable=true)
  157.      */
  158.     private $activargoogle;
  159.     /**
  160.      * @var Empresa
  161.      *
  162.      * @ORM\ManyToOne(targetEntity="App\Entity\Empresa")
  163.      * @ORM\JoinColumns({
  164.      *   @ORM\JoinColumn(name="empresa_id", referencedColumnName="empresa_id")
  165.      * })
  166.      */
  167.     private $empresa;
  168.     /**
  169.      * Get redsocialId
  170.      *
  171.      * @return integer 
  172.      */
  173.     public function getRedsocialId() {
  174.         return $this->redsocialId;
  175.     }
  176.         
  177.     /**
  178.      * Set facebook
  179.      *
  180.      * @param string $facebook
  181.      * @return Redsocial
  182.      */
  183.     public function setFacebook($facebook) {
  184.         $this->facebook $facebook;
  185.         return $this;
  186.     }
  187.     /**
  188.      * Get facebook
  189.      *
  190.      * @return string 
  191.      */
  192.     public function getFacebook() {
  193.         return $this->facebook;
  194.     }
  195.     
  196.     /**
  197.      * Set activarfacebook
  198.      *
  199.      * @param boolean $activarfacebook
  200.      * @return Redsocial
  201.      */
  202.     public function setActivarfacebook($activarfacebook) {
  203.         $this->activarfacebook $activarfacebook;
  204.         return $this;
  205.     }
  206.     /**
  207.      * Get activarfacebook
  208.      *
  209.      * @return boolean 
  210.      */
  211.     public function getActivarfacebook() {
  212.         return $this->activarfacebook;
  213.     }
  214.     
  215.     
  216.     /**
  217.      * Set youtube
  218.      *
  219.      * @param string $youtube
  220.      * @return Redsocial
  221.      */
  222.     public function setYoutube($youtube) {
  223.         $this->youtube $youtube;
  224.         return $this;
  225.     }
  226.     /**
  227.      * Get youtube
  228.      *
  229.      * @return string 
  230.      */
  231.     public function getYoutube() {
  232.         return $this->youtube;
  233.     }
  234.     
  235.     /**
  236.      * Set activaryoutube
  237.      *
  238.      * @param boolean $activaryoutube
  239.      * @return Redsocial
  240.      */
  241.     public function setActivaryoutube($activaryoutube) {
  242.         $this->activaryoutube $activaryoutube;
  243.         return $this;
  244.     }
  245.     /**
  246.      * Get activaryoutube
  247.      *
  248.      * @return boolean 
  249.      */
  250.     public function getActivaryoutube() {
  251.         return $this->activaryoutube;
  252.     }
  253.     
  254.     /**
  255.      * Set twitter
  256.      *
  257.      * @param string $twitter
  258.      * @return Redsocial
  259.      */
  260.     public function setTwitter($twitter) {
  261.         $this->twitter $twitter;
  262.         return $this;
  263.     }
  264.     /**
  265.      * Get twitter
  266.      *
  267.      * @return string 
  268.      */
  269.     public function getTwitter() {
  270.         return $this->twitter;
  271.     }
  272.     
  273.     /**
  274.      * Set activartwitter
  275.      *
  276.      * @param boolean $activartwitter
  277.      * @return Redsocial
  278.      */
  279.     public function setActivartwitter($activartwitter) {
  280.         $this->activartwitter $activartwitter;
  281.         return $this;
  282.     }
  283.     /**
  284.      * Get activartwitter
  285.      *
  286.      * @return boolean 
  287.      */
  288.     public function getActivartwitter() {
  289.         return $this->activartwitter;
  290.     }
  291.     
  292.     
  293.     /**
  294.      * Set flickr
  295.      *
  296.      * @param string $flickr
  297.      * @return Redsocial
  298.      */
  299.     public function setFlickr($flickr) {
  300.         $this->flickr $flickr;
  301.         return $this;
  302.     }
  303.     /**
  304.      * Get flickr
  305.      *
  306.      * @return string 
  307.      */
  308.     public function getFlickr() {
  309.         return $this->flickr;
  310.     }
  311.     
  312.     /**
  313.      * Set activarflickr
  314.      *
  315.      * @param boolean $activarflickr
  316.      * @return Redsocial
  317.      */
  318.     public function setActivarflickr($activarflickr) {
  319.         $this->activarflickr $activarflickr;
  320.         return $this;
  321.     }
  322.     /**
  323.      * Get activarflickr
  324.      *
  325.      * @return boolean 
  326.      */
  327.     public function getActivarflickr() {
  328.         return $this->activarflickr;
  329.     }
  330.     
  331.     
  332.     /**
  333.      * Set instagram
  334.      *
  335.      * @param string $instagram
  336.      * @return Redsocial
  337.      */
  338.     public function setInstagram($instagram) {
  339.         $this->instagram $instagram;
  340.         return $this;
  341.     }
  342.     /**
  343.      * Get instagram
  344.      *
  345.      * @return string 
  346.      */
  347.     public function getInstagram() {
  348.         return $this->instagram;
  349.     }
  350.     
  351.     /**
  352.      * Set activarinstagram
  353.      *
  354.      * @param boolean $activarinstagram
  355.      * @return Redsocial
  356.      */
  357.     public function setActivarinstagram($activarinstagram) {
  358.         $this->activarinstagram $activarinstagram;
  359.         return $this;
  360.     }
  361.     /**
  362.      * Get activarinstagram
  363.      *
  364.      * @return boolean 
  365.      */
  366.     public function getActivarinstagram() {
  367.         return $this->activarinstagram;
  368.     }
  369.     
  370.     /**
  371.      * Set linkedin
  372.      *
  373.      * @param string $linkedin
  374.      * @return Redsocial
  375.      */
  376.     public function setLinkedin($linkedin) {
  377.         $this->linkedin $linkedin;
  378.         return $this;
  379.     }
  380.     /**
  381.      * Get linkedin
  382.      *
  383.      * @return string 
  384.      */
  385.     public function getLinkedin() {
  386.         return $this->linkedin;
  387.     }
  388.     
  389.     /**
  390.      * Set activarlinkedin
  391.      *
  392.      * @param boolean $activarlinkedin
  393.      * @return Redsocial
  394.      */
  395.     public function setActivarlinkedin($activarlinkedin) {
  396.         $this->activarlinkedin $activarlinkedin;
  397.         return $this;
  398.     }
  399.     /**
  400.      * Get activarlinkedin
  401.      *
  402.      * @return boolean 
  403.      */
  404.     public function getActivarlinkedin() {
  405.         return $this->activarlinkedin;
  406.     }
  407.     
  408.     
  409.     /**
  410.      * Set soundcloud
  411.      *
  412.      * @param string $soundcloud
  413.      * @return Redsocial
  414.      */
  415.     public function setSoundcloud($soundcloud) {
  416.         $this->soundcloud $soundcloud;
  417.         return $this;
  418.     }
  419.     /**
  420.      * Get soundcloud
  421.      *
  422.      * @return string 
  423.      */
  424.     public function getSoundcloud() {
  425.         return $this->soundcloud;
  426.     }
  427.     
  428.     /**
  429.      * Set activarsoundcloud
  430.      *
  431.      * @param boolean $activarsoundcloud
  432.      * @return Redsocial
  433.      */
  434.     public function setActivarsoundcloud($activarsoundcloud) {
  435.         $this->activarsoundcloud $activarsoundcloud;
  436.         return $this;
  437.     }
  438.     /**
  439.      * Get activarsoundcloud
  440.      *
  441.      * @return boolean 
  442.      */
  443.     public function getActivarsoundcloud() {
  444.         return $this->activarsoundcloud;
  445.     }
  446.     
  447.     
  448.     
  449.     /**
  450.      * Set tumblr
  451.      *
  452.      * @param string $tumblr
  453.      * @return Redsocial
  454.      */
  455.     public function setTumblr($tumblr) {
  456.         $this->tumblr $tumblr;
  457.         return $this;
  458.     }
  459.     /**
  460.      * Get tumblr
  461.      *
  462.      * @return string 
  463.      */
  464.     public function getTumblr() {
  465.         return $this->tumblr;
  466.     }
  467.     
  468.     /**
  469.      * Set activartumblr
  470.      *
  471.      * @param boolean $activartumblr
  472.      * @return Redsocial
  473.      */
  474.     public function setActivartumblr($activartumblr) {
  475.         $this->activartumblr $activartumblr;
  476.         return $this;
  477.     }
  478.     /**
  479.      * Get activartumblr
  480.      *
  481.      * @return boolean 
  482.      */
  483.     public function getActivartumblr() {
  484.         return $this->activartumblr;
  485.     }
  486.     
  487.     
  488.     
  489.     /**
  490.      * Set vimeo
  491.      *
  492.      * @param string $vimeo
  493.      * @return Redsocial
  494.      */
  495.     public function setVimeo($vimeo) {
  496.         $this->vimeo $vimeo;
  497.         return $this;
  498.     }
  499.     /**
  500.      * Get vimeo
  501.      *
  502.      * @return string 
  503.      */
  504.     public function getVimeo() {
  505.         return $this->vimeo;
  506.     }
  507.     
  508.     /**
  509.      * Set activarvimeo
  510.      *
  511.      * @param boolean $activarvimeo
  512.      * @return Redsocial
  513.      */
  514.     public function setActivarvimeo($activarvimeo) {
  515.         $this->activarvimeo $activarvimeo;
  516.         return $this;
  517.     }
  518.     /**
  519.      * Get activarvimeo
  520.      *
  521.      * @return boolean 
  522.      */
  523.     public function getActivarvimeo() {
  524.         return $this->activarvimeo;
  525.     }
  526.     
  527.     /**
  528.      * Set google
  529.      *
  530.      * @param string $google
  531.      * @return Redsocial
  532.      */
  533.     public function setGoogle($google) {
  534.         $this->google $google;
  535.         return $this;
  536.     }
  537.     /**
  538.      * Get google
  539.      *
  540.      * @return string 
  541.      */
  542.     public function getGoogle() {
  543.         return $this->google;
  544.     }
  545.     
  546.     /**
  547.      * Set activargoogle
  548.      *
  549.      * @param boolean $activargoogle
  550.      * @return Redsocial
  551.      */
  552.     public function setActivargoogle($activargoogle) {
  553.         $this->activargoogle $activargoogle;
  554.         return $this;
  555.     }
  556.     /**
  557.      * Get activargoogle
  558.      *
  559.      * @return boolean 
  560.      */
  561.     public function getActivargoogle() {
  562.         return $this->activargoogle;
  563.     }
  564.     /**
  565.      * @return Empresa
  566.      */
  567.     public function getEmpresa()
  568.     {
  569.         return $this->empresa;
  570.     }
  571.     public function setEmpresa($empresa)
  572.     {
  573.         $this->empresa $empresa;
  574.     }
  575. }