1 | <?php |
||
22 | class CustomNotificationLog extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * Event |
||
27 | * |
||
28 | * @var \DERHANSEN\SfEventMgt\Domain\Model\Event |
||
29 | */ |
||
30 | protected $event = null; |
||
31 | |||
32 | /** |
||
33 | * Details |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | protected $details; |
||
38 | |||
39 | /** |
||
40 | * E-Mails sent |
||
41 | * |
||
42 | * @var int |
||
43 | */ |
||
44 | protected $emailsSent; |
||
45 | |||
46 | /** |
||
47 | * Timestamp |
||
48 | * |
||
49 | * @var \DateTime |
||
50 | */ |
||
51 | protected $tstamp; |
||
52 | |||
53 | /** |
||
54 | * Backend user |
||
55 | * |
||
56 | * @var \TYPO3\CMS\Beuser\Domain\Model\BackendUser |
||
57 | */ |
||
58 | protected $cruserId; |
||
59 | |||
60 | /** |
||
61 | * Sets the details |
||
62 | * |
||
63 | * @param string $details Details |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | public function setDetails($details) |
||
71 | |||
72 | /** |
||
73 | * Returns the details |
||
74 | * |
||
75 | * @return string |
||
76 | */ |
||
77 | public function getDetails() |
||
81 | |||
82 | /** |
||
83 | * Sets the event |
||
84 | * |
||
85 | * @param \DERHANSEN\SfEventMgt\Domain\Model\Event $event Event |
||
86 | * |
||
87 | * @return void |
||
88 | */ |
||
89 | public function setEvent(Event $event) |
||
93 | |||
94 | /** |
||
95 | * Returns the event |
||
96 | * |
||
97 | * @return \DERHANSEN\SfEventMgt\Domain\Model\Event |
||
98 | */ |
||
99 | public function getEvent() |
||
103 | |||
104 | /** |
||
105 | * Sets emailsSent |
||
106 | * |
||
107 | * @param int $emailsSent E-Mails sent |
||
108 | * |
||
109 | * @return void |
||
110 | */ |
||
111 | public function setEmailsSent($emailsSent) |
||
115 | |||
116 | /** |
||
117 | * Returns emailsSent |
||
118 | * |
||
119 | * @return int |
||
120 | */ |
||
121 | public function getEmailsSent() |
||
125 | |||
126 | /** |
||
127 | * Returns tstamp |
||
128 | * |
||
129 | * @return \DateTime |
||
130 | */ |
||
131 | public function getTstamp() |
||
135 | |||
136 | /** |
||
137 | * Sets the timestamp |
||
138 | * |
||
139 | * @param \DateTime $tstamp Tstamp |
||
140 | * |
||
141 | * @return void |
||
142 | */ |
||
143 | public function setTstamp(\DateTime $tstamp) |
||
147 | |||
148 | /** |
||
149 | * Returns the backend user |
||
150 | * |
||
151 | * @return \TYPO3\CMS\Beuser\Domain\Model\BackendUser |
||
152 | */ |
||
153 | public function getCruserId() |
||
157 | |||
158 | /** |
||
159 | * Sets the backend user |
||
160 | * |
||
161 | * @param \TYPO3\CMS\Beuser\Domain\Model\BackendUser $cruserId CruserId |
||
162 | * |
||
163 | * @return void |
||
164 | */ |
||
165 | public function setCruserId($cruserId) |
||
169 | } |