@@ -495,7 +495,7 @@ discard block |
||
495 | 495 | $date_or_time, |
496 | 496 | $echo |
497 | 497 | ); |
498 | - if (! $echo) { |
|
498 | + if ( ! $echo) { |
|
499 | 499 | return $dtt; |
500 | 500 | } |
501 | 501 | return ''; |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | ' ', |
598 | 598 | $this->get_i18n_datetime('DTT_EVT_end', $dt_frmt) |
599 | 599 | ); |
600 | - return $start !== $end ? $start . $conjunction . $end : $start; |
|
600 | + return $start !== $end ? $start.$conjunction.$end : $start; |
|
601 | 601 | } |
602 | 602 | |
603 | 603 | |
@@ -705,7 +705,7 @@ discard block |
||
705 | 705 | ' ', |
706 | 706 | $this->get_i18n_datetime('DTT_EVT_end', $tm_format) |
707 | 707 | ); |
708 | - return $start !== $end ? $start . $conjunction . $end : $start; |
|
708 | + return $start !== $end ? $start.$conjunction.$end : $start; |
|
709 | 709 | } |
710 | 710 | |
711 | 711 | |
@@ -750,7 +750,7 @@ discard block |
||
750 | 750 | ) { |
751 | 751 | $dt_format = ! empty($dt_format) ? $dt_format : $this->_dt_frmt; |
752 | 752 | $tm_format = ! empty($tm_format) ? $tm_format : $this->_tm_frmt; |
753 | - $full_format = $dt_format . $separator . $tm_format; |
|
753 | + $full_format = $dt_format.$separator.$tm_format; |
|
754 | 754 | // the range output depends on various conditions |
755 | 755 | switch (true) { |
756 | 756 | // start date timestamp and end date timestamp are the same. |
@@ -991,7 +991,7 @@ discard block |
||
991 | 991 | // tickets remaining available for purchase |
992 | 992 | // no need for special checks for infinite, because if DTT_reg_limit == EE_INF, then EE_INF - x = EE_INF |
993 | 993 | $dtt_remaining = $this->reg_limit() - $this->sold_and_reserved(); |
994 | - if (! $consider_tickets) { |
|
994 | + if ( ! $consider_tickets) { |
|
995 | 995 | return $dtt_remaining; |
996 | 996 | } |
997 | 997 | $tickets_remaining = $this->tickets_remaining(); |
@@ -1015,7 +1015,7 @@ discard block |
||
1015 | 1015 | { |
1016 | 1016 | $sum = 0; |
1017 | 1017 | $tickets = $this->tickets($query_params); |
1018 | - if (! empty($tickets)) { |
|
1018 | + if ( ! empty($tickets)) { |
|
1019 | 1019 | foreach ($tickets as $ticket) { |
1020 | 1020 | if ($ticket instanceof EE_Ticket) { |
1021 | 1021 | // get the actual amount of tickets that can be sold |
@@ -1166,20 +1166,20 @@ discard block |
||
1166 | 1166 | { |
1167 | 1167 | if ($use_dtt_name) { |
1168 | 1168 | $dtt_name = $this->name(); |
1169 | - if (! empty($dtt_name)) { |
|
1169 | + if ( ! empty($dtt_name)) { |
|
1170 | 1170 | return $dtt_name; |
1171 | 1171 | } |
1172 | 1172 | } |
1173 | 1173 | // first condition is to see if the months are different |
1174 | 1174 | if (date('m', $this->get_raw('DTT_EVT_start')) !== date('m', $this->get_raw('DTT_EVT_end')) |
1175 | 1175 | ) { |
1176 | - $display_date = $this->start_date('M j\, Y g:i a') . ' - ' . $this->end_date('M j\, Y g:i a'); |
|
1176 | + $display_date = $this->start_date('M j\, Y g:i a').' - '.$this->end_date('M j\, Y g:i a'); |
|
1177 | 1177 | // next condition is if its the same month but different day |
1178 | 1178 | } else { |
1179 | 1179 | if (date('m', $this->get_raw('DTT_EVT_start')) === date('m', $this->get_raw('DTT_EVT_end')) |
1180 | 1180 | && date('d', $this->get_raw('DTT_EVT_start')) !== date('d', $this->get_raw('DTT_EVT_end')) |
1181 | 1181 | ) { |
1182 | - $display_date = $this->start_date('M j\, g:i a') . ' - ' . $this->end_date('M j\, g:i a Y'); |
|
1182 | + $display_date = $this->start_date('M j\, g:i a').' - '.$this->end_date('M j\, g:i a Y'); |
|
1183 | 1183 | } else { |
1184 | 1184 | $display_date = $this->start_date('F j\, Y') |
1185 | 1185 | . ' @ ' |
@@ -13,1410 +13,1410 @@ |
||
13 | 13 | class EE_Datetime extends EE_Soft_Delete_Base_Class |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * constant used by get_active_status, indicates datetime has no more available spaces |
|
18 | - */ |
|
19 | - const sold_out = 'DTS'; |
|
20 | - |
|
21 | - /** |
|
22 | - * constant used by get_active_status, indicating datetime is still active (even is not over, can be registered-for) |
|
23 | - */ |
|
24 | - const active = 'DTA'; |
|
25 | - |
|
26 | - /** |
|
27 | - * constant used by get_active_status, indicating the datetime cannot be used for registrations yet, but has not |
|
28 | - * expired |
|
29 | - */ |
|
30 | - const upcoming = 'DTU'; |
|
31 | - |
|
32 | - /** |
|
33 | - * Datetime is postponed |
|
34 | - */ |
|
35 | - const postponed = 'DTP'; |
|
36 | - |
|
37 | - /** |
|
38 | - * Datetime is cancelled |
|
39 | - */ |
|
40 | - const cancelled = 'DTC'; |
|
41 | - |
|
42 | - /** |
|
43 | - * constant used by get_active_status, indicates datetime has expired (event is over) |
|
44 | - */ |
|
45 | - const expired = 'DTE'; |
|
46 | - |
|
47 | - /** |
|
48 | - * constant used in various places indicating that an event is INACTIVE (not yet ready to be published) |
|
49 | - */ |
|
50 | - const inactive = 'DTI'; |
|
51 | - |
|
52 | - |
|
53 | - /** |
|
54 | - * @param array $props_n_values incoming values |
|
55 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be used.) |
|
56 | - * @param array $date_formats incoming date_formats in an array where the first value is the date_format |
|
57 | - * and the second value is the time format |
|
58 | - * @return EE_Datetime |
|
59 | - * @throws ReflectionException |
|
60 | - * @throws InvalidArgumentException |
|
61 | - * @throws InvalidInterfaceException |
|
62 | - * @throws InvalidDataTypeException |
|
63 | - * @throws EE_Error |
|
64 | - */ |
|
65 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
66 | - { |
|
67 | - $has_object = parent::_check_for_object( |
|
68 | - $props_n_values, |
|
69 | - __CLASS__, |
|
70 | - $timezone, |
|
71 | - $date_formats |
|
72 | - ); |
|
73 | - return $has_object |
|
74 | - ? $has_object |
|
75 | - : new self($props_n_values, false, $timezone, $date_formats); |
|
76 | - } |
|
77 | - |
|
78 | - |
|
79 | - /** |
|
80 | - * @param array $props_n_values incoming values from the database |
|
81 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
82 | - * the website will be used. |
|
83 | - * @return EE_Datetime |
|
84 | - * @throws ReflectionException |
|
85 | - * @throws InvalidArgumentException |
|
86 | - * @throws InvalidInterfaceException |
|
87 | - * @throws InvalidDataTypeException |
|
88 | - * @throws EE_Error |
|
89 | - */ |
|
90 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
91 | - { |
|
92 | - return new self($props_n_values, true, $timezone); |
|
93 | - } |
|
94 | - |
|
95 | - |
|
96 | - /** |
|
97 | - * @param $name |
|
98 | - * @throws ReflectionException |
|
99 | - * @throws InvalidArgumentException |
|
100 | - * @throws InvalidInterfaceException |
|
101 | - * @throws InvalidDataTypeException |
|
102 | - * @throws EE_Error |
|
103 | - */ |
|
104 | - public function set_name($name) |
|
105 | - { |
|
106 | - $this->set('DTT_name', $name); |
|
107 | - } |
|
108 | - |
|
109 | - |
|
110 | - /** |
|
111 | - * @param $description |
|
112 | - * @throws ReflectionException |
|
113 | - * @throws InvalidArgumentException |
|
114 | - * @throws InvalidInterfaceException |
|
115 | - * @throws InvalidDataTypeException |
|
116 | - * @throws EE_Error |
|
117 | - */ |
|
118 | - public function set_description($description) |
|
119 | - { |
|
120 | - $this->set('DTT_description', $description); |
|
121 | - } |
|
122 | - |
|
123 | - |
|
124 | - /** |
|
125 | - * Set event start date |
|
126 | - * set the start date for an event |
|
127 | - * |
|
128 | - * @param string $date a string representation of the event's date ex: Dec. 25, 2025 or 12-25-2025 |
|
129 | - * @throws ReflectionException |
|
130 | - * @throws InvalidArgumentException |
|
131 | - * @throws InvalidInterfaceException |
|
132 | - * @throws InvalidDataTypeException |
|
133 | - * @throws EE_Error |
|
134 | - */ |
|
135 | - public function set_start_date($date) |
|
136 | - { |
|
137 | - $this->_set_date_for($date, 'DTT_EVT_start'); |
|
138 | - } |
|
139 | - |
|
140 | - |
|
141 | - /** |
|
142 | - * Set event start time |
|
143 | - * set the start time for an event |
|
144 | - * |
|
145 | - * @param string $time a string representation of the event time ex: 9am or 7:30 PM |
|
146 | - * @throws ReflectionException |
|
147 | - * @throws InvalidArgumentException |
|
148 | - * @throws InvalidInterfaceException |
|
149 | - * @throws InvalidDataTypeException |
|
150 | - * @throws EE_Error |
|
151 | - */ |
|
152 | - public function set_start_time($time) |
|
153 | - { |
|
154 | - $this->_set_time_for($time, 'DTT_EVT_start'); |
|
155 | - } |
|
156 | - |
|
157 | - |
|
158 | - /** |
|
159 | - * Set event end date |
|
160 | - * set the end date for an event |
|
161 | - * |
|
162 | - * @param string $date a string representation of the event's date ex: Dec. 25, 2025 or 12-25-2025 |
|
163 | - * @throws ReflectionException |
|
164 | - * @throws InvalidArgumentException |
|
165 | - * @throws InvalidInterfaceException |
|
166 | - * @throws InvalidDataTypeException |
|
167 | - * @throws EE_Error |
|
168 | - */ |
|
169 | - public function set_end_date($date) |
|
170 | - { |
|
171 | - $this->_set_date_for($date, 'DTT_EVT_end'); |
|
172 | - } |
|
173 | - |
|
174 | - |
|
175 | - /** |
|
176 | - * Set event end time |
|
177 | - * set the end time for an event |
|
178 | - * |
|
179 | - * @param string $time a string representation of the event time ex: 9am or 7:30 PM |
|
180 | - * @throws ReflectionException |
|
181 | - * @throws InvalidArgumentException |
|
182 | - * @throws InvalidInterfaceException |
|
183 | - * @throws InvalidDataTypeException |
|
184 | - * @throws EE_Error |
|
185 | - */ |
|
186 | - public function set_end_time($time) |
|
187 | - { |
|
188 | - $this->_set_time_for($time, 'DTT_EVT_end'); |
|
189 | - } |
|
190 | - |
|
191 | - |
|
192 | - /** |
|
193 | - * Set registration limit |
|
194 | - * set the maximum number of attendees that can be registered for this datetime slot |
|
195 | - * |
|
196 | - * @param int $reg_limit |
|
197 | - * @throws ReflectionException |
|
198 | - * @throws InvalidArgumentException |
|
199 | - * @throws InvalidInterfaceException |
|
200 | - * @throws InvalidDataTypeException |
|
201 | - * @throws EE_Error |
|
202 | - */ |
|
203 | - public function set_reg_limit($reg_limit) |
|
204 | - { |
|
205 | - $this->set('DTT_reg_limit', $reg_limit); |
|
206 | - } |
|
207 | - |
|
208 | - |
|
209 | - /** |
|
210 | - * get the number of tickets sold for this datetime slot |
|
211 | - * |
|
212 | - * @return mixed int on success, FALSE on fail |
|
213 | - * @throws ReflectionException |
|
214 | - * @throws InvalidArgumentException |
|
215 | - * @throws InvalidInterfaceException |
|
216 | - * @throws InvalidDataTypeException |
|
217 | - * @throws EE_Error |
|
218 | - */ |
|
219 | - public function sold() |
|
220 | - { |
|
221 | - return $this->get_raw('DTT_sold'); |
|
222 | - } |
|
223 | - |
|
224 | - |
|
225 | - /** |
|
226 | - * @param int $sold |
|
227 | - * @throws ReflectionException |
|
228 | - * @throws InvalidArgumentException |
|
229 | - * @throws InvalidInterfaceException |
|
230 | - * @throws InvalidDataTypeException |
|
231 | - * @throws EE_Error |
|
232 | - */ |
|
233 | - public function set_sold($sold) |
|
234 | - { |
|
235 | - // sold can not go below zero |
|
236 | - $sold = max(0, $sold); |
|
237 | - $this->set('DTT_sold', $sold); |
|
238 | - } |
|
239 | - |
|
240 | - |
|
241 | - /** |
|
242 | - * Increments sold by amount passed by $qty, and persists it immediately to the database. |
|
243 | - * Simultaneously decreases the reserved count, unless $also_decrease_reserved is false. |
|
244 | - * |
|
245 | - * @param int $qty |
|
246 | - * @param boolean $also_decrease_reserved |
|
247 | - * @return boolean indicating success |
|
248 | - * @throws ReflectionException |
|
249 | - * @throws InvalidArgumentException |
|
250 | - * @throws InvalidInterfaceException |
|
251 | - * @throws InvalidDataTypeException |
|
252 | - * @throws EE_Error |
|
253 | - */ |
|
254 | - public function increaseSold($qty = 1, $also_decrease_reserved = true) |
|
255 | - { |
|
256 | - $qty = absint($qty); |
|
257 | - if ($also_decrease_reserved) { |
|
258 | - $success = $this->adjustNumericFieldsInDb( |
|
259 | - [ |
|
260 | - 'DTT_reserved' => $qty * -1, |
|
261 | - 'DTT_sold' => $qty |
|
262 | - ] |
|
263 | - ); |
|
264 | - } else { |
|
265 | - $success = $this->adjustNumericFieldsInDb( |
|
266 | - [ |
|
267 | - 'DTT_sold' => $qty |
|
268 | - ] |
|
269 | - ); |
|
270 | - } |
|
271 | - |
|
272 | - do_action( |
|
273 | - 'AHEE__EE_Datetime__increase_sold', |
|
274 | - $this, |
|
275 | - $qty, |
|
276 | - $this->sold(), |
|
277 | - $success |
|
278 | - ); |
|
279 | - return $success; |
|
280 | - } |
|
281 | - |
|
282 | - |
|
283 | - /** |
|
284 | - * Decrements (subtracts) sold amount passed by $qty directly in the DB and on the model object. (Ie, no need |
|
285 | - * to save afterwards.) |
|
286 | - * |
|
287 | - * @param int $qty |
|
288 | - * @return boolean indicating success |
|
289 | - * @throws ReflectionException |
|
290 | - * @throws InvalidArgumentException |
|
291 | - * @throws InvalidInterfaceException |
|
292 | - * @throws InvalidDataTypeException |
|
293 | - * @throws EE_Error |
|
294 | - */ |
|
295 | - public function decreaseSold($qty = 1) |
|
296 | - { |
|
297 | - $qty = absint($qty); |
|
298 | - $success = $this->adjustNumericFieldsInDb( |
|
299 | - [ |
|
300 | - 'DTT_sold' => $qty * -1 |
|
301 | - ] |
|
302 | - ); |
|
303 | - do_action( |
|
304 | - 'AHEE__EE_Datetime__decrease_sold', |
|
305 | - $this, |
|
306 | - $qty, |
|
307 | - $this->sold(), |
|
308 | - $success |
|
309 | - ); |
|
310 | - return $success; |
|
311 | - } |
|
312 | - |
|
313 | - |
|
314 | - /** |
|
315 | - * Gets qty of reserved tickets for this datetime |
|
316 | - * |
|
317 | - * @return int |
|
318 | - * @throws ReflectionException |
|
319 | - * @throws InvalidArgumentException |
|
320 | - * @throws InvalidInterfaceException |
|
321 | - * @throws InvalidDataTypeException |
|
322 | - * @throws EE_Error |
|
323 | - */ |
|
324 | - public function reserved() |
|
325 | - { |
|
326 | - return $this->get_raw('DTT_reserved'); |
|
327 | - } |
|
328 | - |
|
329 | - |
|
330 | - /** |
|
331 | - * Sets qty of reserved tickets for this datetime |
|
332 | - * |
|
333 | - * @param int $reserved |
|
334 | - * @throws ReflectionException |
|
335 | - * @throws InvalidArgumentException |
|
336 | - * @throws InvalidInterfaceException |
|
337 | - * @throws InvalidDataTypeException |
|
338 | - * @throws EE_Error |
|
339 | - */ |
|
340 | - public function set_reserved($reserved) |
|
341 | - { |
|
342 | - // reserved can not go below zero |
|
343 | - $reserved = max(0, (int) $reserved); |
|
344 | - $this->set('DTT_reserved', $reserved); |
|
345 | - } |
|
346 | - |
|
347 | - |
|
348 | - /** |
|
349 | - * Increments reserved by amount passed by $qty, and persists it immediately to the database. |
|
350 | - * |
|
351 | - * @param int $qty |
|
352 | - * @return boolean indicating success |
|
353 | - * @throws ReflectionException |
|
354 | - * @throws InvalidArgumentException |
|
355 | - * @throws InvalidInterfaceException |
|
356 | - * @throws InvalidDataTypeException |
|
357 | - * @throws EE_Error |
|
358 | - */ |
|
359 | - public function increaseReserved($qty = 1) |
|
360 | - { |
|
361 | - $qty = absint($qty); |
|
362 | - $success = $this->incrementFieldConditionallyInDb( |
|
363 | - 'DTT_reserved', |
|
364 | - 'DTT_sold', |
|
365 | - 'DTT_reg_limit', |
|
366 | - $qty |
|
367 | - ); |
|
368 | - do_action( |
|
369 | - 'AHEE__EE_Datetime__increase_reserved', |
|
370 | - $this, |
|
371 | - $qty, |
|
372 | - $this->reserved(), |
|
373 | - $success |
|
374 | - ); |
|
375 | - return $success; |
|
376 | - } |
|
377 | - |
|
378 | - |
|
379 | - /** |
|
380 | - * Decrements (subtracts) reserved by amount passed by $qty, and persists it immediately to the database. |
|
381 | - * |
|
382 | - * @param int $qty |
|
383 | - * @return boolean indicating success |
|
384 | - * @throws ReflectionException |
|
385 | - * @throws InvalidArgumentException |
|
386 | - * @throws InvalidInterfaceException |
|
387 | - * @throws InvalidDataTypeException |
|
388 | - * @throws EE_Error |
|
389 | - */ |
|
390 | - public function decreaseReserved($qty = 1) |
|
391 | - { |
|
392 | - $qty = absint($qty); |
|
393 | - $success = $this->adjustNumericFieldsInDb( |
|
394 | - [ |
|
395 | - 'DTT_reserved' => $qty * -1 |
|
396 | - ] |
|
397 | - ); |
|
398 | - do_action( |
|
399 | - 'AHEE__EE_Datetime__decrease_reserved', |
|
400 | - $this, |
|
401 | - $qty, |
|
402 | - $this->reserved(), |
|
403 | - $success |
|
404 | - ); |
|
405 | - return $success; |
|
406 | - } |
|
407 | - |
|
408 | - |
|
409 | - /** |
|
410 | - * total sold and reserved tickets |
|
411 | - * |
|
412 | - * @return int |
|
413 | - * @throws ReflectionException |
|
414 | - * @throws InvalidArgumentException |
|
415 | - * @throws InvalidInterfaceException |
|
416 | - * @throws InvalidDataTypeException |
|
417 | - * @throws EE_Error |
|
418 | - */ |
|
419 | - public function sold_and_reserved() |
|
420 | - { |
|
421 | - return $this->sold() + $this->reserved(); |
|
422 | - } |
|
423 | - |
|
424 | - |
|
425 | - /** |
|
426 | - * returns the datetime name |
|
427 | - * |
|
428 | - * @return string |
|
429 | - * @throws ReflectionException |
|
430 | - * @throws InvalidArgumentException |
|
431 | - * @throws InvalidInterfaceException |
|
432 | - * @throws InvalidDataTypeException |
|
433 | - * @throws EE_Error |
|
434 | - */ |
|
435 | - public function name() |
|
436 | - { |
|
437 | - return $this->get('DTT_name'); |
|
438 | - } |
|
439 | - |
|
440 | - |
|
441 | - /** |
|
442 | - * returns the datetime description |
|
443 | - * |
|
444 | - * @return string |
|
445 | - * @throws ReflectionException |
|
446 | - * @throws InvalidArgumentException |
|
447 | - * @throws InvalidInterfaceException |
|
448 | - * @throws InvalidDataTypeException |
|
449 | - * @throws EE_Error |
|
450 | - */ |
|
451 | - public function description() |
|
452 | - { |
|
453 | - return $this->get('DTT_description'); |
|
454 | - } |
|
455 | - |
|
456 | - |
|
457 | - /** |
|
458 | - * This helper simply returns whether the event_datetime for the current datetime is a primary datetime |
|
459 | - * |
|
460 | - * @return boolean TRUE if is primary, FALSE if not. |
|
461 | - * @throws ReflectionException |
|
462 | - * @throws InvalidArgumentException |
|
463 | - * @throws InvalidInterfaceException |
|
464 | - * @throws InvalidDataTypeException |
|
465 | - * @throws EE_Error |
|
466 | - */ |
|
467 | - public function is_primary() |
|
468 | - { |
|
469 | - return $this->get('DTT_is_primary'); |
|
470 | - } |
|
471 | - |
|
472 | - |
|
473 | - /** |
|
474 | - * This helper simply returns the order for the datetime |
|
475 | - * |
|
476 | - * @return int The order of the datetime for this event. |
|
477 | - * @throws ReflectionException |
|
478 | - * @throws InvalidArgumentException |
|
479 | - * @throws InvalidInterfaceException |
|
480 | - * @throws InvalidDataTypeException |
|
481 | - * @throws EE_Error |
|
482 | - */ |
|
483 | - public function order() |
|
484 | - { |
|
485 | - return $this->get('DTT_order'); |
|
486 | - } |
|
487 | - |
|
488 | - |
|
489 | - /** |
|
490 | - * This helper simply returns the parent id for the datetime |
|
491 | - * |
|
492 | - * @return int |
|
493 | - * @throws ReflectionException |
|
494 | - * @throws InvalidArgumentException |
|
495 | - * @throws InvalidInterfaceException |
|
496 | - * @throws InvalidDataTypeException |
|
497 | - * @throws EE_Error |
|
498 | - */ |
|
499 | - public function parent() |
|
500 | - { |
|
501 | - return $this->get('DTT_parent'); |
|
502 | - } |
|
503 | - |
|
504 | - |
|
505 | - /** |
|
506 | - * show date and/or time |
|
507 | - * |
|
508 | - * @param string $date_or_time whether to display a date or time or both |
|
509 | - * @param string $start_or_end whether to display start or end datetimes |
|
510 | - * @param string $dt_frmt |
|
511 | - * @param string $tm_frmt |
|
512 | - * @param bool $echo whether we echo or return (note echoing uses "pretty" formats, |
|
513 | - * otherwise we use the standard formats) |
|
514 | - * @return string|bool string on success, FALSE on fail |
|
515 | - * @throws ReflectionException |
|
516 | - * @throws InvalidArgumentException |
|
517 | - * @throws InvalidInterfaceException |
|
518 | - * @throws InvalidDataTypeException |
|
519 | - * @throws EE_Error |
|
520 | - */ |
|
521 | - private function _show_datetime( |
|
522 | - $date_or_time = null, |
|
523 | - $start_or_end = 'start', |
|
524 | - $dt_frmt = '', |
|
525 | - $tm_frmt = '', |
|
526 | - $echo = false |
|
527 | - ) { |
|
528 | - $field_name = "DTT_EVT_{$start_or_end}"; |
|
529 | - $dtt = $this->_get_datetime( |
|
530 | - $field_name, |
|
531 | - $dt_frmt, |
|
532 | - $tm_frmt, |
|
533 | - $date_or_time, |
|
534 | - $echo |
|
535 | - ); |
|
536 | - if (! $echo) { |
|
537 | - return $dtt; |
|
538 | - } |
|
539 | - return ''; |
|
540 | - } |
|
541 | - |
|
542 | - |
|
543 | - /** |
|
544 | - * get event start date. Provide either the date format, or NULL to re-use the |
|
545 | - * last-used format, or '' to use the default date format |
|
546 | - * |
|
547 | - * @param string $dt_frmt string representation of date format defaults to 'F j, Y' |
|
548 | - * @return mixed string on success, FALSE on fail |
|
549 | - * @throws ReflectionException |
|
550 | - * @throws InvalidArgumentException |
|
551 | - * @throws InvalidInterfaceException |
|
552 | - * @throws InvalidDataTypeException |
|
553 | - * @throws EE_Error |
|
554 | - */ |
|
555 | - public function start_date($dt_frmt = '') |
|
556 | - { |
|
557 | - return $this->_show_datetime('D', 'start', $dt_frmt); |
|
558 | - } |
|
559 | - |
|
560 | - |
|
561 | - /** |
|
562 | - * Echoes start_date() |
|
563 | - * |
|
564 | - * @param string $dt_frmt |
|
565 | - * @throws ReflectionException |
|
566 | - * @throws InvalidArgumentException |
|
567 | - * @throws InvalidInterfaceException |
|
568 | - * @throws InvalidDataTypeException |
|
569 | - * @throws EE_Error |
|
570 | - */ |
|
571 | - public function e_start_date($dt_frmt = '') |
|
572 | - { |
|
573 | - $this->_show_datetime('D', 'start', $dt_frmt, null, true); |
|
574 | - } |
|
575 | - |
|
576 | - |
|
577 | - /** |
|
578 | - * get end date. Provide either the date format, or NULL to re-use the |
|
579 | - * last-used format, or '' to use the default date format |
|
580 | - * |
|
581 | - * @param string $dt_frmt string representation of date format defaults to 'F j, Y' |
|
582 | - * @return mixed string on success, FALSE on fail |
|
583 | - * @throws ReflectionException |
|
584 | - * @throws InvalidArgumentException |
|
585 | - * @throws InvalidInterfaceException |
|
586 | - * @throws InvalidDataTypeException |
|
587 | - * @throws EE_Error |
|
588 | - */ |
|
589 | - public function end_date($dt_frmt = '') |
|
590 | - { |
|
591 | - return $this->_show_datetime('D', 'end', $dt_frmt); |
|
592 | - } |
|
593 | - |
|
594 | - |
|
595 | - /** |
|
596 | - * Echoes the end date. See end_date() |
|
597 | - * |
|
598 | - * @param string $dt_frmt |
|
599 | - * @throws ReflectionException |
|
600 | - * @throws InvalidArgumentException |
|
601 | - * @throws InvalidInterfaceException |
|
602 | - * @throws InvalidDataTypeException |
|
603 | - * @throws EE_Error |
|
604 | - */ |
|
605 | - public function e_end_date($dt_frmt = '') |
|
606 | - { |
|
607 | - $this->_show_datetime('D', 'end', $dt_frmt, null, true); |
|
608 | - } |
|
609 | - |
|
610 | - |
|
611 | - /** |
|
612 | - * get date_range - meaning the start AND end date |
|
613 | - * |
|
614 | - * @access public |
|
615 | - * @param string $dt_frmt string representation of date format defaults to WP settings |
|
616 | - * @param string $conjunction conjunction junction what's your function ? |
|
617 | - * this string joins the start date with the end date ie: Jan 01 "to" Dec 31 |
|
618 | - * @return mixed string on success, FALSE on fail |
|
619 | - * @throws ReflectionException |
|
620 | - * @throws InvalidArgumentException |
|
621 | - * @throws InvalidInterfaceException |
|
622 | - * @throws InvalidDataTypeException |
|
623 | - * @throws EE_Error |
|
624 | - */ |
|
625 | - public function date_range($dt_frmt = '', $conjunction = ' - ') |
|
626 | - { |
|
627 | - $dt_frmt = ! empty($dt_frmt) ? $dt_frmt : $this->_dt_frmt; |
|
628 | - $start = str_replace( |
|
629 | - ' ', |
|
630 | - ' ', |
|
631 | - $this->get_i18n_datetime('DTT_EVT_start', $dt_frmt) |
|
632 | - ); |
|
633 | - $end = str_replace( |
|
634 | - ' ', |
|
635 | - ' ', |
|
636 | - $this->get_i18n_datetime('DTT_EVT_end', $dt_frmt) |
|
637 | - ); |
|
638 | - return $start !== $end ? $start . $conjunction . $end : $start; |
|
639 | - } |
|
640 | - |
|
641 | - |
|
642 | - /** |
|
643 | - * @param string $dt_frmt |
|
644 | - * @param string $conjunction |
|
645 | - * @throws ReflectionException |
|
646 | - * @throws InvalidArgumentException |
|
647 | - * @throws InvalidInterfaceException |
|
648 | - * @throws InvalidDataTypeException |
|
649 | - * @throws EE_Error |
|
650 | - */ |
|
651 | - public function e_date_range($dt_frmt = '', $conjunction = ' - ') |
|
652 | - { |
|
653 | - echo $this->date_range($dt_frmt, $conjunction); |
|
654 | - } |
|
655 | - |
|
656 | - |
|
657 | - /** |
|
658 | - * get start time |
|
659 | - * |
|
660 | - * @param string $tm_format - string representation of time format defaults to 'g:i a' |
|
661 | - * @return mixed string on success, FALSE on fail |
|
662 | - * @throws ReflectionException |
|
663 | - * @throws InvalidArgumentException |
|
664 | - * @throws InvalidInterfaceException |
|
665 | - * @throws InvalidDataTypeException |
|
666 | - * @throws EE_Error |
|
667 | - */ |
|
668 | - public function start_time($tm_format = '') |
|
669 | - { |
|
670 | - return $this->_show_datetime('T', 'start', null, $tm_format); |
|
671 | - } |
|
672 | - |
|
673 | - |
|
674 | - /** |
|
675 | - * @param string $tm_format |
|
676 | - * @throws ReflectionException |
|
677 | - * @throws InvalidArgumentException |
|
678 | - * @throws InvalidInterfaceException |
|
679 | - * @throws InvalidDataTypeException |
|
680 | - * @throws EE_Error |
|
681 | - */ |
|
682 | - public function e_start_time($tm_format = '') |
|
683 | - { |
|
684 | - $this->_show_datetime('T', 'start', null, $tm_format, true); |
|
685 | - } |
|
686 | - |
|
687 | - |
|
688 | - /** |
|
689 | - * get end time |
|
690 | - * |
|
691 | - * @param string $tm_format string representation of time format defaults to 'g:i a' |
|
692 | - * @return mixed string on success, FALSE on fail |
|
693 | - * @throws ReflectionException |
|
694 | - * @throws InvalidArgumentException |
|
695 | - * @throws InvalidInterfaceException |
|
696 | - * @throws InvalidDataTypeException |
|
697 | - * @throws EE_Error |
|
698 | - */ |
|
699 | - public function end_time($tm_format = '') |
|
700 | - { |
|
701 | - return $this->_show_datetime('T', 'end', null, $tm_format); |
|
702 | - } |
|
703 | - |
|
704 | - |
|
705 | - /** |
|
706 | - * @param string $tm_format |
|
707 | - * @throws ReflectionException |
|
708 | - * @throws InvalidArgumentException |
|
709 | - * @throws InvalidInterfaceException |
|
710 | - * @throws InvalidDataTypeException |
|
711 | - * @throws EE_Error |
|
712 | - */ |
|
713 | - public function e_end_time($tm_format = '') |
|
714 | - { |
|
715 | - $this->_show_datetime('T', 'end', null, $tm_format, true); |
|
716 | - } |
|
717 | - |
|
718 | - |
|
719 | - /** |
|
720 | - * get time_range |
|
721 | - * |
|
722 | - * @access public |
|
723 | - * @param string $tm_format string representation of time format defaults to 'g:i a' |
|
724 | - * @param string $conjunction conjunction junction what's your function ? |
|
725 | - * this string joins the start date with the end date ie: Jan 01 "to" Dec 31 |
|
726 | - * @return mixed string on success, FALSE on fail |
|
727 | - * @throws ReflectionException |
|
728 | - * @throws InvalidArgumentException |
|
729 | - * @throws InvalidInterfaceException |
|
730 | - * @throws InvalidDataTypeException |
|
731 | - * @throws EE_Error |
|
732 | - */ |
|
733 | - public function time_range($tm_format = '', $conjunction = ' - ') |
|
734 | - { |
|
735 | - $tm_format = ! empty($tm_format) ? $tm_format : $this->_tm_frmt; |
|
736 | - $start = str_replace( |
|
737 | - ' ', |
|
738 | - ' ', |
|
739 | - $this->get_i18n_datetime('DTT_EVT_start', $tm_format) |
|
740 | - ); |
|
741 | - $end = str_replace( |
|
742 | - ' ', |
|
743 | - ' ', |
|
744 | - $this->get_i18n_datetime('DTT_EVT_end', $tm_format) |
|
745 | - ); |
|
746 | - return $start !== $end ? $start . $conjunction . $end : $start; |
|
747 | - } |
|
748 | - |
|
749 | - |
|
750 | - /** |
|
751 | - * @param string $tm_format |
|
752 | - * @param string $conjunction |
|
753 | - * @throws ReflectionException |
|
754 | - * @throws InvalidArgumentException |
|
755 | - * @throws InvalidInterfaceException |
|
756 | - * @throws InvalidDataTypeException |
|
757 | - * @throws EE_Error |
|
758 | - */ |
|
759 | - public function e_time_range($tm_format = '', $conjunction = ' - ') |
|
760 | - { |
|
761 | - echo $this->time_range($tm_format, $conjunction); |
|
762 | - } |
|
763 | - |
|
764 | - |
|
765 | - /** |
|
766 | - * This returns a range representation of the date and times. |
|
767 | - * Output is dependent on the difference (or similarity) between DTT_EVT_start and DTT_EVT_end. |
|
768 | - * Also, the return value is localized. |
|
769 | - * |
|
770 | - * @param string $dt_format |
|
771 | - * @param string $tm_format |
|
772 | - * @param string $conjunction used between two different dates or times. |
|
773 | - * ex: Dec 1{$conjunction}}Dec 6, or 2pm{$conjunction}3pm |
|
774 | - * @param string $separator used between the date and time formats. |
|
775 | - * ex: Dec 1, 2016{$separator}2pm |
|
776 | - * @return string |
|
777 | - * @throws ReflectionException |
|
778 | - * @throws InvalidArgumentException |
|
779 | - * @throws InvalidInterfaceException |
|
780 | - * @throws InvalidDataTypeException |
|
781 | - * @throws EE_Error |
|
782 | - */ |
|
783 | - public function date_and_time_range( |
|
784 | - $dt_format = '', |
|
785 | - $tm_format = '', |
|
786 | - $conjunction = ' - ', |
|
787 | - $separator = ' ' |
|
788 | - ) { |
|
789 | - $dt_format = ! empty($dt_format) ? $dt_format : $this->_dt_frmt; |
|
790 | - $tm_format = ! empty($tm_format) ? $tm_format : $this->_tm_frmt; |
|
791 | - $full_format = $dt_format . $separator . $tm_format; |
|
792 | - // the range output depends on various conditions |
|
793 | - switch (true) { |
|
794 | - // start date timestamp and end date timestamp are the same. |
|
795 | - case ($this->get_raw('DTT_EVT_start') === $this->get_raw('DTT_EVT_end')): |
|
796 | - $output = $this->get_i18n_datetime('DTT_EVT_start', $full_format); |
|
797 | - break; |
|
798 | - // start and end date are the same but times are different |
|
799 | - case ($this->start_date() === $this->end_date()): |
|
800 | - $output = $this->get_i18n_datetime('DTT_EVT_start', $full_format) |
|
801 | - . $conjunction |
|
802 | - . $this->get_i18n_datetime('DTT_EVT_end', $tm_format); |
|
803 | - break; |
|
804 | - // all other conditions |
|
805 | - default: |
|
806 | - $output = $this->get_i18n_datetime('DTT_EVT_start', $full_format) |
|
807 | - . $conjunction |
|
808 | - . $this->get_i18n_datetime('DTT_EVT_end', $full_format); |
|
809 | - break; |
|
810 | - } |
|
811 | - return $output; |
|
812 | - } |
|
813 | - |
|
814 | - |
|
815 | - /** |
|
816 | - * This echos the results of date and time range. |
|
817 | - * |
|
818 | - * @see date_and_time_range() for more details on purpose. |
|
819 | - * @param string $dt_format |
|
820 | - * @param string $tm_format |
|
821 | - * @param string $conjunction |
|
822 | - * @return void |
|
823 | - * @throws ReflectionException |
|
824 | - * @throws InvalidArgumentException |
|
825 | - * @throws InvalidInterfaceException |
|
826 | - * @throws InvalidDataTypeException |
|
827 | - * @throws EE_Error |
|
828 | - */ |
|
829 | - public function e_date_and_time_range($dt_format = '', $tm_format = '', $conjunction = ' - ') |
|
830 | - { |
|
831 | - echo $this->date_and_time_range($dt_format, $tm_format, $conjunction); |
|
832 | - } |
|
833 | - |
|
834 | - |
|
835 | - /** |
|
836 | - * get start date and start time |
|
837 | - * |
|
838 | - * @param string $dt_format - string representation of date format defaults to 'F j, Y' |
|
839 | - * @param string $tm_format - string representation of time format defaults to 'g:i a' |
|
840 | - * @return mixed string on success, FALSE on fail |
|
841 | - * @throws ReflectionException |
|
842 | - * @throws InvalidArgumentException |
|
843 | - * @throws InvalidInterfaceException |
|
844 | - * @throws InvalidDataTypeException |
|
845 | - * @throws EE_Error |
|
846 | - */ |
|
847 | - public function start_date_and_time($dt_format = '', $tm_format = '') |
|
848 | - { |
|
849 | - return $this->_show_datetime('', 'start', $dt_format, $tm_format); |
|
850 | - } |
|
851 | - |
|
852 | - |
|
853 | - /** |
|
854 | - * @param string $dt_frmt |
|
855 | - * @param string $tm_format |
|
856 | - * @throws ReflectionException |
|
857 | - * @throws InvalidArgumentException |
|
858 | - * @throws InvalidInterfaceException |
|
859 | - * @throws InvalidDataTypeException |
|
860 | - * @throws EE_Error |
|
861 | - */ |
|
862 | - public function e_start_date_and_time($dt_frmt = '', $tm_format = '') |
|
863 | - { |
|
864 | - $this->_show_datetime('', 'start', $dt_frmt, $tm_format, true); |
|
865 | - } |
|
866 | - |
|
867 | - |
|
868 | - /** |
|
869 | - * Shows the length of the event (start to end time). |
|
870 | - * Can be shown in 'seconds','minutes','hours', or 'days'. |
|
871 | - * By default, rounds up. (So if you use 'days', and then event |
|
872 | - * only occurs for 1 hour, it will return 1 day). |
|
873 | - * |
|
874 | - * @param string $units 'seconds','minutes','hours','days' |
|
875 | - * @param bool $round_up |
|
876 | - * @return float|int|mixed |
|
877 | - * @throws ReflectionException |
|
878 | - * @throws InvalidArgumentException |
|
879 | - * @throws InvalidInterfaceException |
|
880 | - * @throws InvalidDataTypeException |
|
881 | - * @throws EE_Error |
|
882 | - */ |
|
883 | - public function length($units = 'seconds', $round_up = false) |
|
884 | - { |
|
885 | - $start = $this->get_raw('DTT_EVT_start'); |
|
886 | - $end = $this->get_raw('DTT_EVT_end'); |
|
887 | - $length_in_units = $end - $start; |
|
888 | - switch ($units) { |
|
889 | - // NOTE: We purposefully don't use "break;" in order to chain the divisions |
|
890 | - /** @noinspection PhpMissingBreakStatementInspection */ |
|
891 | - // phpcs:disable PSR2.ControlStructures.SwitchDeclaration.TerminatingComment |
|
892 | - case 'days': |
|
893 | - $length_in_units /= 24; |
|
894 | - /** @noinspection PhpMissingBreakStatementInspection */ |
|
895 | - case 'hours': |
|
896 | - // fall through is intentional |
|
897 | - $length_in_units /= 60; |
|
898 | - /** @noinspection PhpMissingBreakStatementInspection */ |
|
899 | - case 'minutes': |
|
900 | - // fall through is intentional |
|
901 | - $length_in_units /= 60; |
|
902 | - case 'seconds': |
|
903 | - default: |
|
904 | - $length_in_units = ceil($length_in_units); |
|
905 | - } |
|
906 | - // phpcs:enable |
|
907 | - if ($round_up) { |
|
908 | - $length_in_units = max($length_in_units, 1); |
|
909 | - } |
|
910 | - return $length_in_units; |
|
911 | - } |
|
912 | - |
|
913 | - |
|
914 | - /** |
|
915 | - * get end date and time |
|
916 | - * |
|
917 | - * @param string $dt_frmt - string representation of date format defaults to 'F j, Y' |
|
918 | - * @param string $tm_format - string representation of time format defaults to 'g:i a' |
|
919 | - * @return mixed string on success, FALSE on fail |
|
920 | - * @throws ReflectionException |
|
921 | - * @throws InvalidArgumentException |
|
922 | - * @throws InvalidInterfaceException |
|
923 | - * @throws InvalidDataTypeException |
|
924 | - * @throws EE_Error |
|
925 | - */ |
|
926 | - public function end_date_and_time($dt_frmt = '', $tm_format = '') |
|
927 | - { |
|
928 | - return $this->_show_datetime('', 'end', $dt_frmt, $tm_format); |
|
929 | - } |
|
930 | - |
|
931 | - |
|
932 | - /** |
|
933 | - * @param string $dt_frmt |
|
934 | - * @param string $tm_format |
|
935 | - * @throws ReflectionException |
|
936 | - * @throws InvalidArgumentException |
|
937 | - * @throws InvalidInterfaceException |
|
938 | - * @throws InvalidDataTypeException |
|
939 | - * @throws EE_Error |
|
940 | - */ |
|
941 | - public function e_end_date_and_time($dt_frmt = '', $tm_format = '') |
|
942 | - { |
|
943 | - $this->_show_datetime('', 'end', $dt_frmt, $tm_format, true); |
|
944 | - } |
|
945 | - |
|
946 | - |
|
947 | - /** |
|
948 | - * get start timestamp |
|
949 | - * |
|
950 | - * @return int |
|
951 | - * @throws ReflectionException |
|
952 | - * @throws InvalidArgumentException |
|
953 | - * @throws InvalidInterfaceException |
|
954 | - * @throws InvalidDataTypeException |
|
955 | - * @throws EE_Error |
|
956 | - */ |
|
957 | - public function start() |
|
958 | - { |
|
959 | - return $this->get_raw('DTT_EVT_start'); |
|
960 | - } |
|
961 | - |
|
962 | - |
|
963 | - /** |
|
964 | - * get end timestamp |
|
965 | - * |
|
966 | - * @return int |
|
967 | - * @throws ReflectionException |
|
968 | - * @throws InvalidArgumentException |
|
969 | - * @throws InvalidInterfaceException |
|
970 | - * @throws InvalidDataTypeException |
|
971 | - * @throws EE_Error |
|
972 | - */ |
|
973 | - public function end() |
|
974 | - { |
|
975 | - return $this->get_raw('DTT_EVT_end'); |
|
976 | - } |
|
977 | - |
|
978 | - |
|
979 | - /** |
|
980 | - * get the registration limit for this datetime slot |
|
981 | - * |
|
982 | - * @return mixed int on success, FALSE on fail |
|
983 | - * @throws ReflectionException |
|
984 | - * @throws InvalidArgumentException |
|
985 | - * @throws InvalidInterfaceException |
|
986 | - * @throws InvalidDataTypeException |
|
987 | - * @throws EE_Error |
|
988 | - */ |
|
989 | - public function reg_limit() |
|
990 | - { |
|
991 | - return $this->get_raw('DTT_reg_limit'); |
|
992 | - } |
|
993 | - |
|
994 | - |
|
995 | - /** |
|
996 | - * have the tickets sold for this datetime, met or exceed the registration limit ? |
|
997 | - * |
|
998 | - * @return boolean |
|
999 | - * @throws ReflectionException |
|
1000 | - * @throws InvalidArgumentException |
|
1001 | - * @throws InvalidInterfaceException |
|
1002 | - * @throws InvalidDataTypeException |
|
1003 | - * @throws EE_Error |
|
1004 | - */ |
|
1005 | - public function sold_out() |
|
1006 | - { |
|
1007 | - return $this->reg_limit() > 0 && $this->sold() >= $this->reg_limit(); |
|
1008 | - } |
|
1009 | - |
|
1010 | - |
|
1011 | - /** |
|
1012 | - * return the total number of spaces remaining at this venue. |
|
1013 | - * This only takes the venue's capacity into account, NOT the tickets available for sale |
|
1014 | - * |
|
1015 | - * @param bool $consider_tickets Whether to consider tickets remaining when determining if there are any spaces left |
|
1016 | - * Because if all tickets attached to this datetime have no spaces left, |
|
1017 | - * then this datetime IS effectively sold out. |
|
1018 | - * However, there are cases where we just want to know the spaces |
|
1019 | - * remaining for this particular datetime, hence the flag. |
|
1020 | - * @return int |
|
1021 | - * @throws ReflectionException |
|
1022 | - * @throws InvalidArgumentException |
|
1023 | - * @throws InvalidInterfaceException |
|
1024 | - * @throws InvalidDataTypeException |
|
1025 | - * @throws EE_Error |
|
1026 | - */ |
|
1027 | - public function spaces_remaining($consider_tickets = false) |
|
1028 | - { |
|
1029 | - // tickets remaining available for purchase |
|
1030 | - // no need for special checks for infinite, because if DTT_reg_limit == EE_INF, then EE_INF - x = EE_INF |
|
1031 | - $dtt_remaining = $this->reg_limit() - $this->sold_and_reserved(); |
|
1032 | - if (! $consider_tickets) { |
|
1033 | - return $dtt_remaining; |
|
1034 | - } |
|
1035 | - $tickets_remaining = $this->tickets_remaining(); |
|
1036 | - return min($dtt_remaining, $tickets_remaining); |
|
1037 | - } |
|
1038 | - |
|
1039 | - |
|
1040 | - /** |
|
1041 | - * Counts the total tickets available |
|
1042 | - * (from all the different types of tickets which are available for this datetime). |
|
1043 | - * |
|
1044 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1045 | - * @return int |
|
1046 | - * @throws ReflectionException |
|
1047 | - * @throws InvalidArgumentException |
|
1048 | - * @throws InvalidInterfaceException |
|
1049 | - * @throws InvalidDataTypeException |
|
1050 | - * @throws EE_Error |
|
1051 | - */ |
|
1052 | - public function tickets_remaining($query_params = array()) |
|
1053 | - { |
|
1054 | - $sum = 0; |
|
1055 | - $tickets = $this->tickets($query_params); |
|
1056 | - if (! empty($tickets)) { |
|
1057 | - foreach ($tickets as $ticket) { |
|
1058 | - if ($ticket instanceof EE_Ticket) { |
|
1059 | - // get the actual amount of tickets that can be sold |
|
1060 | - $qty = $ticket->qty('saleable'); |
|
1061 | - if ($qty === EE_INF) { |
|
1062 | - return EE_INF; |
|
1063 | - } |
|
1064 | - // no negative ticket quantities plz |
|
1065 | - if ($qty > 0) { |
|
1066 | - $sum += $qty; |
|
1067 | - } |
|
1068 | - } |
|
1069 | - } |
|
1070 | - } |
|
1071 | - return $sum; |
|
1072 | - } |
|
1073 | - |
|
1074 | - |
|
1075 | - /** |
|
1076 | - * Gets the count of all the tickets available at this datetime (not ticket types) |
|
1077 | - * before any were sold |
|
1078 | - * |
|
1079 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1080 | - * @return int |
|
1081 | - * @throws ReflectionException |
|
1082 | - * @throws InvalidArgumentException |
|
1083 | - * @throws InvalidInterfaceException |
|
1084 | - * @throws InvalidDataTypeException |
|
1085 | - * @throws EE_Error |
|
1086 | - */ |
|
1087 | - public function sum_tickets_initially_available($query_params = array()) |
|
1088 | - { |
|
1089 | - return $this->sum_related('Ticket', $query_params, 'TKT_qty'); |
|
1090 | - } |
|
1091 | - |
|
1092 | - |
|
1093 | - /** |
|
1094 | - * Returns the lesser-of-the two: spaces remaining at this datetime, or |
|
1095 | - * the total tickets remaining (a sum of the tickets remaining for each ticket type |
|
1096 | - * that is available for this datetime). |
|
1097 | - * |
|
1098 | - * @return int |
|
1099 | - * @throws ReflectionException |
|
1100 | - * @throws InvalidArgumentException |
|
1101 | - * @throws InvalidInterfaceException |
|
1102 | - * @throws InvalidDataTypeException |
|
1103 | - * @throws EE_Error |
|
1104 | - */ |
|
1105 | - public function total_tickets_available_at_this_datetime() |
|
1106 | - { |
|
1107 | - return $this->spaces_remaining(true); |
|
1108 | - } |
|
1109 | - |
|
1110 | - |
|
1111 | - /** |
|
1112 | - * This simply compares the internal dtt for the given string with NOW |
|
1113 | - * and determines if the date is upcoming or not. |
|
1114 | - * |
|
1115 | - * @access public |
|
1116 | - * @return boolean |
|
1117 | - * @throws ReflectionException |
|
1118 | - * @throws InvalidArgumentException |
|
1119 | - * @throws InvalidInterfaceException |
|
1120 | - * @throws InvalidDataTypeException |
|
1121 | - * @throws EE_Error |
|
1122 | - */ |
|
1123 | - public function is_upcoming() |
|
1124 | - { |
|
1125 | - return ($this->get_raw('DTT_EVT_start') > time()); |
|
1126 | - } |
|
1127 | - |
|
1128 | - |
|
1129 | - /** |
|
1130 | - * This simply compares the internal datetime for the given string with NOW |
|
1131 | - * and returns if the date is active (i.e. start and end time) |
|
1132 | - * |
|
1133 | - * @return boolean |
|
1134 | - * @throws ReflectionException |
|
1135 | - * @throws InvalidArgumentException |
|
1136 | - * @throws InvalidInterfaceException |
|
1137 | - * @throws InvalidDataTypeException |
|
1138 | - * @throws EE_Error |
|
1139 | - */ |
|
1140 | - public function is_active() |
|
1141 | - { |
|
1142 | - return ($this->get_raw('DTT_EVT_start') < time() && $this->get_raw('DTT_EVT_end') > time()); |
|
1143 | - } |
|
1144 | - |
|
1145 | - |
|
1146 | - /** |
|
1147 | - * This simply compares the internal dtt for the given string with NOW |
|
1148 | - * and determines if the date is expired or not. |
|
1149 | - * |
|
1150 | - * @return boolean |
|
1151 | - * @throws ReflectionException |
|
1152 | - * @throws InvalidArgumentException |
|
1153 | - * @throws InvalidInterfaceException |
|
1154 | - * @throws InvalidDataTypeException |
|
1155 | - * @throws EE_Error |
|
1156 | - */ |
|
1157 | - public function is_expired() |
|
1158 | - { |
|
1159 | - return ($this->get_raw('DTT_EVT_end') < time()); |
|
1160 | - } |
|
1161 | - |
|
1162 | - |
|
1163 | - /** |
|
1164 | - * This returns the active status for whether an event is active, upcoming, or expired |
|
1165 | - * |
|
1166 | - * @return int return value will be one of the EE_Datetime status constants. |
|
1167 | - * @throws ReflectionException |
|
1168 | - * @throws InvalidArgumentException |
|
1169 | - * @throws InvalidInterfaceException |
|
1170 | - * @throws InvalidDataTypeException |
|
1171 | - * @throws EE_Error |
|
1172 | - */ |
|
1173 | - public function get_active_status() |
|
1174 | - { |
|
1175 | - $total_tickets_for_this_dtt = $this->total_tickets_available_at_this_datetime(); |
|
1176 | - if ($total_tickets_for_this_dtt !== false && $total_tickets_for_this_dtt < 1) { |
|
1177 | - return EE_Datetime::sold_out; |
|
1178 | - } |
|
1179 | - if ($this->is_expired()) { |
|
1180 | - return EE_Datetime::expired; |
|
1181 | - } |
|
1182 | - if ($this->is_upcoming()) { |
|
1183 | - return EE_Datetime::upcoming; |
|
1184 | - } |
|
1185 | - if ($this->is_active()) { |
|
1186 | - return EE_Datetime::active; |
|
1187 | - } |
|
1188 | - return null; |
|
1189 | - } |
|
1190 | - |
|
1191 | - |
|
1192 | - /** |
|
1193 | - * This returns a nice display name for the datetime that is contingent on the span between the dates and times. |
|
1194 | - * |
|
1195 | - * @param boolean $use_dtt_name if TRUE then we'll use DTT->name() if its not empty. |
|
1196 | - * @return string |
|
1197 | - * @throws ReflectionException |
|
1198 | - * @throws InvalidArgumentException |
|
1199 | - * @throws InvalidInterfaceException |
|
1200 | - * @throws InvalidDataTypeException |
|
1201 | - * @throws EE_Error |
|
1202 | - */ |
|
1203 | - public function get_dtt_display_name($use_dtt_name = false) |
|
1204 | - { |
|
1205 | - if ($use_dtt_name) { |
|
1206 | - $dtt_name = $this->name(); |
|
1207 | - if (! empty($dtt_name)) { |
|
1208 | - return $dtt_name; |
|
1209 | - } |
|
1210 | - } |
|
1211 | - // first condition is to see if the months are different |
|
1212 | - if (date('m', $this->get_raw('DTT_EVT_start')) !== date('m', $this->get_raw('DTT_EVT_end')) |
|
1213 | - ) { |
|
1214 | - $display_date = $this->start_date('M j\, Y g:i a') . ' - ' . $this->end_date('M j\, Y g:i a'); |
|
1215 | - // next condition is if its the same month but different day |
|
1216 | - } else { |
|
1217 | - if (date('m', $this->get_raw('DTT_EVT_start')) === date('m', $this->get_raw('DTT_EVT_end')) |
|
1218 | - && date('d', $this->get_raw('DTT_EVT_start')) !== date('d', $this->get_raw('DTT_EVT_end')) |
|
1219 | - ) { |
|
1220 | - $display_date = $this->start_date('M j\, g:i a') . ' - ' . $this->end_date('M j\, g:i a Y'); |
|
1221 | - } else { |
|
1222 | - $display_date = $this->start_date('F j\, Y') |
|
1223 | - . ' @ ' |
|
1224 | - . $this->start_date('g:i a') |
|
1225 | - . ' - ' |
|
1226 | - . $this->end_date('g:i a'); |
|
1227 | - } |
|
1228 | - } |
|
1229 | - return $display_date; |
|
1230 | - } |
|
1231 | - |
|
1232 | - |
|
1233 | - /** |
|
1234 | - * Gets all the tickets for this datetime |
|
1235 | - * |
|
1236 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1237 | - * @return EE_Base_Class[]|EE_Ticket[] |
|
1238 | - * @throws ReflectionException |
|
1239 | - * @throws InvalidArgumentException |
|
1240 | - * @throws InvalidInterfaceException |
|
1241 | - * @throws InvalidDataTypeException |
|
1242 | - * @throws EE_Error |
|
1243 | - */ |
|
1244 | - public function tickets($query_params = array()) |
|
1245 | - { |
|
1246 | - return $this->get_many_related('Ticket', $query_params); |
|
1247 | - } |
|
1248 | - |
|
1249 | - |
|
1250 | - /** |
|
1251 | - * Gets all the ticket types currently available for purchase |
|
1252 | - * |
|
1253 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1254 | - * @return EE_Ticket[] |
|
1255 | - * @throws ReflectionException |
|
1256 | - * @throws InvalidArgumentException |
|
1257 | - * @throws InvalidInterfaceException |
|
1258 | - * @throws InvalidDataTypeException |
|
1259 | - * @throws EE_Error |
|
1260 | - */ |
|
1261 | - public function ticket_types_available_for_purchase($query_params = array()) |
|
1262 | - { |
|
1263 | - // first check if datetime is valid |
|
1264 | - if ($this->sold_out() || ! ($this->is_upcoming() || $this->is_active())) { |
|
1265 | - return array(); |
|
1266 | - } |
|
1267 | - if (empty($query_params)) { |
|
1268 | - $query_params = array( |
|
1269 | - array( |
|
1270 | - 'TKT_start_date' => array('<=', EEM_Ticket::instance()->current_time_for_query('TKT_start_date')), |
|
1271 | - 'TKT_end_date' => array('>=', EEM_Ticket::instance()->current_time_for_query('TKT_end_date')), |
|
1272 | - 'TKT_deleted' => false, |
|
1273 | - ), |
|
1274 | - ); |
|
1275 | - } |
|
1276 | - return $this->tickets($query_params); |
|
1277 | - } |
|
1278 | - |
|
1279 | - |
|
1280 | - /** |
|
1281 | - * @return EE_Base_Class|EE_Event |
|
1282 | - * @throws ReflectionException |
|
1283 | - * @throws InvalidArgumentException |
|
1284 | - * @throws InvalidInterfaceException |
|
1285 | - * @throws InvalidDataTypeException |
|
1286 | - * @throws EE_Error |
|
1287 | - */ |
|
1288 | - public function event() |
|
1289 | - { |
|
1290 | - return $this->get_first_related('Event'); |
|
1291 | - } |
|
1292 | - |
|
1293 | - |
|
1294 | - /** |
|
1295 | - * Updates the DTT_sold attribute (and saves) based on the number of registrations for this datetime |
|
1296 | - * (via the tickets). |
|
1297 | - * |
|
1298 | - * @return int |
|
1299 | - * @throws ReflectionException |
|
1300 | - * @throws InvalidArgumentException |
|
1301 | - * @throws InvalidInterfaceException |
|
1302 | - * @throws InvalidDataTypeException |
|
1303 | - * @throws EE_Error |
|
1304 | - */ |
|
1305 | - public function update_sold() |
|
1306 | - { |
|
1307 | - $count_regs_for_this_datetime = EEM_Registration::instance()->count( |
|
1308 | - array( |
|
1309 | - array( |
|
1310 | - 'STS_ID' => EEM_Registration::status_id_approved, |
|
1311 | - 'REG_deleted' => 0, |
|
1312 | - 'Ticket.Datetime.DTT_ID' => $this->ID(), |
|
1313 | - ), |
|
1314 | - ) |
|
1315 | - ); |
|
1316 | - $this->set_sold($count_regs_for_this_datetime); |
|
1317 | - $this->save(); |
|
1318 | - return $count_regs_for_this_datetime; |
|
1319 | - } |
|
1320 | - |
|
1321 | - |
|
1322 | - /******************************************************************* |
|
16 | + /** |
|
17 | + * constant used by get_active_status, indicates datetime has no more available spaces |
|
18 | + */ |
|
19 | + const sold_out = 'DTS'; |
|
20 | + |
|
21 | + /** |
|
22 | + * constant used by get_active_status, indicating datetime is still active (even is not over, can be registered-for) |
|
23 | + */ |
|
24 | + const active = 'DTA'; |
|
25 | + |
|
26 | + /** |
|
27 | + * constant used by get_active_status, indicating the datetime cannot be used for registrations yet, but has not |
|
28 | + * expired |
|
29 | + */ |
|
30 | + const upcoming = 'DTU'; |
|
31 | + |
|
32 | + /** |
|
33 | + * Datetime is postponed |
|
34 | + */ |
|
35 | + const postponed = 'DTP'; |
|
36 | + |
|
37 | + /** |
|
38 | + * Datetime is cancelled |
|
39 | + */ |
|
40 | + const cancelled = 'DTC'; |
|
41 | + |
|
42 | + /** |
|
43 | + * constant used by get_active_status, indicates datetime has expired (event is over) |
|
44 | + */ |
|
45 | + const expired = 'DTE'; |
|
46 | + |
|
47 | + /** |
|
48 | + * constant used in various places indicating that an event is INACTIVE (not yet ready to be published) |
|
49 | + */ |
|
50 | + const inactive = 'DTI'; |
|
51 | + |
|
52 | + |
|
53 | + /** |
|
54 | + * @param array $props_n_values incoming values |
|
55 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be used.) |
|
56 | + * @param array $date_formats incoming date_formats in an array where the first value is the date_format |
|
57 | + * and the second value is the time format |
|
58 | + * @return EE_Datetime |
|
59 | + * @throws ReflectionException |
|
60 | + * @throws InvalidArgumentException |
|
61 | + * @throws InvalidInterfaceException |
|
62 | + * @throws InvalidDataTypeException |
|
63 | + * @throws EE_Error |
|
64 | + */ |
|
65 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
66 | + { |
|
67 | + $has_object = parent::_check_for_object( |
|
68 | + $props_n_values, |
|
69 | + __CLASS__, |
|
70 | + $timezone, |
|
71 | + $date_formats |
|
72 | + ); |
|
73 | + return $has_object |
|
74 | + ? $has_object |
|
75 | + : new self($props_n_values, false, $timezone, $date_formats); |
|
76 | + } |
|
77 | + |
|
78 | + |
|
79 | + /** |
|
80 | + * @param array $props_n_values incoming values from the database |
|
81 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
82 | + * the website will be used. |
|
83 | + * @return EE_Datetime |
|
84 | + * @throws ReflectionException |
|
85 | + * @throws InvalidArgumentException |
|
86 | + * @throws InvalidInterfaceException |
|
87 | + * @throws InvalidDataTypeException |
|
88 | + * @throws EE_Error |
|
89 | + */ |
|
90 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
91 | + { |
|
92 | + return new self($props_n_values, true, $timezone); |
|
93 | + } |
|
94 | + |
|
95 | + |
|
96 | + /** |
|
97 | + * @param $name |
|
98 | + * @throws ReflectionException |
|
99 | + * @throws InvalidArgumentException |
|
100 | + * @throws InvalidInterfaceException |
|
101 | + * @throws InvalidDataTypeException |
|
102 | + * @throws EE_Error |
|
103 | + */ |
|
104 | + public function set_name($name) |
|
105 | + { |
|
106 | + $this->set('DTT_name', $name); |
|
107 | + } |
|
108 | + |
|
109 | + |
|
110 | + /** |
|
111 | + * @param $description |
|
112 | + * @throws ReflectionException |
|
113 | + * @throws InvalidArgumentException |
|
114 | + * @throws InvalidInterfaceException |
|
115 | + * @throws InvalidDataTypeException |
|
116 | + * @throws EE_Error |
|
117 | + */ |
|
118 | + public function set_description($description) |
|
119 | + { |
|
120 | + $this->set('DTT_description', $description); |
|
121 | + } |
|
122 | + |
|
123 | + |
|
124 | + /** |
|
125 | + * Set event start date |
|
126 | + * set the start date for an event |
|
127 | + * |
|
128 | + * @param string $date a string representation of the event's date ex: Dec. 25, 2025 or 12-25-2025 |
|
129 | + * @throws ReflectionException |
|
130 | + * @throws InvalidArgumentException |
|
131 | + * @throws InvalidInterfaceException |
|
132 | + * @throws InvalidDataTypeException |
|
133 | + * @throws EE_Error |
|
134 | + */ |
|
135 | + public function set_start_date($date) |
|
136 | + { |
|
137 | + $this->_set_date_for($date, 'DTT_EVT_start'); |
|
138 | + } |
|
139 | + |
|
140 | + |
|
141 | + /** |
|
142 | + * Set event start time |
|
143 | + * set the start time for an event |
|
144 | + * |
|
145 | + * @param string $time a string representation of the event time ex: 9am or 7:30 PM |
|
146 | + * @throws ReflectionException |
|
147 | + * @throws InvalidArgumentException |
|
148 | + * @throws InvalidInterfaceException |
|
149 | + * @throws InvalidDataTypeException |
|
150 | + * @throws EE_Error |
|
151 | + */ |
|
152 | + public function set_start_time($time) |
|
153 | + { |
|
154 | + $this->_set_time_for($time, 'DTT_EVT_start'); |
|
155 | + } |
|
156 | + |
|
157 | + |
|
158 | + /** |
|
159 | + * Set event end date |
|
160 | + * set the end date for an event |
|
161 | + * |
|
162 | + * @param string $date a string representation of the event's date ex: Dec. 25, 2025 or 12-25-2025 |
|
163 | + * @throws ReflectionException |
|
164 | + * @throws InvalidArgumentException |
|
165 | + * @throws InvalidInterfaceException |
|
166 | + * @throws InvalidDataTypeException |
|
167 | + * @throws EE_Error |
|
168 | + */ |
|
169 | + public function set_end_date($date) |
|
170 | + { |
|
171 | + $this->_set_date_for($date, 'DTT_EVT_end'); |
|
172 | + } |
|
173 | + |
|
174 | + |
|
175 | + /** |
|
176 | + * Set event end time |
|
177 | + * set the end time for an event |
|
178 | + * |
|
179 | + * @param string $time a string representation of the event time ex: 9am or 7:30 PM |
|
180 | + * @throws ReflectionException |
|
181 | + * @throws InvalidArgumentException |
|
182 | + * @throws InvalidInterfaceException |
|
183 | + * @throws InvalidDataTypeException |
|
184 | + * @throws EE_Error |
|
185 | + */ |
|
186 | + public function set_end_time($time) |
|
187 | + { |
|
188 | + $this->_set_time_for($time, 'DTT_EVT_end'); |
|
189 | + } |
|
190 | + |
|
191 | + |
|
192 | + /** |
|
193 | + * Set registration limit |
|
194 | + * set the maximum number of attendees that can be registered for this datetime slot |
|
195 | + * |
|
196 | + * @param int $reg_limit |
|
197 | + * @throws ReflectionException |
|
198 | + * @throws InvalidArgumentException |
|
199 | + * @throws InvalidInterfaceException |
|
200 | + * @throws InvalidDataTypeException |
|
201 | + * @throws EE_Error |
|
202 | + */ |
|
203 | + public function set_reg_limit($reg_limit) |
|
204 | + { |
|
205 | + $this->set('DTT_reg_limit', $reg_limit); |
|
206 | + } |
|
207 | + |
|
208 | + |
|
209 | + /** |
|
210 | + * get the number of tickets sold for this datetime slot |
|
211 | + * |
|
212 | + * @return mixed int on success, FALSE on fail |
|
213 | + * @throws ReflectionException |
|
214 | + * @throws InvalidArgumentException |
|
215 | + * @throws InvalidInterfaceException |
|
216 | + * @throws InvalidDataTypeException |
|
217 | + * @throws EE_Error |
|
218 | + */ |
|
219 | + public function sold() |
|
220 | + { |
|
221 | + return $this->get_raw('DTT_sold'); |
|
222 | + } |
|
223 | + |
|
224 | + |
|
225 | + /** |
|
226 | + * @param int $sold |
|
227 | + * @throws ReflectionException |
|
228 | + * @throws InvalidArgumentException |
|
229 | + * @throws InvalidInterfaceException |
|
230 | + * @throws InvalidDataTypeException |
|
231 | + * @throws EE_Error |
|
232 | + */ |
|
233 | + public function set_sold($sold) |
|
234 | + { |
|
235 | + // sold can not go below zero |
|
236 | + $sold = max(0, $sold); |
|
237 | + $this->set('DTT_sold', $sold); |
|
238 | + } |
|
239 | + |
|
240 | + |
|
241 | + /** |
|
242 | + * Increments sold by amount passed by $qty, and persists it immediately to the database. |
|
243 | + * Simultaneously decreases the reserved count, unless $also_decrease_reserved is false. |
|
244 | + * |
|
245 | + * @param int $qty |
|
246 | + * @param boolean $also_decrease_reserved |
|
247 | + * @return boolean indicating success |
|
248 | + * @throws ReflectionException |
|
249 | + * @throws InvalidArgumentException |
|
250 | + * @throws InvalidInterfaceException |
|
251 | + * @throws InvalidDataTypeException |
|
252 | + * @throws EE_Error |
|
253 | + */ |
|
254 | + public function increaseSold($qty = 1, $also_decrease_reserved = true) |
|
255 | + { |
|
256 | + $qty = absint($qty); |
|
257 | + if ($also_decrease_reserved) { |
|
258 | + $success = $this->adjustNumericFieldsInDb( |
|
259 | + [ |
|
260 | + 'DTT_reserved' => $qty * -1, |
|
261 | + 'DTT_sold' => $qty |
|
262 | + ] |
|
263 | + ); |
|
264 | + } else { |
|
265 | + $success = $this->adjustNumericFieldsInDb( |
|
266 | + [ |
|
267 | + 'DTT_sold' => $qty |
|
268 | + ] |
|
269 | + ); |
|
270 | + } |
|
271 | + |
|
272 | + do_action( |
|
273 | + 'AHEE__EE_Datetime__increase_sold', |
|
274 | + $this, |
|
275 | + $qty, |
|
276 | + $this->sold(), |
|
277 | + $success |
|
278 | + ); |
|
279 | + return $success; |
|
280 | + } |
|
281 | + |
|
282 | + |
|
283 | + /** |
|
284 | + * Decrements (subtracts) sold amount passed by $qty directly in the DB and on the model object. (Ie, no need |
|
285 | + * to save afterwards.) |
|
286 | + * |
|
287 | + * @param int $qty |
|
288 | + * @return boolean indicating success |
|
289 | + * @throws ReflectionException |
|
290 | + * @throws InvalidArgumentException |
|
291 | + * @throws InvalidInterfaceException |
|
292 | + * @throws InvalidDataTypeException |
|
293 | + * @throws EE_Error |
|
294 | + */ |
|
295 | + public function decreaseSold($qty = 1) |
|
296 | + { |
|
297 | + $qty = absint($qty); |
|
298 | + $success = $this->adjustNumericFieldsInDb( |
|
299 | + [ |
|
300 | + 'DTT_sold' => $qty * -1 |
|
301 | + ] |
|
302 | + ); |
|
303 | + do_action( |
|
304 | + 'AHEE__EE_Datetime__decrease_sold', |
|
305 | + $this, |
|
306 | + $qty, |
|
307 | + $this->sold(), |
|
308 | + $success |
|
309 | + ); |
|
310 | + return $success; |
|
311 | + } |
|
312 | + |
|
313 | + |
|
314 | + /** |
|
315 | + * Gets qty of reserved tickets for this datetime |
|
316 | + * |
|
317 | + * @return int |
|
318 | + * @throws ReflectionException |
|
319 | + * @throws InvalidArgumentException |
|
320 | + * @throws InvalidInterfaceException |
|
321 | + * @throws InvalidDataTypeException |
|
322 | + * @throws EE_Error |
|
323 | + */ |
|
324 | + public function reserved() |
|
325 | + { |
|
326 | + return $this->get_raw('DTT_reserved'); |
|
327 | + } |
|
328 | + |
|
329 | + |
|
330 | + /** |
|
331 | + * Sets qty of reserved tickets for this datetime |
|
332 | + * |
|
333 | + * @param int $reserved |
|
334 | + * @throws ReflectionException |
|
335 | + * @throws InvalidArgumentException |
|
336 | + * @throws InvalidInterfaceException |
|
337 | + * @throws InvalidDataTypeException |
|
338 | + * @throws EE_Error |
|
339 | + */ |
|
340 | + public function set_reserved($reserved) |
|
341 | + { |
|
342 | + // reserved can not go below zero |
|
343 | + $reserved = max(0, (int) $reserved); |
|
344 | + $this->set('DTT_reserved', $reserved); |
|
345 | + } |
|
346 | + |
|
347 | + |
|
348 | + /** |
|
349 | + * Increments reserved by amount passed by $qty, and persists it immediately to the database. |
|
350 | + * |
|
351 | + * @param int $qty |
|
352 | + * @return boolean indicating success |
|
353 | + * @throws ReflectionException |
|
354 | + * @throws InvalidArgumentException |
|
355 | + * @throws InvalidInterfaceException |
|
356 | + * @throws InvalidDataTypeException |
|
357 | + * @throws EE_Error |
|
358 | + */ |
|
359 | + public function increaseReserved($qty = 1) |
|
360 | + { |
|
361 | + $qty = absint($qty); |
|
362 | + $success = $this->incrementFieldConditionallyInDb( |
|
363 | + 'DTT_reserved', |
|
364 | + 'DTT_sold', |
|
365 | + 'DTT_reg_limit', |
|
366 | + $qty |
|
367 | + ); |
|
368 | + do_action( |
|
369 | + 'AHEE__EE_Datetime__increase_reserved', |
|
370 | + $this, |
|
371 | + $qty, |
|
372 | + $this->reserved(), |
|
373 | + $success |
|
374 | + ); |
|
375 | + return $success; |
|
376 | + } |
|
377 | + |
|
378 | + |
|
379 | + /** |
|
380 | + * Decrements (subtracts) reserved by amount passed by $qty, and persists it immediately to the database. |
|
381 | + * |
|
382 | + * @param int $qty |
|
383 | + * @return boolean indicating success |
|
384 | + * @throws ReflectionException |
|
385 | + * @throws InvalidArgumentException |
|
386 | + * @throws InvalidInterfaceException |
|
387 | + * @throws InvalidDataTypeException |
|
388 | + * @throws EE_Error |
|
389 | + */ |
|
390 | + public function decreaseReserved($qty = 1) |
|
391 | + { |
|
392 | + $qty = absint($qty); |
|
393 | + $success = $this->adjustNumericFieldsInDb( |
|
394 | + [ |
|
395 | + 'DTT_reserved' => $qty * -1 |
|
396 | + ] |
|
397 | + ); |
|
398 | + do_action( |
|
399 | + 'AHEE__EE_Datetime__decrease_reserved', |
|
400 | + $this, |
|
401 | + $qty, |
|
402 | + $this->reserved(), |
|
403 | + $success |
|
404 | + ); |
|
405 | + return $success; |
|
406 | + } |
|
407 | + |
|
408 | + |
|
409 | + /** |
|
410 | + * total sold and reserved tickets |
|
411 | + * |
|
412 | + * @return int |
|
413 | + * @throws ReflectionException |
|
414 | + * @throws InvalidArgumentException |
|
415 | + * @throws InvalidInterfaceException |
|
416 | + * @throws InvalidDataTypeException |
|
417 | + * @throws EE_Error |
|
418 | + */ |
|
419 | + public function sold_and_reserved() |
|
420 | + { |
|
421 | + return $this->sold() + $this->reserved(); |
|
422 | + } |
|
423 | + |
|
424 | + |
|
425 | + /** |
|
426 | + * returns the datetime name |
|
427 | + * |
|
428 | + * @return string |
|
429 | + * @throws ReflectionException |
|
430 | + * @throws InvalidArgumentException |
|
431 | + * @throws InvalidInterfaceException |
|
432 | + * @throws InvalidDataTypeException |
|
433 | + * @throws EE_Error |
|
434 | + */ |
|
435 | + public function name() |
|
436 | + { |
|
437 | + return $this->get('DTT_name'); |
|
438 | + } |
|
439 | + |
|
440 | + |
|
441 | + /** |
|
442 | + * returns the datetime description |
|
443 | + * |
|
444 | + * @return string |
|
445 | + * @throws ReflectionException |
|
446 | + * @throws InvalidArgumentException |
|
447 | + * @throws InvalidInterfaceException |
|
448 | + * @throws InvalidDataTypeException |
|
449 | + * @throws EE_Error |
|
450 | + */ |
|
451 | + public function description() |
|
452 | + { |
|
453 | + return $this->get('DTT_description'); |
|
454 | + } |
|
455 | + |
|
456 | + |
|
457 | + /** |
|
458 | + * This helper simply returns whether the event_datetime for the current datetime is a primary datetime |
|
459 | + * |
|
460 | + * @return boolean TRUE if is primary, FALSE if not. |
|
461 | + * @throws ReflectionException |
|
462 | + * @throws InvalidArgumentException |
|
463 | + * @throws InvalidInterfaceException |
|
464 | + * @throws InvalidDataTypeException |
|
465 | + * @throws EE_Error |
|
466 | + */ |
|
467 | + public function is_primary() |
|
468 | + { |
|
469 | + return $this->get('DTT_is_primary'); |
|
470 | + } |
|
471 | + |
|
472 | + |
|
473 | + /** |
|
474 | + * This helper simply returns the order for the datetime |
|
475 | + * |
|
476 | + * @return int The order of the datetime for this event. |
|
477 | + * @throws ReflectionException |
|
478 | + * @throws InvalidArgumentException |
|
479 | + * @throws InvalidInterfaceException |
|
480 | + * @throws InvalidDataTypeException |
|
481 | + * @throws EE_Error |
|
482 | + */ |
|
483 | + public function order() |
|
484 | + { |
|
485 | + return $this->get('DTT_order'); |
|
486 | + } |
|
487 | + |
|
488 | + |
|
489 | + /** |
|
490 | + * This helper simply returns the parent id for the datetime |
|
491 | + * |
|
492 | + * @return int |
|
493 | + * @throws ReflectionException |
|
494 | + * @throws InvalidArgumentException |
|
495 | + * @throws InvalidInterfaceException |
|
496 | + * @throws InvalidDataTypeException |
|
497 | + * @throws EE_Error |
|
498 | + */ |
|
499 | + public function parent() |
|
500 | + { |
|
501 | + return $this->get('DTT_parent'); |
|
502 | + } |
|
503 | + |
|
504 | + |
|
505 | + /** |
|
506 | + * show date and/or time |
|
507 | + * |
|
508 | + * @param string $date_or_time whether to display a date or time or both |
|
509 | + * @param string $start_or_end whether to display start or end datetimes |
|
510 | + * @param string $dt_frmt |
|
511 | + * @param string $tm_frmt |
|
512 | + * @param bool $echo whether we echo or return (note echoing uses "pretty" formats, |
|
513 | + * otherwise we use the standard formats) |
|
514 | + * @return string|bool string on success, FALSE on fail |
|
515 | + * @throws ReflectionException |
|
516 | + * @throws InvalidArgumentException |
|
517 | + * @throws InvalidInterfaceException |
|
518 | + * @throws InvalidDataTypeException |
|
519 | + * @throws EE_Error |
|
520 | + */ |
|
521 | + private function _show_datetime( |
|
522 | + $date_or_time = null, |
|
523 | + $start_or_end = 'start', |
|
524 | + $dt_frmt = '', |
|
525 | + $tm_frmt = '', |
|
526 | + $echo = false |
|
527 | + ) { |
|
528 | + $field_name = "DTT_EVT_{$start_or_end}"; |
|
529 | + $dtt = $this->_get_datetime( |
|
530 | + $field_name, |
|
531 | + $dt_frmt, |
|
532 | + $tm_frmt, |
|
533 | + $date_or_time, |
|
534 | + $echo |
|
535 | + ); |
|
536 | + if (! $echo) { |
|
537 | + return $dtt; |
|
538 | + } |
|
539 | + return ''; |
|
540 | + } |
|
541 | + |
|
542 | + |
|
543 | + /** |
|
544 | + * get event start date. Provide either the date format, or NULL to re-use the |
|
545 | + * last-used format, or '' to use the default date format |
|
546 | + * |
|
547 | + * @param string $dt_frmt string representation of date format defaults to 'F j, Y' |
|
548 | + * @return mixed string on success, FALSE on fail |
|
549 | + * @throws ReflectionException |
|
550 | + * @throws InvalidArgumentException |
|
551 | + * @throws InvalidInterfaceException |
|
552 | + * @throws InvalidDataTypeException |
|
553 | + * @throws EE_Error |
|
554 | + */ |
|
555 | + public function start_date($dt_frmt = '') |
|
556 | + { |
|
557 | + return $this->_show_datetime('D', 'start', $dt_frmt); |
|
558 | + } |
|
559 | + |
|
560 | + |
|
561 | + /** |
|
562 | + * Echoes start_date() |
|
563 | + * |
|
564 | + * @param string $dt_frmt |
|
565 | + * @throws ReflectionException |
|
566 | + * @throws InvalidArgumentException |
|
567 | + * @throws InvalidInterfaceException |
|
568 | + * @throws InvalidDataTypeException |
|
569 | + * @throws EE_Error |
|
570 | + */ |
|
571 | + public function e_start_date($dt_frmt = '') |
|
572 | + { |
|
573 | + $this->_show_datetime('D', 'start', $dt_frmt, null, true); |
|
574 | + } |
|
575 | + |
|
576 | + |
|
577 | + /** |
|
578 | + * get end date. Provide either the date format, or NULL to re-use the |
|
579 | + * last-used format, or '' to use the default date format |
|
580 | + * |
|
581 | + * @param string $dt_frmt string representation of date format defaults to 'F j, Y' |
|
582 | + * @return mixed string on success, FALSE on fail |
|
583 | + * @throws ReflectionException |
|
584 | + * @throws InvalidArgumentException |
|
585 | + * @throws InvalidInterfaceException |
|
586 | + * @throws InvalidDataTypeException |
|
587 | + * @throws EE_Error |
|
588 | + */ |
|
589 | + public function end_date($dt_frmt = '') |
|
590 | + { |
|
591 | + return $this->_show_datetime('D', 'end', $dt_frmt); |
|
592 | + } |
|
593 | + |
|
594 | + |
|
595 | + /** |
|
596 | + * Echoes the end date. See end_date() |
|
597 | + * |
|
598 | + * @param string $dt_frmt |
|
599 | + * @throws ReflectionException |
|
600 | + * @throws InvalidArgumentException |
|
601 | + * @throws InvalidInterfaceException |
|
602 | + * @throws InvalidDataTypeException |
|
603 | + * @throws EE_Error |
|
604 | + */ |
|
605 | + public function e_end_date($dt_frmt = '') |
|
606 | + { |
|
607 | + $this->_show_datetime('D', 'end', $dt_frmt, null, true); |
|
608 | + } |
|
609 | + |
|
610 | + |
|
611 | + /** |
|
612 | + * get date_range - meaning the start AND end date |
|
613 | + * |
|
614 | + * @access public |
|
615 | + * @param string $dt_frmt string representation of date format defaults to WP settings |
|
616 | + * @param string $conjunction conjunction junction what's your function ? |
|
617 | + * this string joins the start date with the end date ie: Jan 01 "to" Dec 31 |
|
618 | + * @return mixed string on success, FALSE on fail |
|
619 | + * @throws ReflectionException |
|
620 | + * @throws InvalidArgumentException |
|
621 | + * @throws InvalidInterfaceException |
|
622 | + * @throws InvalidDataTypeException |
|
623 | + * @throws EE_Error |
|
624 | + */ |
|
625 | + public function date_range($dt_frmt = '', $conjunction = ' - ') |
|
626 | + { |
|
627 | + $dt_frmt = ! empty($dt_frmt) ? $dt_frmt : $this->_dt_frmt; |
|
628 | + $start = str_replace( |
|
629 | + ' ', |
|
630 | + ' ', |
|
631 | + $this->get_i18n_datetime('DTT_EVT_start', $dt_frmt) |
|
632 | + ); |
|
633 | + $end = str_replace( |
|
634 | + ' ', |
|
635 | + ' ', |
|
636 | + $this->get_i18n_datetime('DTT_EVT_end', $dt_frmt) |
|
637 | + ); |
|
638 | + return $start !== $end ? $start . $conjunction . $end : $start; |
|
639 | + } |
|
640 | + |
|
641 | + |
|
642 | + /** |
|
643 | + * @param string $dt_frmt |
|
644 | + * @param string $conjunction |
|
645 | + * @throws ReflectionException |
|
646 | + * @throws InvalidArgumentException |
|
647 | + * @throws InvalidInterfaceException |
|
648 | + * @throws InvalidDataTypeException |
|
649 | + * @throws EE_Error |
|
650 | + */ |
|
651 | + public function e_date_range($dt_frmt = '', $conjunction = ' - ') |
|
652 | + { |
|
653 | + echo $this->date_range($dt_frmt, $conjunction); |
|
654 | + } |
|
655 | + |
|
656 | + |
|
657 | + /** |
|
658 | + * get start time |
|
659 | + * |
|
660 | + * @param string $tm_format - string representation of time format defaults to 'g:i a' |
|
661 | + * @return mixed string on success, FALSE on fail |
|
662 | + * @throws ReflectionException |
|
663 | + * @throws InvalidArgumentException |
|
664 | + * @throws InvalidInterfaceException |
|
665 | + * @throws InvalidDataTypeException |
|
666 | + * @throws EE_Error |
|
667 | + */ |
|
668 | + public function start_time($tm_format = '') |
|
669 | + { |
|
670 | + return $this->_show_datetime('T', 'start', null, $tm_format); |
|
671 | + } |
|
672 | + |
|
673 | + |
|
674 | + /** |
|
675 | + * @param string $tm_format |
|
676 | + * @throws ReflectionException |
|
677 | + * @throws InvalidArgumentException |
|
678 | + * @throws InvalidInterfaceException |
|
679 | + * @throws InvalidDataTypeException |
|
680 | + * @throws EE_Error |
|
681 | + */ |
|
682 | + public function e_start_time($tm_format = '') |
|
683 | + { |
|
684 | + $this->_show_datetime('T', 'start', null, $tm_format, true); |
|
685 | + } |
|
686 | + |
|
687 | + |
|
688 | + /** |
|
689 | + * get end time |
|
690 | + * |
|
691 | + * @param string $tm_format string representation of time format defaults to 'g:i a' |
|
692 | + * @return mixed string on success, FALSE on fail |
|
693 | + * @throws ReflectionException |
|
694 | + * @throws InvalidArgumentException |
|
695 | + * @throws InvalidInterfaceException |
|
696 | + * @throws InvalidDataTypeException |
|
697 | + * @throws EE_Error |
|
698 | + */ |
|
699 | + public function end_time($tm_format = '') |
|
700 | + { |
|
701 | + return $this->_show_datetime('T', 'end', null, $tm_format); |
|
702 | + } |
|
703 | + |
|
704 | + |
|
705 | + /** |
|
706 | + * @param string $tm_format |
|
707 | + * @throws ReflectionException |
|
708 | + * @throws InvalidArgumentException |
|
709 | + * @throws InvalidInterfaceException |
|
710 | + * @throws InvalidDataTypeException |
|
711 | + * @throws EE_Error |
|
712 | + */ |
|
713 | + public function e_end_time($tm_format = '') |
|
714 | + { |
|
715 | + $this->_show_datetime('T', 'end', null, $tm_format, true); |
|
716 | + } |
|
717 | + |
|
718 | + |
|
719 | + /** |
|
720 | + * get time_range |
|
721 | + * |
|
722 | + * @access public |
|
723 | + * @param string $tm_format string representation of time format defaults to 'g:i a' |
|
724 | + * @param string $conjunction conjunction junction what's your function ? |
|
725 | + * this string joins the start date with the end date ie: Jan 01 "to" Dec 31 |
|
726 | + * @return mixed string on success, FALSE on fail |
|
727 | + * @throws ReflectionException |
|
728 | + * @throws InvalidArgumentException |
|
729 | + * @throws InvalidInterfaceException |
|
730 | + * @throws InvalidDataTypeException |
|
731 | + * @throws EE_Error |
|
732 | + */ |
|
733 | + public function time_range($tm_format = '', $conjunction = ' - ') |
|
734 | + { |
|
735 | + $tm_format = ! empty($tm_format) ? $tm_format : $this->_tm_frmt; |
|
736 | + $start = str_replace( |
|
737 | + ' ', |
|
738 | + ' ', |
|
739 | + $this->get_i18n_datetime('DTT_EVT_start', $tm_format) |
|
740 | + ); |
|
741 | + $end = str_replace( |
|
742 | + ' ', |
|
743 | + ' ', |
|
744 | + $this->get_i18n_datetime('DTT_EVT_end', $tm_format) |
|
745 | + ); |
|
746 | + return $start !== $end ? $start . $conjunction . $end : $start; |
|
747 | + } |
|
748 | + |
|
749 | + |
|
750 | + /** |
|
751 | + * @param string $tm_format |
|
752 | + * @param string $conjunction |
|
753 | + * @throws ReflectionException |
|
754 | + * @throws InvalidArgumentException |
|
755 | + * @throws InvalidInterfaceException |
|
756 | + * @throws InvalidDataTypeException |
|
757 | + * @throws EE_Error |
|
758 | + */ |
|
759 | + public function e_time_range($tm_format = '', $conjunction = ' - ') |
|
760 | + { |
|
761 | + echo $this->time_range($tm_format, $conjunction); |
|
762 | + } |
|
763 | + |
|
764 | + |
|
765 | + /** |
|
766 | + * This returns a range representation of the date and times. |
|
767 | + * Output is dependent on the difference (or similarity) between DTT_EVT_start and DTT_EVT_end. |
|
768 | + * Also, the return value is localized. |
|
769 | + * |
|
770 | + * @param string $dt_format |
|
771 | + * @param string $tm_format |
|
772 | + * @param string $conjunction used between two different dates or times. |
|
773 | + * ex: Dec 1{$conjunction}}Dec 6, or 2pm{$conjunction}3pm |
|
774 | + * @param string $separator used between the date and time formats. |
|
775 | + * ex: Dec 1, 2016{$separator}2pm |
|
776 | + * @return string |
|
777 | + * @throws ReflectionException |
|
778 | + * @throws InvalidArgumentException |
|
779 | + * @throws InvalidInterfaceException |
|
780 | + * @throws InvalidDataTypeException |
|
781 | + * @throws EE_Error |
|
782 | + */ |
|
783 | + public function date_and_time_range( |
|
784 | + $dt_format = '', |
|
785 | + $tm_format = '', |
|
786 | + $conjunction = ' - ', |
|
787 | + $separator = ' ' |
|
788 | + ) { |
|
789 | + $dt_format = ! empty($dt_format) ? $dt_format : $this->_dt_frmt; |
|
790 | + $tm_format = ! empty($tm_format) ? $tm_format : $this->_tm_frmt; |
|
791 | + $full_format = $dt_format . $separator . $tm_format; |
|
792 | + // the range output depends on various conditions |
|
793 | + switch (true) { |
|
794 | + // start date timestamp and end date timestamp are the same. |
|
795 | + case ($this->get_raw('DTT_EVT_start') === $this->get_raw('DTT_EVT_end')): |
|
796 | + $output = $this->get_i18n_datetime('DTT_EVT_start', $full_format); |
|
797 | + break; |
|
798 | + // start and end date are the same but times are different |
|
799 | + case ($this->start_date() === $this->end_date()): |
|
800 | + $output = $this->get_i18n_datetime('DTT_EVT_start', $full_format) |
|
801 | + . $conjunction |
|
802 | + . $this->get_i18n_datetime('DTT_EVT_end', $tm_format); |
|
803 | + break; |
|
804 | + // all other conditions |
|
805 | + default: |
|
806 | + $output = $this->get_i18n_datetime('DTT_EVT_start', $full_format) |
|
807 | + . $conjunction |
|
808 | + . $this->get_i18n_datetime('DTT_EVT_end', $full_format); |
|
809 | + break; |
|
810 | + } |
|
811 | + return $output; |
|
812 | + } |
|
813 | + |
|
814 | + |
|
815 | + /** |
|
816 | + * This echos the results of date and time range. |
|
817 | + * |
|
818 | + * @see date_and_time_range() for more details on purpose. |
|
819 | + * @param string $dt_format |
|
820 | + * @param string $tm_format |
|
821 | + * @param string $conjunction |
|
822 | + * @return void |
|
823 | + * @throws ReflectionException |
|
824 | + * @throws InvalidArgumentException |
|
825 | + * @throws InvalidInterfaceException |
|
826 | + * @throws InvalidDataTypeException |
|
827 | + * @throws EE_Error |
|
828 | + */ |
|
829 | + public function e_date_and_time_range($dt_format = '', $tm_format = '', $conjunction = ' - ') |
|
830 | + { |
|
831 | + echo $this->date_and_time_range($dt_format, $tm_format, $conjunction); |
|
832 | + } |
|
833 | + |
|
834 | + |
|
835 | + /** |
|
836 | + * get start date and start time |
|
837 | + * |
|
838 | + * @param string $dt_format - string representation of date format defaults to 'F j, Y' |
|
839 | + * @param string $tm_format - string representation of time format defaults to 'g:i a' |
|
840 | + * @return mixed string on success, FALSE on fail |
|
841 | + * @throws ReflectionException |
|
842 | + * @throws InvalidArgumentException |
|
843 | + * @throws InvalidInterfaceException |
|
844 | + * @throws InvalidDataTypeException |
|
845 | + * @throws EE_Error |
|
846 | + */ |
|
847 | + public function start_date_and_time($dt_format = '', $tm_format = '') |
|
848 | + { |
|
849 | + return $this->_show_datetime('', 'start', $dt_format, $tm_format); |
|
850 | + } |
|
851 | + |
|
852 | + |
|
853 | + /** |
|
854 | + * @param string $dt_frmt |
|
855 | + * @param string $tm_format |
|
856 | + * @throws ReflectionException |
|
857 | + * @throws InvalidArgumentException |
|
858 | + * @throws InvalidInterfaceException |
|
859 | + * @throws InvalidDataTypeException |
|
860 | + * @throws EE_Error |
|
861 | + */ |
|
862 | + public function e_start_date_and_time($dt_frmt = '', $tm_format = '') |
|
863 | + { |
|
864 | + $this->_show_datetime('', 'start', $dt_frmt, $tm_format, true); |
|
865 | + } |
|
866 | + |
|
867 | + |
|
868 | + /** |
|
869 | + * Shows the length of the event (start to end time). |
|
870 | + * Can be shown in 'seconds','minutes','hours', or 'days'. |
|
871 | + * By default, rounds up. (So if you use 'days', and then event |
|
872 | + * only occurs for 1 hour, it will return 1 day). |
|
873 | + * |
|
874 | + * @param string $units 'seconds','minutes','hours','days' |
|
875 | + * @param bool $round_up |
|
876 | + * @return float|int|mixed |
|
877 | + * @throws ReflectionException |
|
878 | + * @throws InvalidArgumentException |
|
879 | + * @throws InvalidInterfaceException |
|
880 | + * @throws InvalidDataTypeException |
|
881 | + * @throws EE_Error |
|
882 | + */ |
|
883 | + public function length($units = 'seconds', $round_up = false) |
|
884 | + { |
|
885 | + $start = $this->get_raw('DTT_EVT_start'); |
|
886 | + $end = $this->get_raw('DTT_EVT_end'); |
|
887 | + $length_in_units = $end - $start; |
|
888 | + switch ($units) { |
|
889 | + // NOTE: We purposefully don't use "break;" in order to chain the divisions |
|
890 | + /** @noinspection PhpMissingBreakStatementInspection */ |
|
891 | + // phpcs:disable PSR2.ControlStructures.SwitchDeclaration.TerminatingComment |
|
892 | + case 'days': |
|
893 | + $length_in_units /= 24; |
|
894 | + /** @noinspection PhpMissingBreakStatementInspection */ |
|
895 | + case 'hours': |
|
896 | + // fall through is intentional |
|
897 | + $length_in_units /= 60; |
|
898 | + /** @noinspection PhpMissingBreakStatementInspection */ |
|
899 | + case 'minutes': |
|
900 | + // fall through is intentional |
|
901 | + $length_in_units /= 60; |
|
902 | + case 'seconds': |
|
903 | + default: |
|
904 | + $length_in_units = ceil($length_in_units); |
|
905 | + } |
|
906 | + // phpcs:enable |
|
907 | + if ($round_up) { |
|
908 | + $length_in_units = max($length_in_units, 1); |
|
909 | + } |
|
910 | + return $length_in_units; |
|
911 | + } |
|
912 | + |
|
913 | + |
|
914 | + /** |
|
915 | + * get end date and time |
|
916 | + * |
|
917 | + * @param string $dt_frmt - string representation of date format defaults to 'F j, Y' |
|
918 | + * @param string $tm_format - string representation of time format defaults to 'g:i a' |
|
919 | + * @return mixed string on success, FALSE on fail |
|
920 | + * @throws ReflectionException |
|
921 | + * @throws InvalidArgumentException |
|
922 | + * @throws InvalidInterfaceException |
|
923 | + * @throws InvalidDataTypeException |
|
924 | + * @throws EE_Error |
|
925 | + */ |
|
926 | + public function end_date_and_time($dt_frmt = '', $tm_format = '') |
|
927 | + { |
|
928 | + return $this->_show_datetime('', 'end', $dt_frmt, $tm_format); |
|
929 | + } |
|
930 | + |
|
931 | + |
|
932 | + /** |
|
933 | + * @param string $dt_frmt |
|
934 | + * @param string $tm_format |
|
935 | + * @throws ReflectionException |
|
936 | + * @throws InvalidArgumentException |
|
937 | + * @throws InvalidInterfaceException |
|
938 | + * @throws InvalidDataTypeException |
|
939 | + * @throws EE_Error |
|
940 | + */ |
|
941 | + public function e_end_date_and_time($dt_frmt = '', $tm_format = '') |
|
942 | + { |
|
943 | + $this->_show_datetime('', 'end', $dt_frmt, $tm_format, true); |
|
944 | + } |
|
945 | + |
|
946 | + |
|
947 | + /** |
|
948 | + * get start timestamp |
|
949 | + * |
|
950 | + * @return int |
|
951 | + * @throws ReflectionException |
|
952 | + * @throws InvalidArgumentException |
|
953 | + * @throws InvalidInterfaceException |
|
954 | + * @throws InvalidDataTypeException |
|
955 | + * @throws EE_Error |
|
956 | + */ |
|
957 | + public function start() |
|
958 | + { |
|
959 | + return $this->get_raw('DTT_EVT_start'); |
|
960 | + } |
|
961 | + |
|
962 | + |
|
963 | + /** |
|
964 | + * get end timestamp |
|
965 | + * |
|
966 | + * @return int |
|
967 | + * @throws ReflectionException |
|
968 | + * @throws InvalidArgumentException |
|
969 | + * @throws InvalidInterfaceException |
|
970 | + * @throws InvalidDataTypeException |
|
971 | + * @throws EE_Error |
|
972 | + */ |
|
973 | + public function end() |
|
974 | + { |
|
975 | + return $this->get_raw('DTT_EVT_end'); |
|
976 | + } |
|
977 | + |
|
978 | + |
|
979 | + /** |
|
980 | + * get the registration limit for this datetime slot |
|
981 | + * |
|
982 | + * @return mixed int on success, FALSE on fail |
|
983 | + * @throws ReflectionException |
|
984 | + * @throws InvalidArgumentException |
|
985 | + * @throws InvalidInterfaceException |
|
986 | + * @throws InvalidDataTypeException |
|
987 | + * @throws EE_Error |
|
988 | + */ |
|
989 | + public function reg_limit() |
|
990 | + { |
|
991 | + return $this->get_raw('DTT_reg_limit'); |
|
992 | + } |
|
993 | + |
|
994 | + |
|
995 | + /** |
|
996 | + * have the tickets sold for this datetime, met or exceed the registration limit ? |
|
997 | + * |
|
998 | + * @return boolean |
|
999 | + * @throws ReflectionException |
|
1000 | + * @throws InvalidArgumentException |
|
1001 | + * @throws InvalidInterfaceException |
|
1002 | + * @throws InvalidDataTypeException |
|
1003 | + * @throws EE_Error |
|
1004 | + */ |
|
1005 | + public function sold_out() |
|
1006 | + { |
|
1007 | + return $this->reg_limit() > 0 && $this->sold() >= $this->reg_limit(); |
|
1008 | + } |
|
1009 | + |
|
1010 | + |
|
1011 | + /** |
|
1012 | + * return the total number of spaces remaining at this venue. |
|
1013 | + * This only takes the venue's capacity into account, NOT the tickets available for sale |
|
1014 | + * |
|
1015 | + * @param bool $consider_tickets Whether to consider tickets remaining when determining if there are any spaces left |
|
1016 | + * Because if all tickets attached to this datetime have no spaces left, |
|
1017 | + * then this datetime IS effectively sold out. |
|
1018 | + * However, there are cases where we just want to know the spaces |
|
1019 | + * remaining for this particular datetime, hence the flag. |
|
1020 | + * @return int |
|
1021 | + * @throws ReflectionException |
|
1022 | + * @throws InvalidArgumentException |
|
1023 | + * @throws InvalidInterfaceException |
|
1024 | + * @throws InvalidDataTypeException |
|
1025 | + * @throws EE_Error |
|
1026 | + */ |
|
1027 | + public function spaces_remaining($consider_tickets = false) |
|
1028 | + { |
|
1029 | + // tickets remaining available for purchase |
|
1030 | + // no need for special checks for infinite, because if DTT_reg_limit == EE_INF, then EE_INF - x = EE_INF |
|
1031 | + $dtt_remaining = $this->reg_limit() - $this->sold_and_reserved(); |
|
1032 | + if (! $consider_tickets) { |
|
1033 | + return $dtt_remaining; |
|
1034 | + } |
|
1035 | + $tickets_remaining = $this->tickets_remaining(); |
|
1036 | + return min($dtt_remaining, $tickets_remaining); |
|
1037 | + } |
|
1038 | + |
|
1039 | + |
|
1040 | + /** |
|
1041 | + * Counts the total tickets available |
|
1042 | + * (from all the different types of tickets which are available for this datetime). |
|
1043 | + * |
|
1044 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1045 | + * @return int |
|
1046 | + * @throws ReflectionException |
|
1047 | + * @throws InvalidArgumentException |
|
1048 | + * @throws InvalidInterfaceException |
|
1049 | + * @throws InvalidDataTypeException |
|
1050 | + * @throws EE_Error |
|
1051 | + */ |
|
1052 | + public function tickets_remaining($query_params = array()) |
|
1053 | + { |
|
1054 | + $sum = 0; |
|
1055 | + $tickets = $this->tickets($query_params); |
|
1056 | + if (! empty($tickets)) { |
|
1057 | + foreach ($tickets as $ticket) { |
|
1058 | + if ($ticket instanceof EE_Ticket) { |
|
1059 | + // get the actual amount of tickets that can be sold |
|
1060 | + $qty = $ticket->qty('saleable'); |
|
1061 | + if ($qty === EE_INF) { |
|
1062 | + return EE_INF; |
|
1063 | + } |
|
1064 | + // no negative ticket quantities plz |
|
1065 | + if ($qty > 0) { |
|
1066 | + $sum += $qty; |
|
1067 | + } |
|
1068 | + } |
|
1069 | + } |
|
1070 | + } |
|
1071 | + return $sum; |
|
1072 | + } |
|
1073 | + |
|
1074 | + |
|
1075 | + /** |
|
1076 | + * Gets the count of all the tickets available at this datetime (not ticket types) |
|
1077 | + * before any were sold |
|
1078 | + * |
|
1079 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1080 | + * @return int |
|
1081 | + * @throws ReflectionException |
|
1082 | + * @throws InvalidArgumentException |
|
1083 | + * @throws InvalidInterfaceException |
|
1084 | + * @throws InvalidDataTypeException |
|
1085 | + * @throws EE_Error |
|
1086 | + */ |
|
1087 | + public function sum_tickets_initially_available($query_params = array()) |
|
1088 | + { |
|
1089 | + return $this->sum_related('Ticket', $query_params, 'TKT_qty'); |
|
1090 | + } |
|
1091 | + |
|
1092 | + |
|
1093 | + /** |
|
1094 | + * Returns the lesser-of-the two: spaces remaining at this datetime, or |
|
1095 | + * the total tickets remaining (a sum of the tickets remaining for each ticket type |
|
1096 | + * that is available for this datetime). |
|
1097 | + * |
|
1098 | + * @return int |
|
1099 | + * @throws ReflectionException |
|
1100 | + * @throws InvalidArgumentException |
|
1101 | + * @throws InvalidInterfaceException |
|
1102 | + * @throws InvalidDataTypeException |
|
1103 | + * @throws EE_Error |
|
1104 | + */ |
|
1105 | + public function total_tickets_available_at_this_datetime() |
|
1106 | + { |
|
1107 | + return $this->spaces_remaining(true); |
|
1108 | + } |
|
1109 | + |
|
1110 | + |
|
1111 | + /** |
|
1112 | + * This simply compares the internal dtt for the given string with NOW |
|
1113 | + * and determines if the date is upcoming or not. |
|
1114 | + * |
|
1115 | + * @access public |
|
1116 | + * @return boolean |
|
1117 | + * @throws ReflectionException |
|
1118 | + * @throws InvalidArgumentException |
|
1119 | + * @throws InvalidInterfaceException |
|
1120 | + * @throws InvalidDataTypeException |
|
1121 | + * @throws EE_Error |
|
1122 | + */ |
|
1123 | + public function is_upcoming() |
|
1124 | + { |
|
1125 | + return ($this->get_raw('DTT_EVT_start') > time()); |
|
1126 | + } |
|
1127 | + |
|
1128 | + |
|
1129 | + /** |
|
1130 | + * This simply compares the internal datetime for the given string with NOW |
|
1131 | + * and returns if the date is active (i.e. start and end time) |
|
1132 | + * |
|
1133 | + * @return boolean |
|
1134 | + * @throws ReflectionException |
|
1135 | + * @throws InvalidArgumentException |
|
1136 | + * @throws InvalidInterfaceException |
|
1137 | + * @throws InvalidDataTypeException |
|
1138 | + * @throws EE_Error |
|
1139 | + */ |
|
1140 | + public function is_active() |
|
1141 | + { |
|
1142 | + return ($this->get_raw('DTT_EVT_start') < time() && $this->get_raw('DTT_EVT_end') > time()); |
|
1143 | + } |
|
1144 | + |
|
1145 | + |
|
1146 | + /** |
|
1147 | + * This simply compares the internal dtt for the given string with NOW |
|
1148 | + * and determines if the date is expired or not. |
|
1149 | + * |
|
1150 | + * @return boolean |
|
1151 | + * @throws ReflectionException |
|
1152 | + * @throws InvalidArgumentException |
|
1153 | + * @throws InvalidInterfaceException |
|
1154 | + * @throws InvalidDataTypeException |
|
1155 | + * @throws EE_Error |
|
1156 | + */ |
|
1157 | + public function is_expired() |
|
1158 | + { |
|
1159 | + return ($this->get_raw('DTT_EVT_end') < time()); |
|
1160 | + } |
|
1161 | + |
|
1162 | + |
|
1163 | + /** |
|
1164 | + * This returns the active status for whether an event is active, upcoming, or expired |
|
1165 | + * |
|
1166 | + * @return int return value will be one of the EE_Datetime status constants. |
|
1167 | + * @throws ReflectionException |
|
1168 | + * @throws InvalidArgumentException |
|
1169 | + * @throws InvalidInterfaceException |
|
1170 | + * @throws InvalidDataTypeException |
|
1171 | + * @throws EE_Error |
|
1172 | + */ |
|
1173 | + public function get_active_status() |
|
1174 | + { |
|
1175 | + $total_tickets_for_this_dtt = $this->total_tickets_available_at_this_datetime(); |
|
1176 | + if ($total_tickets_for_this_dtt !== false && $total_tickets_for_this_dtt < 1) { |
|
1177 | + return EE_Datetime::sold_out; |
|
1178 | + } |
|
1179 | + if ($this->is_expired()) { |
|
1180 | + return EE_Datetime::expired; |
|
1181 | + } |
|
1182 | + if ($this->is_upcoming()) { |
|
1183 | + return EE_Datetime::upcoming; |
|
1184 | + } |
|
1185 | + if ($this->is_active()) { |
|
1186 | + return EE_Datetime::active; |
|
1187 | + } |
|
1188 | + return null; |
|
1189 | + } |
|
1190 | + |
|
1191 | + |
|
1192 | + /** |
|
1193 | + * This returns a nice display name for the datetime that is contingent on the span between the dates and times. |
|
1194 | + * |
|
1195 | + * @param boolean $use_dtt_name if TRUE then we'll use DTT->name() if its not empty. |
|
1196 | + * @return string |
|
1197 | + * @throws ReflectionException |
|
1198 | + * @throws InvalidArgumentException |
|
1199 | + * @throws InvalidInterfaceException |
|
1200 | + * @throws InvalidDataTypeException |
|
1201 | + * @throws EE_Error |
|
1202 | + */ |
|
1203 | + public function get_dtt_display_name($use_dtt_name = false) |
|
1204 | + { |
|
1205 | + if ($use_dtt_name) { |
|
1206 | + $dtt_name = $this->name(); |
|
1207 | + if (! empty($dtt_name)) { |
|
1208 | + return $dtt_name; |
|
1209 | + } |
|
1210 | + } |
|
1211 | + // first condition is to see if the months are different |
|
1212 | + if (date('m', $this->get_raw('DTT_EVT_start')) !== date('m', $this->get_raw('DTT_EVT_end')) |
|
1213 | + ) { |
|
1214 | + $display_date = $this->start_date('M j\, Y g:i a') . ' - ' . $this->end_date('M j\, Y g:i a'); |
|
1215 | + // next condition is if its the same month but different day |
|
1216 | + } else { |
|
1217 | + if (date('m', $this->get_raw('DTT_EVT_start')) === date('m', $this->get_raw('DTT_EVT_end')) |
|
1218 | + && date('d', $this->get_raw('DTT_EVT_start')) !== date('d', $this->get_raw('DTT_EVT_end')) |
|
1219 | + ) { |
|
1220 | + $display_date = $this->start_date('M j\, g:i a') . ' - ' . $this->end_date('M j\, g:i a Y'); |
|
1221 | + } else { |
|
1222 | + $display_date = $this->start_date('F j\, Y') |
|
1223 | + . ' @ ' |
|
1224 | + . $this->start_date('g:i a') |
|
1225 | + . ' - ' |
|
1226 | + . $this->end_date('g:i a'); |
|
1227 | + } |
|
1228 | + } |
|
1229 | + return $display_date; |
|
1230 | + } |
|
1231 | + |
|
1232 | + |
|
1233 | + /** |
|
1234 | + * Gets all the tickets for this datetime |
|
1235 | + * |
|
1236 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1237 | + * @return EE_Base_Class[]|EE_Ticket[] |
|
1238 | + * @throws ReflectionException |
|
1239 | + * @throws InvalidArgumentException |
|
1240 | + * @throws InvalidInterfaceException |
|
1241 | + * @throws InvalidDataTypeException |
|
1242 | + * @throws EE_Error |
|
1243 | + */ |
|
1244 | + public function tickets($query_params = array()) |
|
1245 | + { |
|
1246 | + return $this->get_many_related('Ticket', $query_params); |
|
1247 | + } |
|
1248 | + |
|
1249 | + |
|
1250 | + /** |
|
1251 | + * Gets all the ticket types currently available for purchase |
|
1252 | + * |
|
1253 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1254 | + * @return EE_Ticket[] |
|
1255 | + * @throws ReflectionException |
|
1256 | + * @throws InvalidArgumentException |
|
1257 | + * @throws InvalidInterfaceException |
|
1258 | + * @throws InvalidDataTypeException |
|
1259 | + * @throws EE_Error |
|
1260 | + */ |
|
1261 | + public function ticket_types_available_for_purchase($query_params = array()) |
|
1262 | + { |
|
1263 | + // first check if datetime is valid |
|
1264 | + if ($this->sold_out() || ! ($this->is_upcoming() || $this->is_active())) { |
|
1265 | + return array(); |
|
1266 | + } |
|
1267 | + if (empty($query_params)) { |
|
1268 | + $query_params = array( |
|
1269 | + array( |
|
1270 | + 'TKT_start_date' => array('<=', EEM_Ticket::instance()->current_time_for_query('TKT_start_date')), |
|
1271 | + 'TKT_end_date' => array('>=', EEM_Ticket::instance()->current_time_for_query('TKT_end_date')), |
|
1272 | + 'TKT_deleted' => false, |
|
1273 | + ), |
|
1274 | + ); |
|
1275 | + } |
|
1276 | + return $this->tickets($query_params); |
|
1277 | + } |
|
1278 | + |
|
1279 | + |
|
1280 | + /** |
|
1281 | + * @return EE_Base_Class|EE_Event |
|
1282 | + * @throws ReflectionException |
|
1283 | + * @throws InvalidArgumentException |
|
1284 | + * @throws InvalidInterfaceException |
|
1285 | + * @throws InvalidDataTypeException |
|
1286 | + * @throws EE_Error |
|
1287 | + */ |
|
1288 | + public function event() |
|
1289 | + { |
|
1290 | + return $this->get_first_related('Event'); |
|
1291 | + } |
|
1292 | + |
|
1293 | + |
|
1294 | + /** |
|
1295 | + * Updates the DTT_sold attribute (and saves) based on the number of registrations for this datetime |
|
1296 | + * (via the tickets). |
|
1297 | + * |
|
1298 | + * @return int |
|
1299 | + * @throws ReflectionException |
|
1300 | + * @throws InvalidArgumentException |
|
1301 | + * @throws InvalidInterfaceException |
|
1302 | + * @throws InvalidDataTypeException |
|
1303 | + * @throws EE_Error |
|
1304 | + */ |
|
1305 | + public function update_sold() |
|
1306 | + { |
|
1307 | + $count_regs_for_this_datetime = EEM_Registration::instance()->count( |
|
1308 | + array( |
|
1309 | + array( |
|
1310 | + 'STS_ID' => EEM_Registration::status_id_approved, |
|
1311 | + 'REG_deleted' => 0, |
|
1312 | + 'Ticket.Datetime.DTT_ID' => $this->ID(), |
|
1313 | + ), |
|
1314 | + ) |
|
1315 | + ); |
|
1316 | + $this->set_sold($count_regs_for_this_datetime); |
|
1317 | + $this->save(); |
|
1318 | + return $count_regs_for_this_datetime; |
|
1319 | + } |
|
1320 | + |
|
1321 | + |
|
1322 | + /******************************************************************* |
|
1323 | 1323 | *********************** DEPRECATED METHODS ********************** |
1324 | 1324 | *******************************************************************/ |
1325 | 1325 | |
1326 | 1326 | |
1327 | - /** |
|
1328 | - * Increments sold by amount passed by $qty, and persists it immediately to the database. |
|
1329 | - * |
|
1330 | - * @deprecated 4.9.80.p |
|
1331 | - * @param int $qty |
|
1332 | - * @return boolean |
|
1333 | - * @throws ReflectionException |
|
1334 | - * @throws InvalidArgumentException |
|
1335 | - * @throws InvalidInterfaceException |
|
1336 | - * @throws InvalidDataTypeException |
|
1337 | - * @throws EE_Error |
|
1338 | - */ |
|
1339 | - public function increase_sold($qty = 1) |
|
1340 | - { |
|
1341 | - EE_Error::doing_it_wrong( |
|
1342 | - __FUNCTION__, |
|
1343 | - esc_html__('Please use EE_Datetime::increaseSold() instead', 'event_espresso'), |
|
1344 | - '4.9.80.p', |
|
1345 | - '5.0.0.p' |
|
1346 | - ); |
|
1347 | - return $this->increaseSold($qty); |
|
1348 | - } |
|
1349 | - |
|
1350 | - |
|
1351 | - /** |
|
1352 | - * Decrements (subtracts) sold amount passed by $qty directly in the DB and on the model object. (Ie, no need |
|
1353 | - * to save afterwards.) |
|
1354 | - * |
|
1355 | - * @deprecated 4.9.80.p |
|
1356 | - * @param int $qty |
|
1357 | - * @return boolean |
|
1358 | - * @throws ReflectionException |
|
1359 | - * @throws InvalidArgumentException |
|
1360 | - * @throws InvalidInterfaceException |
|
1361 | - * @throws InvalidDataTypeException |
|
1362 | - * @throws EE_Error |
|
1363 | - */ |
|
1364 | - public function decrease_sold($qty = 1) |
|
1365 | - { |
|
1366 | - EE_Error::doing_it_wrong( |
|
1367 | - __FUNCTION__, |
|
1368 | - esc_html__('Please use EE_Datetime::decreaseSold() instead', 'event_espresso'), |
|
1369 | - '4.9.80.p', |
|
1370 | - '5.0.0.p' |
|
1371 | - ); |
|
1372 | - return $this->decreaseSold($qty); |
|
1373 | - } |
|
1374 | - |
|
1375 | - |
|
1376 | - /** |
|
1377 | - * Increments reserved by amount passed by $qty, and persists it immediately to the database. |
|
1378 | - * |
|
1379 | - * @deprecated 4.9.80.p |
|
1380 | - * @param int $qty |
|
1381 | - * @return boolean indicating success |
|
1382 | - * @throws ReflectionException |
|
1383 | - * @throws InvalidArgumentException |
|
1384 | - * @throws InvalidInterfaceException |
|
1385 | - * @throws InvalidDataTypeException |
|
1386 | - * @throws EE_Error |
|
1387 | - */ |
|
1388 | - public function increase_reserved($qty = 1) |
|
1389 | - { |
|
1390 | - EE_Error::doing_it_wrong( |
|
1391 | - __FUNCTION__, |
|
1392 | - esc_html__('Please use EE_Datetime::increaseReserved() instead', 'event_espresso'), |
|
1393 | - '4.9.80.p', |
|
1394 | - '5.0.0.p' |
|
1395 | - ); |
|
1396 | - return $this->increaseReserved($qty); |
|
1397 | - } |
|
1398 | - |
|
1399 | - |
|
1400 | - /** |
|
1401 | - * Decrements (subtracts) reserved by amount passed by $qty, and persists it immediately to the database. |
|
1402 | - * |
|
1403 | - * @deprecated 4.9.80.p |
|
1404 | - * @param int $qty |
|
1405 | - * @return boolean |
|
1406 | - * @throws ReflectionException |
|
1407 | - * @throws InvalidArgumentException |
|
1408 | - * @throws InvalidInterfaceException |
|
1409 | - * @throws InvalidDataTypeException |
|
1410 | - * @throws EE_Error |
|
1411 | - */ |
|
1412 | - public function decrease_reserved($qty = 1) |
|
1413 | - { |
|
1414 | - EE_Error::doing_it_wrong( |
|
1415 | - __FUNCTION__, |
|
1416 | - esc_html__('Please use EE_Datetime::decreaseReserved() instead', 'event_espresso'), |
|
1417 | - '4.9.80.p', |
|
1418 | - '5.0.0.p' |
|
1419 | - ); |
|
1420 | - return $this->decreaseReserved($qty); |
|
1421 | - } |
|
1327 | + /** |
|
1328 | + * Increments sold by amount passed by $qty, and persists it immediately to the database. |
|
1329 | + * |
|
1330 | + * @deprecated 4.9.80.p |
|
1331 | + * @param int $qty |
|
1332 | + * @return boolean |
|
1333 | + * @throws ReflectionException |
|
1334 | + * @throws InvalidArgumentException |
|
1335 | + * @throws InvalidInterfaceException |
|
1336 | + * @throws InvalidDataTypeException |
|
1337 | + * @throws EE_Error |
|
1338 | + */ |
|
1339 | + public function increase_sold($qty = 1) |
|
1340 | + { |
|
1341 | + EE_Error::doing_it_wrong( |
|
1342 | + __FUNCTION__, |
|
1343 | + esc_html__('Please use EE_Datetime::increaseSold() instead', 'event_espresso'), |
|
1344 | + '4.9.80.p', |
|
1345 | + '5.0.0.p' |
|
1346 | + ); |
|
1347 | + return $this->increaseSold($qty); |
|
1348 | + } |
|
1349 | + |
|
1350 | + |
|
1351 | + /** |
|
1352 | + * Decrements (subtracts) sold amount passed by $qty directly in the DB and on the model object. (Ie, no need |
|
1353 | + * to save afterwards.) |
|
1354 | + * |
|
1355 | + * @deprecated 4.9.80.p |
|
1356 | + * @param int $qty |
|
1357 | + * @return boolean |
|
1358 | + * @throws ReflectionException |
|
1359 | + * @throws InvalidArgumentException |
|
1360 | + * @throws InvalidInterfaceException |
|
1361 | + * @throws InvalidDataTypeException |
|
1362 | + * @throws EE_Error |
|
1363 | + */ |
|
1364 | + public function decrease_sold($qty = 1) |
|
1365 | + { |
|
1366 | + EE_Error::doing_it_wrong( |
|
1367 | + __FUNCTION__, |
|
1368 | + esc_html__('Please use EE_Datetime::decreaseSold() instead', 'event_espresso'), |
|
1369 | + '4.9.80.p', |
|
1370 | + '5.0.0.p' |
|
1371 | + ); |
|
1372 | + return $this->decreaseSold($qty); |
|
1373 | + } |
|
1374 | + |
|
1375 | + |
|
1376 | + /** |
|
1377 | + * Increments reserved by amount passed by $qty, and persists it immediately to the database. |
|
1378 | + * |
|
1379 | + * @deprecated 4.9.80.p |
|
1380 | + * @param int $qty |
|
1381 | + * @return boolean indicating success |
|
1382 | + * @throws ReflectionException |
|
1383 | + * @throws InvalidArgumentException |
|
1384 | + * @throws InvalidInterfaceException |
|
1385 | + * @throws InvalidDataTypeException |
|
1386 | + * @throws EE_Error |
|
1387 | + */ |
|
1388 | + public function increase_reserved($qty = 1) |
|
1389 | + { |
|
1390 | + EE_Error::doing_it_wrong( |
|
1391 | + __FUNCTION__, |
|
1392 | + esc_html__('Please use EE_Datetime::increaseReserved() instead', 'event_espresso'), |
|
1393 | + '4.9.80.p', |
|
1394 | + '5.0.0.p' |
|
1395 | + ); |
|
1396 | + return $this->increaseReserved($qty); |
|
1397 | + } |
|
1398 | + |
|
1399 | + |
|
1400 | + /** |
|
1401 | + * Decrements (subtracts) reserved by amount passed by $qty, and persists it immediately to the database. |
|
1402 | + * |
|
1403 | + * @deprecated 4.9.80.p |
|
1404 | + * @param int $qty |
|
1405 | + * @return boolean |
|
1406 | + * @throws ReflectionException |
|
1407 | + * @throws InvalidArgumentException |
|
1408 | + * @throws InvalidInterfaceException |
|
1409 | + * @throws InvalidDataTypeException |
|
1410 | + * @throws EE_Error |
|
1411 | + */ |
|
1412 | + public function decrease_reserved($qty = 1) |
|
1413 | + { |
|
1414 | + EE_Error::doing_it_wrong( |
|
1415 | + __FUNCTION__, |
|
1416 | + esc_html__('Please use EE_Datetime::decreaseReserved() instead', 'event_espresso'), |
|
1417 | + '4.9.80.p', |
|
1418 | + '5.0.0.p' |
|
1419 | + ); |
|
1420 | + return $this->decreaseReserved($qty); |
|
1421 | + } |
|
1422 | 1422 | } |
@@ -12,280 +12,280 @@ |
||
12 | 12 | class EE_Question_Group extends EE_Soft_Delete_Base_Class |
13 | 13 | { |
14 | 14 | |
15 | - /** |
|
16 | - * @param array $props_n_values |
|
17 | - * @return EE_Question_Group|mixed |
|
18 | - */ |
|
19 | - public static function new_instance($props_n_values = array()) |
|
20 | - { |
|
21 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
22 | - return $has_object ? $has_object : new self($props_n_values); |
|
23 | - } |
|
24 | - |
|
25 | - |
|
26 | - /** |
|
27 | - * @param array $props_n_values |
|
28 | - * @return EE_Question_Group |
|
29 | - */ |
|
30 | - public static function new_instance_from_db($props_n_values = array()) |
|
31 | - { |
|
32 | - return new self($props_n_values, true); |
|
33 | - } |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * gets the question group's name |
|
38 | - * |
|
39 | - * @access public |
|
40 | - * @param bool $pretty |
|
41 | - * @return string |
|
42 | - */ |
|
43 | - public function name($pretty = false) |
|
44 | - { |
|
45 | - return $pretty ? $this->get_pretty('QSG_name') : $this->get('QSG_name'); |
|
46 | - } |
|
47 | - |
|
48 | - |
|
49 | - /** |
|
50 | - * Gets the question group's internal name |
|
51 | - * |
|
52 | - * @access public |
|
53 | - * @return string |
|
54 | - */ |
|
55 | - public function identifier() |
|
56 | - { |
|
57 | - return $this->get('QSG_identifier'); |
|
58 | - } |
|
59 | - |
|
60 | - |
|
61 | - /** |
|
62 | - * Gets the question group's description |
|
63 | - * |
|
64 | - * @access public |
|
65 | - * @param bool $pretty |
|
66 | - * @return string |
|
67 | - */ |
|
68 | - public function desc($pretty = false) |
|
69 | - { |
|
70 | - return $pretty ? $this->get_pretty('QSG_desc') : $this->get('QSG_desc'); |
|
71 | - } |
|
72 | - |
|
73 | - |
|
74 | - /** |
|
75 | - * Gets the question group's order number in a sequence |
|
76 | - * of other question groups |
|
77 | - * |
|
78 | - * @access public |
|
79 | - * @return int |
|
80 | - */ |
|
81 | - public function order() |
|
82 | - { |
|
83 | - return $this->get('QSG_order'); |
|
84 | - } |
|
85 | - |
|
86 | - |
|
87 | - /** |
|
88 | - * Returns whether to show the group's name on the frontend |
|
89 | - * |
|
90 | - * @access public |
|
91 | - * @return boolean |
|
92 | - */ |
|
93 | - public function show_group_name() |
|
94 | - { |
|
95 | - return $this->get('QSG_show_group_name'); |
|
96 | - } |
|
97 | - |
|
98 | - |
|
99 | - /** |
|
100 | - * Returns whether to show the group's description |
|
101 | - * on the frontend |
|
102 | - * |
|
103 | - * @access public |
|
104 | - * @return boolean |
|
105 | - */ |
|
106 | - public function show_group_desc() |
|
107 | - { |
|
108 | - return $this->get('QSG_show_group_desc'); |
|
109 | - } |
|
110 | - |
|
111 | - |
|
112 | - /** |
|
113 | - * Returns whether this is a 'system group' (meaning |
|
114 | - * a question group integral to the system, whose questions |
|
115 | - * relate to the attendee table) |
|
116 | - * |
|
117 | - * @access public |
|
118 | - * @return int |
|
119 | - */ |
|
120 | - public function system_group() |
|
121 | - { |
|
122 | - return $this->get('QSG_system'); |
|
123 | - } |
|
124 | - |
|
125 | - |
|
126 | - /** |
|
127 | - * get the author of the question group. |
|
128 | - * |
|
129 | - * @since 4.5.0 |
|
130 | - * |
|
131 | - * @return int |
|
132 | - */ |
|
133 | - public function wp_user() |
|
134 | - { |
|
135 | - return $this->get('QSG_wp_user'); |
|
136 | - } |
|
137 | - |
|
138 | - |
|
139 | - /** |
|
140 | - * Returns whether this question group has |
|
141 | - * been deleted |
|
142 | - * |
|
143 | - * @access public |
|
144 | - * @return boolean |
|
145 | - */ |
|
146 | - public function deleted() |
|
147 | - { |
|
148 | - return $this->get('QST_deleted'); |
|
149 | - } |
|
150 | - |
|
151 | - |
|
152 | - /** |
|
153 | - * Gets an array of questions with questions IN the group at the start of the array and questions NOT in the group |
|
154 | - * at the end of the array. Questions in the group are ordered by Question_Group_Question.QGQ_order and questions |
|
155 | - * NOT in the group are ordered by Question.QGQ_order |
|
156 | - * |
|
157 | - * @return EE_Question[] |
|
158 | - */ |
|
159 | - public function questions_in_and_not_in_group() |
|
160 | - { |
|
161 | - $questions_in_group = $this->questions(); |
|
162 | - $exclude_question_ids = ! empty($questions_in_group) ? array_keys($questions_in_group) : array(); |
|
163 | - $questions_not_in_group = $this->questions_not_in_group($exclude_question_ids); |
|
164 | - return $questions_in_group + $questions_not_in_group; |
|
165 | - } |
|
166 | - |
|
167 | - |
|
168 | - /** |
|
169 | - * Gets all the questions which are part of this question group (ordered Question_Group_Question.QGQ_order) |
|
170 | - * |
|
171 | - * @param array $query_params |
|
172 | - * @return EE_Question[] |
|
173 | - */ |
|
174 | - public function questions($query_params = array()) |
|
175 | - { |
|
176 | - $query_params = ! empty($query_params) ? $query_params |
|
177 | - : array('order_by' => array('Question_Group_Question.QGQ_order' => 'ASC')); |
|
178 | - return $this->ID() ? $this->get_many_related('Question', $query_params) : array(); |
|
179 | - } |
|
180 | - |
|
181 | - |
|
182 | - /** |
|
183 | - * Gets all the questions which are NOT part of this question group. |
|
184 | - * |
|
185 | - * @param mixed $question_IDS_in_group if empty array then all questions returned. if FALSE then we first get |
|
186 | - * questions in this group and exclude them from questions get all. IF empty |
|
187 | - * array then we just return all questions. |
|
188 | - * @return EE_Question[] |
|
189 | - */ |
|
190 | - public function questions_not_in_group($question_IDS_in_group = false) |
|
191 | - { |
|
192 | - if ($question_IDS_in_group === false) { |
|
193 | - $questions = $this->questions(); |
|
194 | - $question_IDS_in_group = ! empty($questions) ? array_keys($questions) : array(); |
|
195 | - } |
|
196 | - $_where = ! empty($question_IDS_in_group) ? array('QST_ID' => array('not_in', $question_IDS_in_group)) |
|
197 | - : array(); |
|
198 | - |
|
199 | - return EEM_Question::instance()->get_all(array($_where, 'order_by' => array('QST_ID' => 'ASC'))); |
|
200 | - } |
|
201 | - |
|
202 | - |
|
203 | - /** |
|
204 | - * Gets all events which are related to this question group |
|
205 | - * |
|
206 | - * @return EE_Event[] |
|
207 | - */ |
|
208 | - public function events() |
|
209 | - { |
|
210 | - return $this->get_many_related('Event'); |
|
211 | - } |
|
212 | - |
|
213 | - |
|
214 | - /** |
|
215 | - * Adds the question to this question group |
|
216 | - * |
|
217 | - * @param EE_Question || int $question object or ID |
|
218 | - * @return boolean if successful |
|
219 | - */ |
|
220 | - public function add_question($questionObjectOrID) |
|
221 | - { |
|
222 | - return $this->_add_relation_to($questionObjectOrID, 'Question'); |
|
223 | - } |
|
224 | - |
|
225 | - |
|
226 | - /** |
|
227 | - * Removes the question from this question group |
|
228 | - * |
|
229 | - * @param EE_Question || int $question object or ID |
|
230 | - * @return boolean of success |
|
231 | - */ |
|
232 | - public function remove_question($questionObjectOrID) |
|
233 | - { |
|
234 | - return $this->_remove_relation_to($questionObjectOrID, 'Question'); |
|
235 | - } |
|
236 | - |
|
237 | - |
|
238 | - /** |
|
239 | - * @param $questionObjectOrID |
|
240 | - * @param $qst_order |
|
241 | - * @return int |
|
242 | - */ |
|
243 | - public function update_question_order($questionObjectOrID, $qst_order) |
|
244 | - { |
|
245 | - $qst_ID = $questionObjectOrID instanceof EE_Question ? $questionObjectOrID->ID() : (int) $questionObjectOrID; |
|
246 | - return EEM_Question_Group_Question::instance()->update( |
|
247 | - array('QGQ_order' => $qst_order), |
|
248 | - array( |
|
249 | - array( |
|
250 | - 'QST_ID' => $qst_ID, |
|
251 | - 'QSG_ID' => $this->ID(), |
|
252 | - ), |
|
253 | - ) |
|
254 | - ); |
|
255 | - } |
|
256 | - |
|
257 | - |
|
258 | - /** |
|
259 | - * Basically this is method just returns whether the question group has any questions with answers. This is used |
|
260 | - * by the admin currently to determine whether we should display the ui for deleting permanently or not b/c |
|
261 | - * question groups with questions that have answers should not be possible to delete permanently |
|
262 | - * |
|
263 | - * @return boolean true if has questions with answers, false if not. |
|
264 | - */ |
|
265 | - public function has_questions_with_answers() |
|
266 | - { |
|
267 | - $has_answers = false; |
|
268 | - $questions = $this->get_many_related('Question'); |
|
269 | - foreach ($questions as $question) { |
|
270 | - if ($question->count_related('Answer') > 0) { |
|
271 | - $has_answers = true; |
|
272 | - } |
|
273 | - } |
|
274 | - return $has_answers; |
|
275 | - } |
|
276 | - |
|
277 | - |
|
278 | - /** |
|
279 | - * The purpose of this method is set the question group order for this question group to be the max out of all |
|
280 | - * question groups |
|
281 | - * |
|
282 | - * @access public |
|
283 | - * @return void |
|
284 | - */ |
|
285 | - public function set_order_to_latest() |
|
286 | - { |
|
287 | - $latest_order = $this->get_model()->get_latest_question_group_order(); |
|
288 | - $latest_order++; |
|
289 | - $this->set('QSG_order', $latest_order); |
|
290 | - } |
|
15 | + /** |
|
16 | + * @param array $props_n_values |
|
17 | + * @return EE_Question_Group|mixed |
|
18 | + */ |
|
19 | + public static function new_instance($props_n_values = array()) |
|
20 | + { |
|
21 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
22 | + return $has_object ? $has_object : new self($props_n_values); |
|
23 | + } |
|
24 | + |
|
25 | + |
|
26 | + /** |
|
27 | + * @param array $props_n_values |
|
28 | + * @return EE_Question_Group |
|
29 | + */ |
|
30 | + public static function new_instance_from_db($props_n_values = array()) |
|
31 | + { |
|
32 | + return new self($props_n_values, true); |
|
33 | + } |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * gets the question group's name |
|
38 | + * |
|
39 | + * @access public |
|
40 | + * @param bool $pretty |
|
41 | + * @return string |
|
42 | + */ |
|
43 | + public function name($pretty = false) |
|
44 | + { |
|
45 | + return $pretty ? $this->get_pretty('QSG_name') : $this->get('QSG_name'); |
|
46 | + } |
|
47 | + |
|
48 | + |
|
49 | + /** |
|
50 | + * Gets the question group's internal name |
|
51 | + * |
|
52 | + * @access public |
|
53 | + * @return string |
|
54 | + */ |
|
55 | + public function identifier() |
|
56 | + { |
|
57 | + return $this->get('QSG_identifier'); |
|
58 | + } |
|
59 | + |
|
60 | + |
|
61 | + /** |
|
62 | + * Gets the question group's description |
|
63 | + * |
|
64 | + * @access public |
|
65 | + * @param bool $pretty |
|
66 | + * @return string |
|
67 | + */ |
|
68 | + public function desc($pretty = false) |
|
69 | + { |
|
70 | + return $pretty ? $this->get_pretty('QSG_desc') : $this->get('QSG_desc'); |
|
71 | + } |
|
72 | + |
|
73 | + |
|
74 | + /** |
|
75 | + * Gets the question group's order number in a sequence |
|
76 | + * of other question groups |
|
77 | + * |
|
78 | + * @access public |
|
79 | + * @return int |
|
80 | + */ |
|
81 | + public function order() |
|
82 | + { |
|
83 | + return $this->get('QSG_order'); |
|
84 | + } |
|
85 | + |
|
86 | + |
|
87 | + /** |
|
88 | + * Returns whether to show the group's name on the frontend |
|
89 | + * |
|
90 | + * @access public |
|
91 | + * @return boolean |
|
92 | + */ |
|
93 | + public function show_group_name() |
|
94 | + { |
|
95 | + return $this->get('QSG_show_group_name'); |
|
96 | + } |
|
97 | + |
|
98 | + |
|
99 | + /** |
|
100 | + * Returns whether to show the group's description |
|
101 | + * on the frontend |
|
102 | + * |
|
103 | + * @access public |
|
104 | + * @return boolean |
|
105 | + */ |
|
106 | + public function show_group_desc() |
|
107 | + { |
|
108 | + return $this->get('QSG_show_group_desc'); |
|
109 | + } |
|
110 | + |
|
111 | + |
|
112 | + /** |
|
113 | + * Returns whether this is a 'system group' (meaning |
|
114 | + * a question group integral to the system, whose questions |
|
115 | + * relate to the attendee table) |
|
116 | + * |
|
117 | + * @access public |
|
118 | + * @return int |
|
119 | + */ |
|
120 | + public function system_group() |
|
121 | + { |
|
122 | + return $this->get('QSG_system'); |
|
123 | + } |
|
124 | + |
|
125 | + |
|
126 | + /** |
|
127 | + * get the author of the question group. |
|
128 | + * |
|
129 | + * @since 4.5.0 |
|
130 | + * |
|
131 | + * @return int |
|
132 | + */ |
|
133 | + public function wp_user() |
|
134 | + { |
|
135 | + return $this->get('QSG_wp_user'); |
|
136 | + } |
|
137 | + |
|
138 | + |
|
139 | + /** |
|
140 | + * Returns whether this question group has |
|
141 | + * been deleted |
|
142 | + * |
|
143 | + * @access public |
|
144 | + * @return boolean |
|
145 | + */ |
|
146 | + public function deleted() |
|
147 | + { |
|
148 | + return $this->get('QST_deleted'); |
|
149 | + } |
|
150 | + |
|
151 | + |
|
152 | + /** |
|
153 | + * Gets an array of questions with questions IN the group at the start of the array and questions NOT in the group |
|
154 | + * at the end of the array. Questions in the group are ordered by Question_Group_Question.QGQ_order and questions |
|
155 | + * NOT in the group are ordered by Question.QGQ_order |
|
156 | + * |
|
157 | + * @return EE_Question[] |
|
158 | + */ |
|
159 | + public function questions_in_and_not_in_group() |
|
160 | + { |
|
161 | + $questions_in_group = $this->questions(); |
|
162 | + $exclude_question_ids = ! empty($questions_in_group) ? array_keys($questions_in_group) : array(); |
|
163 | + $questions_not_in_group = $this->questions_not_in_group($exclude_question_ids); |
|
164 | + return $questions_in_group + $questions_not_in_group; |
|
165 | + } |
|
166 | + |
|
167 | + |
|
168 | + /** |
|
169 | + * Gets all the questions which are part of this question group (ordered Question_Group_Question.QGQ_order) |
|
170 | + * |
|
171 | + * @param array $query_params |
|
172 | + * @return EE_Question[] |
|
173 | + */ |
|
174 | + public function questions($query_params = array()) |
|
175 | + { |
|
176 | + $query_params = ! empty($query_params) ? $query_params |
|
177 | + : array('order_by' => array('Question_Group_Question.QGQ_order' => 'ASC')); |
|
178 | + return $this->ID() ? $this->get_many_related('Question', $query_params) : array(); |
|
179 | + } |
|
180 | + |
|
181 | + |
|
182 | + /** |
|
183 | + * Gets all the questions which are NOT part of this question group. |
|
184 | + * |
|
185 | + * @param mixed $question_IDS_in_group if empty array then all questions returned. if FALSE then we first get |
|
186 | + * questions in this group and exclude them from questions get all. IF empty |
|
187 | + * array then we just return all questions. |
|
188 | + * @return EE_Question[] |
|
189 | + */ |
|
190 | + public function questions_not_in_group($question_IDS_in_group = false) |
|
191 | + { |
|
192 | + if ($question_IDS_in_group === false) { |
|
193 | + $questions = $this->questions(); |
|
194 | + $question_IDS_in_group = ! empty($questions) ? array_keys($questions) : array(); |
|
195 | + } |
|
196 | + $_where = ! empty($question_IDS_in_group) ? array('QST_ID' => array('not_in', $question_IDS_in_group)) |
|
197 | + : array(); |
|
198 | + |
|
199 | + return EEM_Question::instance()->get_all(array($_where, 'order_by' => array('QST_ID' => 'ASC'))); |
|
200 | + } |
|
201 | + |
|
202 | + |
|
203 | + /** |
|
204 | + * Gets all events which are related to this question group |
|
205 | + * |
|
206 | + * @return EE_Event[] |
|
207 | + */ |
|
208 | + public function events() |
|
209 | + { |
|
210 | + return $this->get_many_related('Event'); |
|
211 | + } |
|
212 | + |
|
213 | + |
|
214 | + /** |
|
215 | + * Adds the question to this question group |
|
216 | + * |
|
217 | + * @param EE_Question || int $question object or ID |
|
218 | + * @return boolean if successful |
|
219 | + */ |
|
220 | + public function add_question($questionObjectOrID) |
|
221 | + { |
|
222 | + return $this->_add_relation_to($questionObjectOrID, 'Question'); |
|
223 | + } |
|
224 | + |
|
225 | + |
|
226 | + /** |
|
227 | + * Removes the question from this question group |
|
228 | + * |
|
229 | + * @param EE_Question || int $question object or ID |
|
230 | + * @return boolean of success |
|
231 | + */ |
|
232 | + public function remove_question($questionObjectOrID) |
|
233 | + { |
|
234 | + return $this->_remove_relation_to($questionObjectOrID, 'Question'); |
|
235 | + } |
|
236 | + |
|
237 | + |
|
238 | + /** |
|
239 | + * @param $questionObjectOrID |
|
240 | + * @param $qst_order |
|
241 | + * @return int |
|
242 | + */ |
|
243 | + public function update_question_order($questionObjectOrID, $qst_order) |
|
244 | + { |
|
245 | + $qst_ID = $questionObjectOrID instanceof EE_Question ? $questionObjectOrID->ID() : (int) $questionObjectOrID; |
|
246 | + return EEM_Question_Group_Question::instance()->update( |
|
247 | + array('QGQ_order' => $qst_order), |
|
248 | + array( |
|
249 | + array( |
|
250 | + 'QST_ID' => $qst_ID, |
|
251 | + 'QSG_ID' => $this->ID(), |
|
252 | + ), |
|
253 | + ) |
|
254 | + ); |
|
255 | + } |
|
256 | + |
|
257 | + |
|
258 | + /** |
|
259 | + * Basically this is method just returns whether the question group has any questions with answers. This is used |
|
260 | + * by the admin currently to determine whether we should display the ui for deleting permanently or not b/c |
|
261 | + * question groups with questions that have answers should not be possible to delete permanently |
|
262 | + * |
|
263 | + * @return boolean true if has questions with answers, false if not. |
|
264 | + */ |
|
265 | + public function has_questions_with_answers() |
|
266 | + { |
|
267 | + $has_answers = false; |
|
268 | + $questions = $this->get_many_related('Question'); |
|
269 | + foreach ($questions as $question) { |
|
270 | + if ($question->count_related('Answer') > 0) { |
|
271 | + $has_answers = true; |
|
272 | + } |
|
273 | + } |
|
274 | + return $has_answers; |
|
275 | + } |
|
276 | + |
|
277 | + |
|
278 | + /** |
|
279 | + * The purpose of this method is set the question group order for this question group to be the max out of all |
|
280 | + * question groups |
|
281 | + * |
|
282 | + * @access public |
|
283 | + * @return void |
|
284 | + */ |
|
285 | + public function set_order_to_latest() |
|
286 | + { |
|
287 | + $latest_order = $this->get_model()->get_latest_question_group_order(); |
|
288 | + $latest_order++; |
|
289 | + $this->set('QSG_order', $latest_order); |
|
290 | + } |
|
291 | 291 | } |
@@ -11,86 +11,86 @@ |
||
11 | 11 | { |
12 | 12 | |
13 | 13 | |
14 | - /** |
|
15 | - * Used to reference when a registration has been checked out. |
|
16 | - * |
|
17 | - * @type int |
|
18 | - */ |
|
19 | - const status_checked_out = 0; |
|
20 | - |
|
21 | - /** |
|
22 | - * Used to reference when a registration has been checked in. |
|
23 | - * |
|
24 | - * @type int |
|
25 | - */ |
|
26 | - const status_checked_in = 1; |
|
27 | - |
|
28 | - /** |
|
29 | - * Used to reference when a registration has never been checked in. |
|
30 | - * |
|
31 | - * @type int |
|
32 | - */ |
|
33 | - const status_checked_never = 2; |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * |
|
38 | - * @param array $props_n_values incoming values |
|
39 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be used.) |
|
40 | - * @param array $date_formats incoming date_formats in an array |
|
41 | - * where the first value is the date_format |
|
42 | - * and the second value is the time format |
|
43 | - * @return EE_Checkin |
|
44 | - * @throws EE_Error |
|
45 | - */ |
|
46 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
47 | - { |
|
48 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
49 | - return $has_object |
|
50 | - ? $has_object |
|
51 | - : new self($props_n_values, false, $timezone, $date_formats); |
|
52 | - } |
|
53 | - |
|
54 | - |
|
55 | - /** |
|
56 | - * @param array $props_n_values incoming values from the database |
|
57 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
58 | - * the website will be used. |
|
59 | - * @return EE_Checkin |
|
60 | - * @throws EE_Error |
|
61 | - */ |
|
62 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
63 | - { |
|
64 | - return new self($props_n_values, true, $timezone); |
|
65 | - } |
|
66 | - |
|
67 | - |
|
68 | - public function ID() |
|
69 | - { |
|
70 | - return $this->get('CHK_ID'); |
|
71 | - } |
|
72 | - |
|
73 | - |
|
74 | - public function registration_id() |
|
75 | - { |
|
76 | - return $this->get('REG_ID'); |
|
77 | - } |
|
78 | - |
|
79 | - |
|
80 | - public function datetime_id() |
|
81 | - { |
|
82 | - return $this->get('DTT_ID'); |
|
83 | - } |
|
84 | - |
|
85 | - |
|
86 | - public function status() |
|
87 | - { |
|
88 | - return $this->get('CHK_in'); |
|
89 | - } |
|
90 | - |
|
91 | - |
|
92 | - public function timestamp() |
|
93 | - { |
|
94 | - return $this->get('CHK_timestamp'); |
|
95 | - } |
|
14 | + /** |
|
15 | + * Used to reference when a registration has been checked out. |
|
16 | + * |
|
17 | + * @type int |
|
18 | + */ |
|
19 | + const status_checked_out = 0; |
|
20 | + |
|
21 | + /** |
|
22 | + * Used to reference when a registration has been checked in. |
|
23 | + * |
|
24 | + * @type int |
|
25 | + */ |
|
26 | + const status_checked_in = 1; |
|
27 | + |
|
28 | + /** |
|
29 | + * Used to reference when a registration has never been checked in. |
|
30 | + * |
|
31 | + * @type int |
|
32 | + */ |
|
33 | + const status_checked_never = 2; |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * |
|
38 | + * @param array $props_n_values incoming values |
|
39 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be used.) |
|
40 | + * @param array $date_formats incoming date_formats in an array |
|
41 | + * where the first value is the date_format |
|
42 | + * and the second value is the time format |
|
43 | + * @return EE_Checkin |
|
44 | + * @throws EE_Error |
|
45 | + */ |
|
46 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
47 | + { |
|
48 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
49 | + return $has_object |
|
50 | + ? $has_object |
|
51 | + : new self($props_n_values, false, $timezone, $date_formats); |
|
52 | + } |
|
53 | + |
|
54 | + |
|
55 | + /** |
|
56 | + * @param array $props_n_values incoming values from the database |
|
57 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
58 | + * the website will be used. |
|
59 | + * @return EE_Checkin |
|
60 | + * @throws EE_Error |
|
61 | + */ |
|
62 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
63 | + { |
|
64 | + return new self($props_n_values, true, $timezone); |
|
65 | + } |
|
66 | + |
|
67 | + |
|
68 | + public function ID() |
|
69 | + { |
|
70 | + return $this->get('CHK_ID'); |
|
71 | + } |
|
72 | + |
|
73 | + |
|
74 | + public function registration_id() |
|
75 | + { |
|
76 | + return $this->get('REG_ID'); |
|
77 | + } |
|
78 | + |
|
79 | + |
|
80 | + public function datetime_id() |
|
81 | + { |
|
82 | + return $this->get('DTT_ID'); |
|
83 | + } |
|
84 | + |
|
85 | + |
|
86 | + public function status() |
|
87 | + { |
|
88 | + return $this->get('CHK_in'); |
|
89 | + } |
|
90 | + |
|
91 | + |
|
92 | + public function timestamp() |
|
93 | + { |
|
94 | + return $this->get('CHK_timestamp'); |
|
95 | + } |
|
96 | 96 | } |
@@ -12,180 +12,180 @@ |
||
12 | 12 | class EE_Currency extends EE_Base_Class |
13 | 13 | { |
14 | 14 | |
15 | - /** Currency COde @var CUR_code */ |
|
16 | - protected $_CUR_code = null; |
|
17 | - /** Currency Name Singular @var CUR_single */ |
|
18 | - protected $_CUR_single = null; |
|
19 | - /** Currency Name Plural @var CUR_plural */ |
|
20 | - protected $_CUR_plural = null; |
|
21 | - /** Currency Sign @var CUR_sign */ |
|
22 | - protected $_CUR_sign = null; |
|
23 | - /** Currency Decimal Places @var CUR_dec_plc */ |
|
24 | - protected $_CUR_dec_plc = null; |
|
25 | - /** Active? @var CUR_active */ |
|
26 | - protected $_CUR_active = null; |
|
27 | - protected $_Payment_Method; |
|
28 | - |
|
29 | - /** |
|
30 | - * |
|
31 | - * @param array $props_n_values incoming values |
|
32 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
33 | - * used.) |
|
34 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
35 | - * date_format and the second value is the time format |
|
36 | - * @return EE_Attendee |
|
37 | - */ |
|
38 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
39 | - { |
|
40 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
41 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
42 | - } |
|
43 | - |
|
44 | - |
|
45 | - /** |
|
46 | - * @param array $props_n_values incoming values from the database |
|
47 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
48 | - * the website will be used. |
|
49 | - * @return EE_Attendee |
|
50 | - */ |
|
51 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
52 | - { |
|
53 | - return new self($props_n_values, true, $timezone); |
|
54 | - } |
|
55 | - |
|
56 | - /** |
|
57 | - * Gets code |
|
58 | - * |
|
59 | - * @return string |
|
60 | - */ |
|
61 | - public function code() |
|
62 | - { |
|
63 | - return $this->get('CUR_code'); |
|
64 | - } |
|
65 | - |
|
66 | - /** |
|
67 | - * Sets code |
|
68 | - * |
|
69 | - * @param string $code |
|
70 | - * @return boolean |
|
71 | - */ |
|
72 | - public function set_code($code) |
|
73 | - { |
|
74 | - return $this->set('CUR_code', $code); |
|
75 | - } |
|
76 | - |
|
77 | - /** |
|
78 | - * Gets active |
|
79 | - * |
|
80 | - * @return boolean |
|
81 | - */ |
|
82 | - public function active() |
|
83 | - { |
|
84 | - return $this->get('CUR_active'); |
|
85 | - } |
|
86 | - |
|
87 | - /** |
|
88 | - * Sets active |
|
89 | - * |
|
90 | - * @param boolean $active |
|
91 | - * @return boolean |
|
92 | - */ |
|
93 | - public function set_active($active) |
|
94 | - { |
|
95 | - return $this->set('CUR_active', $active); |
|
96 | - } |
|
97 | - |
|
98 | - /** |
|
99 | - * Gets dec_plc |
|
100 | - * |
|
101 | - * @return int |
|
102 | - */ |
|
103 | - public function dec_plc() |
|
104 | - { |
|
105 | - return $this->get('CUR_dec_plc'); |
|
106 | - } |
|
107 | - |
|
108 | - /** |
|
109 | - * Sets dec_plc |
|
110 | - * |
|
111 | - * @param int $dec_plc |
|
112 | - * @return boolean |
|
113 | - */ |
|
114 | - public function set_dec_plc($dec_plc) |
|
115 | - { |
|
116 | - return $this->set('CUR_dec_plc', $dec_plc); |
|
117 | - } |
|
118 | - |
|
119 | - /** |
|
120 | - * Gets plural |
|
121 | - * |
|
122 | - * @return string |
|
123 | - */ |
|
124 | - public function plural_name() |
|
125 | - { |
|
126 | - return $this->get('CUR_plural'); |
|
127 | - } |
|
128 | - |
|
129 | - /** |
|
130 | - * Sets plural |
|
131 | - * |
|
132 | - * @param string $plural |
|
133 | - * @return boolean |
|
134 | - */ |
|
135 | - public function set_plural_name($plural) |
|
136 | - { |
|
137 | - return $this->set('CUR_plural', $plural); |
|
138 | - } |
|
139 | - |
|
140 | - /** |
|
141 | - * Gets sign |
|
142 | - * |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - public function sign() |
|
146 | - { |
|
147 | - return $this->get('CUR_sign'); |
|
148 | - } |
|
149 | - |
|
150 | - /** |
|
151 | - * Sets sign |
|
152 | - * |
|
153 | - * @param string $sign |
|
154 | - * @return boolean |
|
155 | - */ |
|
156 | - public function set_sign($sign) |
|
157 | - { |
|
158 | - return $this->set('CUR_sign', $sign); |
|
159 | - } |
|
160 | - |
|
161 | - /** |
|
162 | - * Gets single |
|
163 | - * |
|
164 | - * @return string |
|
165 | - */ |
|
166 | - public function singular_name() |
|
167 | - { |
|
168 | - return $this->get('CUR_single'); |
|
169 | - } |
|
170 | - |
|
171 | - /** |
|
172 | - * Sets single |
|
173 | - * |
|
174 | - * @param string $single |
|
175 | - * @return boolean |
|
176 | - */ |
|
177 | - public function set_singular_name($single) |
|
178 | - { |
|
179 | - return $this->set('CUR_single', $single); |
|
180 | - } |
|
181 | - |
|
182 | - /** |
|
183 | - * Gets a prettier name |
|
184 | - * |
|
185 | - * @return string |
|
186 | - */ |
|
187 | - public function name() |
|
188 | - { |
|
189 | - return sprintf(__("%s (%s)", "event_espresso"), $this->code(), $this->plural_name()); |
|
190 | - } |
|
15 | + /** Currency COde @var CUR_code */ |
|
16 | + protected $_CUR_code = null; |
|
17 | + /** Currency Name Singular @var CUR_single */ |
|
18 | + protected $_CUR_single = null; |
|
19 | + /** Currency Name Plural @var CUR_plural */ |
|
20 | + protected $_CUR_plural = null; |
|
21 | + /** Currency Sign @var CUR_sign */ |
|
22 | + protected $_CUR_sign = null; |
|
23 | + /** Currency Decimal Places @var CUR_dec_plc */ |
|
24 | + protected $_CUR_dec_plc = null; |
|
25 | + /** Active? @var CUR_active */ |
|
26 | + protected $_CUR_active = null; |
|
27 | + protected $_Payment_Method; |
|
28 | + |
|
29 | + /** |
|
30 | + * |
|
31 | + * @param array $props_n_values incoming values |
|
32 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
33 | + * used.) |
|
34 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
35 | + * date_format and the second value is the time format |
|
36 | + * @return EE_Attendee |
|
37 | + */ |
|
38 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
39 | + { |
|
40 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
41 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
42 | + } |
|
43 | + |
|
44 | + |
|
45 | + /** |
|
46 | + * @param array $props_n_values incoming values from the database |
|
47 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
48 | + * the website will be used. |
|
49 | + * @return EE_Attendee |
|
50 | + */ |
|
51 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
52 | + { |
|
53 | + return new self($props_n_values, true, $timezone); |
|
54 | + } |
|
55 | + |
|
56 | + /** |
|
57 | + * Gets code |
|
58 | + * |
|
59 | + * @return string |
|
60 | + */ |
|
61 | + public function code() |
|
62 | + { |
|
63 | + return $this->get('CUR_code'); |
|
64 | + } |
|
65 | + |
|
66 | + /** |
|
67 | + * Sets code |
|
68 | + * |
|
69 | + * @param string $code |
|
70 | + * @return boolean |
|
71 | + */ |
|
72 | + public function set_code($code) |
|
73 | + { |
|
74 | + return $this->set('CUR_code', $code); |
|
75 | + } |
|
76 | + |
|
77 | + /** |
|
78 | + * Gets active |
|
79 | + * |
|
80 | + * @return boolean |
|
81 | + */ |
|
82 | + public function active() |
|
83 | + { |
|
84 | + return $this->get('CUR_active'); |
|
85 | + } |
|
86 | + |
|
87 | + /** |
|
88 | + * Sets active |
|
89 | + * |
|
90 | + * @param boolean $active |
|
91 | + * @return boolean |
|
92 | + */ |
|
93 | + public function set_active($active) |
|
94 | + { |
|
95 | + return $this->set('CUR_active', $active); |
|
96 | + } |
|
97 | + |
|
98 | + /** |
|
99 | + * Gets dec_plc |
|
100 | + * |
|
101 | + * @return int |
|
102 | + */ |
|
103 | + public function dec_plc() |
|
104 | + { |
|
105 | + return $this->get('CUR_dec_plc'); |
|
106 | + } |
|
107 | + |
|
108 | + /** |
|
109 | + * Sets dec_plc |
|
110 | + * |
|
111 | + * @param int $dec_plc |
|
112 | + * @return boolean |
|
113 | + */ |
|
114 | + public function set_dec_plc($dec_plc) |
|
115 | + { |
|
116 | + return $this->set('CUR_dec_plc', $dec_plc); |
|
117 | + } |
|
118 | + |
|
119 | + /** |
|
120 | + * Gets plural |
|
121 | + * |
|
122 | + * @return string |
|
123 | + */ |
|
124 | + public function plural_name() |
|
125 | + { |
|
126 | + return $this->get('CUR_plural'); |
|
127 | + } |
|
128 | + |
|
129 | + /** |
|
130 | + * Sets plural |
|
131 | + * |
|
132 | + * @param string $plural |
|
133 | + * @return boolean |
|
134 | + */ |
|
135 | + public function set_plural_name($plural) |
|
136 | + { |
|
137 | + return $this->set('CUR_plural', $plural); |
|
138 | + } |
|
139 | + |
|
140 | + /** |
|
141 | + * Gets sign |
|
142 | + * |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + public function sign() |
|
146 | + { |
|
147 | + return $this->get('CUR_sign'); |
|
148 | + } |
|
149 | + |
|
150 | + /** |
|
151 | + * Sets sign |
|
152 | + * |
|
153 | + * @param string $sign |
|
154 | + * @return boolean |
|
155 | + */ |
|
156 | + public function set_sign($sign) |
|
157 | + { |
|
158 | + return $this->set('CUR_sign', $sign); |
|
159 | + } |
|
160 | + |
|
161 | + /** |
|
162 | + * Gets single |
|
163 | + * |
|
164 | + * @return string |
|
165 | + */ |
|
166 | + public function singular_name() |
|
167 | + { |
|
168 | + return $this->get('CUR_single'); |
|
169 | + } |
|
170 | + |
|
171 | + /** |
|
172 | + * Sets single |
|
173 | + * |
|
174 | + * @param string $single |
|
175 | + * @return boolean |
|
176 | + */ |
|
177 | + public function set_singular_name($single) |
|
178 | + { |
|
179 | + return $this->set('CUR_single', $single); |
|
180 | + } |
|
181 | + |
|
182 | + /** |
|
183 | + * Gets a prettier name |
|
184 | + * |
|
185 | + * @return string |
|
186 | + */ |
|
187 | + public function name() |
|
188 | + { |
|
189 | + return sprintf(__("%s (%s)", "event_espresso"), $this->code(), $this->plural_name()); |
|
190 | + } |
|
191 | 191 | } |
@@ -10,220 +10,220 @@ |
||
10 | 10 | class EE_Question_Option extends EE_Soft_Delete_Base_Class implements EEI_Duplicatable |
11 | 11 | { |
12 | 12 | |
13 | - /** |
|
14 | - * Question Option Opt Group Name |
|
15 | - * |
|
16 | - * @access protected |
|
17 | - * @var string |
|
18 | - */ |
|
19 | - protected $_QSO_opt_group = null; |
|
20 | - |
|
21 | - |
|
22 | - /** |
|
23 | - * |
|
24 | - * @param array $props_n_values incoming values |
|
25 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
26 | - * used.) |
|
27 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
28 | - * date_format and the second value is the time format |
|
29 | - * @return EE_Attendee |
|
30 | - */ |
|
31 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
32 | - { |
|
33 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
34 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
35 | - } |
|
36 | - |
|
37 | - |
|
38 | - /** |
|
39 | - * @param array $props_n_values incoming values from the database |
|
40 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
41 | - * the website will be used. |
|
42 | - * @return EE_Attendee |
|
43 | - */ |
|
44 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
45 | - { |
|
46 | - return new self($props_n_values, true, $timezone); |
|
47 | - } |
|
48 | - |
|
49 | - |
|
50 | - /** |
|
51 | - * Sets the option's key value |
|
52 | - * |
|
53 | - * @param string $value |
|
54 | - * @return bool success |
|
55 | - */ |
|
56 | - public function set_value($value) |
|
57 | - { |
|
58 | - $this->set('QSO_value', $value); |
|
59 | - } |
|
60 | - |
|
61 | - |
|
62 | - /** |
|
63 | - * Sets the option's Display Text |
|
64 | - * |
|
65 | - * @param string $text |
|
66 | - * @return bool success |
|
67 | - */ |
|
68 | - public function set_desc($text) |
|
69 | - { |
|
70 | - $this->set('QSO_desc', $text); |
|
71 | - } |
|
72 | - |
|
73 | - |
|
74 | - /** |
|
75 | - * Sets the order for this option |
|
76 | - * |
|
77 | - * @access public |
|
78 | - * @param integer $order |
|
79 | - * @return bool $success |
|
80 | - */ |
|
81 | - public function set_order($order) |
|
82 | - { |
|
83 | - $this->set('QSO_order', $order); |
|
84 | - } |
|
85 | - |
|
86 | - |
|
87 | - /** |
|
88 | - * Sets the ID of the related question |
|
89 | - * |
|
90 | - * @param int $question_ID |
|
91 | - * @return bool success |
|
92 | - */ |
|
93 | - public function set_question_ID($question_ID) |
|
94 | - { |
|
95 | - $this->set('QST_ID', $question_ID); |
|
96 | - } |
|
97 | - |
|
98 | - |
|
99 | - /** |
|
100 | - * Sets the option's opt_group |
|
101 | - * |
|
102 | - * @param string $text |
|
103 | - * @return bool success |
|
104 | - */ |
|
105 | - public function set_opt_group($text) |
|
106 | - { |
|
107 | - return $this->_QSO_opt_group = $text; |
|
108 | - } |
|
109 | - |
|
110 | - |
|
111 | - /** |
|
112 | - * Gets the option's key value |
|
113 | - * |
|
114 | - * @return string |
|
115 | - */ |
|
116 | - public function value() |
|
117 | - { |
|
118 | - return $this->get('QSO_value'); |
|
119 | - } |
|
120 | - |
|
121 | - |
|
122 | - /** |
|
123 | - * Gets the option's display text |
|
124 | - * |
|
125 | - * @return string |
|
126 | - */ |
|
127 | - public function desc() |
|
128 | - { |
|
129 | - return $this->get('QSO_desc'); |
|
130 | - } |
|
131 | - |
|
132 | - |
|
133 | - /** |
|
134 | - * Returns whether this option has been deleted or not |
|
135 | - * |
|
136 | - * @return boolean |
|
137 | - */ |
|
138 | - public function deleted() |
|
139 | - { |
|
140 | - return $this->get('QSO_deleted'); |
|
141 | - } |
|
142 | - |
|
143 | - |
|
144 | - /** |
|
145 | - * Returns the order or the Question Option |
|
146 | - * |
|
147 | - * @access public |
|
148 | - * @return integer |
|
149 | - */ |
|
150 | - public function order() |
|
151 | - { |
|
152 | - return $this->get('QSO_option'); |
|
153 | - } |
|
154 | - |
|
155 | - |
|
156 | - /** |
|
157 | - * Gets the related question's ID |
|
158 | - * |
|
159 | - * @return int |
|
160 | - */ |
|
161 | - public function question_ID() |
|
162 | - { |
|
163 | - return $this->get('QST_ID'); |
|
164 | - } |
|
165 | - |
|
166 | - |
|
167 | - /** |
|
168 | - * Returns the question related to this question option |
|
169 | - * |
|
170 | - * @return EE_Question |
|
171 | - */ |
|
172 | - public function question() |
|
173 | - { |
|
174 | - return $this->get_first_related('Question'); |
|
175 | - } |
|
176 | - |
|
177 | - |
|
178 | - /** |
|
179 | - * Gets the option's opt_group |
|
180 | - * |
|
181 | - * @return string |
|
182 | - */ |
|
183 | - public function opt_group() |
|
184 | - { |
|
185 | - return $this->_QSO_opt_group; |
|
186 | - } |
|
187 | - |
|
188 | - /** |
|
189 | - * Duplicates this question option. By default the new question option will be for the same question, |
|
190 | - * but that can be overriden by setting the 'QST_ID' option |
|
191 | - * |
|
192 | - * @param array $options { |
|
193 | - * @type int $QST_ID the QST_ID attribute of this question option, otherwise it will be for the same question |
|
194 | - * as the original |
|
195 | - */ |
|
196 | - public function duplicate($options = array()) |
|
197 | - { |
|
198 | - $new_question_option = clone $this; |
|
199 | - $new_question_option->set('QSO_ID', null); |
|
200 | - if (array_key_exists( |
|
201 | - 'QST_ID', |
|
202 | - $options |
|
203 | - )) {// use array_key_exists instead of isset because NULL might be a valid value |
|
204 | - $new_question_option->set_question_ID($options['QST_ID']); |
|
205 | - } |
|
206 | - $new_question_option->save(); |
|
207 | - } |
|
208 | - |
|
209 | - /** |
|
210 | - * Gets the QSO_system value |
|
211 | - * |
|
212 | - * @return string|null |
|
213 | - */ |
|
214 | - public function system() |
|
215 | - { |
|
216 | - return $this->get('QSO_system'); |
|
217 | - } |
|
218 | - |
|
219 | - /** |
|
220 | - * Sets QSO_system |
|
221 | - * |
|
222 | - * @param string $QSO_system |
|
223 | - * @return bool |
|
224 | - */ |
|
225 | - public function set_system($QSO_system) |
|
226 | - { |
|
227 | - return $this->set('QSO_system', $QSO_system); |
|
228 | - } |
|
13 | + /** |
|
14 | + * Question Option Opt Group Name |
|
15 | + * |
|
16 | + * @access protected |
|
17 | + * @var string |
|
18 | + */ |
|
19 | + protected $_QSO_opt_group = null; |
|
20 | + |
|
21 | + |
|
22 | + /** |
|
23 | + * |
|
24 | + * @param array $props_n_values incoming values |
|
25 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
26 | + * used.) |
|
27 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
28 | + * date_format and the second value is the time format |
|
29 | + * @return EE_Attendee |
|
30 | + */ |
|
31 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
32 | + { |
|
33 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
34 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
35 | + } |
|
36 | + |
|
37 | + |
|
38 | + /** |
|
39 | + * @param array $props_n_values incoming values from the database |
|
40 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
41 | + * the website will be used. |
|
42 | + * @return EE_Attendee |
|
43 | + */ |
|
44 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
45 | + { |
|
46 | + return new self($props_n_values, true, $timezone); |
|
47 | + } |
|
48 | + |
|
49 | + |
|
50 | + /** |
|
51 | + * Sets the option's key value |
|
52 | + * |
|
53 | + * @param string $value |
|
54 | + * @return bool success |
|
55 | + */ |
|
56 | + public function set_value($value) |
|
57 | + { |
|
58 | + $this->set('QSO_value', $value); |
|
59 | + } |
|
60 | + |
|
61 | + |
|
62 | + /** |
|
63 | + * Sets the option's Display Text |
|
64 | + * |
|
65 | + * @param string $text |
|
66 | + * @return bool success |
|
67 | + */ |
|
68 | + public function set_desc($text) |
|
69 | + { |
|
70 | + $this->set('QSO_desc', $text); |
|
71 | + } |
|
72 | + |
|
73 | + |
|
74 | + /** |
|
75 | + * Sets the order for this option |
|
76 | + * |
|
77 | + * @access public |
|
78 | + * @param integer $order |
|
79 | + * @return bool $success |
|
80 | + */ |
|
81 | + public function set_order($order) |
|
82 | + { |
|
83 | + $this->set('QSO_order', $order); |
|
84 | + } |
|
85 | + |
|
86 | + |
|
87 | + /** |
|
88 | + * Sets the ID of the related question |
|
89 | + * |
|
90 | + * @param int $question_ID |
|
91 | + * @return bool success |
|
92 | + */ |
|
93 | + public function set_question_ID($question_ID) |
|
94 | + { |
|
95 | + $this->set('QST_ID', $question_ID); |
|
96 | + } |
|
97 | + |
|
98 | + |
|
99 | + /** |
|
100 | + * Sets the option's opt_group |
|
101 | + * |
|
102 | + * @param string $text |
|
103 | + * @return bool success |
|
104 | + */ |
|
105 | + public function set_opt_group($text) |
|
106 | + { |
|
107 | + return $this->_QSO_opt_group = $text; |
|
108 | + } |
|
109 | + |
|
110 | + |
|
111 | + /** |
|
112 | + * Gets the option's key value |
|
113 | + * |
|
114 | + * @return string |
|
115 | + */ |
|
116 | + public function value() |
|
117 | + { |
|
118 | + return $this->get('QSO_value'); |
|
119 | + } |
|
120 | + |
|
121 | + |
|
122 | + /** |
|
123 | + * Gets the option's display text |
|
124 | + * |
|
125 | + * @return string |
|
126 | + */ |
|
127 | + public function desc() |
|
128 | + { |
|
129 | + return $this->get('QSO_desc'); |
|
130 | + } |
|
131 | + |
|
132 | + |
|
133 | + /** |
|
134 | + * Returns whether this option has been deleted or not |
|
135 | + * |
|
136 | + * @return boolean |
|
137 | + */ |
|
138 | + public function deleted() |
|
139 | + { |
|
140 | + return $this->get('QSO_deleted'); |
|
141 | + } |
|
142 | + |
|
143 | + |
|
144 | + /** |
|
145 | + * Returns the order or the Question Option |
|
146 | + * |
|
147 | + * @access public |
|
148 | + * @return integer |
|
149 | + */ |
|
150 | + public function order() |
|
151 | + { |
|
152 | + return $this->get('QSO_option'); |
|
153 | + } |
|
154 | + |
|
155 | + |
|
156 | + /** |
|
157 | + * Gets the related question's ID |
|
158 | + * |
|
159 | + * @return int |
|
160 | + */ |
|
161 | + public function question_ID() |
|
162 | + { |
|
163 | + return $this->get('QST_ID'); |
|
164 | + } |
|
165 | + |
|
166 | + |
|
167 | + /** |
|
168 | + * Returns the question related to this question option |
|
169 | + * |
|
170 | + * @return EE_Question |
|
171 | + */ |
|
172 | + public function question() |
|
173 | + { |
|
174 | + return $this->get_first_related('Question'); |
|
175 | + } |
|
176 | + |
|
177 | + |
|
178 | + /** |
|
179 | + * Gets the option's opt_group |
|
180 | + * |
|
181 | + * @return string |
|
182 | + */ |
|
183 | + public function opt_group() |
|
184 | + { |
|
185 | + return $this->_QSO_opt_group; |
|
186 | + } |
|
187 | + |
|
188 | + /** |
|
189 | + * Duplicates this question option. By default the new question option will be for the same question, |
|
190 | + * but that can be overriden by setting the 'QST_ID' option |
|
191 | + * |
|
192 | + * @param array $options { |
|
193 | + * @type int $QST_ID the QST_ID attribute of this question option, otherwise it will be for the same question |
|
194 | + * as the original |
|
195 | + */ |
|
196 | + public function duplicate($options = array()) |
|
197 | + { |
|
198 | + $new_question_option = clone $this; |
|
199 | + $new_question_option->set('QSO_ID', null); |
|
200 | + if (array_key_exists( |
|
201 | + 'QST_ID', |
|
202 | + $options |
|
203 | + )) {// use array_key_exists instead of isset because NULL might be a valid value |
|
204 | + $new_question_option->set_question_ID($options['QST_ID']); |
|
205 | + } |
|
206 | + $new_question_option->save(); |
|
207 | + } |
|
208 | + |
|
209 | + /** |
|
210 | + * Gets the QSO_system value |
|
211 | + * |
|
212 | + * @return string|null |
|
213 | + */ |
|
214 | + public function system() |
|
215 | + { |
|
216 | + return $this->get('QSO_system'); |
|
217 | + } |
|
218 | + |
|
219 | + /** |
|
220 | + * Sets QSO_system |
|
221 | + * |
|
222 | + * @param string $QSO_system |
|
223 | + * @return bool |
|
224 | + */ |
|
225 | + public function set_system($QSO_system) |
|
226 | + { |
|
227 | + return $this->set('QSO_system', $QSO_system); |
|
228 | + } |
|
229 | 229 | } |
@@ -11,578 +11,578 @@ |
||
11 | 11 | class EE_Payment_Method extends EE_Base_Class |
12 | 12 | { |
13 | 13 | |
14 | - /** |
|
15 | - * Payment Method type object, which has all the info about this type of payment method, |
|
16 | - * including functions for processing payments, to get settings forms, etc. |
|
17 | - * |
|
18 | - * @var EE_PMT_Base |
|
19 | - */ |
|
20 | - protected $_type_obj; |
|
21 | - |
|
22 | - |
|
23 | - /** |
|
24 | - * @param array $props_n_values |
|
25 | - * @return EE_Payment_Method |
|
26 | - * @throws \EE_Error |
|
27 | - */ |
|
28 | - public static function new_instance($props_n_values = array()) |
|
29 | - { |
|
30 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
31 | - return $has_object ? $has_object : new self($props_n_values, false); |
|
32 | - } |
|
33 | - |
|
34 | - |
|
35 | - /** |
|
36 | - * @param array $props_n_values |
|
37 | - * @return EE_Payment_Method |
|
38 | - * @throws \EE_Error |
|
39 | - */ |
|
40 | - public static function new_instance_from_db($props_n_values = array()) |
|
41 | - { |
|
42 | - return new self($props_n_values, true); |
|
43 | - } |
|
44 | - |
|
45 | - |
|
46 | - |
|
47 | - /** |
|
48 | - * Checks if there is a payment method class of the given 'PMD_type', and if so returns the classname. |
|
49 | - * Otherwise returns a normal EE_Payment_Method |
|
50 | - * |
|
51 | - * @param array $props_n_values where 'PMD_type' is a gateway name like 'Paypal_Standard','Invoice',etc (basically |
|
52 | - * the classname minus 'EEPM_') |
|
53 | - * @return string |
|
54 | - */ |
|
55 | - // private static function _payment_method_type($props_n_values) |
|
56 | - // { |
|
57 | - // EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
58 | - // $type_string = isset($props_n_values['PMD_type']) ? $props_n_values['PMD_type'] : null; |
|
59 | - // if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($type_string)) { |
|
60 | - // return 'EEPM_' . $type_string; |
|
61 | - // } else { |
|
62 | - // return __CLASS__; |
|
63 | - // } |
|
64 | - // } |
|
65 | - |
|
66 | - |
|
67 | - /** |
|
68 | - * Gets whether this payment method can be used anywhere at all (ie frontend cart, admin, etc) |
|
69 | - * |
|
70 | - * @return boolean |
|
71 | - */ |
|
72 | - public function active() |
|
73 | - { |
|
74 | - return array_intersect(array_keys(EEM_Payment_Method::instance()->scopes()), $this->scope()); |
|
75 | - } |
|
76 | - |
|
77 | - |
|
78 | - /** |
|
79 | - * Sets this PM as active by making it usable within the CART scope. Offline gateways |
|
80 | - * are also usable from the admin-scope as well. DOES NOT SAVE it |
|
81 | - * |
|
82 | - * @throws \EE_Error |
|
83 | - */ |
|
84 | - public function set_active() |
|
85 | - { |
|
86 | - $default_scopes = array(EEM_Payment_Method::scope_cart); |
|
87 | - if ($this->type_obj() && |
|
88 | - $this->type_obj()->payment_occurs() === EE_PMT_Base::offline) { |
|
89 | - $default_scopes[] = EEM_Payment_Method::scope_admin; |
|
90 | - } |
|
91 | - $this->set_scope($default_scopes); |
|
92 | - } |
|
93 | - |
|
94 | - |
|
95 | - /** |
|
96 | - * Makes this payment method apply to NO scopes at all. DOES NOT SAVE it. |
|
97 | - */ |
|
98 | - public function deactivate() |
|
99 | - { |
|
100 | - $this->set_scope(array()); |
|
101 | - } |
|
102 | - |
|
103 | - |
|
104 | - /** |
|
105 | - * Gets button_url |
|
106 | - * |
|
107 | - * @return string |
|
108 | - */ |
|
109 | - public function button_url() |
|
110 | - { |
|
111 | - return $this->get('PMD_button_url'); |
|
112 | - } |
|
113 | - |
|
114 | - |
|
115 | - /** |
|
116 | - * Sets button_url |
|
117 | - * |
|
118 | - * @param string $button_url |
|
119 | - */ |
|
120 | - public function set_button_url($button_url) |
|
121 | - { |
|
122 | - $this->set('PMD_button_url', $button_url); |
|
123 | - } |
|
124 | - |
|
125 | - |
|
126 | - /** |
|
127 | - * Gets debug_mode |
|
128 | - * |
|
129 | - * @return boolean |
|
130 | - */ |
|
131 | - public function debug_mode() |
|
132 | - { |
|
133 | - return $this->get('PMD_debug_mode'); |
|
134 | - } |
|
135 | - |
|
136 | - |
|
137 | - /** |
|
138 | - * Sets debug_mode |
|
139 | - * |
|
140 | - * @param boolean $debug_mode |
|
141 | - */ |
|
142 | - public function set_debug_mode($debug_mode) |
|
143 | - { |
|
144 | - $this->set('PMD_debug_mode', $debug_mode); |
|
145 | - } |
|
146 | - |
|
147 | - |
|
148 | - /** |
|
149 | - * Gets description |
|
150 | - * |
|
151 | - * @return string |
|
152 | - */ |
|
153 | - public function description() |
|
154 | - { |
|
155 | - return $this->get('PMD_desc'); |
|
156 | - } |
|
157 | - |
|
158 | - |
|
159 | - /** |
|
160 | - * Sets description |
|
161 | - * |
|
162 | - * @param string $description |
|
163 | - */ |
|
164 | - public function set_description($description) |
|
165 | - { |
|
166 | - $this->set('PMD_desc', $description); |
|
167 | - } |
|
168 | - |
|
169 | - |
|
170 | - /** |
|
171 | - * Gets name |
|
172 | - * |
|
173 | - * @return string |
|
174 | - */ |
|
175 | - public function name() |
|
176 | - { |
|
177 | - return $this->get('PMD_name'); |
|
178 | - } |
|
179 | - |
|
180 | - |
|
181 | - /** |
|
182 | - * Sets name |
|
183 | - * |
|
184 | - * @param string $name |
|
185 | - */ |
|
186 | - public function set_name($name) |
|
187 | - { |
|
188 | - $this->set('PMD_name', $name); |
|
189 | - } |
|
190 | - |
|
191 | - |
|
192 | - /** |
|
193 | - * Gets open_by_default |
|
194 | - * |
|
195 | - * @return boolean |
|
196 | - */ |
|
197 | - public function open_by_default() |
|
198 | - { |
|
199 | - return $this->get('PMD_open_by_default'); |
|
200 | - } |
|
201 | - |
|
202 | - |
|
203 | - /** |
|
204 | - * Sets open_by_default |
|
205 | - * |
|
206 | - * @param boolean $open_by_default |
|
207 | - */ |
|
208 | - public function set_open_by_default($open_by_default) |
|
209 | - { |
|
210 | - $this->set('PMD_open_by_default', $open_by_default); |
|
211 | - } |
|
212 | - |
|
213 | - |
|
214 | - /** |
|
215 | - * Gets order |
|
216 | - * |
|
217 | - * @return int |
|
218 | - */ |
|
219 | - public function order() |
|
220 | - { |
|
221 | - return $this->get('PMD_order'); |
|
222 | - } |
|
223 | - |
|
224 | - |
|
225 | - /** |
|
226 | - * Sets order |
|
227 | - * |
|
228 | - * @param int $order |
|
229 | - */ |
|
230 | - public function set_order($order) |
|
231 | - { |
|
232 | - $this->set('PMD_order', $order); |
|
233 | - } |
|
234 | - |
|
235 | - |
|
236 | - /** |
|
237 | - * Gets slug |
|
238 | - * |
|
239 | - * @return string |
|
240 | - */ |
|
241 | - public function slug() |
|
242 | - { |
|
243 | - return $this->get('PMD_slug'); |
|
244 | - } |
|
245 | - |
|
246 | - |
|
247 | - /** |
|
248 | - * Sets slug |
|
249 | - * |
|
250 | - * @param string $slug |
|
251 | - */ |
|
252 | - public function set_slug($slug) |
|
253 | - { |
|
254 | - $this->set('PMD_slug', $slug); |
|
255 | - } |
|
256 | - |
|
257 | - |
|
258 | - /** |
|
259 | - * Gets type |
|
260 | - * |
|
261 | - * @return string |
|
262 | - */ |
|
263 | - public function type() |
|
264 | - { |
|
265 | - return $this->get('PMD_type'); |
|
266 | - } |
|
267 | - |
|
268 | - |
|
269 | - /** |
|
270 | - * Sets type |
|
271 | - * |
|
272 | - * @param string $type |
|
273 | - */ |
|
274 | - public function set_type($type) |
|
275 | - { |
|
276 | - $this->set('PMD_type', $type); |
|
277 | - } |
|
278 | - |
|
279 | - |
|
280 | - /** |
|
281 | - * Gets wp_user |
|
282 | - * |
|
283 | - * @return int |
|
284 | - */ |
|
285 | - public function wp_user() |
|
286 | - { |
|
287 | - return $this->get('PMD_wp_user'); |
|
288 | - } |
|
289 | - |
|
290 | - |
|
291 | - /** |
|
292 | - * Sets wp_user |
|
293 | - * |
|
294 | - * @param int $wp_user_id |
|
295 | - */ |
|
296 | - public function set_wp_user($wp_user_id) |
|
297 | - { |
|
298 | - $this->set('PMD_wp_user', $wp_user_id); |
|
299 | - } |
|
300 | - |
|
301 | - /** |
|
302 | - * Overrides parent so when PMD_type is changed we refresh the _type_obj |
|
303 | - * |
|
304 | - * @param string $field_name |
|
305 | - * @param mixed $field_value |
|
306 | - * @param boolean $use_default |
|
307 | - */ |
|
308 | - public function set($field_name, $field_value, $use_default = false) |
|
309 | - { |
|
310 | - if ($field_name === 'PMD_type') { |
|
311 | - // the type has probably changed, so forget about its old type object |
|
312 | - $this->_type_obj = null; |
|
313 | - } |
|
314 | - parent::set($field_name, $field_value, $use_default); |
|
315 | - } |
|
316 | - |
|
317 | - |
|
318 | - /** |
|
319 | - * Gets admin_name |
|
320 | - * |
|
321 | - * @return string |
|
322 | - */ |
|
323 | - public function admin_name() |
|
324 | - { |
|
325 | - return $this->get('PMD_admin_name'); |
|
326 | - } |
|
327 | - |
|
328 | - |
|
329 | - /** |
|
330 | - * Sets admin_name |
|
331 | - * |
|
332 | - * @param string $admin_name |
|
333 | - */ |
|
334 | - public function set_admin_name($admin_name) |
|
335 | - { |
|
336 | - $this->set('PMD_admin_name', $admin_name); |
|
337 | - } |
|
338 | - |
|
339 | - |
|
340 | - /** |
|
341 | - * Gets admin_desc |
|
342 | - * |
|
343 | - * @return string |
|
344 | - */ |
|
345 | - public function admin_desc() |
|
346 | - { |
|
347 | - return $this->get('PMD_admin_desc'); |
|
348 | - } |
|
349 | - |
|
350 | - |
|
351 | - /** |
|
352 | - * Sets admin_desc |
|
353 | - * |
|
354 | - * @param string $admin_desc |
|
355 | - */ |
|
356 | - public function set_admin_desc($admin_desc) |
|
357 | - { |
|
358 | - $this->set('PMD_admin_desc', $admin_desc); |
|
359 | - } |
|
360 | - |
|
361 | - |
|
362 | - /** |
|
363 | - * Gets scope |
|
364 | - * |
|
365 | - * @return array |
|
366 | - */ |
|
367 | - public function scope() |
|
368 | - { |
|
369 | - return $this->get('PMD_scope'); |
|
370 | - } |
|
371 | - |
|
372 | - |
|
373 | - /** |
|
374 | - * Sets scope |
|
375 | - * |
|
376 | - * @param array $scope |
|
377 | - */ |
|
378 | - public function set_scope($scope) |
|
379 | - { |
|
380 | - $this->set('PMD_scope', $scope); |
|
381 | - } |
|
382 | - |
|
383 | - |
|
384 | - /** |
|
385 | - * Gets the payment method type for this payment method instance |
|
386 | - * |
|
387 | - * @return EE_PMT_Base |
|
388 | - * @throws EE_Error |
|
389 | - */ |
|
390 | - public function type_obj() |
|
391 | - { |
|
392 | - if (! $this->_type_obj) { |
|
393 | - EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
394 | - if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($this->type())) { |
|
395 | - $class_name = EE_Payment_Method_Manager::instance()->payment_method_class_from_type($this->type()); |
|
396 | - if (! class_exists($class_name)) { |
|
397 | - throw new EE_Error( |
|
398 | - sprintf( |
|
399 | - __( |
|
400 | - 'An attempt to use the "%1$s" payment method failed, so it was deactivated.%2$sWas the "%1$s" Plugin recently deactivated? It can be reactivated on the %3$sPlugins Admin Page%4$s', |
|
401 | - 'event_espresso' |
|
402 | - ), |
|
403 | - $class_name, |
|
404 | - '<br />', |
|
405 | - '<a href="' . admin_url('plugins.php') . '">', |
|
406 | - '</a>' |
|
407 | - ) |
|
408 | - ); |
|
409 | - } |
|
410 | - $r = new ReflectionClass($class_name); |
|
411 | - $this->_type_obj = $r->newInstanceArgs(array($this)); |
|
412 | - } else { |
|
413 | - throw new EE_Error( |
|
414 | - sprintf( |
|
415 | - __( |
|
416 | - 'A payment method of type "%1$s" does not exist. Only ones existing are: %2$s', |
|
417 | - 'event_espresso' |
|
418 | - ), |
|
419 | - $this->type(), |
|
420 | - implode(',', EE_Payment_Method_Manager::instance()->payment_method_type_names()) |
|
421 | - ) |
|
422 | - ); |
|
423 | - } |
|
424 | - } |
|
425 | - return $this->_type_obj; |
|
426 | - } |
|
427 | - |
|
428 | - |
|
429 | - /** |
|
430 | - * Returns a simple array of key-value pairs combining the payment method's fields (without the 'PMD_' prefix) |
|
431 | - * and the extra meta. Mostly used for passing off ot gateways. * |
|
432 | - * |
|
433 | - * @return array |
|
434 | - */ |
|
435 | - public function settings_array() |
|
436 | - { |
|
437 | - $fields = $this->model_field_array(); |
|
438 | - $extra_meta = $this->all_extra_meta_array(); |
|
439 | - // remove the model's prefix from the fields |
|
440 | - $combined_settings_array = array(); |
|
441 | - foreach ($fields as $key => $value) { |
|
442 | - if (strpos($key, 'PMD_') === 0) { |
|
443 | - $key_sans_model_prefix = str_replace('PMD_', '', $key); |
|
444 | - $combined_settings_array [ $key_sans_model_prefix ] = $value; |
|
445 | - } |
|
446 | - } |
|
447 | - $combined_settings_array = array_merge($extra_meta, $combined_settings_array); |
|
448 | - return $combined_settings_array; |
|
449 | - } |
|
450 | - |
|
451 | - |
|
452 | - /** |
|
453 | - * Gets the HTML for displaying the payment method on a page. |
|
454 | - * |
|
455 | - * @param string $url |
|
456 | - * @param string $css_class |
|
457 | - * @return string of HTML for displaying the button |
|
458 | - * @throws \EE_Error |
|
459 | - */ |
|
460 | - public function button_html($url = '', $css_class = '') |
|
461 | - { |
|
462 | - $payment_occurs = $this->type_obj()->payment_occurs(); |
|
463 | - return ' |
|
14 | + /** |
|
15 | + * Payment Method type object, which has all the info about this type of payment method, |
|
16 | + * including functions for processing payments, to get settings forms, etc. |
|
17 | + * |
|
18 | + * @var EE_PMT_Base |
|
19 | + */ |
|
20 | + protected $_type_obj; |
|
21 | + |
|
22 | + |
|
23 | + /** |
|
24 | + * @param array $props_n_values |
|
25 | + * @return EE_Payment_Method |
|
26 | + * @throws \EE_Error |
|
27 | + */ |
|
28 | + public static function new_instance($props_n_values = array()) |
|
29 | + { |
|
30 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
31 | + return $has_object ? $has_object : new self($props_n_values, false); |
|
32 | + } |
|
33 | + |
|
34 | + |
|
35 | + /** |
|
36 | + * @param array $props_n_values |
|
37 | + * @return EE_Payment_Method |
|
38 | + * @throws \EE_Error |
|
39 | + */ |
|
40 | + public static function new_instance_from_db($props_n_values = array()) |
|
41 | + { |
|
42 | + return new self($props_n_values, true); |
|
43 | + } |
|
44 | + |
|
45 | + |
|
46 | + |
|
47 | + /** |
|
48 | + * Checks if there is a payment method class of the given 'PMD_type', and if so returns the classname. |
|
49 | + * Otherwise returns a normal EE_Payment_Method |
|
50 | + * |
|
51 | + * @param array $props_n_values where 'PMD_type' is a gateway name like 'Paypal_Standard','Invoice',etc (basically |
|
52 | + * the classname minus 'EEPM_') |
|
53 | + * @return string |
|
54 | + */ |
|
55 | + // private static function _payment_method_type($props_n_values) |
|
56 | + // { |
|
57 | + // EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
58 | + // $type_string = isset($props_n_values['PMD_type']) ? $props_n_values['PMD_type'] : null; |
|
59 | + // if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($type_string)) { |
|
60 | + // return 'EEPM_' . $type_string; |
|
61 | + // } else { |
|
62 | + // return __CLASS__; |
|
63 | + // } |
|
64 | + // } |
|
65 | + |
|
66 | + |
|
67 | + /** |
|
68 | + * Gets whether this payment method can be used anywhere at all (ie frontend cart, admin, etc) |
|
69 | + * |
|
70 | + * @return boolean |
|
71 | + */ |
|
72 | + public function active() |
|
73 | + { |
|
74 | + return array_intersect(array_keys(EEM_Payment_Method::instance()->scopes()), $this->scope()); |
|
75 | + } |
|
76 | + |
|
77 | + |
|
78 | + /** |
|
79 | + * Sets this PM as active by making it usable within the CART scope. Offline gateways |
|
80 | + * are also usable from the admin-scope as well. DOES NOT SAVE it |
|
81 | + * |
|
82 | + * @throws \EE_Error |
|
83 | + */ |
|
84 | + public function set_active() |
|
85 | + { |
|
86 | + $default_scopes = array(EEM_Payment_Method::scope_cart); |
|
87 | + if ($this->type_obj() && |
|
88 | + $this->type_obj()->payment_occurs() === EE_PMT_Base::offline) { |
|
89 | + $default_scopes[] = EEM_Payment_Method::scope_admin; |
|
90 | + } |
|
91 | + $this->set_scope($default_scopes); |
|
92 | + } |
|
93 | + |
|
94 | + |
|
95 | + /** |
|
96 | + * Makes this payment method apply to NO scopes at all. DOES NOT SAVE it. |
|
97 | + */ |
|
98 | + public function deactivate() |
|
99 | + { |
|
100 | + $this->set_scope(array()); |
|
101 | + } |
|
102 | + |
|
103 | + |
|
104 | + /** |
|
105 | + * Gets button_url |
|
106 | + * |
|
107 | + * @return string |
|
108 | + */ |
|
109 | + public function button_url() |
|
110 | + { |
|
111 | + return $this->get('PMD_button_url'); |
|
112 | + } |
|
113 | + |
|
114 | + |
|
115 | + /** |
|
116 | + * Sets button_url |
|
117 | + * |
|
118 | + * @param string $button_url |
|
119 | + */ |
|
120 | + public function set_button_url($button_url) |
|
121 | + { |
|
122 | + $this->set('PMD_button_url', $button_url); |
|
123 | + } |
|
124 | + |
|
125 | + |
|
126 | + /** |
|
127 | + * Gets debug_mode |
|
128 | + * |
|
129 | + * @return boolean |
|
130 | + */ |
|
131 | + public function debug_mode() |
|
132 | + { |
|
133 | + return $this->get('PMD_debug_mode'); |
|
134 | + } |
|
135 | + |
|
136 | + |
|
137 | + /** |
|
138 | + * Sets debug_mode |
|
139 | + * |
|
140 | + * @param boolean $debug_mode |
|
141 | + */ |
|
142 | + public function set_debug_mode($debug_mode) |
|
143 | + { |
|
144 | + $this->set('PMD_debug_mode', $debug_mode); |
|
145 | + } |
|
146 | + |
|
147 | + |
|
148 | + /** |
|
149 | + * Gets description |
|
150 | + * |
|
151 | + * @return string |
|
152 | + */ |
|
153 | + public function description() |
|
154 | + { |
|
155 | + return $this->get('PMD_desc'); |
|
156 | + } |
|
157 | + |
|
158 | + |
|
159 | + /** |
|
160 | + * Sets description |
|
161 | + * |
|
162 | + * @param string $description |
|
163 | + */ |
|
164 | + public function set_description($description) |
|
165 | + { |
|
166 | + $this->set('PMD_desc', $description); |
|
167 | + } |
|
168 | + |
|
169 | + |
|
170 | + /** |
|
171 | + * Gets name |
|
172 | + * |
|
173 | + * @return string |
|
174 | + */ |
|
175 | + public function name() |
|
176 | + { |
|
177 | + return $this->get('PMD_name'); |
|
178 | + } |
|
179 | + |
|
180 | + |
|
181 | + /** |
|
182 | + * Sets name |
|
183 | + * |
|
184 | + * @param string $name |
|
185 | + */ |
|
186 | + public function set_name($name) |
|
187 | + { |
|
188 | + $this->set('PMD_name', $name); |
|
189 | + } |
|
190 | + |
|
191 | + |
|
192 | + /** |
|
193 | + * Gets open_by_default |
|
194 | + * |
|
195 | + * @return boolean |
|
196 | + */ |
|
197 | + public function open_by_default() |
|
198 | + { |
|
199 | + return $this->get('PMD_open_by_default'); |
|
200 | + } |
|
201 | + |
|
202 | + |
|
203 | + /** |
|
204 | + * Sets open_by_default |
|
205 | + * |
|
206 | + * @param boolean $open_by_default |
|
207 | + */ |
|
208 | + public function set_open_by_default($open_by_default) |
|
209 | + { |
|
210 | + $this->set('PMD_open_by_default', $open_by_default); |
|
211 | + } |
|
212 | + |
|
213 | + |
|
214 | + /** |
|
215 | + * Gets order |
|
216 | + * |
|
217 | + * @return int |
|
218 | + */ |
|
219 | + public function order() |
|
220 | + { |
|
221 | + return $this->get('PMD_order'); |
|
222 | + } |
|
223 | + |
|
224 | + |
|
225 | + /** |
|
226 | + * Sets order |
|
227 | + * |
|
228 | + * @param int $order |
|
229 | + */ |
|
230 | + public function set_order($order) |
|
231 | + { |
|
232 | + $this->set('PMD_order', $order); |
|
233 | + } |
|
234 | + |
|
235 | + |
|
236 | + /** |
|
237 | + * Gets slug |
|
238 | + * |
|
239 | + * @return string |
|
240 | + */ |
|
241 | + public function slug() |
|
242 | + { |
|
243 | + return $this->get('PMD_slug'); |
|
244 | + } |
|
245 | + |
|
246 | + |
|
247 | + /** |
|
248 | + * Sets slug |
|
249 | + * |
|
250 | + * @param string $slug |
|
251 | + */ |
|
252 | + public function set_slug($slug) |
|
253 | + { |
|
254 | + $this->set('PMD_slug', $slug); |
|
255 | + } |
|
256 | + |
|
257 | + |
|
258 | + /** |
|
259 | + * Gets type |
|
260 | + * |
|
261 | + * @return string |
|
262 | + */ |
|
263 | + public function type() |
|
264 | + { |
|
265 | + return $this->get('PMD_type'); |
|
266 | + } |
|
267 | + |
|
268 | + |
|
269 | + /** |
|
270 | + * Sets type |
|
271 | + * |
|
272 | + * @param string $type |
|
273 | + */ |
|
274 | + public function set_type($type) |
|
275 | + { |
|
276 | + $this->set('PMD_type', $type); |
|
277 | + } |
|
278 | + |
|
279 | + |
|
280 | + /** |
|
281 | + * Gets wp_user |
|
282 | + * |
|
283 | + * @return int |
|
284 | + */ |
|
285 | + public function wp_user() |
|
286 | + { |
|
287 | + return $this->get('PMD_wp_user'); |
|
288 | + } |
|
289 | + |
|
290 | + |
|
291 | + /** |
|
292 | + * Sets wp_user |
|
293 | + * |
|
294 | + * @param int $wp_user_id |
|
295 | + */ |
|
296 | + public function set_wp_user($wp_user_id) |
|
297 | + { |
|
298 | + $this->set('PMD_wp_user', $wp_user_id); |
|
299 | + } |
|
300 | + |
|
301 | + /** |
|
302 | + * Overrides parent so when PMD_type is changed we refresh the _type_obj |
|
303 | + * |
|
304 | + * @param string $field_name |
|
305 | + * @param mixed $field_value |
|
306 | + * @param boolean $use_default |
|
307 | + */ |
|
308 | + public function set($field_name, $field_value, $use_default = false) |
|
309 | + { |
|
310 | + if ($field_name === 'PMD_type') { |
|
311 | + // the type has probably changed, so forget about its old type object |
|
312 | + $this->_type_obj = null; |
|
313 | + } |
|
314 | + parent::set($field_name, $field_value, $use_default); |
|
315 | + } |
|
316 | + |
|
317 | + |
|
318 | + /** |
|
319 | + * Gets admin_name |
|
320 | + * |
|
321 | + * @return string |
|
322 | + */ |
|
323 | + public function admin_name() |
|
324 | + { |
|
325 | + return $this->get('PMD_admin_name'); |
|
326 | + } |
|
327 | + |
|
328 | + |
|
329 | + /** |
|
330 | + * Sets admin_name |
|
331 | + * |
|
332 | + * @param string $admin_name |
|
333 | + */ |
|
334 | + public function set_admin_name($admin_name) |
|
335 | + { |
|
336 | + $this->set('PMD_admin_name', $admin_name); |
|
337 | + } |
|
338 | + |
|
339 | + |
|
340 | + /** |
|
341 | + * Gets admin_desc |
|
342 | + * |
|
343 | + * @return string |
|
344 | + */ |
|
345 | + public function admin_desc() |
|
346 | + { |
|
347 | + return $this->get('PMD_admin_desc'); |
|
348 | + } |
|
349 | + |
|
350 | + |
|
351 | + /** |
|
352 | + * Sets admin_desc |
|
353 | + * |
|
354 | + * @param string $admin_desc |
|
355 | + */ |
|
356 | + public function set_admin_desc($admin_desc) |
|
357 | + { |
|
358 | + $this->set('PMD_admin_desc', $admin_desc); |
|
359 | + } |
|
360 | + |
|
361 | + |
|
362 | + /** |
|
363 | + * Gets scope |
|
364 | + * |
|
365 | + * @return array |
|
366 | + */ |
|
367 | + public function scope() |
|
368 | + { |
|
369 | + return $this->get('PMD_scope'); |
|
370 | + } |
|
371 | + |
|
372 | + |
|
373 | + /** |
|
374 | + * Sets scope |
|
375 | + * |
|
376 | + * @param array $scope |
|
377 | + */ |
|
378 | + public function set_scope($scope) |
|
379 | + { |
|
380 | + $this->set('PMD_scope', $scope); |
|
381 | + } |
|
382 | + |
|
383 | + |
|
384 | + /** |
|
385 | + * Gets the payment method type for this payment method instance |
|
386 | + * |
|
387 | + * @return EE_PMT_Base |
|
388 | + * @throws EE_Error |
|
389 | + */ |
|
390 | + public function type_obj() |
|
391 | + { |
|
392 | + if (! $this->_type_obj) { |
|
393 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
394 | + if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($this->type())) { |
|
395 | + $class_name = EE_Payment_Method_Manager::instance()->payment_method_class_from_type($this->type()); |
|
396 | + if (! class_exists($class_name)) { |
|
397 | + throw new EE_Error( |
|
398 | + sprintf( |
|
399 | + __( |
|
400 | + 'An attempt to use the "%1$s" payment method failed, so it was deactivated.%2$sWas the "%1$s" Plugin recently deactivated? It can be reactivated on the %3$sPlugins Admin Page%4$s', |
|
401 | + 'event_espresso' |
|
402 | + ), |
|
403 | + $class_name, |
|
404 | + '<br />', |
|
405 | + '<a href="' . admin_url('plugins.php') . '">', |
|
406 | + '</a>' |
|
407 | + ) |
|
408 | + ); |
|
409 | + } |
|
410 | + $r = new ReflectionClass($class_name); |
|
411 | + $this->_type_obj = $r->newInstanceArgs(array($this)); |
|
412 | + } else { |
|
413 | + throw new EE_Error( |
|
414 | + sprintf( |
|
415 | + __( |
|
416 | + 'A payment method of type "%1$s" does not exist. Only ones existing are: %2$s', |
|
417 | + 'event_espresso' |
|
418 | + ), |
|
419 | + $this->type(), |
|
420 | + implode(',', EE_Payment_Method_Manager::instance()->payment_method_type_names()) |
|
421 | + ) |
|
422 | + ); |
|
423 | + } |
|
424 | + } |
|
425 | + return $this->_type_obj; |
|
426 | + } |
|
427 | + |
|
428 | + |
|
429 | + /** |
|
430 | + * Returns a simple array of key-value pairs combining the payment method's fields (without the 'PMD_' prefix) |
|
431 | + * and the extra meta. Mostly used for passing off ot gateways. * |
|
432 | + * |
|
433 | + * @return array |
|
434 | + */ |
|
435 | + public function settings_array() |
|
436 | + { |
|
437 | + $fields = $this->model_field_array(); |
|
438 | + $extra_meta = $this->all_extra_meta_array(); |
|
439 | + // remove the model's prefix from the fields |
|
440 | + $combined_settings_array = array(); |
|
441 | + foreach ($fields as $key => $value) { |
|
442 | + if (strpos($key, 'PMD_') === 0) { |
|
443 | + $key_sans_model_prefix = str_replace('PMD_', '', $key); |
|
444 | + $combined_settings_array [ $key_sans_model_prefix ] = $value; |
|
445 | + } |
|
446 | + } |
|
447 | + $combined_settings_array = array_merge($extra_meta, $combined_settings_array); |
|
448 | + return $combined_settings_array; |
|
449 | + } |
|
450 | + |
|
451 | + |
|
452 | + /** |
|
453 | + * Gets the HTML for displaying the payment method on a page. |
|
454 | + * |
|
455 | + * @param string $url |
|
456 | + * @param string $css_class |
|
457 | + * @return string of HTML for displaying the button |
|
458 | + * @throws \EE_Error |
|
459 | + */ |
|
460 | + public function button_html($url = '', $css_class = '') |
|
461 | + { |
|
462 | + $payment_occurs = $this->type_obj()->payment_occurs(); |
|
463 | + return ' |
|
464 | 464 | <div id="' |
465 | - . $this->slug() |
|
466 | - . '-payment-option-dv" class="' |
|
467 | - . $payment_occurs . '-payment-gateway reg-page-payment-option-dv' . $css_class . '"> |
|
465 | + . $this->slug() |
|
466 | + . '-payment-option-dv" class="' |
|
467 | + . $payment_occurs . '-payment-gateway reg-page-payment-option-dv' . $css_class . '"> |
|
468 | 468 | <a id="payment-gateway-button-' . $this->slug() |
469 | - . '" class="reg-page-payment-option-lnk" rel="' |
|
470 | - . $this->slug() . '" href="' . $url . '" > |
|
469 | + . '" class="reg-page-payment-option-lnk" rel="' |
|
470 | + . $this->slug() . '" href="' . $url . '" > |
|
471 | 471 | <img src="' . $this->button_url() . '" alt="' . sprintf( |
472 | - esc_attr__('Pay using %s', 'event_espresso'), |
|
473 | - $this->get_pretty('PMD_name', 'form_input') |
|
474 | - ) . '" /> |
|
472 | + esc_attr__('Pay using %s', 'event_espresso'), |
|
473 | + $this->get_pretty('PMD_name', 'form_input') |
|
474 | + ) . '" /> |
|
475 | 475 | </a> |
476 | 476 | </div> |
477 | 477 | '; |
478 | - } |
|
479 | - |
|
480 | - |
|
481 | - /** |
|
482 | - * Gets all the currencies which are an option for this payment method |
|
483 | - * (as defined by the gateway and the currently active currencies) |
|
484 | - * |
|
485 | - * @return EE_Currency[] |
|
486 | - * @throws \EE_Error |
|
487 | - */ |
|
488 | - public function get_all_usable_currencies() |
|
489 | - { |
|
490 | - return EEM_Currency::instance()->get_all_currencies_usable_by($this->type_obj()); |
|
491 | - } |
|
492 | - |
|
493 | - |
|
494 | - /** |
|
495 | - * Reports whether or not this payment method can be used for this payment method |
|
496 | - * |
|
497 | - * @param string $currency_code currency ID (code) |
|
498 | - * @return boolean |
|
499 | - * @throws \EE_Error |
|
500 | - */ |
|
501 | - public function usable_for_currency($currency_code) |
|
502 | - { |
|
503 | - foreach ($this->get_all_usable_currencies() as $currency_obj) { |
|
504 | - if ($currency_obj->ID() === $currency_code) { |
|
505 | - return true; |
|
506 | - } |
|
507 | - } |
|
508 | - return false; |
|
509 | - } |
|
510 | - |
|
511 | - |
|
512 | - /** |
|
513 | - * Returns TRUE if this payment method's gateway is an instance of EE_Onsite_Gateway |
|
514 | - * |
|
515 | - * @return bool |
|
516 | - * @throws \EE_Error |
|
517 | - */ |
|
518 | - public function is_on_site() |
|
519 | - { |
|
520 | - return $this->type_obj()->payment_occurs() === EE_PMT_Base::onsite; |
|
521 | - } |
|
522 | - |
|
523 | - |
|
524 | - /** |
|
525 | - * Returns TRUE if this payment method's gateway is an instance of EE_Offsite_Gateway |
|
526 | - * |
|
527 | - * @return bool |
|
528 | - * @throws \EE_Error |
|
529 | - */ |
|
530 | - public function is_off_site() |
|
531 | - { |
|
532 | - return $this->type_obj()->payment_occurs() === EE_PMT_Base::offsite; |
|
533 | - } |
|
534 | - |
|
535 | - |
|
536 | - /** |
|
537 | - * Returns TRUE if this payment method does not utilize a gateway |
|
538 | - * |
|
539 | - * @return bool |
|
540 | - * @throws \EE_Error |
|
541 | - */ |
|
542 | - public function is_off_line() |
|
543 | - { |
|
544 | - return $this->type_obj()->payment_occurs() === EE_PMT_Base::offline; |
|
545 | - } |
|
546 | - |
|
547 | - /** |
|
548 | - * Overrides default __sleep so the object type is NOT cached. |
|
549 | - * This way we can rely on the normal EE_Payment_Method::type_obj() logic |
|
550 | - * to load the required classes, and don't need them at the time of unserialization |
|
551 | - * |
|
552 | - * @return array |
|
553 | - */ |
|
554 | - public function __sleep() |
|
555 | - { |
|
556 | - $properties = get_object_vars($this); |
|
557 | - unset($properties['_type_obj']); |
|
558 | - return array_keys($properties); |
|
559 | - } |
|
560 | - |
|
561 | - |
|
562 | - /** |
|
563 | - * Overrides parent to add some logging for when payment methods get deactivated |
|
564 | - * |
|
565 | - * @param array $set_cols_n_values |
|
566 | - * @return int @see EE_Base_Class::save() |
|
567 | - * @throws \EE_Error |
|
568 | - */ |
|
569 | - public function save($set_cols_n_values = array()) |
|
570 | - { |
|
571 | - $results = parent::save($set_cols_n_values); |
|
572 | - if ($this->get_original('PMD_scope') !== $this->get('PMD_scope')) { |
|
573 | - EE_Log::instance()->log( |
|
574 | - __FILE__, |
|
575 | - __FUNCTION__, |
|
576 | - sprintf( |
|
577 | - __('Set new scope on payment method %1$s to %2$s from %3$s on URL %4$s', 'event_espresso'), |
|
578 | - $this->name(), |
|
579 | - serialize($this->get_original('PMD_scope')), |
|
580 | - serialize($this->get('PMD_scope')), |
|
581 | - EE_Registry::instance()->REQ->get_current_page_permalink() |
|
582 | - ), |
|
583 | - 'payment_method_change' |
|
584 | - ); |
|
585 | - } |
|
586 | - return $results; |
|
587 | - } |
|
478 | + } |
|
479 | + |
|
480 | + |
|
481 | + /** |
|
482 | + * Gets all the currencies which are an option for this payment method |
|
483 | + * (as defined by the gateway and the currently active currencies) |
|
484 | + * |
|
485 | + * @return EE_Currency[] |
|
486 | + * @throws \EE_Error |
|
487 | + */ |
|
488 | + public function get_all_usable_currencies() |
|
489 | + { |
|
490 | + return EEM_Currency::instance()->get_all_currencies_usable_by($this->type_obj()); |
|
491 | + } |
|
492 | + |
|
493 | + |
|
494 | + /** |
|
495 | + * Reports whether or not this payment method can be used for this payment method |
|
496 | + * |
|
497 | + * @param string $currency_code currency ID (code) |
|
498 | + * @return boolean |
|
499 | + * @throws \EE_Error |
|
500 | + */ |
|
501 | + public function usable_for_currency($currency_code) |
|
502 | + { |
|
503 | + foreach ($this->get_all_usable_currencies() as $currency_obj) { |
|
504 | + if ($currency_obj->ID() === $currency_code) { |
|
505 | + return true; |
|
506 | + } |
|
507 | + } |
|
508 | + return false; |
|
509 | + } |
|
510 | + |
|
511 | + |
|
512 | + /** |
|
513 | + * Returns TRUE if this payment method's gateway is an instance of EE_Onsite_Gateway |
|
514 | + * |
|
515 | + * @return bool |
|
516 | + * @throws \EE_Error |
|
517 | + */ |
|
518 | + public function is_on_site() |
|
519 | + { |
|
520 | + return $this->type_obj()->payment_occurs() === EE_PMT_Base::onsite; |
|
521 | + } |
|
522 | + |
|
523 | + |
|
524 | + /** |
|
525 | + * Returns TRUE if this payment method's gateway is an instance of EE_Offsite_Gateway |
|
526 | + * |
|
527 | + * @return bool |
|
528 | + * @throws \EE_Error |
|
529 | + */ |
|
530 | + public function is_off_site() |
|
531 | + { |
|
532 | + return $this->type_obj()->payment_occurs() === EE_PMT_Base::offsite; |
|
533 | + } |
|
534 | + |
|
535 | + |
|
536 | + /** |
|
537 | + * Returns TRUE if this payment method does not utilize a gateway |
|
538 | + * |
|
539 | + * @return bool |
|
540 | + * @throws \EE_Error |
|
541 | + */ |
|
542 | + public function is_off_line() |
|
543 | + { |
|
544 | + return $this->type_obj()->payment_occurs() === EE_PMT_Base::offline; |
|
545 | + } |
|
546 | + |
|
547 | + /** |
|
548 | + * Overrides default __sleep so the object type is NOT cached. |
|
549 | + * This way we can rely on the normal EE_Payment_Method::type_obj() logic |
|
550 | + * to load the required classes, and don't need them at the time of unserialization |
|
551 | + * |
|
552 | + * @return array |
|
553 | + */ |
|
554 | + public function __sleep() |
|
555 | + { |
|
556 | + $properties = get_object_vars($this); |
|
557 | + unset($properties['_type_obj']); |
|
558 | + return array_keys($properties); |
|
559 | + } |
|
560 | + |
|
561 | + |
|
562 | + /** |
|
563 | + * Overrides parent to add some logging for when payment methods get deactivated |
|
564 | + * |
|
565 | + * @param array $set_cols_n_values |
|
566 | + * @return int @see EE_Base_Class::save() |
|
567 | + * @throws \EE_Error |
|
568 | + */ |
|
569 | + public function save($set_cols_n_values = array()) |
|
570 | + { |
|
571 | + $results = parent::save($set_cols_n_values); |
|
572 | + if ($this->get_original('PMD_scope') !== $this->get('PMD_scope')) { |
|
573 | + EE_Log::instance()->log( |
|
574 | + __FILE__, |
|
575 | + __FUNCTION__, |
|
576 | + sprintf( |
|
577 | + __('Set new scope on payment method %1$s to %2$s from %3$s on URL %4$s', 'event_espresso'), |
|
578 | + $this->name(), |
|
579 | + serialize($this->get_original('PMD_scope')), |
|
580 | + serialize($this->get('PMD_scope')), |
|
581 | + EE_Registry::instance()->REQ->get_current_page_permalink() |
|
582 | + ), |
|
583 | + 'payment_method_change' |
|
584 | + ); |
|
585 | + } |
|
586 | + return $results; |
|
587 | + } |
|
588 | 588 | } |
@@ -389,11 +389,11 @@ discard block |
||
389 | 389 | */ |
390 | 390 | public function type_obj() |
391 | 391 | { |
392 | - if (! $this->_type_obj) { |
|
392 | + if ( ! $this->_type_obj) { |
|
393 | 393 | EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
394 | 394 | if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($this->type())) { |
395 | 395 | $class_name = EE_Payment_Method_Manager::instance()->payment_method_class_from_type($this->type()); |
396 | - if (! class_exists($class_name)) { |
|
396 | + if ( ! class_exists($class_name)) { |
|
397 | 397 | throw new EE_Error( |
398 | 398 | sprintf( |
399 | 399 | __( |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | ), |
403 | 403 | $class_name, |
404 | 404 | '<br />', |
405 | - '<a href="' . admin_url('plugins.php') . '">', |
|
405 | + '<a href="'.admin_url('plugins.php').'">', |
|
406 | 406 | '</a>' |
407 | 407 | ) |
408 | 408 | ); |
@@ -441,7 +441,7 @@ discard block |
||
441 | 441 | foreach ($fields as $key => $value) { |
442 | 442 | if (strpos($key, 'PMD_') === 0) { |
443 | 443 | $key_sans_model_prefix = str_replace('PMD_', '', $key); |
444 | - $combined_settings_array [ $key_sans_model_prefix ] = $value; |
|
444 | + $combined_settings_array [$key_sans_model_prefix] = $value; |
|
445 | 445 | } |
446 | 446 | } |
447 | 447 | $combined_settings_array = array_merge($extra_meta, $combined_settings_array); |
@@ -464,14 +464,14 @@ discard block |
||
464 | 464 | <div id="' |
465 | 465 | . $this->slug() |
466 | 466 | . '-payment-option-dv" class="' |
467 | - . $payment_occurs . '-payment-gateway reg-page-payment-option-dv' . $css_class . '"> |
|
467 | + . $payment_occurs.'-payment-gateway reg-page-payment-option-dv'.$css_class.'"> |
|
468 | 468 | <a id="payment-gateway-button-' . $this->slug() |
469 | 469 | . '" class="reg-page-payment-option-lnk" rel="' |
470 | - . $this->slug() . '" href="' . $url . '" > |
|
471 | - <img src="' . $this->button_url() . '" alt="' . sprintf( |
|
470 | + . $this->slug().'" href="'.$url.'" > |
|
471 | + <img src="' . $this->button_url().'" alt="'.sprintf( |
|
472 | 472 | esc_attr__('Pay using %s', 'event_espresso'), |
473 | 473 | $this->get_pretty('PMD_name', 'form_input') |
474 | - ) . '" /> |
|
474 | + ).'" /> |
|
475 | 475 | </a> |
476 | 476 | </div> |
477 | 477 | '; |
@@ -6,23 +6,23 @@ |
||
6 | 6 | class EE_Event_Venue extends EE_Base_Class |
7 | 7 | { |
8 | 8 | |
9 | - /** |
|
10 | - * @param array $props_n_values |
|
11 | - * @return EE_Event_Venue|mixed |
|
12 | - */ |
|
13 | - public static function new_instance($props_n_values = array()) |
|
14 | - { |
|
15 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
16 | - return $has_object ? $has_object : new self($props_n_values); |
|
17 | - } |
|
9 | + /** |
|
10 | + * @param array $props_n_values |
|
11 | + * @return EE_Event_Venue|mixed |
|
12 | + */ |
|
13 | + public static function new_instance($props_n_values = array()) |
|
14 | + { |
|
15 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
16 | + return $has_object ? $has_object : new self($props_n_values); |
|
17 | + } |
|
18 | 18 | |
19 | 19 | |
20 | - /** |
|
21 | - * @param array $props_n_values |
|
22 | - * @return EE_Event_Venue |
|
23 | - */ |
|
24 | - public static function new_instance_from_db($props_n_values = array()) |
|
25 | - { |
|
26 | - return new self($props_n_values, true); |
|
27 | - } |
|
20 | + /** |
|
21 | + * @param array $props_n_values |
|
22 | + * @return EE_Event_Venue |
|
23 | + */ |
|
24 | + public static function new_instance_from_db($props_n_values = array()) |
|
25 | + { |
|
26 | + return new self($props_n_values, true); |
|
27 | + } |
|
28 | 28 | } |
@@ -12,53 +12,53 @@ |
||
12 | 12 | { |
13 | 13 | |
14 | 14 | |
15 | - /** |
|
16 | - * Overrides parent _delete() so that we do soft deletes. |
|
17 | - * |
|
18 | - * @return bool|int |
|
19 | - */ |
|
20 | - protected function _delete() |
|
21 | - { |
|
22 | - return $this->delete_or_restore(); |
|
23 | - } |
|
15 | + /** |
|
16 | + * Overrides parent _delete() so that we do soft deletes. |
|
17 | + * |
|
18 | + * @return bool|int |
|
19 | + */ |
|
20 | + protected function _delete() |
|
21 | + { |
|
22 | + return $this->delete_or_restore(); |
|
23 | + } |
|
24 | 24 | |
25 | 25 | |
26 | - /** |
|
27 | - * Deletes or restores this object. |
|
28 | - * |
|
29 | - * @param bool $delete true=>delete, false=>restore |
|
30 | - * @return bool|int |
|
31 | - */ |
|
32 | - public function delete_or_restore($delete = true) |
|
33 | - { |
|
34 | - /** |
|
35 | - * Called just before trashing (soft delete) or restoring a trashed item. |
|
36 | - * |
|
37 | - * @param EE_Base_Class $model_object about to be trashed or restored |
|
38 | - * @param bool $delete true the item is being trashed, false the item is being restored. |
|
39 | - */ |
|
40 | - do_action('AHEE__EE_Soft_Delete_Base_Class__delete_or_restore__before', $this, $delete); |
|
41 | - $model = $this->get_model(); |
|
42 | - $result = $model->delete_or_restore_by_ID($delete, $this->ID()); |
|
43 | - /** |
|
44 | - * Called just after trashing (soft delete) or restoring a trashed item. |
|
45 | - * |
|
46 | - * @param EE_Base_Class $model_object that was just trashed or restored. |
|
47 | - * @param bool $delete true the item is being trashed, false the item is being restored. |
|
48 | - * @param bool|int $result |
|
49 | - */ |
|
50 | - do_action('AHEE__EE_Soft_Delete_Base_Class__delete_or_restore__after', $this, $delete, $result); |
|
51 | - return $result; |
|
52 | - } |
|
26 | + /** |
|
27 | + * Deletes or restores this object. |
|
28 | + * |
|
29 | + * @param bool $delete true=>delete, false=>restore |
|
30 | + * @return bool|int |
|
31 | + */ |
|
32 | + public function delete_or_restore($delete = true) |
|
33 | + { |
|
34 | + /** |
|
35 | + * Called just before trashing (soft delete) or restoring a trashed item. |
|
36 | + * |
|
37 | + * @param EE_Base_Class $model_object about to be trashed or restored |
|
38 | + * @param bool $delete true the item is being trashed, false the item is being restored. |
|
39 | + */ |
|
40 | + do_action('AHEE__EE_Soft_Delete_Base_Class__delete_or_restore__before', $this, $delete); |
|
41 | + $model = $this->get_model(); |
|
42 | + $result = $model->delete_or_restore_by_ID($delete, $this->ID()); |
|
43 | + /** |
|
44 | + * Called just after trashing (soft delete) or restoring a trashed item. |
|
45 | + * |
|
46 | + * @param EE_Base_Class $model_object that was just trashed or restored. |
|
47 | + * @param bool $delete true the item is being trashed, false the item is being restored. |
|
48 | + * @param bool|int $result |
|
49 | + */ |
|
50 | + do_action('AHEE__EE_Soft_Delete_Base_Class__delete_or_restore__after', $this, $delete, $result); |
|
51 | + return $result; |
|
52 | + } |
|
53 | 53 | |
54 | 54 | |
55 | - /** |
|
56 | - * Performs a restoration (un-deletes) this object |
|
57 | - * |
|
58 | - * @return bool|int |
|
59 | - */ |
|
60 | - public function restore() |
|
61 | - { |
|
62 | - return $this->delete_or_restore(false); |
|
63 | - } |
|
55 | + /** |
|
56 | + * Performs a restoration (un-deletes) this object |
|
57 | + * |
|
58 | + * @return bool|int |
|
59 | + */ |
|
60 | + public function restore() |
|
61 | + { |
|
62 | + return $this->delete_or_restore(false); |
|
63 | + } |
|
64 | 64 | } |
@@ -6,23 +6,23 @@ |
||
6 | 6 | class EE_Event_Question_Group extends EE_Base_Class |
7 | 7 | { |
8 | 8 | |
9 | - /** |
|
10 | - * @param array $props_n_values |
|
11 | - * @return EE_Event_Question_Group|mixed |
|
12 | - */ |
|
13 | - public static function new_instance($props_n_values = array()) |
|
14 | - { |
|
15 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
16 | - return $has_object ? $has_object : new self($props_n_values); |
|
17 | - } |
|
9 | + /** |
|
10 | + * @param array $props_n_values |
|
11 | + * @return EE_Event_Question_Group|mixed |
|
12 | + */ |
|
13 | + public static function new_instance($props_n_values = array()) |
|
14 | + { |
|
15 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
16 | + return $has_object ? $has_object : new self($props_n_values); |
|
17 | + } |
|
18 | 18 | |
19 | 19 | |
20 | - /** |
|
21 | - * @param array $props_n_values |
|
22 | - * @return EE_Event_Question_Group |
|
23 | - */ |
|
24 | - public static function new_instance_from_db($props_n_values = array()) |
|
25 | - { |
|
26 | - return new self($props_n_values, true); |
|
27 | - } |
|
20 | + /** |
|
21 | + * @param array $props_n_values |
|
22 | + * @return EE_Event_Question_Group |
|
23 | + */ |
|
24 | + public static function new_instance_from_db($props_n_values = array()) |
|
25 | + { |
|
26 | + return new self($props_n_values, true); |
|
27 | + } |
|
28 | 28 | } |