vendor/webbamboo/spinners-common/src/Entity/Company.php line 13

  1. <?php
  2. namespace Webbamboo\SpinnersCommon\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Company
  6.  *
  7.  * @ORM\Table("Company")
  8.  * @ORM\Entity
  9.  */
  10. class Company
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="name", type="string", length=255)
  24.      */
  25.     private $name;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="phone", type="string", length=80, nullable=true)
  30.      */
  31.     private $phone;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="street", type="string", length=255)
  36.      */
  37.     private $street;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="zip", type="string", length=20)
  42.      */
  43.     private $zip;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="city", type="string", length=255)
  48.      */
  49.     private $city;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="latitude", type="decimal", scale=5)
  54.      */
  55.     private $latitude;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="longitude", type="decimal", scale=5)
  60.      */
  61.     private $longitude;
  62.     /**
  63.     * @ORM\ManyToOne(targetEntity="City", inversedBy="companies")
  64.     * @ORM\JoinColumn(referencedColumnName="id")
  65.     */
  66.     private $cityobj;
  67.     /**
  68.      * @var string
  69.      *
  70.      * @ORM\Column(name="homepage", type="string", length=255, nullable=true)
  71.      */
  72.     private $homepage;
  73.     /**
  74.      * @var string
  75.      *
  76.      * @ORM\Column(name="description", type="text", nullable=true)
  77.      */
  78.     private $description;
  79.     /**
  80.      * @var string
  81.      *
  82.      * @ORM\Column(name="openinghours", type="string", length=255, nullable=true)
  83.      */
  84.     private $openinghours;
  85.     /**
  86.      * @var string
  87.      *
  88.      * @ORM\Column(name="weekends", type="string", length=255, nullable=true)
  89.      */
  90.     private $weekends;
  91.     /**
  92.      * @var string
  93.      *
  94.      * @ORM\Column(name="email", type="string", length=255, nullable=true)
  95.      */
  96.     private $email;
  97.     /**
  98.      * @var string
  99.      *
  100.      * @ORM\Column(name="permalink", type="string", length=100)
  101.      */
  102.     private $permalink;
  103.     /**
  104.     * @ORM\ManyToOne(targetEntity="H1company", inversedBy="companies")
  105.     * @ORM\JoinColumn(referencedColumnName="id")
  106.     */
  107.     private $h1;
  108.     
  109.     /**
  110.       * @var text
  111.       *
  112.       * @ORM\Column(name="manualh1", type="text", nullable=true)
  113.       */
  114.     private $manualH1;
  115.     /**
  116.     * @ORM\ManyToOne(targetEntity="H2company", inversedBy="companies")
  117.     * @ORM\JoinColumn(referencedColumnName="id")
  118.     */
  119.     private $h2;
  120.     
  121.     /**
  122.       * @var text
  123.       *
  124.       * @ORM\Column(name="manualh2", type="text", nullable=true)
  125.       */
  126.     private $manualH2;
  127.     /**
  128.     * @ORM\ManyToOne(targetEntity="Contentcompany", inversedBy="companies")
  129.     * @ORM\JoinColumn(referencedColumnName="id")
  130.     */
  131.     private $content;
  132.     
  133.     /**
  134.      * @var text
  135.      *
  136.      * @ORM\Column(name="manualcontent", type="text", nullable=true)
  137.      */
  138.     private $manualContent;
  139.     /**
  140.      * @ORM\ManyToOne(targetEntity="Metatitlecompany", inversedBy="companies")
  141.      * @ORM\JoinColumn(referencedColumnName="id")
  142.      */
  143.     private $metatitle;
  144.     
  145.     /**
  146.      * @var string
  147.      *
  148.      * @ORM\Column(name="manualmetatitle", type="string", length=255, nullable=true)
  149.      */
  150.     private $manualMetatitle;
  151.     /**
  152.     * @ORM\ManyToOne(targetEntity="Metadescriptioncompany", inversedBy="companies")
  153.     * @ORM\JoinColumn(referencedColumnName="id")
  154.     */
  155.     private $metadescription;
  156.     
  157.     /**
  158.      * @var string
  159.      *
  160.      * @ORM\Column(name="manualmetadescription", type="string", length=255, nullable=true)
  161.      */
  162.     private $manualMetadescription;
  163.     /**
  164.     * @ORM\ManyToOne(targetEntity="H2Interesting", inversedBy="companies")
  165.     * @ORM\JoinColumn(referencedColumnName="id")
  166.     */
  167.     private $h2interesting;
  168.     /**
  169.      * @ORM\OneToMany(targetEntity="Interestingarticle", mappedBy="company", cascade={"persist"})
  170.      **/
  171.     private $interestingarticles;
  172.     /**
  173.      * @ORM\ManyToMany(targetEntity="City", mappedBy="recommendee", cascade={"persist"})
  174.      **/
  175.     private $recommended;
  176.     /**
  177.     * @ORM\ManyToOne(targetEntity="Companythumbnail", inversedBy="companies")
  178.     * @ORM\JoinColumn(referencedColumnName="id")
  179.     */
  180.     private $thumbnail;
  181.     
  182.     /**
  183.      * @var string
  184.      *
  185.      * @ORM\Column(name="manualthumbnail", type="string", length=255, nullable=true)
  186.      */
  187.     private $manualThumbnail;
  188.     
  189.     /**
  190.      * @var string
  191.      *
  192.      * @ORM\Column(name="manualthumbnailname", type="string", length=255, nullable=true)
  193.      */
  194.     private $manualThumbnailname;
  195.     
  196.     /**
  197.      * @var string
  198.      *
  199.      * @ORM\Column(name="manualthumbnailalt", type="string", length=255, nullable=true)
  200.      */
  201.     private $manualThumbnailalt;
  202.     
  203.     /**
  204.     * @var string
  205.     *
  206.     * @ORM\Column(name="manual", type="boolean", nullable=true)
  207.     */
  208.     private $manual;
  209.     
  210.     /**
  211.      * @var string
  212.      *
  213.      * @ORM\Column(name="manualmapstring", type="string", length=255, nullable=true)
  214.      */
  215.     private $manualMapString;
  216.     
  217.     /**
  218.      * Get id
  219.      *
  220.      * @return integer
  221.      */
  222.     public function getId()
  223.     {
  224.         return $this->id;
  225.     }
  226.     /**
  227.      * Set name
  228.      *
  229.      * @param string $name
  230.      * @return Company
  231.      */
  232.     public function setName($name)
  233.     {
  234.         $this->name $name;
  235.         return $this;
  236.     }
  237.     /**
  238.      * Get name
  239.      *
  240.      * @return string
  241.      */
  242.     public function getName()
  243.     {
  244.         return $this->name;
  245.     }
  246.     /**
  247.      * Set phone
  248.      *
  249.      * @param string $phone
  250.      * @return Company
  251.      */
  252.     public function setPhone($phone)
  253.     {
  254.         $this->phone $phone;
  255.         return $this;
  256.     }
  257.     /**
  258.      * Get phone
  259.      *
  260.      * @return string
  261.      */
  262.     public function getPhone()
  263.     {
  264.         return $this->phone;
  265.     }
  266.     /**
  267.      * Set street
  268.      *
  269.      * @param string $street
  270.      * @return Company
  271.      */
  272.     public function setStreet($street)
  273.     {
  274.         $this->street $street;
  275.         return $this;
  276.     }
  277.     /**
  278.      * Get street
  279.      *
  280.      * @return string
  281.      */
  282.     public function getStreet()
  283.     {
  284.         return $this->street;
  285.     }
  286.     /**
  287.      * Set zip
  288.      *
  289.      * @param string $zip
  290.      * @return Company
  291.      */
  292.     public function setZip($zip)
  293.     {
  294.         $this->zip $zip;
  295.         return $this;
  296.     }
  297.     /**
  298.      * Get zip
  299.      *
  300.      * @return string
  301.      */
  302.     public function getZip()
  303.     {
  304.         return $this->zip;
  305.     }
  306.     /**
  307.      * Set city
  308.      *
  309.      * @param string $city
  310.      * @return Company
  311.      */
  312.     public function setCity($city)
  313.     {
  314.         $this->city $city;
  315.         return $this;
  316.     }
  317.     /**
  318.      * Get city
  319.      *
  320.      * @return string
  321.      */
  322.     public function getCity()
  323.     {
  324.         return $this->city;
  325.     }
  326.     /**
  327.      * Set latitude
  328.      *
  329.      * @param string $latitude
  330.      * @return Company
  331.      */
  332.     public function setLatitude($latitude)
  333.     {
  334.         $this->latitude $latitude;
  335.         return $this;
  336.     }
  337.     /**
  338.      * Get latitude
  339.      *
  340.      * @return string
  341.      */
  342.     public function getLatitude()
  343.     {
  344.         return $this->latitude;
  345.     }
  346.     /**
  347.      * Set longitude
  348.      *
  349.      * @param string $longitude
  350.      * @return Company
  351.      */
  352.     public function setLongitude($longitude)
  353.     {
  354.         $this->longitude $longitude;
  355.         return $this;
  356.     }
  357.     /**
  358.      * Get longitude
  359.      *
  360.      * @return string
  361.      */
  362.     public function getLongitude()
  363.     {
  364.         return $this->longitude;
  365.     }
  366.     /**
  367.      * Set cityobj
  368.      *
  369.      * @param \Webbamboo\SpinnersCommon\Entity\City $cityobj
  370.      * @return Company
  371.      */
  372.     public function setCityobj(\Webbamboo\SpinnersCommon\Entity\City $cityobj null)
  373.     {
  374.         $this->cityobj $cityobj;
  375.         return $this;
  376.     }
  377.     /**
  378.      * Get cityobj
  379.      *
  380.      * @return \Webbamboo\SpinnersCommon\Entity\City
  381.      */
  382.     public function getCityobj()
  383.     {
  384.         return $this->cityobj;
  385.     }
  386.     /**
  387.      * Set homepage
  388.      *
  389.      * @param string $homepage
  390.      * @return Company
  391.      */
  392.     public function setHomepage($homepage)
  393.     {
  394.         $this->homepage $homepage;
  395.         return $this;
  396.     }
  397.     /**
  398.      * Get homepage
  399.      *
  400.      * @return string
  401.      */
  402.     public function getHomepage()
  403.     {
  404.         return $this->homepage == 'none' '' $this->homepage;
  405.     }
  406.     /**
  407.      * Set description
  408.      *
  409.      * @param string $description
  410.      * @return Company
  411.      */
  412.     public function setDescription($description)
  413.     {
  414.         $this->description $description;
  415.         return $this;
  416.     }
  417.     /**
  418.      * Get description
  419.      *
  420.      * @return string
  421.      */
  422.     public function getDescription()
  423.     {
  424.         return $this->description == 'none' '' $this->description;
  425.     }
  426.     /**
  427.      * Set openinghours
  428.      *
  429.      * @param string $openinghours
  430.      * @return Company
  431.      */
  432.     public function setOpeninghours($openinghours)
  433.     {
  434.         $this->openinghours $openinghours;
  435.         return $this;
  436.     }
  437.     /**
  438.      * Get openinghours
  439.      *
  440.      * @return string
  441.      */
  442.     public function getOpeninghours()
  443.     {
  444.         return $this->openinghours == 'none' '' $this->openinghours;
  445.     }
  446.     /**
  447.      * Set weekends
  448.      *
  449.      * @param string $weekends
  450.      * @return Company
  451.      */
  452.     public function setWeekends($weekends)
  453.     {
  454.         $this->weekends $weekends;
  455.         return $this;
  456.     }
  457.     /**
  458.      * Get weekends
  459.      *
  460.      * @return string
  461.      */
  462.     public function getWeekends()
  463.     {
  464.         return $this->weekends == 'none' '' $this->weekends;
  465.     }
  466.     /**
  467.      * Set email
  468.      *
  469.      * @param string $email
  470.      * @return Company
  471.      */
  472.     public function setEmail($email)
  473.     {
  474.         $this->email $email;
  475.         return $this;
  476.     }
  477.     /**
  478.      * Get email
  479.      *
  480.      * @return string
  481.      */
  482.     public function getEmail()
  483.     {
  484.         return $this->email == 'none' '' $this->email;
  485.     }
  486.     public function getEmailEncoded()
  487.     {
  488.         return $this->email == 'none' '' base64_encode($this->email);
  489.     }
  490.     /**
  491.      * Set permalink
  492.      *
  493.      * @param string $permalink
  494.      * @return Company
  495.      */
  496.     public function setPermalink($permalink)
  497.     {
  498.         $this->permalink $permalink;
  499.         return $this;
  500.     }
  501.     /**
  502.      * Get permalink
  503.      *
  504.      * @return string
  505.      */
  506.     public function getPermalink()
  507.     {
  508.         return $this->permalink;
  509.     }
  510.     public function getPermalinkP()
  511.     {
  512.         $url=array(
  513.         "%C3%85","%C3%A5",
  514.         "%C3%84","%C3%A4",
  515.         "%C3%96","%C3%B6",
  516.         );
  517.         $char=array(
  518.          "Ã…","Ã¥",
  519.          "Ä","ä",
  520.          "Ö","ö",
  521.         );
  522.         return str_replace($url$char$this->permalink);
  523.     }
  524.     public function getMapsString()
  525.     {
  526.         //return "59°05'24.5\"N+12°47'54.3\"E";
  527.         if ($this->getManualMapString()) {
  528.             return $this->getManualMapString();
  529.         } elseif ($this->getCityobj()) {
  530.             return urlencode($this->street.', '.$this->getCityobj()->getName().', Sweden');
  531.         } else {
  532.             return urlencode($this->getLatitude().'+'.$this->getLongitude());
  533.         }
  534.     }
  535.     /**
  536.      * Set h1
  537.      *
  538.      * @param \Webbamboo\SpinnersCommon\Entity\H1company $h1
  539.      * @return Company
  540.      */
  541.     public function setH1(\Webbamboo\SpinnersCommon\Entity\H1company $h1 null)
  542.     {
  543.         $this->h1 $h1;
  544.         return $this;
  545.     }
  546.     /**
  547.      * Get h1
  548.      *
  549.      * @return \Webbamboo\SpinnersCommon\Entity\H1company
  550.      */
  551.     public function getH1()
  552.     {
  553.         return $this->h1;
  554.     }
  555.     /**
  556.      * Set metatitle
  557.      *
  558.      * @param \Webbamboo\SpinnersCommon\Entity\Metatitlecompany $metatitle
  559.      * @return Company
  560.      */
  561.     public function setMetatitle(\Webbamboo\SpinnersCommon\Entity\Metatitlecompany $metatitle null)
  562.     {
  563.         $this->metatitle $metatitle;
  564.         return $this;
  565.     }
  566.     /**
  567.      * Get metatitle
  568.      *
  569.      * @return \Webbamboo\SpinnersCommon\Entity\Metatitlecompany
  570.      */
  571.     public function getMetatitle()
  572.     {
  573.         return $this->metatitle;
  574.     }
  575.     /**
  576.      * Set metadescription
  577.      *
  578.      * @param \Webbamboo\SpinnersCommon\Entity\Metadescriptioncompany $metadescription
  579.      * @return Company
  580.      */
  581.     public function setMetadescription(\Webbamboo\SpinnersCommon\Entity\Metadescriptioncompany $metadescription null)
  582.     {
  583.         $this->metadescription $metadescription;
  584.         return $this;
  585.     }
  586.     /**
  587.      * Get metadescription
  588.      *
  589.      * @return \Webbamboo\SpinnersCommon\Entity\Metadescriptioncompany
  590.      */
  591.     public function getMetadescription()
  592.     {
  593.         return $this->metadescription;
  594.     }
  595.     /**
  596.      * Set h2
  597.      *
  598.      * @param \Webbamboo\SpinnersCommon\Entity\H2company $h2
  599.      * @return Company
  600.      */
  601.     public function setH2(\Webbamboo\SpinnersCommon\Entity\H2company $h2 null)
  602.     {
  603.         $this->h2 $h2;
  604.         return $this;
  605.     }
  606.     /**
  607.      * Get h2
  608.      *
  609.      * @return \Webbamboo\SpinnersCommon\Entity\H2company
  610.      */
  611.     public function getH2()
  612.     {
  613.         return $this->h2;
  614.     }
  615.     /**
  616.      * Set content
  617.      *
  618.      * @param \Webbamboo\SpinnersCommon\Entity\Contentcompany $content
  619.      * @return Company
  620.      */
  621.     public function setContent(\Webbamboo\SpinnersCommon\Entity\Contentcompany $content null)
  622.     {
  623.         $this->content $content;
  624.         return $this;
  625.     }
  626.     /**
  627.      * Get content
  628.      *
  629.      * @return \Webbamboo\SpinnersCommon\Entity\Contentcompany
  630.      */
  631.     public function getContent()
  632.     {
  633.         return $this->content;
  634.     }
  635.     /**
  636.      * Set h2interesting
  637.      *
  638.      * @param \Webbamboo\SpinnersCommon\Entity\H2Interesting $h2interesting
  639.      * @return Company
  640.      */
  641.     public function setH2interesting(\Webbamboo\SpinnersCommon\Entity\H2Interesting $h2interesting null)
  642.     {
  643.         $this->h2interesting $h2interesting;
  644.         return $this;
  645.     }
  646.     /**
  647.      * Get h2interesting
  648.      *
  649.      * @return \Webbamboo\SpinnersCommon\Entity\H2Interesting
  650.      */
  651.     public function getH2interesting()
  652.     {
  653.         return $this->h2interesting;
  654.     }
  655.     /**
  656.      * Constructor
  657.      */
  658.     public function __construct()
  659.     {
  660.         $this->interestingarticles = new \Doctrine\Common\Collections\ArrayCollection();
  661.     }
  662.     /**
  663.      * Add interestingarticles
  664.      *
  665.      * @param \Webbamboo\SpinnersCommon\Entity\Interestingarticle $interestingarticles
  666.      * @return Company
  667.      */
  668.     public function addInterestingarticle(\Webbamboo\SpinnersCommon\Entity\Interestingarticle $interestingarticles)
  669.     {
  670.         $this->interestingarticles[] = $interestingarticles;
  671.         return $this;
  672.     }
  673.     /**
  674.      * Remove interestingarticles
  675.      *
  676.      * @param \Webbamboo\SpinnersCommon\Entity\Interestingarticle $interestingarticles
  677.      */
  678.     public function removeInterestingarticle(\Webbamboo\SpinnersCommon\Entity\Interestingarticle $interestingarticles)
  679.     {
  680.         $this->interestingarticles->removeElement($interestingarticles);
  681.     }
  682.     /**
  683.      * Get interestingarticles
  684.      *
  685.      * @return \Doctrine\Common\Collections\Collection
  686.      */
  687.     public function getInterestingarticles()
  688.     {
  689.         return $this->interestingarticles;
  690.     }
  691.     /**
  692.      * Add recommended
  693.      *
  694.      * @param \Webbamboo\SpinnersCommon\Entity\City $recommended
  695.      * @return Company
  696.      */
  697.     public function addRecommended(\Webbamboo\SpinnersCommon\Entity\City $recommended)
  698.     {
  699.         $this->recommended[] = $recommended;
  700.         return $this;
  701.     }
  702.     /**
  703.      * Remove recommended
  704.      *
  705.      * @param \Webbamboo\SpinnersCommon\Entity\City $recommended
  706.      */
  707.     public function removeRecommended(\Webbamboo\SpinnersCommon\Entity\City $recommended)
  708.     {
  709.         $this->recommended->removeElement($recommended);
  710.     }
  711.     /**
  712.      * Get recommended
  713.      *
  714.      * @return \Doctrine\Common\Collections\Collection
  715.      */
  716.     public function getRecommended()
  717.     {
  718.         return $this->recommended;
  719.     }
  720.     /**
  721.      * Set thumbnail
  722.      *
  723.      * @param \Webbamboo\SpinnersCommon\Entity\Companythumbnail $thumbnail
  724.      * @return Company
  725.      */
  726.     public function setThumbnail(\Webbamboo\SpinnersCommon\Entity\Companythumbnail $thumbnail null)
  727.     {
  728.         $this->thumbnail $thumbnail;
  729.         return $this;
  730.     }
  731.     /**
  732.      * Get thumbnail
  733.      *
  734.      * @return \Webbamboo\SpinnersCommon\Entity\Companythumbnail
  735.      */
  736.     public function getThumbnail()
  737.     {
  738.         return $this->thumbnail;
  739.     }
  740.     /**
  741.      * Set manualH1
  742.      *
  743.      * @param string $manualH1
  744.      *
  745.      * @return Company
  746.      */
  747.     public function setManualH1($manualH1)
  748.     {
  749.         $this->manualH1 $manualH1;
  750.         return $this;
  751.     }
  752.     /**
  753.      * Get manualH1
  754.      *
  755.      * @return string
  756.      */
  757.     public function getManualH1()
  758.     {
  759.         return $this->manualH1;
  760.     }
  761.     /**
  762.      * Set manualH2
  763.      *
  764.      * @param string $manualH2
  765.      *
  766.      * @return Company
  767.      */
  768.     public function setManualH2($manualH2)
  769.     {
  770.         $this->manualH2 $manualH2;
  771.         return $this;
  772.     }
  773.     /**
  774.      * Get manualH2
  775.      *
  776.      * @return string
  777.      */
  778.     public function getManualH2()
  779.     {
  780.         return $this->manualH2;
  781.     }
  782.     /**
  783.      * Set manualContent
  784.      *
  785.      * @param string $manualContent
  786.      *
  787.      * @return Company
  788.      */
  789.     public function setManualContent($manualContent)
  790.     {
  791.         $this->manualContent $manualContent;
  792.         return $this;
  793.     }
  794.     /**
  795.      * Get manualContent
  796.      *
  797.      * @return string
  798.      */
  799.     public function getManualContent()
  800.     {
  801.         return $this->manualContent;
  802.     }
  803.     /**
  804.      * Set manualMetatitle
  805.      *
  806.      * @param string $manualMetatitle
  807.      *
  808.      * @return Company
  809.      */
  810.     public function setManualMetatitle($manualMetatitle)
  811.     {
  812.         $this->manualMetatitle $manualMetatitle;
  813.         return $this;
  814.     }
  815.     /**
  816.      * Get manualMetatitle
  817.      *
  818.      * @return string
  819.      */
  820.     public function getManualMetatitle()
  821.     {
  822.         return $this->manualMetatitle;
  823.     }
  824.     /**
  825.      * Set manualMetadescription
  826.      *
  827.      * @param string $manualMetadescription
  828.      *
  829.      * @return Company
  830.      */
  831.     public function setManualMetadescription($manualMetadescription)
  832.     {
  833.         $this->manualMetadescription $manualMetadescription;
  834.         return $this;
  835.     }
  836.     /**
  837.      * Get manualMetadescription
  838.      *
  839.      * @return string
  840.      */
  841.     public function getManualMetadescription()
  842.     {
  843.         return $this->manualMetadescription;
  844.     }
  845.     /**
  846.      * Set manualThumbnail
  847.      *
  848.      * @param string $manualThumbnail
  849.      *
  850.      * @return Company
  851.      */
  852.     public function setManualThumbnail($manualThumbnail)
  853.     {
  854.         $this->manualThumbnail $manualThumbnail;
  855.         return $this;
  856.     }
  857.     /**
  858.      * Get manualThumbnail
  859.      *
  860.      * @return string
  861.      */
  862.     public function getManualThumbnail()
  863.     {
  864.         return $this->manualThumbnail;
  865.     }
  866.     /**
  867.      * Set manualThumbnailname
  868.      *
  869.      * @param string $manualThumbnailname
  870.      *
  871.      * @return Company
  872.      */
  873.     public function setManualThumbnailname($manualThumbnailname)
  874.     {
  875.         $this->manualThumbnailname $manualThumbnailname;
  876.         return $this;
  877.     }
  878.     /**
  879.      * Get manualThumbnailname
  880.      *
  881.      * @return string
  882.      */
  883.     public function getManualThumbnailname()
  884.     {
  885.         return $this->manualThumbnailname;
  886.     }
  887.     /**
  888.      * Set manualThumbnailalt
  889.      *
  890.      * @param string $manualThumbnailalt
  891.      *
  892.      * @return Company
  893.      */
  894.     public function setManualThumbnailalt($manualThumbnailalt)
  895.     {
  896.         $this->manualThumbnailalt $manualThumbnailalt;
  897.         return $this;
  898.     }
  899.     /**
  900.      * Get manualThumbnailalt
  901.      *
  902.      * @return string
  903.      */
  904.     public function getManualThumbnailalt()
  905.     {
  906.         return $this->manualThumbnailalt;
  907.     }
  908.     /**
  909.      * Set manual
  910.      *
  911.      * @param boolean $manual
  912.      *
  913.      * @return Company
  914.      */
  915.     public function setManual($manual)
  916.     {
  917.         $this->manual $manual;
  918.         return $this;
  919.     }
  920.     /**
  921.      * Get manual
  922.      *
  923.      * @return boolean
  924.      */
  925.     public function getManual()
  926.     {
  927.         return $this->manual;
  928.     }
  929.     /**
  930.      * Set manualMapString
  931.      *
  932.      * @param string $manualMapString
  933.      *
  934.      * @return Company
  935.      */
  936.     public function setManualMapString($manualMapString)
  937.     {
  938.         $this->manualMapString $manualMapString;
  939.         return $this;
  940.     }
  941.     /**
  942.      * Get manualMapString
  943.      *
  944.      * @return string
  945.      */
  946.     public function getManualMapString()
  947.     {
  948.         return $this->manualMapString;
  949.     }
  950. }