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

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