src/Entity/JobDailyRoutineEntry.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobDailyRoutineEntry {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $heading;
  13.     /**
  14.      * @var string
  15.      */
  16.     private $description;
  17.     /**
  18.      * @var string
  19.      */
  20.     private $descriptionInfo;
  21.     /**
  22.      * @var string
  23.      */
  24.     private $videourl;
  25.     /**
  26.      * @var string
  27.      */
  28.     private $dayTime;
  29.     /**
  30.      * @var integer
  31.      */
  32.     private $position;
  33.     /**
  34.      * @var \App\Entity\JobDailyRoutine
  35.      */
  36.     private $jobDailyRoutine;
  37.     /**
  38.      * @var \App\Entity\Media
  39.      */
  40.     private $picture;
  41.     /**
  42.      * @var \App\Entity\KeyValue
  43.      */
  44.     private $layout;
  45.     /**
  46.      * @var \App\Entity\KeyValue
  47.      */
  48.     private $theme;
  49.     /**
  50.      * @var \App\Entity\KeyValue
  51.      */
  52.     private $imagePosition;
  53.     /**
  54.      * @var \App\Entity\KeyValue
  55.      */
  56.     private $highlightPosition;
  57.     /**
  58.      * @var string
  59.      */
  60.     private $backgroundVideo;
  61.     /**
  62.      * @var \App\Entity\Media
  63.      */
  64.     private $backgroundImage;
  65.     /**
  66.      * Get id
  67.      *
  68.      * @return integer
  69.      */
  70.     public function getId() {
  71.         return $this->id;
  72.     }
  73.     /**
  74.      * Set heading
  75.      *
  76.      * @param string $heading
  77.      *
  78.      * @return JobDailyRoutineEntry
  79.      */
  80.     public function setHeading($heading) {
  81.         $this->heading $heading;
  82.         return $this;
  83.     }
  84.     /**
  85.      * Get heading
  86.      *
  87.      * @return string
  88.      */
  89.     public function getHeading() {
  90.         return $this->heading;
  91.     }
  92.     /**
  93.      * Set description
  94.      *
  95.      * @param string $description
  96.      *
  97.      * @return JobDailyRoutineEntry
  98.      */
  99.     public function setDescription($description) {
  100.         $this->description $description;
  101.         return $this;
  102.     }
  103.     /**
  104.      * Get description
  105.      *
  106.      * @return string
  107.      */
  108.     public function getDescription() {
  109.         return $this->description;
  110.     }
  111.     /**
  112.      * Set descriptionInfo
  113.      *
  114.      * @param string $descriptionInfo
  115.      *
  116.      * @return JobDailyRoutineEntry
  117.      */
  118.     public function setDescriptionInfo($descriptionInfo) {
  119.         $this->descriptionInfo $descriptionInfo;
  120.         return $this;
  121.     }
  122.     /**
  123.      * Get descriptionInfo
  124.      *
  125.      * @return string
  126.      */
  127.     public function getDescriptionInfo() {
  128.         return $this->descriptionInfo;
  129.     }
  130.     /**
  131.      * Set videourl
  132.      *
  133.      * @param string $videourl
  134.      *
  135.      * @return JobDailyRoutineEntry
  136.      */
  137.     public function setVideourl($videourl) {
  138.         $this->videourl $videourl;
  139.         return $this;
  140.     }
  141.     /**
  142.      * Get videourl
  143.      *
  144.      * @return string
  145.      */
  146.     public function getVideourl() {
  147.         return $this->videourl;
  148.     }
  149.     /**
  150.      * Set backgroundVideo
  151.      *
  152.      * @param string $backgroundVideo
  153.      *
  154.      * @return JobDailyRoutineEntry
  155.      */
  156.     public function setBackgroundVideo($backgroundVideo) {
  157.         $this->backgroundVideo $backgroundVideo;
  158.         return $this;
  159.     }
  160.     /**
  161.      * Get backgroundVideo
  162.      *
  163.      * @return string
  164.      */
  165.     public function getBackgroundVideo() {
  166.         return $this->backgroundVideo;
  167.     }
  168.     /**
  169.      * Set dayTime
  170.      *
  171.      * @param string $dayTime
  172.      *
  173.      * @return JobDailyRoutineEntry
  174.      */
  175.     public function setDayTime($dayTime) {
  176.         $this->dayTime $dayTime;
  177.         return $this;
  178.     }
  179.     /**
  180.      * Get dayTime
  181.      *
  182.      * @return string
  183.      */
  184.     public function getDayTime() {
  185.         return $this->dayTime;
  186.     }
  187.     /**
  188.      * Set position
  189.      *
  190.      * @param integer $position
  191.      *
  192.      * @return JobDailyRoutineEntry
  193.      */
  194.     public function setPosition($position) {
  195.         $this->position $position;
  196.         return $this;
  197.     }
  198.     /**
  199.      * Get position
  200.      *
  201.      * @return integer
  202.      */
  203.     public function getPosition() {
  204.         return $this->position;
  205.     }
  206.     /**
  207.      * Set jobDailyRoutine
  208.      *
  209.      * @param \App\Entity\JobDailyRoutine $jobDailyRoutine
  210.      *
  211.      * @return JobDailyRoutineEntry
  212.      */
  213.     public function setJobDailyRoutine(\App\Entity\JobDailyRoutine $jobDailyRoutine null) {
  214.         $this->jobDailyRoutine $jobDailyRoutine;
  215.         return $this;
  216.     }
  217.     /**
  218.      * Get jobDailyRoutine
  219.      *
  220.      * @return \App\Entity\JobDailyRoutine
  221.      */
  222.     public function getJobDailyRoutine() {
  223.         return $this->jobDailyRoutine;
  224.     }
  225.     /**
  226.      * Set picture
  227.      *
  228.      * @param \App\Entity\Media $picture
  229.      *
  230.      * @return JobDailyRoutineEntry
  231.      */
  232.     public function setPicture(\App\Entity\Media $picture null) {
  233.         $this->picture $picture;
  234.         return $this;
  235.     }
  236.     /**
  237.      * Get picture
  238.      *
  239.      * @return \App\Entity\Media
  240.      */
  241.     public function getPicture() {
  242.         return $this->picture;
  243.     }
  244.     /**
  245.      * Set backgroundImage
  246.      *
  247.      * @param \App\Entity\Media $backgroundImage
  248.      *
  249.      * @return JobDailyRoutineEntry
  250.      */
  251.     public function setBackgroundImage(\App\Entity\Media $backgroundImage null) {
  252.         $this->backgroundImage $backgroundImage;
  253.         return $this;
  254.     }
  255.     /**
  256.      * Get backgroundImage
  257.      *
  258.      * @return \App\Entity\Media
  259.      */
  260.     public function getBackgroundImage() {
  261.         return $this->backgroundImage;
  262.     }
  263.     /**
  264.      * Set layout
  265.      *
  266.      * @param \App\Entity\KeyValue $layout
  267.      *
  268.      * @return JobDailyRoutineEntry
  269.      */
  270.     public function setLayout(\App\Entity\KeyValue $layout null) {
  271.         $this->layout $layout;
  272.         return $this;
  273.     }
  274.     /**
  275.      * Get layout
  276.      *
  277.      * @return \App\Entity\KeyValue
  278.      */
  279.     public function getLayout() {
  280.         return $this->layout;
  281.     }
  282.     /**
  283.      * Set theme
  284.      *
  285.      * @param \App\Entity\KeyValue $theme
  286.      *
  287.      * @return JobDailyRoutineEntry
  288.      */
  289.     public function setTheme(\App\Entity\KeyValue $theme null) {
  290.         $this->theme $theme;
  291.         return $this;
  292.     }
  293.     /**
  294.      * Get theme
  295.      *
  296.      * @return \App\Entity\KeyValue
  297.      */
  298.     public function getTheme() {
  299.         return $this->theme;
  300.     }
  301.     /**
  302.      * Set imagePosition
  303.      *
  304.      * @param \App\Entity\KeyValue $imagePosition
  305.      *
  306.      * @return JobDailyRoutineEntry
  307.      */
  308.     public function setImagePosition(\App\Entity\KeyValue $imagePosition null) {
  309.         $this->imagePosition $imagePosition;
  310.         return $this;
  311.     }
  312.     /**
  313.      * Get imagePosition
  314.      *
  315.      * @return \App\Entity\KeyValue
  316.      */
  317.     public function getImagePosition() {
  318.         return $this->imagePosition;
  319.     }
  320.     /**
  321.      * Set highlightPosition
  322.      *
  323.      * @param \App\Entity\KeyValue $highlightPosition
  324.      *
  325.      * @return JobDailyRoutineEntry
  326.      */
  327.     public function setHighlightPosition(\App\Entity\KeyValue $highlightPosition null) {
  328.         $this->highlightPosition $highlightPosition;
  329.         return $this;
  330.     }
  331.     /**
  332.      * Get highlightPosition
  333.      *
  334.      * @return \App\Entity\KeyValue
  335.      */
  336.     public function getHighlightPosition() {
  337.         return $this->highlightPosition;
  338.     }
  339. }