src/DcSiteBundle/Entity/AccessoriesContent.php line 8

Open in your IDE?
  1. <?php
  2. namespace DcSiteBundle\Entity;
  3. /**
  4.  * AccessoriesContent
  5.  */
  6. class AccessoriesContent
  7. {
  8.     /**
  9.      * @var integer
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var string
  14.      */
  15.     private $title;
  16.     /**
  17.      * @var string
  18.      */
  19.     private $description;
  20.     /**
  21.      * @var string
  22.      */
  23.     private $language;
  24.     /**
  25.      * @var string
  26.      */
  27.     private $seo_title;
  28.     /**
  29.      * @var string
  30.      */
  31.     private $seo_description;
  32.     /**
  33.      * @var Accessories
  34.      */
  35.     private $accessory;
  36.     /**
  37.      * Get id
  38.      *
  39.      * @return integer
  40.      */
  41.     public function getId()
  42.     {
  43.         return $this->id;
  44.     }
  45.     /**
  46.      * Set title
  47.      *
  48.      * @param string $title
  49.      *
  50.      * @return AccessoriesContent
  51.      */
  52.     public function setTitle($title)
  53.     {
  54.         $this->title $title;
  55.         return $this;
  56.     }
  57.     /**
  58.      * Get title
  59.      *
  60.      * @return string
  61.      */
  62.     public function getTitle()
  63.     {
  64.         return $this->title;
  65.     }
  66.     /**
  67.      * Set language
  68.      *
  69.      * @param string $language
  70.      *
  71.      * @return AccessoriesContent
  72.      */
  73.     public function setLanguage($language)
  74.     {
  75.         $this->language $language;
  76.         return $this;
  77.     }
  78.     /**
  79.      * Get language
  80.      *
  81.      * @return string
  82.      */
  83.     public function getLanguage()
  84.     {
  85.         return $this->language;
  86.     }
  87.     /**
  88.      * Set seoTitle
  89.      *
  90.      * @param string $seoTitle
  91.      *
  92.      * @return AccessoriesContent
  93.      */
  94.     public function setSeoTitle($seoTitle)
  95.     {
  96.         $this->seo_title $seoTitle;
  97.         return $this;
  98.     }
  99.     /**
  100.      * Get seoTitle
  101.      *
  102.      * @return string
  103.      */
  104.     public function getSeoTitle()
  105.     {
  106.         return $this->seo_title;
  107.     }
  108.     /**
  109.      * Set seoDescription
  110.      *
  111.      * @param string $seoDescription
  112.      *
  113.      * @return AccessoriesContent
  114.      */
  115.     public function setSeoDescription($seoDescription)
  116.     {
  117.         $this->seo_description $seoDescription;
  118.         return $this;
  119.     }
  120.     /**
  121.      * Get seoDescription
  122.      *
  123.      * @return string
  124.      */
  125.     public function getSeoDescription()
  126.     {
  127.         return $this->seo_description;
  128.     }
  129.     /**
  130.      * Set accessory
  131.      *
  132.      * @param Accessories $accessory
  133.      *
  134.      * @return AccessoriesContent
  135.      */
  136.     public function setAccessory(Accessories $accessory null)
  137.     {
  138.         $this->accessory $accessory;
  139.         return $this;
  140.     }
  141.     /**
  142.      * Get accessory
  143.      *
  144.      * @return Accessories
  145.      */
  146.     public function getAccessory()
  147.     {
  148.         return $this->accessory;
  149.     }
  150.     /**
  151.      * Set description
  152.      *
  153.      * @param string $description
  154.      *
  155.      * @return AccessoriesContent
  156.      */
  157.     public function setDescription($description)
  158.     {
  159.         $this->description $description;
  160.         return $this;
  161.     }
  162.     /**
  163.      * Get description
  164.      *
  165.      * @return string
  166.      */
  167.     public function getDescription()
  168.     {
  169.         return $this->description;
  170.     }
  171.     /**
  172.      * @var string
  173.      */
  174.     private $content;
  175.     /**
  176.      * Set content
  177.      *
  178.      * @param string $content
  179.      *
  180.      * @return AccessoriesContent
  181.      */
  182.     public function setContent($content)
  183.     {
  184.         $this->content $content;
  185.         return $this;
  186.     }
  187.     /**
  188.      * Get content
  189.      *
  190.      * @return string
  191.      */
  192.     public function getContent()
  193.     {
  194.         return $this->content;
  195.     }
  196. }