src/PortalBundle/Entity/Founders.php line 10

Open in your IDE?
  1. <?php
  2. namespace PortalBundle\Entity;
  3. use Application\Sonata\MediaBundle\Entity\Media;
  4. /**
  5.  * Founders
  6.  */
  7. class Founders
  8. {
  9.     /**
  10.      * @var int
  11.      */
  12.     private $id;
  13.     /**
  14.      * @var string
  15.      */
  16.     private $title_ua;
  17.     /**
  18.      * @var string
  19.      */
  20.     private $title_ru;
  21.     /**
  22.      * @var string
  23.      */
  24.     private $text_ua;
  25.     /**
  26.      * @var string
  27.      */
  28.     private $text_ru;
  29.     /**
  30.      * @var Media
  31.      */
  32.     private $image;
  33.     /**
  34.      * @var Media
  35.      */
  36.     private $image_mobile;
  37.     /**
  38.      * Get id.
  39.      *
  40.      * @return int
  41.      */
  42.     public function getId()
  43.     {
  44.         return $this->id;
  45.     }
  46.     /**
  47.      * Set titleUa.
  48.      *
  49.      * @param string $titleUa
  50.      *
  51.      * @return Founders
  52.      */
  53.     public function setTitleUa($titleUa)
  54.     {
  55.         $this->title_ua $titleUa;
  56.         return $this;
  57.     }
  58.     /**
  59.      * Get titleUa.
  60.      *
  61.      * @return string
  62.      */
  63.     public function getTitleUa()
  64.     {
  65.         return $this->title_ua;
  66.     }
  67.     /**
  68.      * Set titleRu.
  69.      *
  70.      * @param string $titleRu
  71.      *
  72.      * @return Founders
  73.      */
  74.     public function setTitleRu($titleRu)
  75.     {
  76.         $this->title_ru $titleRu;
  77.         return $this;
  78.     }
  79.     /**
  80.      * Get titleRu.
  81.      *
  82.      * @return string
  83.      */
  84.     public function getTitleRu()
  85.     {
  86.         return $this->title_ru;
  87.     }
  88.     /**
  89.      * Set textUa.
  90.      *
  91.      * @param string $textUa
  92.      *
  93.      * @return Founders
  94.      */
  95.     public function setTextUa($textUa)
  96.     {
  97.         $this->text_ua $textUa;
  98.         return $this;
  99.     }
  100.     /**
  101.      * Get textUa.
  102.      *
  103.      * @return string
  104.      */
  105.     public function getTextUa()
  106.     {
  107.         return $this->text_ua;
  108.     }
  109.     /**
  110.      * Set textRu.
  111.      *
  112.      * @param string $textRu
  113.      *
  114.      * @return Founders
  115.      */
  116.     public function setTextRu($textRu)
  117.     {
  118.         $this->text_ru $textRu;
  119.         return $this;
  120.     }
  121.     /**
  122.      * Get textRu.
  123.      *
  124.      * @return string
  125.      */
  126.     public function getTextRu()
  127.     {
  128.         return $this->text_ru;
  129.     }
  130.     /**
  131.      * Set image.
  132.      *
  133.      * @param Media|null $image
  134.      *
  135.      * @return Founders
  136.      */
  137.     public function setImage(Media $image null)
  138.     {
  139.         $this->image $image;
  140.         return $this;
  141.     }
  142.     /**
  143.      * Get image.
  144.      *
  145.      * @return Media|null
  146.      */
  147.     public function getImage()
  148.     {
  149.         return $this->image;
  150.     }
  151.     /**
  152.      * Set imageMobile.
  153.      *
  154.      * @param Media|null $imageMobile
  155.      *
  156.      * @return Founders
  157.      */
  158.     public function setImageMobile(Media $imageMobile null)
  159.     {
  160.         $this->image_mobile $imageMobile;
  161.         return $this;
  162.     }
  163.     /**
  164.      * Get imageMobile.
  165.      *
  166.      * @return Media|null
  167.      */
  168.     public function getImageMobile()
  169.     {
  170.         return $this->image_mobile;
  171.     }
  172. }