From dde3b917248e7ac02f189fa48337710bb4f51830 Mon Sep 17 00:00:00 2001 From: uli Date: Mon, 19 Dec 2016 10:25:20 +0000 Subject: [PATCH] =?UTF-8?q?Nicht=20ben=C3=B6tigte=20entities=20entfernt;?= =?UTF-8?q?=20Verlinkung=20auf=20Startseite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3287 f459cee4-fb09-11de-96c3-f9c5f16c3c76 --- .../views/default/components/header.html.twig | 2 +- .../Entity/TravelProgramDestination.php | 103 -------------- .../AppBundle/Entity/TravelProgramRelated.php | 134 ------------------ 3 files changed, 1 insertion(+), 238 deletions(-) delete mode 100644 trunk/src/AppBundle/Entity/TravelProgramDestination.php delete mode 100644 trunk/src/AppBundle/Entity/TravelProgramRelated.php diff --git a/trunk/app/Resources/views/default/components/header.html.twig b/trunk/app/Resources/views/default/components/header.html.twig index 414cb329..9d4141eb 100644 --- a/trunk/app/Resources/views/default/components/header.html.twig +++ b/trunk/app/Resources/views/default/components/header.html.twig @@ -49,7 +49,7 @@ diff --git a/trunk/src/AppBundle/Entity/TravelProgramDestination.php b/trunk/src/AppBundle/Entity/TravelProgramDestination.php deleted file mode 100644 index debe522d..00000000 --- a/trunk/src/AppBundle/Entity/TravelProgramDestination.php +++ /dev/null @@ -1,103 +0,0 @@ -id; - } - - /** - * Set program - * - * @param \AppBundle\Entity\TravelProgram $program - * - * @return TravelProgramDestination - */ - public function setProgram(\AppBundle\Entity\TravelProgram $program = null) - { - $this->program = $program; - - return $this; - } - - /** - * Get program - * - * @return \AppBundle\Entity\TravelProgram - */ - public function getProgram() - { - return $this->program; - } - - /** - * Set destination - * - * @param \AppBundle\Entity\TravelDestination $destination - * - * @return TravelProgramDestination - */ - public function setDestination(\AppBundle\Entity\TravelDestination $destination = null) - { - $this->destination = $destination; - - return $this; - } - - /** - * Get destination - * - * @return \AppBundle\Entity\TravelDestination - */ - public function getDestination() - { - return $this->destination; - } -} diff --git a/trunk/src/AppBundle/Entity/TravelProgramRelated.php b/trunk/src/AppBundle/Entity/TravelProgramRelated.php deleted file mode 100644 index 0f404b62..00000000 --- a/trunk/src/AppBundle/Entity/TravelProgramRelated.php +++ /dev/null @@ -1,134 +0,0 @@ -description = $description; - - return $this; - } - - /** - * Get description - * - * @return string - */ - public function getDescription() - { - return $this->description; - } - - /** - * Get id - * - * @return integer - */ - public function getId() - { - return $this->id; - } - - /** - * Set program1 - * - * @param \AppBundle\Entity\TravelProgram $program1 - * - * @return TravelProgramRelated - */ - public function setProgram1(\AppBundle\Entity\TravelProgram $program1 = null) - { - $this->program1 = $program1; - - return $this; - } - - /** - * Get program1 - * - * @return \AppBundle\Entity\TravelProgram - */ - public function getProgram1() - { - return $this->program1; - } - - /** - * Set program2 - * - * @param \AppBundle\Entity\TravelProgram $program2 - * - * @return TravelProgramRelated - */ - public function setProgram2(\AppBundle\Entity\TravelProgram $program2 = null) - { - $this->program2 = $program2; - - return $this; - } - - /** - * Get program2 - * - * @return \AppBundle\Entity\TravelProgram - */ - public function getProgram2() - { - return $this->program2; - } -}