‪TYPO3CMS  9.5
Hotel.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
18 
23 {
27  protected ‪$title = '';
28 
33  protected ‪$offers;
34 
38  public function ‪__construct()
39  {
40  $this->offers = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
41  }
42 
46  public function ‪getTitle()
47  {
48  return ‪$this->title;
49  }
50 
54  public function ‪setTitle(‪$title)
55  {
56  $this->title = ‪$title;
57  }
58 
62  public function ‪getOffers()
63  {
64  return ‪$this->offers;
65  }
66 
70  public function ‪setOffers(\‪TYPO3\CMS\‪Extbase\Persistence\ObjectStorage ‪$offers)
71  {
72  $this->offers = ‪$offers;
73  }
74 }
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:4
‪TYPO3
‪OliverHader\IrreTutorial\Domain\Model\Hotel\$offers
‪TYPO3 CMS Extbase Persistence ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Offer > $offers
Definition: Hotel.php:31
‪TYPO3\CMS\Extbase\DomainObject\AbstractEntity
Definition: AbstractEntity.php:22
‪OliverHader\IrreTutorial\Domain\Model\Hotel\$title
‪string $title
Definition: Hotel.php:26
‪OliverHader\IrreTutorial\Domain\Model
Definition: Content.php:2
‪OliverHader\IrreTutorial\Domain\Model\Hotel\setTitle
‪setTitle($title)
Definition: Hotel.php:52
‪OliverHader\IrreTutorial\Domain\Model\Hotel
Definition: Hotel.php:23
‪OliverHader\IrreTutorial\Domain\Model\Hotel\setOffers
‪setOffers(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $offers)
Definition: Hotel.php:68
‪OliverHader\IrreTutorial\Domain\Model\Hotel\__construct
‪__construct()
Definition: Hotel.php:36
‪OliverHader\IrreTutorial\Domain\Model\Hotel\getOffers
‪TYPO3 CMS Extbase Persistence ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Offer > getOffers()
Definition: Hotel.php:60
‪OliverHader\IrreTutorial\Domain\Model\Hotel\getTitle
‪string getTitle()
Definition: Hotel.php:44