TYPO3 CMS  TYPO3_6-2
Offer.php
Go to the documentation of this file.
1 <?php
3 
21 
25  protected $title = '';
26 
31  protected $prices = NULL;
32 
36  public function __construct() {
37  $this->prices = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
38  }
39 
43  public function getTitle() {
44  return $this->title;
45  }
46 
51  public function setTitle($title) {
52  $this->title = $title;
53  }
54 
58  public function getPrices() {
59  return $this->prices;
60  }
61 
66  public function setPrices(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $prices) {
67  $this->prices = $prices;
68  }
69 
70 }
setPrices(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $prices)
Definition: Offer.php:66