0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
arcaneoverseas.com
/
application
/
models
/
Entities
/
[
Home
]
File: Event.php~
<?php namespace Entities; use Doctrine\ORM\Mapping as ORM; /** * Entities\Event */ class Event { /** * @var integer $id */ private $id; /** * @var string $titre */ private $titre; /** * @var datetime $date_start */ private $date_start; /** * @var datetime $date_end */ private $date_end; /** * @var text $description */ private $description; /** * @var string $document_joint */ private $document_joint; /** * @var string $seo_title */ private $seo_title; /** * @var text $seo_description */ private $seo_description; /** * @var text $seo_keyword */ private $seo_keyword; /** * @var string $active */ private $active; /** * @var string $sku */ private $sku; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set titre * * @param string $titre * @return Event */ public function setTitre($titre) { $this->titre = $titre; return $this; } /** * Get titre * * @return string */ public function getTitre() { return $this->titre; } /** * Set date_start * * @param datetime $dateStart * @return Event */ public function setDateStart($dateStart) { $this->date_start = $dateStart; return $this; } /** * Get date_start * * @return datetime */ public function getDateStart() { return $this->date_start; } /** * Set date_end * * @param datetime $dateEnd * @return Event */ public function setDateEnd($dateEnd) { $this->date_end = $dateEnd; return $this; } /** * Get date_end * * @return datetime */ public function getDateEnd() { return $this->date_end; } /** * Set description * * @param text $description * @return Event */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return text */ public function getDescription() { return $this->description; } /** * Set document_joint * * @param string $documentJoint * @return Event */ public function setDocumentJoint($documentJoint) { $this->document_joint = $documentJoint; return $this; } /** * Get document_joint * * @return string */ public function getDocumentJoint() { return $this->document_joint; } /** * Set seo_title * * @param string $seoTitle * @return Event */ public function setSeoTitle($seoTitle) { $this->seo_title = $seoTitle; return $this; } /** * Get seo_title * * @return string */ public function getSeoTitle() { return $this->seo_title; } /** * Set seo_description * * @param text $seoDescription * @return Event */ public function setSeoDescription($seoDescription) { $this->seo_description = $seoDescription; return $this; } /** * Get seo_description * * @return text */ public function getSeoDescription() { return $this->seo_description; } /** * Set seo_keyword * * @param text $seoKeyword * @return Event */ public function setSeoKeyword($seoKeyword) { $this->seo_keyword = $seoKeyword; return $this; } /** * Get seo_keyword * * @return text */ public function getSeoKeyword() { return $this->seo_keyword; } /** * Set active * * @param string $active * @return Event */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return string */ public function getActive() { return $this->active; } /** * Set sku * * @param string $sku * @return Event */ public function setSku($sku) { $this->sku = $sku; return $this; } /** * Get sku * * @return string */ public function getSku() { return $this->sku; } /** * @var string $color */ private $color; /** * Set color * * @param string $color * @return Event */ public function setColor($color) { $this->color = $color; return $this; } /** * Get color * * @return string */ public function getColor() { return $this->color; } /** * @var string $h_start */ private $h_start; /** * @var string $h_end */ private $h_end; /** * Set h_start * * @param string $hStart * @return Event */ public function setHStart($hStart) { $this->h_start = $hStart; return $this; } /** * Get h_start * * @return string */ public function getHStart() { return $this->h_start; } /** * Set h_end * * @param string $hEnd * @return Event */ public function setHEnd($hEnd) { $this->h_end = $hEnd; return $this; } /** * Get h_end * * @return string */ public function getHEnd() { return $this->h_end; } /** * @var string $home */ private $home; /** * Set home * * @param string $home * @return Event */ public function setHome($home) { $this->home = $home; return $this; } /** * Get home * * @return string */ public function getHome() { return $this->home; } /** * @var string $left */ private $left; /** * Set left * * @param string $left * @return Event */ public function setLeft($left) { $this->left = $left; return $this; } /** * Get left * * @return string */ public function getLeft() { return $this->left; } }
©
2018.