1 | <?php |
||
22 | class Organisator extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * Name of Organisator |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $name = ''; |
||
31 | |||
32 | /** |
||
33 | * E-Mail of Organisator |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | protected $email = ''; |
||
38 | |||
39 | /** |
||
40 | * Phone number of Organisator |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | protected $phone = ''; |
||
45 | |||
46 | /** |
||
47 | * Image of Organisator |
||
48 | * |
||
49 | * @var \TYPO3\CMS\Extbase\Domain\Model\FileReference |
||
50 | */ |
||
51 | protected $image = null; |
||
52 | |||
53 | /** |
||
54 | * Returns the name |
||
55 | * |
||
56 | * @return string $name |
||
57 | */ |
||
58 | 1 | public function getName() |
|
62 | |||
63 | /** |
||
64 | * Sets the name |
||
65 | * |
||
66 | * @param string $name The name |
||
67 | * |
||
68 | * @return void |
||
69 | */ |
||
70 | 1 | public function setName($name) |
|
74 | |||
75 | /** |
||
76 | * Returns the e-mail |
||
77 | * |
||
78 | * @return string $email |
||
79 | */ |
||
80 | 4 | public function getEmail() |
|
84 | |||
85 | /** |
||
86 | * Sets the email |
||
87 | * |
||
88 | * @param string $email The e-mail |
||
89 | * |
||
90 | * @return void |
||
91 | */ |
||
92 | 1 | public function setEmail($email) |
|
96 | |||
97 | /** |
||
98 | * Returns the phone |
||
99 | * |
||
100 | * @return string $phone |
||
101 | */ |
||
102 | 1 | public function getPhone() |
|
106 | |||
107 | /** |
||
108 | * Sets the phone |
||
109 | * |
||
110 | * @param string $phone The phone |
||
111 | * |
||
112 | * @return void |
||
113 | */ |
||
114 | 1 | public function setPhone($phone) |
|
118 | |||
119 | /** |
||
120 | * Returns the image |
||
121 | * |
||
122 | 14 | * @return \TYPO3\CMS\Extbase\Domain\Model\FileReference $image |
|
123 | */ |
||
124 | 14 | public function getImage() |
|
128 | |||
129 | /** |
||
130 | * Sets the image |
||
131 | * |
||
132 | * @param \TYPO3\CMS\Extbase\Domain\Model\FileReference $image The image |
||
133 | * |
||
134 | * @return void |
||
135 | 14 | */ |
|
136 | public function setImage(\TYPO3\CMS\Extbase\Domain\Model\FileReference $image) |
||
140 | } |