Rabatt export, optimize
This commit is contained in:
parent
54fc46ace4
commit
f2be8e54b4
23 changed files with 552 additions and 34 deletions
|
|
@ -20,6 +20,27 @@ class TravelCountry
|
|||
*/
|
||||
private $name;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(name="slug", type="string", length=255, nullable=true)
|
||||
*/
|
||||
private $slug;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(name="text_before", type="string", length=255, nullable=true)
|
||||
*/
|
||||
private $text_before;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(name="text_after", type="string", length=255, nullable=true)
|
||||
*/
|
||||
private $text_after;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
|
|
@ -99,6 +120,80 @@ class TravelCountry
|
|||
return $this->name;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set slug
|
||||
*
|
||||
* @param string $slug
|
||||
*
|
||||
* @return TravelCountry
|
||||
*/
|
||||
public function setSlug($slug)
|
||||
{
|
||||
$this->slug = $slug;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get slug
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getSlug()
|
||||
{
|
||||
return $this->slug;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set text_before
|
||||
*
|
||||
* @param string $text_before
|
||||
*
|
||||
* @return TravelCountry
|
||||
*/
|
||||
public function setTextBefore($text_before)
|
||||
{
|
||||
$this->text_before = $text_before;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get text_before
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTextBefore()
|
||||
{
|
||||
return $this->text_before;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set text_after
|
||||
*
|
||||
* @param string $text_after
|
||||
*
|
||||
* @return TravelCountry
|
||||
*/
|
||||
public function setTextAfter($text_after)
|
||||
{
|
||||
$this->text_after = $text_after;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get text_after
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTextAfter()
|
||||
{
|
||||
return $this->text_after;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set htmlInformation
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue