@@ -18,373 +18,373 @@ |
||
18 | 18 | abstract class TicketSelectorRow |
19 | 19 | { |
20 | 20 | |
21 | - /** |
|
22 | - * @var EE_Ticket $ticket |
|
23 | - */ |
|
24 | - protected $ticket; |
|
25 | - |
|
26 | - /** |
|
27 | - * @var int $total_tickets |
|
28 | - */ |
|
29 | - protected $total_tickets; |
|
30 | - |
|
31 | - /** |
|
32 | - * @var int $max_attendees |
|
33 | - */ |
|
34 | - protected $max_attendees; |
|
35 | - |
|
36 | - /** |
|
37 | - * @var string $date_format |
|
38 | - */ |
|
39 | - protected $date_format; |
|
40 | - |
|
41 | - /** |
|
42 | - * @var int $EVT_ID |
|
43 | - */ |
|
44 | - protected $EVT_ID; |
|
45 | - |
|
46 | - /** |
|
47 | - * @var string $event_status |
|
48 | - */ |
|
49 | - protected $event_status; |
|
50 | - |
|
51 | - /** |
|
52 | - * @var boolean $required_ticket_sold_out |
|
53 | - */ |
|
54 | - protected $required_ticket_sold_out; |
|
55 | - |
|
56 | - /** |
|
57 | - * @var string $ticket_status_display |
|
58 | - */ |
|
59 | - protected $ticket_status_display; |
|
60 | - |
|
61 | - /** |
|
62 | - * @var int $max |
|
63 | - */ |
|
64 | - protected $max = 0; |
|
65 | - |
|
66 | - /** |
|
67 | - * @var int $min |
|
68 | - */ |
|
69 | - protected $min = 0; |
|
70 | - |
|
71 | - /** |
|
72 | - * @var float $ticket_price |
|
73 | - */ |
|
74 | - protected $ticket_price = 0.00; |
|
75 | - |
|
76 | - /** |
|
77 | - * @var bool $ticket_bundle |
|
78 | - */ |
|
79 | - protected $ticket_bundle = false; |
|
80 | - |
|
81 | - /** |
|
82 | - * @var string $ticket_status_id |
|
83 | - */ |
|
84 | - protected $ticket_status_id = EE_Ticket::sold_out; |
|
85 | - |
|
86 | - /** |
|
87 | - * @var string $ticket_status_html |
|
88 | - */ |
|
89 | - protected $ticket_status_html = 'ticket-sales-sold-out'; |
|
90 | - |
|
91 | - /** |
|
92 | - * @var string $status_class |
|
93 | - */ |
|
94 | - protected $status_class = 'ticket-sales-sold-out lt-grey-text'; |
|
95 | - |
|
96 | - |
|
97 | - /** |
|
98 | - * @param EE_Ticket $ticket |
|
99 | - * @param int $max_attendees |
|
100 | - * @param string $date_format |
|
101 | - * @param string $event_status |
|
102 | - * @param bool $required_ticket_sold_out |
|
103 | - * @param int $total_tickets |
|
104 | - * @throws EE_Error |
|
105 | - * @throws UnexpectedEntityException |
|
106 | - */ |
|
107 | - public function __construct( |
|
108 | - EE_Ticket $ticket, |
|
109 | - $max_attendees, |
|
110 | - $date_format, |
|
111 | - $event_status, |
|
112 | - $required_ticket_sold_out = false, |
|
113 | - $total_tickets = 1 |
|
114 | - ) { |
|
115 | - $this->ticket = $ticket; |
|
116 | - $this->max_attendees = $max_attendees; |
|
117 | - $this->date_format = $date_format; |
|
118 | - $this->EVT_ID = $this->ticket->get_event_ID(); |
|
119 | - $this->event_status = $event_status; |
|
120 | - $this->required_ticket_sold_out = $required_ticket_sold_out; |
|
121 | - $this->total_tickets = $total_tickets; |
|
122 | - } |
|
123 | - |
|
124 | - |
|
125 | - /** |
|
126 | - * getTicketStatusClasses |
|
127 | - * |
|
128 | - * @param int $remaining |
|
129 | - * @return void |
|
130 | - * @throws EE_Error |
|
131 | - */ |
|
132 | - protected function setTicketStatusClasses($remaining = 0) |
|
133 | - { |
|
134 | - // if a previous required ticket with the same sale start date is sold out, |
|
135 | - // then mark this ticket as sold out as well. |
|
136 | - // tickets that go on sale at a later date than the required ticket will NOT be affected |
|
137 | - $this->ticket_status_id = $this->required_ticket_sold_out !== false |
|
138 | - && $this->required_ticket_sold_out === $this->ticket->start_date() |
|
139 | - ? EE_Ticket::sold_out |
|
140 | - : $this->ticket->ticket_status(); |
|
141 | - $this->ticket_status_id = $this->event_status === EE_Datetime::sold_out |
|
142 | - ? EE_Ticket::sold_out |
|
143 | - : $this->ticket_status_id; |
|
144 | - // If at admin area, display expired tickets as on sale. |
|
145 | - $this->ticket_status_id = is_admin() && $this->ticket_status_id === EE_Ticket::expired |
|
146 | - ? EE_Ticket::onsale |
|
147 | - : $this->ticket_status_id; |
|
148 | - // check ticket status |
|
149 | - switch ($this->ticket_status_id) { |
|
150 | - // sold_out |
|
151 | - case EE_Ticket::sold_out: |
|
152 | - $ticket_status_class = 'ticket-sales-sold-out'; |
|
153 | - $this->status_class = 'ticket-sales-sold-out lt-grey-text'; |
|
154 | - break; |
|
155 | - // expired |
|
156 | - case EE_Ticket::expired: |
|
157 | - $ticket_status_class = 'ticket-sales-expired'; |
|
158 | - $this->status_class = 'ticket-sales-expired lt-grey-text'; |
|
159 | - break; |
|
160 | - // archived |
|
161 | - case EE_Ticket::archived: |
|
162 | - $ticket_status_class = 'archived-ticket'; |
|
163 | - $this->status_class = 'archived-ticket hidden'; |
|
164 | - break; |
|
165 | - // pending |
|
166 | - case EE_Ticket::pending: |
|
167 | - $ticket_status_class = 'ticket-pending'; |
|
168 | - $this->status_class = 'ticket-pending'; |
|
169 | - break; |
|
170 | - // on sale |
|
171 | - case EE_Ticket::onsale: |
|
172 | - default: |
|
173 | - $ticket_status_class = 'ticket-on-sale'; |
|
174 | - $this->status_class = 'ticket-on-sale'; |
|
175 | - break; |
|
176 | - } |
|
177 | - $this->ticket_status_html = EEH_HTML::span( |
|
178 | - $this->ticket->ticket_status(true, ($remaining > 0)), |
|
179 | - "{$ticket_status_class}-{$this->ticket->ID()}", |
|
180 | - $ticket_status_class |
|
181 | - ); |
|
182 | - } |
|
183 | - |
|
184 | - |
|
185 | - /** |
|
186 | - * @return string |
|
187 | - */ |
|
188 | - public function getTicketStatusDisplay() |
|
189 | - { |
|
190 | - return $this->ticket_status_display; |
|
191 | - } |
|
192 | - |
|
193 | - |
|
194 | - /** |
|
195 | - * setTicketStatusDisplay |
|
196 | - * |
|
197 | - * @param int $remaining |
|
198 | - * @throws EE_Error |
|
199 | - */ |
|
200 | - protected function setTicketStatusDisplay($remaining) |
|
201 | - { |
|
202 | - $this->ticket_status_display = ''; |
|
203 | - |
|
204 | - // now depending on the ticket and other circumstances... |
|
205 | - if ($this->max_attendees === 0) { |
|
206 | - // registration is CLOSED because admin set max attendees to ZERO |
|
207 | - $this->ticket_status_display = $this->registrationClosed(); |
|
208 | - } elseif ($this->ticket_status_id === EE_Ticket::sold_out || $remaining === 0) { |
|
209 | - // SOLD OUT - no tickets remaining |
|
210 | - $this->ticket_status_display = $this->ticketsSoldOut(); |
|
211 | - } elseif ($this->ticket_status_id === EE_Ticket::expired || $this->ticket_status_id === EE_Ticket::archived) { |
|
212 | - // expired or archived ticket |
|
213 | - $this->ticket_status_display = $this->ticket_status_html; |
|
214 | - } elseif ($this->ticket_status_id === EE_Ticket::pending) { |
|
215 | - // ticket not on sale yet |
|
216 | - $this->ticket_status_display = $this->ticketsSalesPending(); |
|
217 | - } elseif ($this->ticket->min() > $remaining) { |
|
218 | - // min qty purchasable is less than tickets available |
|
219 | - $this->ticket_status_display = $this->notEnoughTicketsAvailable(); |
|
220 | - } |
|
221 | - } |
|
222 | - |
|
223 | - |
|
224 | - /** |
|
225 | - * registrationClosed |
|
226 | - */ |
|
227 | - protected function registrationClosed() |
|
228 | - { |
|
229 | - return EEH_HTML::span( |
|
230 | - apply_filters( |
|
231 | - 'FHEE__ticket_selector_chart_template__ticket_closed_msg', |
|
232 | - __('Closed', 'event_espresso') |
|
233 | - ), |
|
234 | - '', |
|
235 | - 'sold-out' |
|
236 | - ); |
|
237 | - } |
|
238 | - |
|
239 | - |
|
240 | - /** |
|
241 | - * ticketsSoldOut |
|
242 | - */ |
|
243 | - protected function ticketsSoldOut() |
|
244 | - { |
|
245 | - return EEH_HTML::span( |
|
246 | - apply_filters( |
|
247 | - 'FHEE__ticket_selector_chart_template__ticket_sold_out_msg', |
|
248 | - __('Sold Out', 'event_espresso') |
|
249 | - ), |
|
250 | - '', |
|
251 | - 'sold-out' |
|
252 | - ); |
|
253 | - } |
|
254 | - |
|
255 | - |
|
256 | - /** |
|
257 | - * ticketsSalesPending |
|
258 | - * |
|
259 | - * @throws EE_Error |
|
260 | - */ |
|
261 | - protected function ticketsSalesPending() |
|
262 | - { |
|
263 | - return EEH_HTML::span( |
|
264 | - EEH_HTML::span( |
|
265 | - apply_filters( |
|
266 | - 'FHEE__ticket_selector_chart_template__ticket_goes_on_sale_msg', |
|
267 | - __('Goes On Sale', 'event_espresso') |
|
268 | - ), |
|
269 | - '', |
|
270 | - 'ticket-pending' |
|
271 | - ) |
|
272 | - . EEH_HTML::br() |
|
273 | - . EEH_HTML::span( |
|
274 | - $this->ticket->get_i18n_datetime( |
|
275 | - 'TKT_start_date', |
|
276 | - apply_filters( |
|
277 | - 'FHEE__EED_Ticket_Selector__display_goes_on_sale__date_format', |
|
278 | - $this->date_format |
|
279 | - ) |
|
280 | - ), |
|
281 | - '', |
|
282 | - 'small-text' |
|
283 | - ), |
|
284 | - '', |
|
285 | - 'ticket-pending-pg' |
|
286 | - ); |
|
287 | - } |
|
288 | - |
|
289 | - |
|
290 | - /** |
|
291 | - * notEnoughTicketsAvailable |
|
292 | - */ |
|
293 | - protected function notEnoughTicketsAvailable() |
|
294 | - { |
|
295 | - return EEH_HTML::div( |
|
296 | - EEH_HTML::span( |
|
297 | - apply_filters( |
|
298 | - 'FHEE__ticket_selector_chart_template__ticket_not_available_msg', |
|
299 | - __('Not Available', 'event_espresso') |
|
300 | - ), |
|
301 | - '', |
|
302 | - 'archived-ticket small-text' |
|
303 | - ) |
|
304 | - . EEH_HTML::br(), |
|
305 | - '', |
|
306 | - 'archived-ticket-pg' |
|
307 | - ); |
|
308 | - } |
|
309 | - |
|
310 | - |
|
311 | - /** |
|
312 | - * setTicketMinAndMax |
|
313 | - * |
|
314 | - * @param int $remaining |
|
315 | - * @return void |
|
316 | - * @throws EE_Error |
|
317 | - */ |
|
318 | - protected function setTicketMinAndMax($remaining) |
|
319 | - { |
|
320 | - // offer the number of $tickets_remaining or $this->max_attendees, whichever is smaller |
|
321 | - $this->max = min($remaining, $this->max_attendees); |
|
322 | - // but... we also want to restrict the number of tickets by the ticket max setting, |
|
323 | - // however, the max still can't be higher than what was just set above |
|
324 | - $this->max = $this->ticket->max() > 0 |
|
325 | - ? min($this->ticket->max(), $this->max) |
|
326 | - : $this->max; |
|
327 | - // and we also want to restrict the minimum number of tickets by the ticket min setting |
|
328 | - $this->min = $this->ticket->min() > 0 |
|
329 | - ? $this->ticket->min() |
|
330 | - : 0; |
|
331 | - // and if the ticket is required, then make sure that min qty is at least 1 |
|
332 | - $this->min = $this->ticket->required() |
|
333 | - ? max($this->min, 1) |
|
334 | - : $this->min; |
|
335 | - } |
|
336 | - |
|
337 | - |
|
338 | - /** |
|
339 | - * Allow plugins to hook in and abort the generation and display of this row to do |
|
340 | - * something elseif they want. |
|
341 | - * For an addon to abort things, all they have to do is register a filter with this hook, and |
|
342 | - * return a value that is NOT false. Whatever is returned gets echoed instead of the |
|
343 | - * current row. |
|
344 | - * |
|
345 | - * @return string|bool |
|
346 | - */ |
|
347 | - protected function getFilteredRowHtml() |
|
348 | - { |
|
349 | - return apply_filters( |
|
350 | - 'FHEE__ticket_selector_chart_template__do_ticket_entire_row', |
|
351 | - false, |
|
352 | - $this->ticket, |
|
353 | - $this->max, |
|
354 | - $this->min, |
|
355 | - $this->required_ticket_sold_out, |
|
356 | - $this->ticket_price, |
|
357 | - $this->ticket_bundle, |
|
358 | - $this->ticket_status_html, |
|
359 | - $this->status_class, |
|
360 | - $this |
|
361 | - ); |
|
362 | - } |
|
363 | - |
|
364 | - |
|
365 | - /** |
|
366 | - * Allow plugins to hook in and abort the generation and display of the contents of this |
|
367 | - * row to do something elseif they want. |
|
368 | - * For an addon to abort things, all they have to do is register a filter with this hook, and |
|
369 | - * return a value that is NOT false. Whatever is returned gets echoed instead of the |
|
370 | - * current row. |
|
371 | - * |
|
372 | - * @return string|bool |
|
373 | - */ |
|
374 | - protected function getFilteredRowContents() |
|
375 | - { |
|
376 | - return apply_filters( |
|
377 | - 'FHEE__ticket_selector_chart_template__do_ticket_inside_row', |
|
378 | - false, |
|
379 | - $this->ticket, |
|
380 | - $this->max, |
|
381 | - $this->min, |
|
382 | - $this->required_ticket_sold_out, |
|
383 | - $this->ticket_price, |
|
384 | - $this->ticket_bundle, |
|
385 | - $this->ticket_status_html, |
|
386 | - $this->status_class, |
|
387 | - $this |
|
388 | - ); |
|
389 | - } |
|
21 | + /** |
|
22 | + * @var EE_Ticket $ticket |
|
23 | + */ |
|
24 | + protected $ticket; |
|
25 | + |
|
26 | + /** |
|
27 | + * @var int $total_tickets |
|
28 | + */ |
|
29 | + protected $total_tickets; |
|
30 | + |
|
31 | + /** |
|
32 | + * @var int $max_attendees |
|
33 | + */ |
|
34 | + protected $max_attendees; |
|
35 | + |
|
36 | + /** |
|
37 | + * @var string $date_format |
|
38 | + */ |
|
39 | + protected $date_format; |
|
40 | + |
|
41 | + /** |
|
42 | + * @var int $EVT_ID |
|
43 | + */ |
|
44 | + protected $EVT_ID; |
|
45 | + |
|
46 | + /** |
|
47 | + * @var string $event_status |
|
48 | + */ |
|
49 | + protected $event_status; |
|
50 | + |
|
51 | + /** |
|
52 | + * @var boolean $required_ticket_sold_out |
|
53 | + */ |
|
54 | + protected $required_ticket_sold_out; |
|
55 | + |
|
56 | + /** |
|
57 | + * @var string $ticket_status_display |
|
58 | + */ |
|
59 | + protected $ticket_status_display; |
|
60 | + |
|
61 | + /** |
|
62 | + * @var int $max |
|
63 | + */ |
|
64 | + protected $max = 0; |
|
65 | + |
|
66 | + /** |
|
67 | + * @var int $min |
|
68 | + */ |
|
69 | + protected $min = 0; |
|
70 | + |
|
71 | + /** |
|
72 | + * @var float $ticket_price |
|
73 | + */ |
|
74 | + protected $ticket_price = 0.00; |
|
75 | + |
|
76 | + /** |
|
77 | + * @var bool $ticket_bundle |
|
78 | + */ |
|
79 | + protected $ticket_bundle = false; |
|
80 | + |
|
81 | + /** |
|
82 | + * @var string $ticket_status_id |
|
83 | + */ |
|
84 | + protected $ticket_status_id = EE_Ticket::sold_out; |
|
85 | + |
|
86 | + /** |
|
87 | + * @var string $ticket_status_html |
|
88 | + */ |
|
89 | + protected $ticket_status_html = 'ticket-sales-sold-out'; |
|
90 | + |
|
91 | + /** |
|
92 | + * @var string $status_class |
|
93 | + */ |
|
94 | + protected $status_class = 'ticket-sales-sold-out lt-grey-text'; |
|
95 | + |
|
96 | + |
|
97 | + /** |
|
98 | + * @param EE_Ticket $ticket |
|
99 | + * @param int $max_attendees |
|
100 | + * @param string $date_format |
|
101 | + * @param string $event_status |
|
102 | + * @param bool $required_ticket_sold_out |
|
103 | + * @param int $total_tickets |
|
104 | + * @throws EE_Error |
|
105 | + * @throws UnexpectedEntityException |
|
106 | + */ |
|
107 | + public function __construct( |
|
108 | + EE_Ticket $ticket, |
|
109 | + $max_attendees, |
|
110 | + $date_format, |
|
111 | + $event_status, |
|
112 | + $required_ticket_sold_out = false, |
|
113 | + $total_tickets = 1 |
|
114 | + ) { |
|
115 | + $this->ticket = $ticket; |
|
116 | + $this->max_attendees = $max_attendees; |
|
117 | + $this->date_format = $date_format; |
|
118 | + $this->EVT_ID = $this->ticket->get_event_ID(); |
|
119 | + $this->event_status = $event_status; |
|
120 | + $this->required_ticket_sold_out = $required_ticket_sold_out; |
|
121 | + $this->total_tickets = $total_tickets; |
|
122 | + } |
|
123 | + |
|
124 | + |
|
125 | + /** |
|
126 | + * getTicketStatusClasses |
|
127 | + * |
|
128 | + * @param int $remaining |
|
129 | + * @return void |
|
130 | + * @throws EE_Error |
|
131 | + */ |
|
132 | + protected function setTicketStatusClasses($remaining = 0) |
|
133 | + { |
|
134 | + // if a previous required ticket with the same sale start date is sold out, |
|
135 | + // then mark this ticket as sold out as well. |
|
136 | + // tickets that go on sale at a later date than the required ticket will NOT be affected |
|
137 | + $this->ticket_status_id = $this->required_ticket_sold_out !== false |
|
138 | + && $this->required_ticket_sold_out === $this->ticket->start_date() |
|
139 | + ? EE_Ticket::sold_out |
|
140 | + : $this->ticket->ticket_status(); |
|
141 | + $this->ticket_status_id = $this->event_status === EE_Datetime::sold_out |
|
142 | + ? EE_Ticket::sold_out |
|
143 | + : $this->ticket_status_id; |
|
144 | + // If at admin area, display expired tickets as on sale. |
|
145 | + $this->ticket_status_id = is_admin() && $this->ticket_status_id === EE_Ticket::expired |
|
146 | + ? EE_Ticket::onsale |
|
147 | + : $this->ticket_status_id; |
|
148 | + // check ticket status |
|
149 | + switch ($this->ticket_status_id) { |
|
150 | + // sold_out |
|
151 | + case EE_Ticket::sold_out: |
|
152 | + $ticket_status_class = 'ticket-sales-sold-out'; |
|
153 | + $this->status_class = 'ticket-sales-sold-out lt-grey-text'; |
|
154 | + break; |
|
155 | + // expired |
|
156 | + case EE_Ticket::expired: |
|
157 | + $ticket_status_class = 'ticket-sales-expired'; |
|
158 | + $this->status_class = 'ticket-sales-expired lt-grey-text'; |
|
159 | + break; |
|
160 | + // archived |
|
161 | + case EE_Ticket::archived: |
|
162 | + $ticket_status_class = 'archived-ticket'; |
|
163 | + $this->status_class = 'archived-ticket hidden'; |
|
164 | + break; |
|
165 | + // pending |
|
166 | + case EE_Ticket::pending: |
|
167 | + $ticket_status_class = 'ticket-pending'; |
|
168 | + $this->status_class = 'ticket-pending'; |
|
169 | + break; |
|
170 | + // on sale |
|
171 | + case EE_Ticket::onsale: |
|
172 | + default: |
|
173 | + $ticket_status_class = 'ticket-on-sale'; |
|
174 | + $this->status_class = 'ticket-on-sale'; |
|
175 | + break; |
|
176 | + } |
|
177 | + $this->ticket_status_html = EEH_HTML::span( |
|
178 | + $this->ticket->ticket_status(true, ($remaining > 0)), |
|
179 | + "{$ticket_status_class}-{$this->ticket->ID()}", |
|
180 | + $ticket_status_class |
|
181 | + ); |
|
182 | + } |
|
183 | + |
|
184 | + |
|
185 | + /** |
|
186 | + * @return string |
|
187 | + */ |
|
188 | + public function getTicketStatusDisplay() |
|
189 | + { |
|
190 | + return $this->ticket_status_display; |
|
191 | + } |
|
192 | + |
|
193 | + |
|
194 | + /** |
|
195 | + * setTicketStatusDisplay |
|
196 | + * |
|
197 | + * @param int $remaining |
|
198 | + * @throws EE_Error |
|
199 | + */ |
|
200 | + protected function setTicketStatusDisplay($remaining) |
|
201 | + { |
|
202 | + $this->ticket_status_display = ''; |
|
203 | + |
|
204 | + // now depending on the ticket and other circumstances... |
|
205 | + if ($this->max_attendees === 0) { |
|
206 | + // registration is CLOSED because admin set max attendees to ZERO |
|
207 | + $this->ticket_status_display = $this->registrationClosed(); |
|
208 | + } elseif ($this->ticket_status_id === EE_Ticket::sold_out || $remaining === 0) { |
|
209 | + // SOLD OUT - no tickets remaining |
|
210 | + $this->ticket_status_display = $this->ticketsSoldOut(); |
|
211 | + } elseif ($this->ticket_status_id === EE_Ticket::expired || $this->ticket_status_id === EE_Ticket::archived) { |
|
212 | + // expired or archived ticket |
|
213 | + $this->ticket_status_display = $this->ticket_status_html; |
|
214 | + } elseif ($this->ticket_status_id === EE_Ticket::pending) { |
|
215 | + // ticket not on sale yet |
|
216 | + $this->ticket_status_display = $this->ticketsSalesPending(); |
|
217 | + } elseif ($this->ticket->min() > $remaining) { |
|
218 | + // min qty purchasable is less than tickets available |
|
219 | + $this->ticket_status_display = $this->notEnoughTicketsAvailable(); |
|
220 | + } |
|
221 | + } |
|
222 | + |
|
223 | + |
|
224 | + /** |
|
225 | + * registrationClosed |
|
226 | + */ |
|
227 | + protected function registrationClosed() |
|
228 | + { |
|
229 | + return EEH_HTML::span( |
|
230 | + apply_filters( |
|
231 | + 'FHEE__ticket_selector_chart_template__ticket_closed_msg', |
|
232 | + __('Closed', 'event_espresso') |
|
233 | + ), |
|
234 | + '', |
|
235 | + 'sold-out' |
|
236 | + ); |
|
237 | + } |
|
238 | + |
|
239 | + |
|
240 | + /** |
|
241 | + * ticketsSoldOut |
|
242 | + */ |
|
243 | + protected function ticketsSoldOut() |
|
244 | + { |
|
245 | + return EEH_HTML::span( |
|
246 | + apply_filters( |
|
247 | + 'FHEE__ticket_selector_chart_template__ticket_sold_out_msg', |
|
248 | + __('Sold Out', 'event_espresso') |
|
249 | + ), |
|
250 | + '', |
|
251 | + 'sold-out' |
|
252 | + ); |
|
253 | + } |
|
254 | + |
|
255 | + |
|
256 | + /** |
|
257 | + * ticketsSalesPending |
|
258 | + * |
|
259 | + * @throws EE_Error |
|
260 | + */ |
|
261 | + protected function ticketsSalesPending() |
|
262 | + { |
|
263 | + return EEH_HTML::span( |
|
264 | + EEH_HTML::span( |
|
265 | + apply_filters( |
|
266 | + 'FHEE__ticket_selector_chart_template__ticket_goes_on_sale_msg', |
|
267 | + __('Goes On Sale', 'event_espresso') |
|
268 | + ), |
|
269 | + '', |
|
270 | + 'ticket-pending' |
|
271 | + ) |
|
272 | + . EEH_HTML::br() |
|
273 | + . EEH_HTML::span( |
|
274 | + $this->ticket->get_i18n_datetime( |
|
275 | + 'TKT_start_date', |
|
276 | + apply_filters( |
|
277 | + 'FHEE__EED_Ticket_Selector__display_goes_on_sale__date_format', |
|
278 | + $this->date_format |
|
279 | + ) |
|
280 | + ), |
|
281 | + '', |
|
282 | + 'small-text' |
|
283 | + ), |
|
284 | + '', |
|
285 | + 'ticket-pending-pg' |
|
286 | + ); |
|
287 | + } |
|
288 | + |
|
289 | + |
|
290 | + /** |
|
291 | + * notEnoughTicketsAvailable |
|
292 | + */ |
|
293 | + protected function notEnoughTicketsAvailable() |
|
294 | + { |
|
295 | + return EEH_HTML::div( |
|
296 | + EEH_HTML::span( |
|
297 | + apply_filters( |
|
298 | + 'FHEE__ticket_selector_chart_template__ticket_not_available_msg', |
|
299 | + __('Not Available', 'event_espresso') |
|
300 | + ), |
|
301 | + '', |
|
302 | + 'archived-ticket small-text' |
|
303 | + ) |
|
304 | + . EEH_HTML::br(), |
|
305 | + '', |
|
306 | + 'archived-ticket-pg' |
|
307 | + ); |
|
308 | + } |
|
309 | + |
|
310 | + |
|
311 | + /** |
|
312 | + * setTicketMinAndMax |
|
313 | + * |
|
314 | + * @param int $remaining |
|
315 | + * @return void |
|
316 | + * @throws EE_Error |
|
317 | + */ |
|
318 | + protected function setTicketMinAndMax($remaining) |
|
319 | + { |
|
320 | + // offer the number of $tickets_remaining or $this->max_attendees, whichever is smaller |
|
321 | + $this->max = min($remaining, $this->max_attendees); |
|
322 | + // but... we also want to restrict the number of tickets by the ticket max setting, |
|
323 | + // however, the max still can't be higher than what was just set above |
|
324 | + $this->max = $this->ticket->max() > 0 |
|
325 | + ? min($this->ticket->max(), $this->max) |
|
326 | + : $this->max; |
|
327 | + // and we also want to restrict the minimum number of tickets by the ticket min setting |
|
328 | + $this->min = $this->ticket->min() > 0 |
|
329 | + ? $this->ticket->min() |
|
330 | + : 0; |
|
331 | + // and if the ticket is required, then make sure that min qty is at least 1 |
|
332 | + $this->min = $this->ticket->required() |
|
333 | + ? max($this->min, 1) |
|
334 | + : $this->min; |
|
335 | + } |
|
336 | + |
|
337 | + |
|
338 | + /** |
|
339 | + * Allow plugins to hook in and abort the generation and display of this row to do |
|
340 | + * something elseif they want. |
|
341 | + * For an addon to abort things, all they have to do is register a filter with this hook, and |
|
342 | + * return a value that is NOT false. Whatever is returned gets echoed instead of the |
|
343 | + * current row. |
|
344 | + * |
|
345 | + * @return string|bool |
|
346 | + */ |
|
347 | + protected function getFilteredRowHtml() |
|
348 | + { |
|
349 | + return apply_filters( |
|
350 | + 'FHEE__ticket_selector_chart_template__do_ticket_entire_row', |
|
351 | + false, |
|
352 | + $this->ticket, |
|
353 | + $this->max, |
|
354 | + $this->min, |
|
355 | + $this->required_ticket_sold_out, |
|
356 | + $this->ticket_price, |
|
357 | + $this->ticket_bundle, |
|
358 | + $this->ticket_status_html, |
|
359 | + $this->status_class, |
|
360 | + $this |
|
361 | + ); |
|
362 | + } |
|
363 | + |
|
364 | + |
|
365 | + /** |
|
366 | + * Allow plugins to hook in and abort the generation and display of the contents of this |
|
367 | + * row to do something elseif they want. |
|
368 | + * For an addon to abort things, all they have to do is register a filter with this hook, and |
|
369 | + * return a value that is NOT false. Whatever is returned gets echoed instead of the |
|
370 | + * current row. |
|
371 | + * |
|
372 | + * @return string|bool |
|
373 | + */ |
|
374 | + protected function getFilteredRowContents() |
|
375 | + { |
|
376 | + return apply_filters( |
|
377 | + 'FHEE__ticket_selector_chart_template__do_ticket_inside_row', |
|
378 | + false, |
|
379 | + $this->ticket, |
|
380 | + $this->max, |
|
381 | + $this->min, |
|
382 | + $this->required_ticket_sold_out, |
|
383 | + $this->ticket_price, |
|
384 | + $this->ticket_bundle, |
|
385 | + $this->ticket_status_html, |
|
386 | + $this->status_class, |
|
387 | + $this |
|
388 | + ); |
|
389 | + } |
|
390 | 390 | } |
@@ -15,9 +15,9 @@ discard block |
||
15 | 15 | $stages = glob(EE_CORE . 'data_migration_scripts/4_10_0_stages/*'); |
16 | 16 | $class_to_filepath = []; |
17 | 17 | foreach ($stages as $filepath) { |
18 | - $matches = []; |
|
19 | - preg_match('~4_10_0_stages/(.*).dmsstage.php~', $filepath, $matches); |
|
20 | - $class_to_filepath[ $matches[1] ] = $filepath; |
|
18 | + $matches = []; |
|
19 | + preg_match('~4_10_0_stages/(.*).dmsstage.php~', $filepath, $matches); |
|
20 | + $class_to_filepath[ $matches[1] ] = $filepath; |
|
21 | 21 | } |
22 | 22 | // give addons a chance to autoload their stages too |
23 | 23 | $class_to_filepath = apply_filters('FHEE__EE_DMS_4_10_0__autoloaded_stages', $class_to_filepath); |
@@ -35,66 +35,66 @@ discard block |
||
35 | 35 | */ |
36 | 36 | class EE_DMS_Core_4_10_0 extends EE_Data_Migration_Script_Base |
37 | 37 | { |
38 | - /** |
|
39 | - * |
|
40 | - * @param TableManager $table_manager |
|
41 | - * @param TableAnalysis $table_analysis |
|
42 | - */ |
|
43 | - public function __construct( |
|
44 | - TableManager $table_manager = null, |
|
45 | - TableAnalysis $table_analysis = null, |
|
46 | - EE_DMS_Core_4_9_0 $dms_4_9 |
|
47 | - ) { |
|
48 | - $this->previous_dms = $dms_4_9; |
|
49 | - $this->_pretty_name = esc_html__("Data Update to Event Espresso 4.10.0", "event_espresso"); |
|
50 | - $this->_priority = 10; |
|
51 | - $this->_migration_stages = array( |
|
52 | - new EE_DMS_4_10_0_Event_Question_Group(), |
|
53 | - ); |
|
54 | - parent::__construct($table_manager, $table_analysis); |
|
55 | - } |
|
38 | + /** |
|
39 | + * |
|
40 | + * @param TableManager $table_manager |
|
41 | + * @param TableAnalysis $table_analysis |
|
42 | + */ |
|
43 | + public function __construct( |
|
44 | + TableManager $table_manager = null, |
|
45 | + TableAnalysis $table_analysis = null, |
|
46 | + EE_DMS_Core_4_9_0 $dms_4_9 |
|
47 | + ) { |
|
48 | + $this->previous_dms = $dms_4_9; |
|
49 | + $this->_pretty_name = esc_html__("Data Update to Event Espresso 4.10.0", "event_espresso"); |
|
50 | + $this->_priority = 10; |
|
51 | + $this->_migration_stages = array( |
|
52 | + new EE_DMS_4_10_0_Event_Question_Group(), |
|
53 | + ); |
|
54 | + parent::__construct($table_manager, $table_analysis); |
|
55 | + } |
|
56 | 56 | |
57 | 57 | |
58 | 58 | |
59 | - /** |
|
60 | - * Whether to migrate or not. |
|
61 | - * |
|
62 | - * @param array $version_array |
|
63 | - * @return bool |
|
64 | - */ |
|
65 | - public function can_migrate_from_version($version_array) |
|
66 | - { |
|
67 | - $version_string = $version_array['Core']; |
|
68 | - if (version_compare($version_string, '4.10.0.decaf', '<') && version_compare($version_string, '4.9.0.decaf', '>=')) { |
|
69 | - return true; |
|
70 | - } elseif (! $version_string) { |
|
71 | - // echo "no version string provided: $version_string"; |
|
72 | - // no version string provided... this must be pre 4.3 |
|
73 | - return false;// changed mind. dont want people thinking they should migrate yet because they cant |
|
74 | - } |
|
75 | - return false; |
|
76 | - } |
|
59 | + /** |
|
60 | + * Whether to migrate or not. |
|
61 | + * |
|
62 | + * @param array $version_array |
|
63 | + * @return bool |
|
64 | + */ |
|
65 | + public function can_migrate_from_version($version_array) |
|
66 | + { |
|
67 | + $version_string = $version_array['Core']; |
|
68 | + if (version_compare($version_string, '4.10.0.decaf', '<') && version_compare($version_string, '4.9.0.decaf', '>=')) { |
|
69 | + return true; |
|
70 | + } elseif (! $version_string) { |
|
71 | + // echo "no version string provided: $version_string"; |
|
72 | + // no version string provided... this must be pre 4.3 |
|
73 | + return false;// changed mind. dont want people thinking they should migrate yet because they cant |
|
74 | + } |
|
75 | + return false; |
|
76 | + } |
|
77 | 77 | |
78 | 78 | |
79 | 79 | |
80 | - /** |
|
81 | - * @return bool |
|
82 | - */ |
|
83 | - public function schema_changes_before_migration() |
|
84 | - { |
|
85 | - require_once(EE_HELPERS . 'EEH_Activation.helper.php'); |
|
86 | - $now_in_mysql = current_time('mysql', true); |
|
87 | - $table_name = 'esp_answer'; |
|
88 | - $sql = " ANS_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
80 | + /** |
|
81 | + * @return bool |
|
82 | + */ |
|
83 | + public function schema_changes_before_migration() |
|
84 | + { |
|
85 | + require_once(EE_HELPERS . 'EEH_Activation.helper.php'); |
|
86 | + $now_in_mysql = current_time('mysql', true); |
|
87 | + $table_name = 'esp_answer'; |
|
88 | + $sql = " ANS_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
89 | 89 | REG_ID int(10) unsigned NOT NULL, |
90 | 90 | QST_ID int(10) unsigned NOT NULL, |
91 | 91 | ANS_value text NOT NULL, |
92 | 92 | PRIMARY KEY (ANS_ID), |
93 | 93 | KEY REG_ID (REG_ID), |
94 | 94 | KEY QST_ID (QST_ID)"; |
95 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
96 | - $table_name = 'esp_attendee_meta'; |
|
97 | - $sql = "ATTM_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
95 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
96 | + $table_name = 'esp_attendee_meta'; |
|
97 | + $sql = "ATTM_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
98 | 98 | ATT_ID bigint(20) unsigned NOT NULL, |
99 | 99 | ATT_fname varchar(45) NOT NULL, |
100 | 100 | ATT_lname varchar(45) NOT NULL, |
@@ -111,9 +111,9 @@ discard block |
||
111 | 111 | KEY ATT_email (ATT_email(191)), |
112 | 112 | KEY ATT_lname (ATT_lname), |
113 | 113 | KEY ATT_fname (ATT_fname)"; |
114 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
115 | - $table_name = 'esp_checkin'; |
|
116 | - $sql = "CHK_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
114 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
115 | + $table_name = 'esp_checkin'; |
|
116 | + $sql = "CHK_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
117 | 117 | REG_ID int(10) unsigned NOT NULL, |
118 | 118 | DTT_ID int(10) unsigned NOT NULL, |
119 | 119 | CHK_in tinyint(1) unsigned NOT NULL DEFAULT 1, |
@@ -121,9 +121,9 @@ discard block |
||
121 | 121 | PRIMARY KEY (CHK_ID), |
122 | 122 | KEY REG_ID (REG_ID), |
123 | 123 | KEY DTT_ID (DTT_ID)"; |
124 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
125 | - $table_name = 'esp_country'; |
|
126 | - $sql = "CNT_ISO varchar(2) NOT NULL, |
|
124 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
125 | + $table_name = 'esp_country'; |
|
126 | + $sql = "CNT_ISO varchar(2) NOT NULL, |
|
127 | 127 | CNT_ISO3 varchar(3) NOT NULL, |
128 | 128 | RGN_ID tinyint(3) unsigned DEFAULT NULL, |
129 | 129 | CNT_name varchar(45) NOT NULL, |
@@ -139,29 +139,29 @@ discard block |
||
139 | 139 | CNT_is_EU tinyint(1) DEFAULT '0', |
140 | 140 | CNT_active tinyint(1) DEFAULT '0', |
141 | 141 | PRIMARY KEY (CNT_ISO)"; |
142 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
143 | - $table_name = 'esp_currency'; |
|
144 | - $sql = "CUR_code varchar(6) NOT NULL, |
|
142 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
143 | + $table_name = 'esp_currency'; |
|
144 | + $sql = "CUR_code varchar(6) NOT NULL, |
|
145 | 145 | CUR_single varchar(45) DEFAULT 'dollar', |
146 | 146 | CUR_plural varchar(45) DEFAULT 'dollars', |
147 | 147 | CUR_sign varchar(45) DEFAULT '$', |
148 | 148 | CUR_dec_plc varchar(1) NOT NULL DEFAULT '2', |
149 | 149 | CUR_active tinyint(1) DEFAULT '0', |
150 | 150 | PRIMARY KEY (CUR_code)"; |
151 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
152 | - // note: although this table is no longer in use, |
|
153 | - // it hasn't been removed because then queries to the model will have errors. |
|
154 | - // but you should expect this table and its corresponding model to be removed in |
|
155 | - // the next few months |
|
156 | - $table_name = 'esp_currency_payment_method'; |
|
157 | - $sql = "CPM_ID int(11) NOT NULL AUTO_INCREMENT, |
|
151 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
152 | + // note: although this table is no longer in use, |
|
153 | + // it hasn't been removed because then queries to the model will have errors. |
|
154 | + // but you should expect this table and its corresponding model to be removed in |
|
155 | + // the next few months |
|
156 | + $table_name = 'esp_currency_payment_method'; |
|
157 | + $sql = "CPM_ID int(11) NOT NULL AUTO_INCREMENT, |
|
158 | 158 | CUR_code varchar(6) NOT NULL, |
159 | 159 | PMD_ID int(11) NOT NULL, |
160 | 160 | PRIMARY KEY (CPM_ID), |
161 | 161 | KEY PMD_ID (PMD_ID)"; |
162 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
163 | - $table_name = 'esp_datetime'; |
|
164 | - $sql = "DTT_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
162 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
163 | + $table_name = 'esp_datetime'; |
|
164 | + $sql = "DTT_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
165 | 165 | EVT_ID bigint(20) unsigned NOT NULL, |
166 | 166 | DTT_name varchar(255) NOT NULL DEFAULT '', |
167 | 167 | DTT_description text NOT NULL, |
@@ -178,25 +178,25 @@ discard block |
||
178 | 178 | KEY DTT_EVT_start (DTT_EVT_start), |
179 | 179 | KEY EVT_ID (EVT_ID), |
180 | 180 | KEY DTT_is_primary (DTT_is_primary)"; |
181 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
182 | - $table_name = "esp_datetime_ticket"; |
|
183 | - $sql = "DTK_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
181 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
182 | + $table_name = "esp_datetime_ticket"; |
|
183 | + $sql = "DTK_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
184 | 184 | DTT_ID int(10) unsigned NOT NULL, |
185 | 185 | TKT_ID int(10) unsigned NOT NULL, |
186 | 186 | PRIMARY KEY (DTK_ID), |
187 | 187 | KEY DTT_ID (DTT_ID), |
188 | 188 | KEY TKT_ID (TKT_ID)"; |
189 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
190 | - $table_name = 'esp_event_message_template'; |
|
191 | - $sql = "EMT_ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, |
|
189 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
190 | + $table_name = 'esp_event_message_template'; |
|
191 | + $sql = "EMT_ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, |
|
192 | 192 | EVT_ID bigint(20) unsigned NOT NULL DEFAULT 0, |
193 | 193 | GRP_ID int(10) unsigned NOT NULL DEFAULT 0, |
194 | 194 | PRIMARY KEY (EMT_ID), |
195 | 195 | KEY EVT_ID (EVT_ID), |
196 | 196 | KEY GRP_ID (GRP_ID)"; |
197 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
198 | - $table_name = 'esp_event_meta'; |
|
199 | - $sql = "EVTM_ID int(10) NOT NULL AUTO_INCREMENT, |
|
197 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
198 | + $table_name = 'esp_event_meta'; |
|
199 | + $sql = "EVTM_ID int(10) NOT NULL AUTO_INCREMENT, |
|
200 | 200 | EVT_ID bigint(20) unsigned NOT NULL, |
201 | 201 | EVT_display_desc tinyint(1) unsigned NOT NULL DEFAULT 1, |
202 | 202 | EVT_display_ticket_selector tinyint(1) unsigned NOT NULL DEFAULT 1, |
@@ -211,9 +211,9 @@ discard block |
||
211 | 211 | EVT_donations tinyint(1) NULL, |
212 | 212 | PRIMARY KEY (EVTM_ID), |
213 | 213 | KEY EVT_ID (EVT_ID)"; |
214 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
215 | - $table_name = 'esp_event_question_group'; |
|
216 | - $sql = "EQG_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
214 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
215 | + $table_name = 'esp_event_question_group'; |
|
216 | + $sql = "EQG_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
217 | 217 | EVT_ID bigint(20) unsigned NOT NULL, |
218 | 218 | QSG_ID int(10) unsigned NOT NULL, |
219 | 219 | EQG_primary tinyint(1) unsigned NOT NULL DEFAULT 0, |
@@ -221,25 +221,25 @@ discard block |
||
221 | 221 | PRIMARY KEY (EQG_ID), |
222 | 222 | KEY EVT_ID (EVT_ID), |
223 | 223 | KEY QSG_ID (QSG_ID)"; |
224 | - $this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB'); |
|
225 | - $table_name = 'esp_event_venue'; |
|
226 | - $sql = "EVV_ID int(11) NOT NULL AUTO_INCREMENT, |
|
224 | + $this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB'); |
|
225 | + $table_name = 'esp_event_venue'; |
|
226 | + $sql = "EVV_ID int(11) NOT NULL AUTO_INCREMENT, |
|
227 | 227 | EVT_ID bigint(20) unsigned NOT NULL, |
228 | 228 | VNU_ID bigint(20) unsigned NOT NULL, |
229 | 229 | EVV_primary tinyint(1) unsigned NOT NULL DEFAULT 0, |
230 | 230 | PRIMARY KEY (EVV_ID)"; |
231 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
232 | - $table_name = 'esp_extra_meta'; |
|
233 | - $sql = "EXM_ID int(11) NOT NULL AUTO_INCREMENT, |
|
231 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
232 | + $table_name = 'esp_extra_meta'; |
|
233 | + $sql = "EXM_ID int(11) NOT NULL AUTO_INCREMENT, |
|
234 | 234 | OBJ_ID int(11) DEFAULT NULL, |
235 | 235 | EXM_type varchar(45) DEFAULT NULL, |
236 | 236 | EXM_key varchar(45) DEFAULT NULL, |
237 | 237 | EXM_value text, |
238 | 238 | PRIMARY KEY (EXM_ID), |
239 | 239 | KEY EXM_type (EXM_type,OBJ_ID,EXM_key)"; |
240 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
241 | - $table_name = 'esp_extra_join'; |
|
242 | - $sql = "EXJ_ID int(11) NOT NULL AUTO_INCREMENT, |
|
240 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
241 | + $table_name = 'esp_extra_join'; |
|
242 | + $sql = "EXJ_ID int(11) NOT NULL AUTO_INCREMENT, |
|
243 | 243 | EXJ_first_model_id varchar(6) NOT NULL, |
244 | 244 | EXJ_first_model_name varchar(20) NOT NULL, |
245 | 245 | EXJ_second_model_id varchar(6) NOT NULL, |
@@ -247,9 +247,9 @@ discard block |
||
247 | 247 | PRIMARY KEY (EXJ_ID), |
248 | 248 | KEY first_model (EXJ_first_model_name,EXJ_first_model_id), |
249 | 249 | KEY second_model (EXJ_second_model_name,EXJ_second_model_id)"; |
250 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
251 | - $table_name = 'esp_line_item'; |
|
252 | - $sql = "LIN_ID int(11) NOT NULL AUTO_INCREMENT, |
|
250 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
251 | + $table_name = 'esp_line_item'; |
|
252 | + $sql = "LIN_ID int(11) NOT NULL AUTO_INCREMENT, |
|
253 | 253 | LIN_code varchar(245) NOT NULL DEFAULT '', |
254 | 254 | TXN_ID int(11) DEFAULT NULL, |
255 | 255 | LIN_name varchar(245) NOT NULL DEFAULT '', |
@@ -270,9 +270,9 @@ discard block |
||
270 | 270 | KEY txn_type_timestamp (TXN_ID,LIN_type,LIN_timestamp), |
271 | 271 | KEY txn_obj_id_obj_type (TXN_ID,OBJ_ID,OBJ_type), |
272 | 272 | KEY obj_id_obj_type (OBJ_ID,OBJ_type)"; |
273 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
274 | - $table_name = 'esp_log'; |
|
275 | - $sql = "LOG_ID int(11) NOT NULL AUTO_INCREMENT, |
|
273 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
274 | + $table_name = 'esp_log'; |
|
275 | + $sql = "LOG_ID int(11) NOT NULL AUTO_INCREMENT, |
|
276 | 276 | LOG_time datetime DEFAULT NULL, |
277 | 277 | OBJ_ID varchar(45) DEFAULT NULL, |
278 | 278 | OBJ_type varchar(45) DEFAULT NULL, |
@@ -283,9 +283,9 @@ discard block |
||
283 | 283 | KEY LOG_time (LOG_time), |
284 | 284 | KEY OBJ (OBJ_type,OBJ_ID), |
285 | 285 | KEY LOG_type (LOG_type)"; |
286 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
287 | - $table_name = 'esp_message'; |
|
288 | - $sql = "MSG_ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, |
|
286 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
287 | + $table_name = 'esp_message'; |
|
288 | + $sql = "MSG_ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, |
|
289 | 289 | GRP_ID int(10) unsigned NULL, |
290 | 290 | MSG_token varchar(255) NULL, |
291 | 291 | TXN_ID int(10) unsigned NULL, |
@@ -317,18 +317,18 @@ discard block |
||
317 | 317 | KEY STS_ID (STS_ID), |
318 | 318 | KEY MSG_created (MSG_created), |
319 | 319 | KEY MSG_modified (MSG_modified)"; |
320 | - $this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB'); |
|
321 | - $table_name = 'esp_message_template'; |
|
322 | - $sql = "MTP_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
320 | + $this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB'); |
|
321 | + $table_name = 'esp_message_template'; |
|
322 | + $sql = "MTP_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
323 | 323 | GRP_ID int(10) unsigned NOT NULL, |
324 | 324 | MTP_context varchar(50) NOT NULL, |
325 | 325 | MTP_template_field varchar(30) NOT NULL, |
326 | 326 | MTP_content text NOT NULL, |
327 | 327 | PRIMARY KEY (MTP_ID), |
328 | 328 | KEY GRP_ID (GRP_ID)"; |
329 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
330 | - $table_name = 'esp_message_template_group'; |
|
331 | - $sql = "GRP_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
329 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
330 | + $table_name = 'esp_message_template_group'; |
|
331 | + $sql = "GRP_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
332 | 332 | MTP_user_id int(10) NOT NULL DEFAULT '1', |
333 | 333 | MTP_name varchar(245) NOT NULL DEFAULT '', |
334 | 334 | MTP_description varchar(245) NOT NULL DEFAULT '', |
@@ -340,9 +340,9 @@ discard block |
||
340 | 340 | MTP_is_active tinyint(1) NOT NULL DEFAULT '1', |
341 | 341 | PRIMARY KEY (GRP_ID), |
342 | 342 | KEY MTP_user_id (MTP_user_id)"; |
343 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
344 | - $table_name = 'esp_payment'; |
|
345 | - $sql = "PAY_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
343 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
344 | + $table_name = 'esp_payment'; |
|
345 | + $sql = "PAY_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
346 | 346 | TXN_ID int(10) unsigned DEFAULT NULL, |
347 | 347 | STS_ID varchar(3) DEFAULT NULL, |
348 | 348 | PAY_timestamp datetime NOT NULL DEFAULT '0000-00-00 00:00:00', |
@@ -359,9 +359,9 @@ discard block |
||
359 | 359 | PRIMARY KEY (PAY_ID), |
360 | 360 | KEY PAY_timestamp (PAY_timestamp), |
361 | 361 | KEY TXN_ID (TXN_ID)"; |
362 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
363 | - $table_name = 'esp_payment_method'; |
|
364 | - $sql = "PMD_ID int(11) NOT NULL AUTO_INCREMENT, |
|
362 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
363 | + $table_name = 'esp_payment_method'; |
|
364 | + $sql = "PMD_ID int(11) NOT NULL AUTO_INCREMENT, |
|
365 | 365 | PMD_type varchar(124) DEFAULT NULL, |
366 | 366 | PMD_name varchar(255) DEFAULT NULL, |
367 | 367 | PMD_desc text, |
@@ -377,24 +377,24 @@ discard block |
||
377 | 377 | PRIMARY KEY (PMD_ID), |
378 | 378 | UNIQUE KEY PMD_slug_UNIQUE (PMD_slug), |
379 | 379 | KEY PMD_type (PMD_type)"; |
380 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
381 | - $table_name = "esp_ticket_price"; |
|
382 | - $sql = "TKP_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
380 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
381 | + $table_name = "esp_ticket_price"; |
|
382 | + $sql = "TKP_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
383 | 383 | TKT_ID int(10) unsigned NOT NULL, |
384 | 384 | PRC_ID int(10) unsigned NOT NULL, |
385 | 385 | PRIMARY KEY (TKP_ID), |
386 | 386 | KEY TKT_ID (TKT_ID), |
387 | 387 | KEY PRC_ID (PRC_ID)"; |
388 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
389 | - $table_name = "esp_ticket_template"; |
|
390 | - $sql = "TTM_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
388 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
389 | + $table_name = "esp_ticket_template"; |
|
390 | + $sql = "TTM_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
391 | 391 | TTM_name varchar(45) NOT NULL, |
392 | 392 | TTM_description text, |
393 | 393 | TTM_file varchar(45), |
394 | 394 | PRIMARY KEY (TTM_ID)"; |
395 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
396 | - $table_name = 'esp_question'; |
|
397 | - $sql = 'QST_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
395 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
396 | + $table_name = 'esp_question'; |
|
397 | + $sql = 'QST_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
398 | 398 | QST_display_text text NOT NULL, |
399 | 399 | QST_admin_label varchar(255) NOT NULL, |
400 | 400 | QST_system varchar(25) DEFAULT NULL, |
@@ -408,18 +408,18 @@ discard block |
||
408 | 408 | QST_deleted tinyint(2) unsigned NOT NULL DEFAULT 0, |
409 | 409 | PRIMARY KEY (QST_ID), |
410 | 410 | KEY QST_order (QST_order)'; |
411 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
412 | - $table_name = 'esp_question_group_question'; |
|
413 | - $sql = "QGQ_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
411 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
412 | + $table_name = 'esp_question_group_question'; |
|
413 | + $sql = "QGQ_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
414 | 414 | QSG_ID int(10) unsigned NOT NULL, |
415 | 415 | QST_ID int(10) unsigned NOT NULL, |
416 | 416 | QGQ_order int(10) unsigned NOT NULL DEFAULT 0, |
417 | 417 | PRIMARY KEY (QGQ_ID), |
418 | 418 | KEY QST_ID (QST_ID), |
419 | 419 | KEY QSG_ID_order (QSG_ID,QGQ_order)"; |
420 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
421 | - $table_name = 'esp_question_option'; |
|
422 | - $sql = "QSO_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
420 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
421 | + $table_name = 'esp_question_option'; |
|
422 | + $sql = "QSO_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
423 | 423 | QSO_value varchar(255) NOT NULL, |
424 | 424 | QSO_desc text NOT NULL, |
425 | 425 | QST_ID int(10) unsigned NOT NULL, |
@@ -429,9 +429,9 @@ discard block |
||
429 | 429 | PRIMARY KEY (QSO_ID), |
430 | 430 | KEY QST_ID (QST_ID), |
431 | 431 | KEY QSO_order (QSO_order)"; |
432 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
433 | - $table_name = 'esp_registration'; |
|
434 | - $sql = "REG_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
432 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
433 | + $table_name = 'esp_registration'; |
|
434 | + $sql = "REG_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
435 | 435 | EVT_ID bigint(20) unsigned NOT NULL, |
436 | 436 | ATT_ID bigint(20) unsigned NOT NULL, |
437 | 437 | TXN_ID int(10) unsigned NOT NULL, |
@@ -455,18 +455,18 @@ discard block |
||
455 | 455 | KEY TKT_ID (TKT_ID), |
456 | 456 | KEY EVT_ID (EVT_ID), |
457 | 457 | KEY STS_ID (STS_ID)"; |
458 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
459 | - $table_name = 'esp_registration_payment'; |
|
460 | - $sql = "RPY_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
458 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
459 | + $table_name = 'esp_registration_payment'; |
|
460 | + $sql = "RPY_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
461 | 461 | REG_ID int(10) unsigned NOT NULL, |
462 | 462 | PAY_ID int(10) unsigned NULL, |
463 | 463 | RPY_amount decimal(12,3) NOT NULL DEFAULT '0.00', |
464 | 464 | PRIMARY KEY (RPY_ID), |
465 | 465 | KEY REG_ID (REG_ID), |
466 | 466 | KEY PAY_ID (PAY_ID)"; |
467 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
468 | - $table_name = 'esp_state'; |
|
469 | - $sql = "STA_ID smallint(5) unsigned NOT NULL AUTO_INCREMENT, |
|
467 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
468 | + $table_name = 'esp_state'; |
|
469 | + $sql = "STA_ID smallint(5) unsigned NOT NULL AUTO_INCREMENT, |
|
470 | 470 | CNT_ISO varchar(2) NOT NULL, |
471 | 471 | STA_abbrev varchar(24) NOT NULL, |
472 | 472 | STA_name varchar(100) NOT NULL, |
@@ -474,9 +474,9 @@ discard block |
||
474 | 474 | PRIMARY KEY (STA_ID), |
475 | 475 | KEY STA_abbrev (STA_abbrev), |
476 | 476 | KEY CNT_ISO (CNT_ISO)"; |
477 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
478 | - $table_name = 'esp_status'; |
|
479 | - $sql = "STS_ID varchar(3) NOT NULL, |
|
477 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
478 | + $table_name = 'esp_status'; |
|
479 | + $sql = "STS_ID varchar(3) NOT NULL, |
|
480 | 480 | STS_code varchar(45) NOT NULL, |
481 | 481 | STS_type varchar(45) NOT NULL, |
482 | 482 | STS_can_edit tinyint(1) NOT NULL DEFAULT 0, |
@@ -484,9 +484,9 @@ discard block |
||
484 | 484 | STS_open tinyint(1) NOT NULL DEFAULT 1, |
485 | 485 | UNIQUE KEY STS_ID_UNIQUE (STS_ID), |
486 | 486 | KEY STS_type (STS_type)"; |
487 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
488 | - $table_name = 'esp_transaction'; |
|
489 | - $sql = "TXN_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
487 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
488 | + $table_name = 'esp_transaction'; |
|
489 | + $sql = "TXN_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
490 | 490 | TXN_timestamp datetime NOT NULL DEFAULT '0000-00-00 00:00:00', |
491 | 491 | TXN_total decimal(12,3) DEFAULT '0.00', |
492 | 492 | TXN_paid decimal(12,3) NOT NULL DEFAULT '0.00', |
@@ -498,9 +498,9 @@ discard block |
||
498 | 498 | PRIMARY KEY (TXN_ID), |
499 | 499 | KEY TXN_timestamp (TXN_timestamp), |
500 | 500 | KEY STS_ID (STS_ID)"; |
501 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
502 | - $table_name = 'esp_venue_meta'; |
|
503 | - $sql = "VNUM_ID int(11) NOT NULL AUTO_INCREMENT, |
|
501 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
502 | + $table_name = 'esp_venue_meta'; |
|
503 | + $sql = "VNUM_ID int(11) NOT NULL AUTO_INCREMENT, |
|
504 | 504 | VNU_ID bigint(20) unsigned NOT NULL DEFAULT 0, |
505 | 505 | VNU_address varchar(255) DEFAULT NULL, |
506 | 506 | VNU_address2 varchar(255) DEFAULT NULL, |
@@ -519,10 +519,10 @@ discard block |
||
519 | 519 | KEY VNU_ID (VNU_ID), |
520 | 520 | KEY STA_ID (STA_ID), |
521 | 521 | KEY CNT_ISO (CNT_ISO)"; |
522 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
523 | - // modified tables |
|
524 | - $table_name = "esp_price"; |
|
525 | - $sql = "PRC_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
522 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
523 | + // modified tables |
|
524 | + $table_name = "esp_price"; |
|
525 | + $sql = "PRC_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
526 | 526 | PRT_ID tinyint(3) unsigned NOT NULL, |
527 | 527 | PRC_amount decimal(12,3) NOT NULL DEFAULT '0.00', |
528 | 528 | PRC_name varchar(245) NOT NULL, |
@@ -535,9 +535,9 @@ discard block |
||
535 | 535 | PRC_parent int(10) unsigned DEFAULT 0, |
536 | 536 | PRIMARY KEY (PRC_ID), |
537 | 537 | KEY PRT_ID (PRT_ID)"; |
538 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
539 | - $table_name = "esp_price_type"; |
|
540 | - $sql = "PRT_ID tinyint(3) unsigned NOT NULL AUTO_INCREMENT, |
|
538 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
539 | + $table_name = "esp_price_type"; |
|
540 | + $sql = "PRT_ID tinyint(3) unsigned NOT NULL AUTO_INCREMENT, |
|
541 | 541 | PRT_name varchar(45) NOT NULL, |
542 | 542 | PBT_ID tinyint(3) unsigned NOT NULL DEFAULT '1', |
543 | 543 | PRT_is_percent tinyint(1) NOT NULL DEFAULT '0', |
@@ -546,9 +546,9 @@ discard block |
||
546 | 546 | PRT_deleted tinyint(1) NOT NULL DEFAULT '0', |
547 | 547 | UNIQUE KEY PRT_name_UNIQUE (PRT_name), |
548 | 548 | PRIMARY KEY (PRT_ID)"; |
549 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
550 | - $table_name = "esp_ticket"; |
|
551 | - $sql = "TKT_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
549 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB '); |
|
550 | + $table_name = "esp_ticket"; |
|
551 | + $sql = "TKT_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
552 | 552 | TTM_ID int(10) unsigned NOT NULL, |
553 | 553 | TKT_name varchar(245) NOT NULL DEFAULT '', |
554 | 554 | TKT_description text NOT NULL, |
@@ -571,9 +571,9 @@ discard block |
||
571 | 571 | TKT_deleted tinyint(1) NOT NULL DEFAULT '0', |
572 | 572 | PRIMARY KEY (TKT_ID), |
573 | 573 | KEY TKT_start_date (TKT_start_date)"; |
574 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
575 | - $table_name = 'esp_question_group'; |
|
576 | - $sql = 'QSG_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
574 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
575 | + $table_name = 'esp_question_group'; |
|
576 | + $sql = 'QSG_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
577 | 577 | QSG_name varchar(255) NOT NULL, |
578 | 578 | QSG_identifier varchar(100) NOT NULL, |
579 | 579 | QSG_desc text NULL, |
@@ -586,38 +586,38 @@ discard block |
||
586 | 586 | PRIMARY KEY (QSG_ID), |
587 | 587 | UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier), |
588 | 588 | KEY QSG_order (QSG_order)'; |
589 | - $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
590 | - $this->insert_default_data(); |
|
591 | - return true; |
|
592 | - } |
|
589 | + $this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB'); |
|
590 | + $this->insert_default_data(); |
|
591 | + return true; |
|
592 | + } |
|
593 | 593 | |
594 | - /** |
|
595 | - * Inserts default data on new installs |
|
596 | - * @since 4.10.0.p |
|
597 | - * @throws EE_Error |
|
598 | - * @throws InvalidArgumentException |
|
599 | - * @throws ReflectionException |
|
600 | - * @throws InvalidDataTypeException |
|
601 | - * @throws InvalidInterfaceException |
|
602 | - */ |
|
603 | - public function insert_default_data() |
|
604 | - { |
|
605 | - $this->previous_dms->insert_default_data(); |
|
606 | - } |
|
594 | + /** |
|
595 | + * Inserts default data on new installs |
|
596 | + * @since 4.10.0.p |
|
597 | + * @throws EE_Error |
|
598 | + * @throws InvalidArgumentException |
|
599 | + * @throws ReflectionException |
|
600 | + * @throws InvalidDataTypeException |
|
601 | + * @throws InvalidInterfaceException |
|
602 | + */ |
|
603 | + public function insert_default_data() |
|
604 | + { |
|
605 | + $this->previous_dms->insert_default_data(); |
|
606 | + } |
|
607 | 607 | |
608 | 608 | |
609 | 609 | |
610 | - /** |
|
611 | - * @return boolean |
|
612 | - */ |
|
613 | - public function schema_changes_after_migration() |
|
614 | - { |
|
615 | - return true; |
|
616 | - } |
|
610 | + /** |
|
611 | + * @return boolean |
|
612 | + */ |
|
613 | + public function schema_changes_after_migration() |
|
614 | + { |
|
615 | + return true; |
|
616 | + } |
|
617 | 617 | |
618 | 618 | |
619 | 619 | |
620 | - public function migration_page_hooks() |
|
621 | - { |
|
622 | - } |
|
620 | + public function migration_page_hooks() |
|
621 | + { |
|
622 | + } |
|
623 | 623 | } |
@@ -12,12 +12,12 @@ discard block |
||
12 | 12 | // unfortunately, this needs to be done upon INCLUSION of this file, |
13 | 13 | // instead of construction, because it only gets constructed on first page load |
14 | 14 | // (all other times it gets resurrected from a wordpress option) |
15 | -$stages = glob(EE_CORE . 'data_migration_scripts/4_10_0_stages/*'); |
|
15 | +$stages = glob(EE_CORE.'data_migration_scripts/4_10_0_stages/*'); |
|
16 | 16 | $class_to_filepath = []; |
17 | 17 | foreach ($stages as $filepath) { |
18 | 18 | $matches = []; |
19 | 19 | preg_match('~4_10_0_stages/(.*).dmsstage.php~', $filepath, $matches); |
20 | - $class_to_filepath[ $matches[1] ] = $filepath; |
|
20 | + $class_to_filepath[$matches[1]] = $filepath; |
|
21 | 21 | } |
22 | 22 | // give addons a chance to autoload their stages too |
23 | 23 | $class_to_filepath = apply_filters('FHEE__EE_DMS_4_10_0__autoloaded_stages', $class_to_filepath); |
@@ -67,10 +67,10 @@ discard block |
||
67 | 67 | $version_string = $version_array['Core']; |
68 | 68 | if (version_compare($version_string, '4.10.0.decaf', '<') && version_compare($version_string, '4.9.0.decaf', '>=')) { |
69 | 69 | return true; |
70 | - } elseif (! $version_string) { |
|
70 | + } elseif ( ! $version_string) { |
|
71 | 71 | // echo "no version string provided: $version_string"; |
72 | 72 | // no version string provided... this must be pre 4.3 |
73 | - return false;// changed mind. dont want people thinking they should migrate yet because they cant |
|
73 | + return false; // changed mind. dont want people thinking they should migrate yet because they cant |
|
74 | 74 | } |
75 | 75 | return false; |
76 | 76 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | public function schema_changes_before_migration() |
84 | 84 | { |
85 | - require_once(EE_HELPERS . 'EEH_Activation.helper.php'); |
|
85 | + require_once(EE_HELPERS.'EEH_Activation.helper.php'); |
|
86 | 86 | $now_in_mysql = current_time('mysql', true); |
87 | 87 | $table_name = 'esp_answer'; |
88 | 88 | $sql = " ANS_ID int(10) unsigned NOT NULL AUTO_INCREMENT, |
@@ -12,2674 +12,2674 @@ |
||
12 | 12 | class Events_Admin_Page extends EE_Admin_Page_CPT |
13 | 13 | { |
14 | 14 | |
15 | - /** |
|
16 | - * This will hold the event object for event_details screen. |
|
17 | - * |
|
18 | - * @access protected |
|
19 | - * @var EE_Event $_event |
|
20 | - */ |
|
21 | - protected $_event; |
|
22 | - |
|
23 | - |
|
24 | - /** |
|
25 | - * This will hold the category object for category_details screen. |
|
26 | - * |
|
27 | - * @var stdClass $_category |
|
28 | - */ |
|
29 | - protected $_category; |
|
30 | - |
|
31 | - |
|
32 | - /** |
|
33 | - * This will hold the event model instance |
|
34 | - * |
|
35 | - * @var EEM_Event $_event_model |
|
36 | - */ |
|
37 | - protected $_event_model; |
|
38 | - |
|
39 | - |
|
40 | - /** |
|
41 | - * @var EE_Event |
|
42 | - */ |
|
43 | - protected $_cpt_model_obj = false; |
|
44 | - |
|
45 | - |
|
46 | - /** |
|
47 | - * Initialize page props for this admin page group. |
|
48 | - */ |
|
49 | - protected function _init_page_props() |
|
50 | - { |
|
51 | - $this->page_slug = EVENTS_PG_SLUG; |
|
52 | - $this->page_label = EVENTS_LABEL; |
|
53 | - $this->_admin_base_url = EVENTS_ADMIN_URL; |
|
54 | - $this->_admin_base_path = EVENTS_ADMIN; |
|
55 | - $this->_cpt_model_names = array( |
|
56 | - 'create_new' => 'EEM_Event', |
|
57 | - 'edit' => 'EEM_Event', |
|
58 | - ); |
|
59 | - $this->_cpt_edit_routes = array( |
|
60 | - 'espresso_events' => 'edit', |
|
61 | - ); |
|
62 | - add_action( |
|
63 | - 'AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object', |
|
64 | - array($this, 'verify_event_edit'), |
|
65 | - 10, |
|
66 | - 2 |
|
67 | - ); |
|
68 | - } |
|
69 | - |
|
70 | - |
|
71 | - /** |
|
72 | - * Sets the ajax hooks used for this admin page group. |
|
73 | - */ |
|
74 | - protected function _ajax_hooks() |
|
75 | - { |
|
76 | - add_action('wp_ajax_ee_save_timezone_setting', array($this, 'save_timezonestring_setting')); |
|
77 | - } |
|
78 | - |
|
79 | - |
|
80 | - /** |
|
81 | - * Sets the page properties for this admin page group. |
|
82 | - */ |
|
83 | - protected function _define_page_props() |
|
84 | - { |
|
85 | - $this->_admin_page_title = EVENTS_LABEL; |
|
86 | - $this->_labels = array( |
|
87 | - 'buttons' => array( |
|
88 | - 'add' => esc_html__('Add New Event', 'event_espresso'), |
|
89 | - 'edit' => esc_html__('Edit Event', 'event_espresso'), |
|
90 | - 'delete' => esc_html__('Delete Event', 'event_espresso'), |
|
91 | - 'add_category' => esc_html__('Add New Category', 'event_espresso'), |
|
92 | - 'edit_category' => esc_html__('Edit Category', 'event_espresso'), |
|
93 | - 'delete_category' => esc_html__('Delete Category', 'event_espresso'), |
|
94 | - ), |
|
95 | - 'editor_title' => array( |
|
96 | - 'espresso_events' => esc_html__('Enter event title here', 'event_espresso'), |
|
97 | - ), |
|
98 | - 'publishbox' => array( |
|
99 | - 'create_new' => esc_html__('Save New Event', 'event_espresso'), |
|
100 | - 'edit' => esc_html__('Update Event', 'event_espresso'), |
|
101 | - 'add_category' => esc_html__('Save New Category', 'event_espresso'), |
|
102 | - 'edit_category' => esc_html__('Update Category', 'event_espresso'), |
|
103 | - 'template_settings' => esc_html__('Update Settings', 'event_espresso'), |
|
104 | - ), |
|
105 | - ); |
|
106 | - } |
|
107 | - |
|
108 | - |
|
109 | - /** |
|
110 | - * Sets the page routes property for this admin page group. |
|
111 | - */ |
|
112 | - protected function _set_page_routes() |
|
113 | - { |
|
114 | - // load formatter helper |
|
115 | - // load field generator helper |
|
116 | - // is there a evt_id in the request? |
|
117 | - $evt_id = ! empty($this->_req_data['EVT_ID']) && ! is_array($this->_req_data['EVT_ID']) |
|
118 | - ? $this->_req_data['EVT_ID'] |
|
119 | - : 0; |
|
120 | - $evt_id = ! empty($this->_req_data['post']) ? $this->_req_data['post'] : $evt_id; |
|
121 | - $this->_page_routes = array( |
|
122 | - 'default' => array( |
|
123 | - 'func' => '_events_overview_list_table', |
|
124 | - 'capability' => 'ee_read_events', |
|
125 | - ), |
|
126 | - 'create_new' => array( |
|
127 | - 'func' => '_create_new_cpt_item', |
|
128 | - 'capability' => 'ee_edit_events', |
|
129 | - ), |
|
130 | - 'edit' => array( |
|
131 | - 'func' => '_edit_cpt_item', |
|
132 | - 'capability' => 'ee_edit_event', |
|
133 | - 'obj_id' => $evt_id, |
|
134 | - ), |
|
135 | - 'copy_event' => array( |
|
136 | - 'func' => '_copy_events', |
|
137 | - 'capability' => 'ee_edit_event', |
|
138 | - 'obj_id' => $evt_id, |
|
139 | - 'noheader' => true, |
|
140 | - ), |
|
141 | - 'trash_event' => array( |
|
142 | - 'func' => '_trash_or_restore_event', |
|
143 | - 'args' => array('event_status' => 'trash'), |
|
144 | - 'capability' => 'ee_delete_event', |
|
145 | - 'obj_id' => $evt_id, |
|
146 | - 'noheader' => true, |
|
147 | - ), |
|
148 | - 'trash_events' => array( |
|
149 | - 'func' => '_trash_or_restore_events', |
|
150 | - 'args' => array('event_status' => 'trash'), |
|
151 | - 'capability' => 'ee_delete_events', |
|
152 | - 'noheader' => true, |
|
153 | - ), |
|
154 | - 'restore_event' => array( |
|
155 | - 'func' => '_trash_or_restore_event', |
|
156 | - 'args' => array('event_status' => 'draft'), |
|
157 | - 'capability' => 'ee_delete_event', |
|
158 | - 'obj_id' => $evt_id, |
|
159 | - 'noheader' => true, |
|
160 | - ), |
|
161 | - 'restore_events' => array( |
|
162 | - 'func' => '_trash_or_restore_events', |
|
163 | - 'args' => array('event_status' => 'draft'), |
|
164 | - 'capability' => 'ee_delete_events', |
|
165 | - 'noheader' => true, |
|
166 | - ), |
|
167 | - 'delete_event' => array( |
|
168 | - 'func' => '_delete_event', |
|
169 | - 'capability' => 'ee_delete_event', |
|
170 | - 'obj_id' => $evt_id, |
|
171 | - 'noheader' => true, |
|
172 | - ), |
|
173 | - 'delete_events' => array( |
|
174 | - 'func' => '_delete_events', |
|
175 | - 'capability' => 'ee_delete_events', |
|
176 | - 'noheader' => true, |
|
177 | - ), |
|
178 | - 'view_report' => array( |
|
179 | - 'func' => '_view_report', |
|
180 | - 'capablity' => 'ee_edit_events', |
|
181 | - ), |
|
182 | - 'default_event_settings' => array( |
|
183 | - 'func' => '_default_event_settings', |
|
184 | - 'capability' => 'manage_options', |
|
185 | - ), |
|
186 | - 'update_default_event_settings' => array( |
|
187 | - 'func' => '_update_default_event_settings', |
|
188 | - 'capability' => 'manage_options', |
|
189 | - 'noheader' => true, |
|
190 | - ), |
|
191 | - 'template_settings' => array( |
|
192 | - 'func' => '_template_settings', |
|
193 | - 'capability' => 'manage_options', |
|
194 | - ), |
|
195 | - // event category tab related |
|
196 | - 'add_category' => array( |
|
197 | - 'func' => '_category_details', |
|
198 | - 'capability' => 'ee_edit_event_category', |
|
199 | - 'args' => array('add'), |
|
200 | - ), |
|
201 | - 'edit_category' => array( |
|
202 | - 'func' => '_category_details', |
|
203 | - 'capability' => 'ee_edit_event_category', |
|
204 | - 'args' => array('edit'), |
|
205 | - ), |
|
206 | - 'delete_categories' => array( |
|
207 | - 'func' => '_delete_categories', |
|
208 | - 'capability' => 'ee_delete_event_category', |
|
209 | - 'noheader' => true, |
|
210 | - ), |
|
211 | - 'delete_category' => array( |
|
212 | - 'func' => '_delete_categories', |
|
213 | - 'capability' => 'ee_delete_event_category', |
|
214 | - 'noheader' => true, |
|
215 | - ), |
|
216 | - 'insert_category' => array( |
|
217 | - 'func' => '_insert_or_update_category', |
|
218 | - 'args' => array('new_category' => true), |
|
219 | - 'capability' => 'ee_edit_event_category', |
|
220 | - 'noheader' => true, |
|
221 | - ), |
|
222 | - 'update_category' => array( |
|
223 | - 'func' => '_insert_or_update_category', |
|
224 | - 'args' => array('new_category' => false), |
|
225 | - 'capability' => 'ee_edit_event_category', |
|
226 | - 'noheader' => true, |
|
227 | - ), |
|
228 | - 'category_list' => array( |
|
229 | - 'func' => '_category_list_table', |
|
230 | - 'capability' => 'ee_manage_event_categories', |
|
231 | - ), |
|
232 | - ); |
|
233 | - } |
|
234 | - |
|
235 | - |
|
236 | - /** |
|
237 | - * Set the _page_config property for this admin page group. |
|
238 | - */ |
|
239 | - protected function _set_page_config() |
|
240 | - { |
|
241 | - $this->_page_config = array( |
|
242 | - 'default' => array( |
|
243 | - 'nav' => array( |
|
244 | - 'label' => esc_html__('Overview', 'event_espresso'), |
|
245 | - 'order' => 10, |
|
246 | - ), |
|
247 | - 'list_table' => 'Events_Admin_List_Table', |
|
248 | - 'help_tabs' => array( |
|
249 | - 'events_overview_help_tab' => array( |
|
250 | - 'title' => esc_html__('Events Overview', 'event_espresso'), |
|
251 | - 'filename' => 'events_overview', |
|
252 | - ), |
|
253 | - 'events_overview_table_column_headings_help_tab' => array( |
|
254 | - 'title' => esc_html__('Events Overview Table Column Headings', 'event_espresso'), |
|
255 | - 'filename' => 'events_overview_table_column_headings', |
|
256 | - ), |
|
257 | - 'events_overview_filters_help_tab' => array( |
|
258 | - 'title' => esc_html__('Events Overview Filters', 'event_espresso'), |
|
259 | - 'filename' => 'events_overview_filters', |
|
260 | - ), |
|
261 | - 'events_overview_view_help_tab' => array( |
|
262 | - 'title' => esc_html__('Events Overview Views', 'event_espresso'), |
|
263 | - 'filename' => 'events_overview_views', |
|
264 | - ), |
|
265 | - 'events_overview_other_help_tab' => array( |
|
266 | - 'title' => esc_html__('Events Overview Other', 'event_espresso'), |
|
267 | - 'filename' => 'events_overview_other', |
|
268 | - ), |
|
269 | - ), |
|
270 | - 'help_tour' => array( |
|
271 | - 'Event_Overview_Help_Tour', |
|
272 | - // 'New_Features_Test_Help_Tour' for testing multiple help tour |
|
273 | - ), |
|
274 | - 'qtips' => array( |
|
275 | - 'EE_Event_List_Table_Tips', |
|
276 | - ), |
|
277 | - 'require_nonce' => false, |
|
278 | - ), |
|
279 | - 'create_new' => array( |
|
280 | - 'nav' => array( |
|
281 | - 'label' => esc_html__('Add Event', 'event_espresso'), |
|
282 | - 'order' => 5, |
|
283 | - 'persistent' => false, |
|
284 | - ), |
|
285 | - 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
286 | - 'help_tabs' => array( |
|
287 | - 'event_editor_help_tab' => array( |
|
288 | - 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
289 | - 'filename' => 'event_editor', |
|
290 | - ), |
|
291 | - 'event_editor_title_richtexteditor_help_tab' => array( |
|
292 | - 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
293 | - 'filename' => 'event_editor_title_richtexteditor', |
|
294 | - ), |
|
295 | - 'event_editor_venue_details_help_tab' => array( |
|
296 | - 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
297 | - 'filename' => 'event_editor_venue_details', |
|
298 | - ), |
|
299 | - 'event_editor_event_datetimes_help_tab' => array( |
|
300 | - 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
301 | - 'filename' => 'event_editor_event_datetimes', |
|
302 | - ), |
|
303 | - 'event_editor_event_tickets_help_tab' => array( |
|
304 | - 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
305 | - 'filename' => 'event_editor_event_tickets', |
|
306 | - ), |
|
307 | - 'event_editor_event_registration_options_help_tab' => array( |
|
308 | - 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
309 | - 'filename' => 'event_editor_event_registration_options', |
|
310 | - ), |
|
311 | - 'event_editor_tags_categories_help_tab' => array( |
|
312 | - 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
313 | - 'filename' => 'event_editor_tags_categories', |
|
314 | - ), |
|
315 | - 'event_editor_questions_registrants_help_tab' => array( |
|
316 | - 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
317 | - 'filename' => 'event_editor_questions_registrants', |
|
318 | - ), |
|
319 | - 'event_editor_save_new_event_help_tab' => array( |
|
320 | - 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
321 | - 'filename' => 'event_editor_save_new_event', |
|
322 | - ), |
|
323 | - 'event_editor_other_help_tab' => array( |
|
324 | - 'title' => esc_html__('Event Other', 'event_espresso'), |
|
325 | - 'filename' => 'event_editor_other', |
|
326 | - ), |
|
327 | - ), |
|
328 | - 'help_tour' => array( |
|
329 | - 'Event_Editor_Help_Tour', |
|
330 | - ), |
|
331 | - 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
332 | - 'require_nonce' => false, |
|
333 | - ), |
|
334 | - 'edit' => array( |
|
335 | - 'nav' => array( |
|
336 | - 'label' => esc_html__('Edit Event', 'event_espresso'), |
|
337 | - 'order' => 5, |
|
338 | - 'persistent' => false, |
|
339 | - 'url' => isset($this->_req_data['post']) |
|
340 | - ? EE_Admin_Page::add_query_args_and_nonce( |
|
341 | - array('post' => $this->_req_data['post'], 'action' => 'edit'), |
|
342 | - $this->_current_page_view_url |
|
343 | - ) |
|
344 | - : $this->_admin_base_url, |
|
345 | - ), |
|
346 | - 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
347 | - 'help_tabs' => array( |
|
348 | - 'event_editor_help_tab' => array( |
|
349 | - 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
350 | - 'filename' => 'event_editor', |
|
351 | - ), |
|
352 | - 'event_editor_title_richtexteditor_help_tab' => array( |
|
353 | - 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
354 | - 'filename' => 'event_editor_title_richtexteditor', |
|
355 | - ), |
|
356 | - 'event_editor_venue_details_help_tab' => array( |
|
357 | - 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
358 | - 'filename' => 'event_editor_venue_details', |
|
359 | - ), |
|
360 | - 'event_editor_event_datetimes_help_tab' => array( |
|
361 | - 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
362 | - 'filename' => 'event_editor_event_datetimes', |
|
363 | - ), |
|
364 | - 'event_editor_event_tickets_help_tab' => array( |
|
365 | - 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
366 | - 'filename' => 'event_editor_event_tickets', |
|
367 | - ), |
|
368 | - 'event_editor_event_registration_options_help_tab' => array( |
|
369 | - 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
370 | - 'filename' => 'event_editor_event_registration_options', |
|
371 | - ), |
|
372 | - 'event_editor_tags_categories_help_tab' => array( |
|
373 | - 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
374 | - 'filename' => 'event_editor_tags_categories', |
|
375 | - ), |
|
376 | - 'event_editor_questions_registrants_help_tab' => array( |
|
377 | - 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
378 | - 'filename' => 'event_editor_questions_registrants', |
|
379 | - ), |
|
380 | - 'event_editor_save_new_event_help_tab' => array( |
|
381 | - 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
382 | - 'filename' => 'event_editor_save_new_event', |
|
383 | - ), |
|
384 | - 'event_editor_other_help_tab' => array( |
|
385 | - 'title' => esc_html__('Event Other', 'event_espresso'), |
|
386 | - 'filename' => 'event_editor_other', |
|
387 | - ), |
|
388 | - ), |
|
389 | - 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
390 | - 'require_nonce' => false, |
|
391 | - ), |
|
392 | - 'default_event_settings' => array( |
|
393 | - 'nav' => array( |
|
394 | - 'label' => esc_html__('Default Settings', 'event_espresso'), |
|
395 | - 'order' => 40, |
|
396 | - ), |
|
397 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
398 | - 'labels' => array( |
|
399 | - 'publishbox' => esc_html__('Update Settings', 'event_espresso'), |
|
400 | - ), |
|
401 | - 'help_tabs' => array( |
|
402 | - 'default_settings_help_tab' => array( |
|
403 | - 'title' => esc_html__('Default Event Settings', 'event_espresso'), |
|
404 | - 'filename' => 'events_default_settings', |
|
405 | - ), |
|
406 | - 'default_settings_status_help_tab' => array( |
|
407 | - 'title' => esc_html__('Default Registration Status', 'event_espresso'), |
|
408 | - 'filename' => 'events_default_settings_status', |
|
409 | - ), |
|
410 | - 'default_maximum_tickets_help_tab' => array( |
|
411 | - 'title' => esc_html__('Default Maximum Tickets Per Order', 'event_espresso'), |
|
412 | - 'filename' => 'events_default_settings_max_tickets', |
|
413 | - ), |
|
414 | - ), |
|
415 | - 'help_tour' => array('Event_Default_Settings_Help_Tour'), |
|
416 | - 'require_nonce' => false, |
|
417 | - ), |
|
418 | - // template settings |
|
419 | - 'template_settings' => array( |
|
420 | - 'nav' => array( |
|
421 | - 'label' => esc_html__('Templates', 'event_espresso'), |
|
422 | - 'order' => 30, |
|
423 | - ), |
|
424 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
425 | - 'help_tabs' => array( |
|
426 | - 'general_settings_templates_help_tab' => array( |
|
427 | - 'title' => esc_html__('Templates', 'event_espresso'), |
|
428 | - 'filename' => 'general_settings_templates', |
|
429 | - ), |
|
430 | - ), |
|
431 | - 'help_tour' => array('Templates_Help_Tour'), |
|
432 | - 'require_nonce' => false, |
|
433 | - ), |
|
434 | - // event category stuff |
|
435 | - 'add_category' => array( |
|
436 | - 'nav' => array( |
|
437 | - 'label' => esc_html__('Add Category', 'event_espresso'), |
|
438 | - 'order' => 15, |
|
439 | - 'persistent' => false, |
|
440 | - ), |
|
441 | - 'help_tabs' => array( |
|
442 | - 'add_category_help_tab' => array( |
|
443 | - 'title' => esc_html__('Add New Event Category', 'event_espresso'), |
|
444 | - 'filename' => 'events_add_category', |
|
445 | - ), |
|
446 | - ), |
|
447 | - 'help_tour' => array('Event_Add_Category_Help_Tour'), |
|
448 | - 'metaboxes' => array('_publish_post_box'), |
|
449 | - 'require_nonce' => false, |
|
450 | - ), |
|
451 | - 'edit_category' => array( |
|
452 | - 'nav' => array( |
|
453 | - 'label' => esc_html__('Edit Category', 'event_espresso'), |
|
454 | - 'order' => 15, |
|
455 | - 'persistent' => false, |
|
456 | - 'url' => isset($this->_req_data['EVT_CAT_ID']) |
|
457 | - ? add_query_arg( |
|
458 | - array('EVT_CAT_ID' => $this->_req_data['EVT_CAT_ID']), |
|
459 | - $this->_current_page_view_url |
|
460 | - ) |
|
461 | - : $this->_admin_base_url, |
|
462 | - ), |
|
463 | - 'help_tabs' => array( |
|
464 | - 'edit_category_help_tab' => array( |
|
465 | - 'title' => esc_html__('Edit Event Category', 'event_espresso'), |
|
466 | - 'filename' => 'events_edit_category', |
|
467 | - ), |
|
468 | - ), |
|
469 | - /*'help_tour' => array('Event_Edit_Category_Help_Tour'),*/ |
|
470 | - 'metaboxes' => array('_publish_post_box'), |
|
471 | - 'require_nonce' => false, |
|
472 | - ), |
|
473 | - 'category_list' => array( |
|
474 | - 'nav' => array( |
|
475 | - 'label' => esc_html__('Categories', 'event_espresso'), |
|
476 | - 'order' => 20, |
|
477 | - ), |
|
478 | - 'list_table' => 'Event_Categories_Admin_List_Table', |
|
479 | - 'help_tabs' => array( |
|
480 | - 'events_categories_help_tab' => array( |
|
481 | - 'title' => esc_html__('Event Categories', 'event_espresso'), |
|
482 | - 'filename' => 'events_categories', |
|
483 | - ), |
|
484 | - 'events_categories_table_column_headings_help_tab' => array( |
|
485 | - 'title' => esc_html__('Event Categories Table Column Headings', 'event_espresso'), |
|
486 | - 'filename' => 'events_categories_table_column_headings', |
|
487 | - ), |
|
488 | - 'events_categories_view_help_tab' => array( |
|
489 | - 'title' => esc_html__('Event Categories Views', 'event_espresso'), |
|
490 | - 'filename' => 'events_categories_views', |
|
491 | - ), |
|
492 | - 'events_categories_other_help_tab' => array( |
|
493 | - 'title' => esc_html__('Event Categories Other', 'event_espresso'), |
|
494 | - 'filename' => 'events_categories_other', |
|
495 | - ), |
|
496 | - ), |
|
497 | - 'help_tour' => array( |
|
498 | - 'Event_Categories_Help_Tour', |
|
499 | - ), |
|
500 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
501 | - 'require_nonce' => false, |
|
502 | - ), |
|
503 | - ); |
|
504 | - } |
|
505 | - |
|
506 | - |
|
507 | - /** |
|
508 | - * Used to register any global screen options if necessary for every route in this admin page group. |
|
509 | - */ |
|
510 | - protected function _add_screen_options() |
|
511 | - { |
|
512 | - } |
|
513 | - |
|
514 | - |
|
515 | - /** |
|
516 | - * Implementing the screen options for the 'default' route. |
|
517 | - */ |
|
518 | - protected function _add_screen_options_default() |
|
519 | - { |
|
520 | - $this->_per_page_screen_option(); |
|
521 | - } |
|
522 | - |
|
523 | - |
|
524 | - /** |
|
525 | - * Implementing screen options for the category list route. |
|
526 | - */ |
|
527 | - protected function _add_screen_options_category_list() |
|
528 | - { |
|
529 | - $page_title = $this->_admin_page_title; |
|
530 | - $this->_admin_page_title = esc_html__('Categories', 'event_espresso'); |
|
531 | - $this->_per_page_screen_option(); |
|
532 | - $this->_admin_page_title = $page_title; |
|
533 | - } |
|
534 | - |
|
535 | - |
|
536 | - /** |
|
537 | - * Used to register any global feature pointers for the admin page group. |
|
538 | - */ |
|
539 | - protected function _add_feature_pointers() |
|
540 | - { |
|
541 | - } |
|
542 | - |
|
543 | - |
|
544 | - /** |
|
545 | - * Registers and enqueues any global scripts and styles for the entire admin page group. |
|
546 | - */ |
|
547 | - public function load_scripts_styles() |
|
548 | - { |
|
549 | - wp_register_style( |
|
550 | - 'events-admin-css', |
|
551 | - EVENTS_ASSETS_URL . 'events-admin-page.css', |
|
552 | - array(), |
|
553 | - EVENT_ESPRESSO_VERSION |
|
554 | - ); |
|
555 | - wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL . 'ee-cat-admin.css', array(), EVENT_ESPRESSO_VERSION); |
|
556 | - wp_enqueue_style('events-admin-css'); |
|
557 | - wp_enqueue_style('ee-cat-admin'); |
|
558 | - // todo note: we also need to load_scripts_styles per view (i.e. default/view_report/event_details |
|
559 | - // registers for all views |
|
560 | - // scripts |
|
561 | - wp_register_script( |
|
562 | - 'event_editor_js', |
|
563 | - EVENTS_ASSETS_URL . 'event_editor.js', |
|
564 | - array('ee_admin_js', 'jquery-ui-slider', 'jquery-ui-timepicker-addon'), |
|
565 | - EVENT_ESPRESSO_VERSION, |
|
566 | - true |
|
567 | - ); |
|
568 | - } |
|
569 | - |
|
570 | - |
|
571 | - /** |
|
572 | - * Enqueuing scripts and styles specific to this view |
|
573 | - */ |
|
574 | - public function load_scripts_styles_create_new() |
|
575 | - { |
|
576 | - $this->load_scripts_styles_edit(); |
|
577 | - } |
|
578 | - |
|
579 | - |
|
580 | - /** |
|
581 | - * Enqueuing scripts and styles specific to this view |
|
582 | - */ |
|
583 | - public function load_scripts_styles_edit() |
|
584 | - { |
|
585 | - // styles |
|
586 | - wp_enqueue_style('espresso-ui-theme'); |
|
587 | - wp_register_style( |
|
588 | - 'event-editor-css', |
|
589 | - EVENTS_ASSETS_URL . 'event-editor.css', |
|
590 | - array('ee-admin-css'), |
|
591 | - EVENT_ESPRESSO_VERSION |
|
592 | - ); |
|
593 | - wp_enqueue_style('event-editor-css'); |
|
594 | - // scripts |
|
595 | - wp_register_script( |
|
596 | - 'event-datetime-metabox', |
|
597 | - EVENTS_ASSETS_URL . 'event-datetime-metabox.js', |
|
598 | - array('event_editor_js', 'ee-datepicker'), |
|
599 | - EVENT_ESPRESSO_VERSION |
|
600 | - ); |
|
601 | - wp_enqueue_script('event-datetime-metabox'); |
|
602 | - } |
|
603 | - |
|
604 | - |
|
605 | - /** |
|
606 | - * Populating the _views property for the category list table view. |
|
607 | - */ |
|
608 | - protected function _set_list_table_views_category_list() |
|
609 | - { |
|
610 | - $this->_views = array( |
|
611 | - 'all' => array( |
|
612 | - 'slug' => 'all', |
|
613 | - 'label' => esc_html__('All', 'event_espresso'), |
|
614 | - 'count' => 0, |
|
615 | - 'bulk_action' => array( |
|
616 | - 'delete_categories' => esc_html__('Delete Permanently', 'event_espresso'), |
|
617 | - ), |
|
618 | - ), |
|
619 | - ); |
|
620 | - } |
|
621 | - |
|
622 | - |
|
623 | - /** |
|
624 | - * For adding anything that fires on the admin_init hook for any route within this admin page group. |
|
625 | - */ |
|
626 | - public function admin_init() |
|
627 | - { |
|
628 | - EE_Registry::$i18n_js_strings['image_confirm'] = esc_html__( |
|
629 | - 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
630 | - 'event_espresso' |
|
631 | - ); |
|
632 | - } |
|
633 | - |
|
634 | - |
|
635 | - /** |
|
636 | - * For adding anything that should be triggered on the admin_notices hook for any route within this admin page |
|
637 | - * group. |
|
638 | - */ |
|
639 | - public function admin_notices() |
|
640 | - { |
|
641 | - } |
|
642 | - |
|
643 | - |
|
644 | - /** |
|
645 | - * For adding anything that should be triggered on the `admin_print_footer_scripts` hook for any route within |
|
646 | - * this admin page group. |
|
647 | - */ |
|
648 | - public function admin_footer_scripts() |
|
649 | - { |
|
650 | - } |
|
651 | - |
|
652 | - |
|
653 | - /** |
|
654 | - * Call this function to verify if an event is public and has tickets for sale. If it does, then we need to show a |
|
655 | - * warning (via EE_Error::add_error()); |
|
656 | - * |
|
657 | - * @param EE_Event $event Event object |
|
658 | - * @param string $req_type |
|
659 | - * @return void |
|
660 | - * @throws EE_Error |
|
661 | - * @access public |
|
662 | - */ |
|
663 | - public function verify_event_edit($event = null, $req_type = '') |
|
664 | - { |
|
665 | - // don't need to do this when processing |
|
666 | - if (! empty($req_type)) { |
|
667 | - return; |
|
668 | - } |
|
669 | - // no event? |
|
670 | - if (empty($event)) { |
|
671 | - // set event |
|
672 | - $event = $this->_cpt_model_obj; |
|
673 | - } |
|
674 | - // STILL no event? |
|
675 | - if (! $event instanceof EE_Event) { |
|
676 | - return; |
|
677 | - } |
|
678 | - $orig_status = $event->status(); |
|
679 | - // first check if event is active. |
|
680 | - if ($orig_status === EEM_Event::cancelled |
|
681 | - || $orig_status === EEM_Event::postponed |
|
682 | - || $event->is_expired() |
|
683 | - || $event->is_inactive() |
|
684 | - ) { |
|
685 | - return; |
|
686 | - } |
|
687 | - // made it here so it IS active... next check that any of the tickets are sold. |
|
688 | - if ($event->is_sold_out(true)) { |
|
689 | - if ($orig_status !== EEM_Event::sold_out && $event->status() !== $orig_status) { |
|
690 | - EE_Error::add_attention( |
|
691 | - sprintf( |
|
692 | - esc_html__( |
|
693 | - 'Please note that the Event Status has automatically been changed to %s because there are no more spaces available for this event. However, this change is not permanent until you update the event. You can change the status back to something else before updating if you wish.', |
|
694 | - 'event_espresso' |
|
695 | - ), |
|
696 | - EEH_Template::pretty_status(EEM_Event::sold_out, false, 'sentence') |
|
697 | - ) |
|
698 | - ); |
|
699 | - } |
|
700 | - return; |
|
701 | - } elseif ($orig_status === EEM_Event::sold_out) { |
|
702 | - EE_Error::add_attention( |
|
703 | - sprintf( |
|
704 | - esc_html__( |
|
705 | - 'Please note that the Event Status has automatically been changed to %s because more spaces have become available for this event, most likely due to abandoned transactions freeing up reserved tickets. However, this change is not permanent until you update the event. If you wish, you can change the status back to something else before updating.', |
|
706 | - 'event_espresso' |
|
707 | - ), |
|
708 | - EEH_Template::pretty_status($event->status(), false, 'sentence') |
|
709 | - ) |
|
710 | - ); |
|
711 | - } |
|
712 | - // now we need to determine if the event has any tickets on sale. If not then we dont' show the error |
|
713 | - if (! $event->tickets_on_sale()) { |
|
714 | - return; |
|
715 | - } |
|
716 | - // made it here so show warning |
|
717 | - $this->_edit_event_warning(); |
|
718 | - } |
|
719 | - |
|
720 | - |
|
721 | - /** |
|
722 | - * This is the text used for when an event is being edited that is public and has tickets for sale. |
|
723 | - * When needed, hook this into a EE_Error::add_error() notice. |
|
724 | - * |
|
725 | - * @access protected |
|
726 | - * @return void |
|
727 | - */ |
|
728 | - protected function _edit_event_warning() |
|
729 | - { |
|
730 | - // we don't want to add warnings during these requests |
|
731 | - if (isset($this->_req_data['action']) && $this->_req_data['action'] === 'editpost') { |
|
732 | - return; |
|
733 | - } |
|
734 | - EE_Error::add_attention( |
|
735 | - sprintf( |
|
736 | - esc_html__( |
|
737 | - 'Your event is open for registration. Making changes may disrupt any transactions in progress. %sLearn more%s', |
|
738 | - 'event_espresso' |
|
739 | - ), |
|
740 | - '<a class="espresso-help-tab-lnk">', |
|
741 | - '</a>' |
|
742 | - ) |
|
743 | - ); |
|
744 | - } |
|
745 | - |
|
746 | - |
|
747 | - /** |
|
748 | - * When a user is creating a new event, notify them if they haven't set their timezone. |
|
749 | - * Otherwise, do the normal logic |
|
750 | - * |
|
751 | - * @return string |
|
752 | - * @throws \EE_Error |
|
753 | - */ |
|
754 | - protected function _create_new_cpt_item() |
|
755 | - { |
|
756 | - $has_timezone_string = get_option('timezone_string'); |
|
757 | - // only nag them about setting their timezone if it's their first event, and they haven't already done it |
|
758 | - if (! $has_timezone_string && ! EEM_Event::instance()->exists(array())) { |
|
759 | - EE_Error::add_attention( |
|
760 | - sprintf( |
|
761 | - __( |
|
762 | - 'Your website\'s timezone is currently set to a UTC offset. We recommend updating your timezone to a city or region near you before you create an event. Change your timezone now:%1$s%2$s%3$sChange Timezone%4$s', |
|
763 | - 'event_espresso' |
|
764 | - ), |
|
765 | - '<br>', |
|
766 | - '<select id="timezone_string" name="timezone_string" aria-describedby="timezone-description">' |
|
767 | - . EEH_DTT_Helper::wp_timezone_choice('', EEH_DTT_Helper::get_user_locale()) |
|
768 | - . '</select>', |
|
769 | - '<button class="button button-secondary timezone-submit">', |
|
770 | - '</button><span class="spinner"></span>' |
|
771 | - ), |
|
772 | - __FILE__, |
|
773 | - __FUNCTION__, |
|
774 | - __LINE__ |
|
775 | - ); |
|
776 | - } |
|
777 | - return parent::_create_new_cpt_item(); |
|
778 | - } |
|
779 | - |
|
780 | - |
|
781 | - /** |
|
782 | - * Sets the _views property for the default route in this admin page group. |
|
783 | - */ |
|
784 | - protected function _set_list_table_views_default() |
|
785 | - { |
|
786 | - $this->_views = array( |
|
787 | - 'all' => array( |
|
788 | - 'slug' => 'all', |
|
789 | - 'label' => esc_html__('View All Events', 'event_espresso'), |
|
790 | - 'count' => 0, |
|
791 | - 'bulk_action' => array( |
|
792 | - 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
793 | - ), |
|
794 | - ), |
|
795 | - 'draft' => array( |
|
796 | - 'slug' => 'draft', |
|
797 | - 'label' => esc_html__('Draft', 'event_espresso'), |
|
798 | - 'count' => 0, |
|
799 | - 'bulk_action' => array( |
|
800 | - 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
801 | - ), |
|
802 | - ), |
|
803 | - ); |
|
804 | - if (EE_Registry::instance()->CAP->current_user_can('ee_delete_events', 'espresso_events_trash_events')) { |
|
805 | - $this->_views['trash'] = array( |
|
806 | - 'slug' => 'trash', |
|
807 | - 'label' => esc_html__('Trash', 'event_espresso'), |
|
808 | - 'count' => 0, |
|
809 | - 'bulk_action' => array( |
|
810 | - 'restore_events' => esc_html__('Restore From Trash', 'event_espresso'), |
|
811 | - 'delete_events' => esc_html__('Delete Permanently', 'event_espresso'), |
|
812 | - ), |
|
813 | - ); |
|
814 | - } |
|
815 | - } |
|
816 | - |
|
817 | - |
|
818 | - /** |
|
819 | - * Provides the legend item array for the default list table view. |
|
820 | - * |
|
821 | - * @return array |
|
822 | - */ |
|
823 | - protected function _event_legend_items() |
|
824 | - { |
|
825 | - $items = array( |
|
826 | - 'view_details' => array( |
|
827 | - 'class' => 'dashicons dashicons-search', |
|
828 | - 'desc' => esc_html__('View Event', 'event_espresso'), |
|
829 | - ), |
|
830 | - 'edit_event' => array( |
|
831 | - 'class' => 'ee-icon ee-icon-calendar-edit', |
|
832 | - 'desc' => esc_html__('Edit Event Details', 'event_espresso'), |
|
833 | - ), |
|
834 | - 'view_attendees' => array( |
|
835 | - 'class' => 'dashicons dashicons-groups', |
|
836 | - 'desc' => esc_html__('View Registrations for Event', 'event_espresso'), |
|
837 | - ), |
|
838 | - ); |
|
839 | - $items = apply_filters('FHEE__Events_Admin_Page___event_legend_items__items', $items); |
|
840 | - $statuses = array( |
|
841 | - 'sold_out_status' => array( |
|
842 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::sold_out, |
|
843 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::sold_out, false, 'sentence'), |
|
844 | - ), |
|
845 | - 'active_status' => array( |
|
846 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::active, |
|
847 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::active, false, 'sentence'), |
|
848 | - ), |
|
849 | - 'upcoming_status' => array( |
|
850 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::upcoming, |
|
851 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::upcoming, false, 'sentence'), |
|
852 | - ), |
|
853 | - 'postponed_status' => array( |
|
854 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::postponed, |
|
855 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::postponed, false, 'sentence'), |
|
856 | - ), |
|
857 | - 'cancelled_status' => array( |
|
858 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::cancelled, |
|
859 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::cancelled, false, 'sentence'), |
|
860 | - ), |
|
861 | - 'expired_status' => array( |
|
862 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::expired, |
|
863 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::expired, false, 'sentence'), |
|
864 | - ), |
|
865 | - 'inactive_status' => array( |
|
866 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::inactive, |
|
867 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::inactive, false, 'sentence'), |
|
868 | - ), |
|
869 | - ); |
|
870 | - $statuses = apply_filters('FHEE__Events_Admin_Page__event_legend_items__statuses', $statuses); |
|
871 | - return array_merge($items, $statuses); |
|
872 | - } |
|
873 | - |
|
874 | - |
|
875 | - /** |
|
876 | - * @return EEM_Event |
|
877 | - */ |
|
878 | - private function _event_model() |
|
879 | - { |
|
880 | - if (! $this->_event_model instanceof EEM_Event) { |
|
881 | - $this->_event_model = EE_Registry::instance()->load_model('Event'); |
|
882 | - } |
|
883 | - return $this->_event_model; |
|
884 | - } |
|
885 | - |
|
886 | - |
|
887 | - /** |
|
888 | - * Adds extra buttons to the WP CPT permalink field row. |
|
889 | - * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter. |
|
890 | - * |
|
891 | - * @param string $return the current html |
|
892 | - * @param int $id the post id for the page |
|
893 | - * @param string $new_title What the title is |
|
894 | - * @param string $new_slug what the slug is |
|
895 | - * @return string The new html string for the permalink area |
|
896 | - */ |
|
897 | - public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
898 | - { |
|
899 | - // make sure this is only when editing |
|
900 | - if (! empty($id)) { |
|
901 | - $post = get_post($id); |
|
902 | - $return .= '<a class="button button-small" onclick="prompt(\'Shortcode:\', jQuery(\'#shortcode\').val()); return false;" href="#" tabindex="-1">' |
|
903 | - . esc_html__('Shortcode', 'event_espresso') |
|
904 | - . '</a> '; |
|
905 | - $return .= '<input id="shortcode" type="hidden" value="[ESPRESSO_TICKET_SELECTOR event_id=' |
|
906 | - . $post->ID |
|
907 | - . ']">'; |
|
908 | - } |
|
909 | - return $return; |
|
910 | - } |
|
911 | - |
|
912 | - |
|
913 | - /** |
|
914 | - * _events_overview_list_table |
|
915 | - * This contains the logic for showing the events_overview list |
|
916 | - * |
|
917 | - * @access protected |
|
918 | - * @return void |
|
919 | - * @throws \EE_Error |
|
920 | - */ |
|
921 | - protected function _events_overview_list_table() |
|
922 | - { |
|
923 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
924 | - $this->_template_args['after_list_table'] = ! empty($this->_template_args['after_list_table']) |
|
925 | - ? (array) $this->_template_args['after_list_table'] |
|
926 | - : array(); |
|
927 | - $this->_template_args['after_list_table']['view_event_list_button'] = EEH_HTML::br() |
|
928 | - . EEH_Template::get_button_or_link( |
|
929 | - get_post_type_archive_link('espresso_events'), |
|
930 | - esc_html__("View Event Archive Page", "event_espresso"), |
|
931 | - 'button' |
|
932 | - ); |
|
933 | - $this->_template_args['after_list_table']['legend'] = $this->_display_legend($this->_event_legend_items()); |
|
934 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
935 | - 'create_new', |
|
936 | - 'add', |
|
937 | - array(), |
|
938 | - 'add-new-h2' |
|
939 | - ); |
|
940 | - $this->display_admin_list_table_page_with_no_sidebar(); |
|
941 | - } |
|
942 | - |
|
943 | - |
|
944 | - /** |
|
945 | - * this allows for extra misc actions in the default WP publish box |
|
946 | - * |
|
947 | - * @return void |
|
948 | - */ |
|
949 | - public function extra_misc_actions_publish_box() |
|
950 | - { |
|
951 | - $this->_generate_publish_box_extra_content(); |
|
952 | - } |
|
953 | - |
|
954 | - |
|
955 | - /** |
|
956 | - * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been |
|
957 | - * saved. |
|
958 | - * Typically you would use this to save any additional data. |
|
959 | - * Keep in mind also that "save_post" runs on EVERY post update to the database. |
|
960 | - * ALSO very important. When a post transitions from scheduled to published, |
|
961 | - * the save_post action is fired but you will NOT have any _POST data containing any extra info you may have from |
|
962 | - * other meta saves. So MAKE sure that you handle this accordingly. |
|
963 | - * |
|
964 | - * @access protected |
|
965 | - * @abstract |
|
966 | - * @param string $post_id The ID of the cpt that was saved (so you can link relationally) |
|
967 | - * @param object $post The post object of the cpt that was saved. |
|
968 | - * @return void |
|
969 | - * @throws \EE_Error |
|
970 | - */ |
|
971 | - protected function _insert_update_cpt_item($post_id, $post) |
|
972 | - { |
|
973 | - if ($post instanceof WP_Post && $post->post_type !== 'espresso_events') { |
|
974 | - // get out we're not processing an event save. |
|
975 | - return; |
|
976 | - } |
|
977 | - $event_values = array( |
|
978 | - 'EVT_display_desc' => ! empty($this->_req_data['display_desc']) ? 1 : 0, |
|
979 | - 'EVT_display_ticket_selector' => ! empty($this->_req_data['display_ticket_selector']) ? 1 : 0, |
|
980 | - 'EVT_additional_limit' => min( |
|
981 | - apply_filters('FHEE__EE_Events_Admin__insert_update_cpt_item__EVT_additional_limit_max', 255), |
|
982 | - ! empty($this->_req_data['additional_limit']) ? $this->_req_data['additional_limit'] : null |
|
983 | - ), |
|
984 | - 'EVT_default_registration_status' => ! empty($this->_req_data['EVT_default_registration_status']) |
|
985 | - ? $this->_req_data['EVT_default_registration_status'] |
|
986 | - : EE_Registry::instance()->CFG->registration->default_STS_ID, |
|
987 | - 'EVT_member_only' => ! empty($this->_req_data['member_only']) ? 1 : 0, |
|
988 | - 'EVT_allow_overflow' => ! empty($this->_req_data['EVT_allow_overflow']) ? 1 : 0, |
|
989 | - 'EVT_timezone_string' => ! empty($this->_req_data['timezone_string']) |
|
990 | - ? $this->_req_data['timezone_string'] : null, |
|
991 | - 'EVT_external_URL' => ! empty($this->_req_data['externalURL']) |
|
992 | - ? $this->_req_data['externalURL'] : null, |
|
993 | - 'EVT_phone' => ! empty($this->_req_data['event_phone']) |
|
994 | - ? $this->_req_data['event_phone'] : null, |
|
995 | - ); |
|
996 | - // update event |
|
997 | - $success = $this->_event_model()->update_by_ID($event_values, $post_id); |
|
998 | - // get event_object for other metaboxes... though it would seem to make sense to just use $this->_event_model()->get_one_by_ID( $post_id ).. i have to setup where conditions to override the filters in the model that filter out autodraft and inherit statuses so we GET the inherit id! |
|
999 | - $get_one_where = array( |
|
1000 | - $this->_event_model()->primary_key_name() => $post_id, |
|
1001 | - 'OR' => array( |
|
1002 | - 'status' => $post->post_status, |
|
1003 | - // if trying to "Publish" a sold out event, it's status will get switched back to "sold_out" in the db, |
|
1004 | - // but the returned object here has a status of "publish", so use the original post status as well |
|
1005 | - 'status*1' => $this->_req_data['original_post_status'], |
|
1006 | - ), |
|
1007 | - ); |
|
1008 | - $event = $this->_event_model()->get_one(array($get_one_where)); |
|
1009 | - // the following are default callbacks for event attachment updates that can be overridden by caffeinated functionality and/or addons. |
|
1010 | - $event_update_callbacks = apply_filters( |
|
1011 | - 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
1012 | - array( |
|
1013 | - array($this, '_default_venue_update'), |
|
1014 | - array($this, '_default_tickets_update'), |
|
1015 | - ) |
|
1016 | - ); |
|
1017 | - $att_success = true; |
|
1018 | - foreach ($event_update_callbacks as $e_callback) { |
|
1019 | - $_success = is_callable($e_callback) |
|
1020 | - ? call_user_func($e_callback, $event, $this->_req_data) |
|
1021 | - : false; |
|
1022 | - // if ANY of these updates fail then we want the appropriate global error message |
|
1023 | - $att_success = ! $att_success ? $att_success : $_success; |
|
1024 | - } |
|
1025 | - // any errors? |
|
1026 | - if ($success && false === $att_success) { |
|
1027 | - EE_Error::add_error( |
|
1028 | - esc_html__( |
|
1029 | - 'Event Details saved successfully but something went wrong with saving attachments.', |
|
1030 | - 'event_espresso' |
|
1031 | - ), |
|
1032 | - __FILE__, |
|
1033 | - __FUNCTION__, |
|
1034 | - __LINE__ |
|
1035 | - ); |
|
1036 | - } elseif ($success === false) { |
|
1037 | - EE_Error::add_error( |
|
1038 | - esc_html__('Event Details did not save successfully.', 'event_espresso'), |
|
1039 | - __FILE__, |
|
1040 | - __FUNCTION__, |
|
1041 | - __LINE__ |
|
1042 | - ); |
|
1043 | - } |
|
1044 | - } |
|
1045 | - |
|
1046 | - |
|
1047 | - /** |
|
1048 | - * @see parent::restore_item() |
|
1049 | - * @param int $post_id |
|
1050 | - * @param int $revision_id |
|
1051 | - */ |
|
1052 | - protected function _restore_cpt_item($post_id, $revision_id) |
|
1053 | - { |
|
1054 | - // copy existing event meta to new post |
|
1055 | - $post_evt = $this->_event_model()->get_one_by_ID($post_id); |
|
1056 | - if ($post_evt instanceof EE_Event) { |
|
1057 | - // meta revision restore |
|
1058 | - $post_evt->restore_revision($revision_id); |
|
1059 | - // related objs restore |
|
1060 | - $post_evt->restore_revision($revision_id, array('Venue', 'Datetime', 'Price')); |
|
1061 | - } |
|
1062 | - } |
|
1063 | - |
|
1064 | - |
|
1065 | - /** |
|
1066 | - * Attach the venue to the Event |
|
1067 | - * |
|
1068 | - * @param \EE_Event $evtobj Event Object to add the venue to |
|
1069 | - * @param array $data The request data from the form |
|
1070 | - * @return bool Success or fail. |
|
1071 | - */ |
|
1072 | - protected function _default_venue_update(\EE_Event $evtobj, $data) |
|
1073 | - { |
|
1074 | - require_once(EE_MODELS . 'EEM_Venue.model.php'); |
|
1075 | - $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1076 | - $rows_affected = null; |
|
1077 | - $venue_id = ! empty($data['venue_id']) ? $data['venue_id'] : null; |
|
1078 | - // very important. If we don't have a venue name... |
|
1079 | - // then we'll get out because not necessary to create empty venue |
|
1080 | - if (empty($data['venue_title'])) { |
|
1081 | - return false; |
|
1082 | - } |
|
1083 | - $venue_array = array( |
|
1084 | - 'VNU_wp_user' => $evtobj->get('EVT_wp_user'), |
|
1085 | - 'VNU_name' => ! empty($data['venue_title']) ? $data['venue_title'] : null, |
|
1086 | - 'VNU_desc' => ! empty($data['venue_description']) ? $data['venue_description'] : null, |
|
1087 | - 'VNU_identifier' => ! empty($data['venue_identifier']) ? $data['venue_identifier'] : null, |
|
1088 | - 'VNU_short_desc' => ! empty($data['venue_short_description']) ? $data['venue_short_description'] |
|
1089 | - : null, |
|
1090 | - 'VNU_address' => ! empty($data['address']) ? $data['address'] : null, |
|
1091 | - 'VNU_address2' => ! empty($data['address2']) ? $data['address2'] : null, |
|
1092 | - 'VNU_city' => ! empty($data['city']) ? $data['city'] : null, |
|
1093 | - 'STA_ID' => ! empty($data['state']) ? $data['state'] : null, |
|
1094 | - 'CNT_ISO' => ! empty($data['countries']) ? $data['countries'] : null, |
|
1095 | - 'VNU_zip' => ! empty($data['zip']) ? $data['zip'] : null, |
|
1096 | - 'VNU_phone' => ! empty($data['venue_phone']) ? $data['venue_phone'] : null, |
|
1097 | - 'VNU_capacity' => ! empty($data['venue_capacity']) ? $data['venue_capacity'] : null, |
|
1098 | - 'VNU_url' => ! empty($data['venue_url']) ? $data['venue_url'] : null, |
|
1099 | - 'VNU_virtual_phone' => ! empty($data['virtual_phone']) ? $data['virtual_phone'] : null, |
|
1100 | - 'VNU_virtual_url' => ! empty($data['virtual_url']) ? $data['virtual_url'] : null, |
|
1101 | - 'VNU_enable_for_gmap' => isset($data['enable_for_gmap']) ? 1 : 0, |
|
1102 | - 'status' => 'publish', |
|
1103 | - ); |
|
1104 | - // if we've got the venue_id then we're just updating the existing venue so let's do that and then get out. |
|
1105 | - if (! empty($venue_id)) { |
|
1106 | - $update_where = array($venue_model->primary_key_name() => $venue_id); |
|
1107 | - $rows_affected = $venue_model->update($venue_array, array($update_where)); |
|
1108 | - // we've gotta make sure that the venue is always attached to a revision.. add_relation_to should take care of making sure that the relation is already present. |
|
1109 | - $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1110 | - return $rows_affected > 0 ? true : false; |
|
1111 | - } else { |
|
1112 | - // we insert the venue |
|
1113 | - $venue_id = $venue_model->insert($venue_array); |
|
1114 | - $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1115 | - return ! empty($venue_id) ? true : false; |
|
1116 | - } |
|
1117 | - // when we have the ancestor come in it's already been handled by the revision save. |
|
1118 | - } |
|
1119 | - |
|
1120 | - |
|
1121 | - /** |
|
1122 | - * Handles saving everything related to Tickets (datetimes, tickets, prices) |
|
1123 | - * |
|
1124 | - * @param EE_Event $evtobj The Event object we're attaching data to |
|
1125 | - * @param array $data The request data from the form |
|
1126 | - * @return array |
|
1127 | - */ |
|
1128 | - protected function _default_tickets_update(EE_Event $evtobj, $data) |
|
1129 | - { |
|
1130 | - $success = true; |
|
1131 | - $saved_dtt = null; |
|
1132 | - $saved_tickets = array(); |
|
1133 | - $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1134 | - foreach ($data['edit_event_datetimes'] as $row => $dtt) { |
|
1135 | - // trim all values to ensure any excess whitespace is removed. |
|
1136 | - $dtt = array_map('trim', $dtt); |
|
1137 | - $dtt['DTT_EVT_end'] = isset($dtt['DTT_EVT_end']) && ! empty($dtt['DTT_EVT_end']) ? $dtt['DTT_EVT_end'] |
|
1138 | - : $dtt['DTT_EVT_start']; |
|
1139 | - $datetime_values = array( |
|
1140 | - 'DTT_ID' => ! empty($dtt['DTT_ID']) ? $dtt['DTT_ID'] : null, |
|
1141 | - 'DTT_EVT_start' => $dtt['DTT_EVT_start'], |
|
1142 | - 'DTT_EVT_end' => $dtt['DTT_EVT_end'], |
|
1143 | - 'DTT_reg_limit' => empty($dtt['DTT_reg_limit']) ? EE_INF : $dtt['DTT_reg_limit'], |
|
1144 | - 'DTT_order' => $row, |
|
1145 | - ); |
|
1146 | - // if we have an id then let's get existing object first and then set the new values. Otherwise we instantiate a new object for save. |
|
1147 | - if (! empty($dtt['DTT_ID'])) { |
|
1148 | - $DTM = EE_Registry::instance() |
|
1149 | - ->load_model('Datetime', array($evtobj->get_timezone())) |
|
1150 | - ->get_one_by_ID($dtt['DTT_ID']); |
|
1151 | - $DTM->set_date_format($incoming_date_formats[0]); |
|
1152 | - $DTM->set_time_format($incoming_date_formats[1]); |
|
1153 | - foreach ($datetime_values as $field => $value) { |
|
1154 | - $DTM->set($field, $value); |
|
1155 | - } |
|
1156 | - // make sure the $dtt_id here is saved just in case after the add_relation_to() the autosave replaces it. We need to do this so we dont' TRASH the parent DTT. |
|
1157 | - $saved_dtts[ $DTM->ID() ] = $DTM; |
|
1158 | - } else { |
|
1159 | - $DTM = EE_Registry::instance()->load_class( |
|
1160 | - 'Datetime', |
|
1161 | - array($datetime_values, $evtobj->get_timezone(), $incoming_date_formats), |
|
1162 | - false, |
|
1163 | - false |
|
1164 | - ); |
|
1165 | - foreach ($datetime_values as $field => $value) { |
|
1166 | - $DTM->set($field, $value); |
|
1167 | - } |
|
1168 | - } |
|
1169 | - $DTM->save(); |
|
1170 | - $DTT = $evtobj->_add_relation_to($DTM, 'Datetime'); |
|
1171 | - // load DTT helper |
|
1172 | - // before going any further make sure our dates are setup correctly so that the end date is always equal or greater than the start date. |
|
1173 | - if ($DTT->get_raw('DTT_EVT_start') > $DTT->get_raw('DTT_EVT_end')) { |
|
1174 | - $DTT->set('DTT_EVT_end', $DTT->get('DTT_EVT_start')); |
|
1175 | - $DTT = EEH_DTT_Helper::date_time_add($DTT, 'DTT_EVT_end', 'days'); |
|
1176 | - $DTT->save(); |
|
1177 | - } |
|
1178 | - // now we got to make sure we add the new DTT_ID to the $saved_dtts array because it is possible there was a new one created for the autosave. |
|
1179 | - $saved_dtt = $DTT; |
|
1180 | - $success = ! $success ? $success : $DTT; |
|
1181 | - // if ANY of these updates fail then we want the appropriate global error message. |
|
1182 | - // //todo this is actually sucky we need a better error message but this is what it is for now. |
|
1183 | - } |
|
1184 | - // no dtts get deleted so we don't do any of that logic here. |
|
1185 | - // update tickets next |
|
1186 | - $old_tickets = isset($data['ticket_IDs']) ? explode(',', $data['ticket_IDs']) : array(); |
|
1187 | - foreach ($data['edit_tickets'] as $row => $tkt) { |
|
1188 | - $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1189 | - $update_prices = false; |
|
1190 | - $ticket_price = isset($data['edit_prices'][ $row ][1]['PRC_amount']) |
|
1191 | - ? $data['edit_prices'][ $row ][1]['PRC_amount'] : 0; |
|
1192 | - // trim inputs to ensure any excess whitespace is removed. |
|
1193 | - $tkt = array_map('trim', $tkt); |
|
1194 | - if (empty($tkt['TKT_start_date'])) { |
|
1195 | - // let's use now in the set timezone. |
|
1196 | - $now = new DateTime('now', new DateTimeZone($evtobj->get_timezone())); |
|
1197 | - $tkt['TKT_start_date'] = $now->format($incoming_date_formats[0] . ' ' . $incoming_date_formats[1]); |
|
1198 | - } |
|
1199 | - if (empty($tkt['TKT_end_date'])) { |
|
1200 | - // use the start date of the first datetime |
|
1201 | - $dtt = $evtobj->first_datetime(); |
|
1202 | - $tkt['TKT_end_date'] = $dtt->start_date_and_time( |
|
1203 | - $incoming_date_formats[0], |
|
1204 | - $incoming_date_formats[1] |
|
1205 | - ); |
|
1206 | - } |
|
1207 | - $TKT_values = array( |
|
1208 | - 'TKT_ID' => ! empty($tkt['TKT_ID']) ? $tkt['TKT_ID'] : null, |
|
1209 | - 'TTM_ID' => ! empty($tkt['TTM_ID']) ? $tkt['TTM_ID'] : 0, |
|
1210 | - 'TKT_name' => ! empty($tkt['TKT_name']) ? $tkt['TKT_name'] : '', |
|
1211 | - 'TKT_description' => ! empty($tkt['TKT_description']) ? $tkt['TKT_description'] : '', |
|
1212 | - 'TKT_start_date' => $tkt['TKT_start_date'], |
|
1213 | - 'TKT_end_date' => $tkt['TKT_end_date'], |
|
1214 | - 'TKT_qty' => ! isset($tkt['TKT_qty']) || $tkt['TKT_qty'] === '' ? EE_INF : $tkt['TKT_qty'], |
|
1215 | - 'TKT_uses' => ! isset($tkt['TKT_uses']) || $tkt['TKT_uses'] === '' ? EE_INF : $tkt['TKT_uses'], |
|
1216 | - 'TKT_min' => empty($tkt['TKT_min']) ? 0 : $tkt['TKT_min'], |
|
1217 | - 'TKT_max' => empty($tkt['TKT_max']) ? EE_INF : $tkt['TKT_max'], |
|
1218 | - 'TKT_row' => $row, |
|
1219 | - 'TKT_order' => isset($tkt['TKT_order']) ? $tkt['TKT_order'] : $row, |
|
1220 | - 'TKT_price' => $ticket_price, |
|
1221 | - ); |
|
1222 | - // if this is a default TKT, then we need to set the TKT_ID to 0 and update accordingly, which means in turn that the prices will become new prices as well. |
|
1223 | - if (isset($tkt['TKT_is_default']) && $tkt['TKT_is_default']) { |
|
1224 | - $TKT_values['TKT_ID'] = 0; |
|
1225 | - $TKT_values['TKT_is_default'] = 0; |
|
1226 | - $TKT_values['TKT_price'] = $ticket_price; |
|
1227 | - $update_prices = true; |
|
1228 | - } |
|
1229 | - // if we have a TKT_ID then we need to get that existing TKT_obj and update it |
|
1230 | - // we actually do our saves a head of doing any add_relations to because its entirely possible that this ticket didn't removed or added to any datetime in the session but DID have it's items modified. |
|
1231 | - // keep in mind that if the TKT has been sold (and we have changed pricing information), then we won't be updating the tkt but instead a new tkt will be created and the old one archived. |
|
1232 | - if (! empty($tkt['TKT_ID'])) { |
|
1233 | - $TKT = EE_Registry::instance() |
|
1234 | - ->load_model('Ticket', array($evtobj->get_timezone())) |
|
1235 | - ->get_one_by_ID($tkt['TKT_ID']); |
|
1236 | - if ($TKT instanceof EE_Ticket) { |
|
1237 | - $ticket_sold = $TKT->count_related( |
|
1238 | - 'Registration', |
|
1239 | - array( |
|
1240 | - array( |
|
1241 | - 'STS_ID' => array( |
|
1242 | - 'NOT IN', |
|
1243 | - array(EEM_Registration::status_id_incomplete), |
|
1244 | - ), |
|
1245 | - ), |
|
1246 | - ) |
|
1247 | - ) > 0 ? true : false; |
|
1248 | - // let's just check the total price for the existing ticket and determine if it matches the new total price. if they are different then we create a new ticket (if tkts sold) if they aren't different then we go ahead and modify existing ticket. |
|
1249 | - $create_new_TKT = $ticket_sold && $ticket_price != $TKT->get('TKT_price') |
|
1250 | - && ! $TKT->get('TKT_deleted'); |
|
1251 | - $TKT->set_date_format($incoming_date_formats[0]); |
|
1252 | - $TKT->set_time_format($incoming_date_formats[1]); |
|
1253 | - // set new values |
|
1254 | - foreach ($TKT_values as $field => $value) { |
|
1255 | - if ($field == 'TKT_qty') { |
|
1256 | - $TKT->set_qty($value); |
|
1257 | - } else { |
|
1258 | - $TKT->set($field, $value); |
|
1259 | - } |
|
1260 | - } |
|
1261 | - // if $create_new_TKT is false then we can safely update the existing ticket. Otherwise we have to create a new ticket. |
|
1262 | - if ($create_new_TKT) { |
|
1263 | - // archive the old ticket first |
|
1264 | - $TKT->set('TKT_deleted', 1); |
|
1265 | - $TKT->save(); |
|
1266 | - // make sure this ticket is still recorded in our saved_tkts so we don't run it through the regular trash routine. |
|
1267 | - $saved_tickets[ $TKT->ID() ] = $TKT; |
|
1268 | - // create new ticket that's a copy of the existing except a new id of course (and not archived) AND has the new TKT_price associated with it. |
|
1269 | - $TKT = clone $TKT; |
|
1270 | - $TKT->set('TKT_ID', 0); |
|
1271 | - $TKT->set('TKT_deleted', 0); |
|
1272 | - $TKT->set('TKT_price', $ticket_price); |
|
1273 | - $TKT->set('TKT_sold', 0); |
|
1274 | - // now we need to make sure that $new prices are created as well and attached to new ticket. |
|
1275 | - $update_prices = true; |
|
1276 | - } |
|
1277 | - // make sure price is set if it hasn't been already |
|
1278 | - $TKT->set('TKT_price', $ticket_price); |
|
1279 | - } |
|
1280 | - } else { |
|
1281 | - // no TKT_id so a new TKT |
|
1282 | - $TKT_values['TKT_price'] = $ticket_price; |
|
1283 | - $TKT = EE_Registry::instance()->load_class('Ticket', array($TKT_values), false, false); |
|
1284 | - if ($TKT instanceof EE_Ticket) { |
|
1285 | - // need to reset values to properly account for the date formats |
|
1286 | - $TKT->set_date_format($incoming_date_formats[0]); |
|
1287 | - $TKT->set_time_format($incoming_date_formats[1]); |
|
1288 | - $TKT->set_timezone($evtobj->get_timezone()); |
|
1289 | - // set new values |
|
1290 | - foreach ($TKT_values as $field => $value) { |
|
1291 | - if ($field == 'TKT_qty') { |
|
1292 | - $TKT->set_qty($value); |
|
1293 | - } else { |
|
1294 | - $TKT->set($field, $value); |
|
1295 | - } |
|
1296 | - } |
|
1297 | - $update_prices = true; |
|
1298 | - } |
|
1299 | - } |
|
1300 | - // cap ticket qty by datetime reg limits |
|
1301 | - $TKT->set_qty(min($TKT->qty(), $TKT->qty('reg_limit'))); |
|
1302 | - // update ticket. |
|
1303 | - $TKT->save(); |
|
1304 | - // before going any further make sure our dates are setup correctly so that the end date is always equal or greater than the start date. |
|
1305 | - if ($TKT->get_raw('TKT_start_date') > $TKT->get_raw('TKT_end_date')) { |
|
1306 | - $TKT->set('TKT_end_date', $TKT->get('TKT_start_date')); |
|
1307 | - $TKT = EEH_DTT_Helper::date_time_add($TKT, 'TKT_end_date', 'days'); |
|
1308 | - $TKT->save(); |
|
1309 | - } |
|
1310 | - // initially let's add the ticket to the dtt |
|
1311 | - $saved_dtt->_add_relation_to($TKT, 'Ticket'); |
|
1312 | - $saved_tickets[ $TKT->ID() ] = $TKT; |
|
1313 | - // add prices to ticket |
|
1314 | - $this->_add_prices_to_ticket($data['edit_prices'][ $row ], $TKT, $update_prices); |
|
1315 | - } |
|
1316 | - // however now we need to handle permanently deleting tickets via the ui. Keep in mind that the ui does not allow deleting/archiving tickets that have ticket sold. However, it does allow for deleting tickets that have no tickets sold, in which case we want to get rid of permanently because there is no need to save in db. |
|
1317 | - $old_tickets = isset($old_tickets[0]) && $old_tickets[0] == '' ? array() : $old_tickets; |
|
1318 | - $tickets_removed = array_diff($old_tickets, array_keys($saved_tickets)); |
|
1319 | - foreach ($tickets_removed as $id) { |
|
1320 | - $id = absint($id); |
|
1321 | - // get the ticket for this id |
|
1322 | - $tkt_to_remove = EE_Registry::instance()->load_model('Ticket')->get_one_by_ID($id); |
|
1323 | - // need to get all the related datetimes on this ticket and remove from every single one of them (remember this process can ONLY kick off if there are NO tkts_sold) |
|
1324 | - $dtts = $tkt_to_remove->get_many_related('Datetime'); |
|
1325 | - foreach ($dtts as $dtt) { |
|
1326 | - $tkt_to_remove->_remove_relation_to($dtt, 'Datetime'); |
|
1327 | - } |
|
1328 | - // need to do the same for prices (except these prices can also be deleted because again, tickets can only be trashed if they don't have any TKTs sold (otherwise they are just archived)) |
|
1329 | - $tkt_to_remove->delete_related_permanently('Price'); |
|
1330 | - // finally let's delete this ticket (which should not be blocked at this point b/c we've removed all our relationships) |
|
1331 | - $tkt_to_remove->delete_permanently(); |
|
1332 | - } |
|
1333 | - return array($saved_dtt, $saved_tickets); |
|
1334 | - } |
|
1335 | - |
|
1336 | - |
|
1337 | - /** |
|
1338 | - * This attaches a list of given prices to a ticket. |
|
1339 | - * Note we dont' have to worry about ever removing relationships (or archiving prices) because if there is a change |
|
1340 | - * in price information on a ticket, a new ticket is created anyways so the archived ticket will retain the old |
|
1341 | - * price info and prices are automatically "archived" via the ticket. |
|
1342 | - * |
|
1343 | - * @access private |
|
1344 | - * @param array $prices Array of prices from the form. |
|
1345 | - * @param EE_Ticket $ticket EE_Ticket object that prices are being attached to. |
|
1346 | - * @param bool $new_prices Whether attach existing incoming prices or create new ones. |
|
1347 | - * @return void |
|
1348 | - */ |
|
1349 | - private function _add_prices_to_ticket($prices, EE_Ticket $ticket, $new_prices = false) |
|
1350 | - { |
|
1351 | - foreach ($prices as $row => $prc) { |
|
1352 | - $PRC_values = array( |
|
1353 | - 'PRC_ID' => ! empty($prc['PRC_ID']) ? $prc['PRC_ID'] : null, |
|
1354 | - 'PRT_ID' => ! empty($prc['PRT_ID']) ? $prc['PRT_ID'] : null, |
|
1355 | - 'PRC_amount' => ! empty($prc['PRC_amount']) ? $prc['PRC_amount'] : 0, |
|
1356 | - 'PRC_name' => ! empty($prc['PRC_name']) ? $prc['PRC_name'] : '', |
|
1357 | - 'PRC_desc' => ! empty($prc['PRC_desc']) ? $prc['PRC_desc'] : '', |
|
1358 | - 'PRC_is_default' => 0, // make sure prices are NOT set as default from this context |
|
1359 | - 'PRC_order' => $row, |
|
1360 | - ); |
|
1361 | - if ($new_prices || empty($PRC_values['PRC_ID'])) { |
|
1362 | - $PRC_values['PRC_ID'] = 0; |
|
1363 | - $PRC = EE_Registry::instance()->load_class('Price', array($PRC_values), false, false); |
|
1364 | - } else { |
|
1365 | - $PRC = EE_Registry::instance()->load_model('Price')->get_one_by_ID($prc['PRC_ID']); |
|
1366 | - // update this price with new values |
|
1367 | - foreach ($PRC_values as $field => $newprc) { |
|
1368 | - $PRC->set($field, $newprc); |
|
1369 | - } |
|
1370 | - $PRC->save(); |
|
1371 | - } |
|
1372 | - $ticket->_add_relation_to($PRC, 'Price'); |
|
1373 | - } |
|
1374 | - } |
|
1375 | - |
|
1376 | - |
|
1377 | - /** |
|
1378 | - * Add in our autosave ajax handlers |
|
1379 | - * |
|
1380 | - */ |
|
1381 | - protected function _ee_autosave_create_new() |
|
1382 | - { |
|
1383 | - } |
|
1384 | - |
|
1385 | - |
|
1386 | - /** |
|
1387 | - * More autosave handlers. |
|
1388 | - */ |
|
1389 | - protected function _ee_autosave_edit() |
|
1390 | - { |
|
1391 | - return; // TEMPORARILY EXITING CAUSE THIS IS A TODO |
|
1392 | - } |
|
1393 | - |
|
1394 | - |
|
1395 | - /** |
|
1396 | - * _generate_publish_box_extra_content |
|
1397 | - */ |
|
1398 | - private function _generate_publish_box_extra_content() |
|
1399 | - { |
|
1400 | - // load formatter helper |
|
1401 | - // args for getting related registrations |
|
1402 | - $approved_query_args = array( |
|
1403 | - array( |
|
1404 | - 'REG_deleted' => 0, |
|
1405 | - 'STS_ID' => EEM_Registration::status_id_approved, |
|
1406 | - ), |
|
1407 | - ); |
|
1408 | - $not_approved_query_args = array( |
|
1409 | - array( |
|
1410 | - 'REG_deleted' => 0, |
|
1411 | - 'STS_ID' => EEM_Registration::status_id_not_approved, |
|
1412 | - ), |
|
1413 | - ); |
|
1414 | - $pending_payment_query_args = array( |
|
1415 | - array( |
|
1416 | - 'REG_deleted' => 0, |
|
1417 | - 'STS_ID' => EEM_Registration::status_id_pending_payment, |
|
1418 | - ), |
|
1419 | - ); |
|
1420 | - // publish box |
|
1421 | - $publish_box_extra_args = array( |
|
1422 | - 'view_approved_reg_url' => add_query_arg( |
|
1423 | - array( |
|
1424 | - 'action' => 'default', |
|
1425 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1426 | - '_reg_status' => EEM_Registration::status_id_approved, |
|
1427 | - ), |
|
1428 | - REG_ADMIN_URL |
|
1429 | - ), |
|
1430 | - 'view_not_approved_reg_url' => add_query_arg( |
|
1431 | - array( |
|
1432 | - 'action' => 'default', |
|
1433 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1434 | - '_reg_status' => EEM_Registration::status_id_not_approved, |
|
1435 | - ), |
|
1436 | - REG_ADMIN_URL |
|
1437 | - ), |
|
1438 | - 'view_pending_payment_reg_url' => add_query_arg( |
|
1439 | - array( |
|
1440 | - 'action' => 'default', |
|
1441 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1442 | - '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
1443 | - ), |
|
1444 | - REG_ADMIN_URL |
|
1445 | - ), |
|
1446 | - 'approved_regs' => $this->_cpt_model_obj->count_related( |
|
1447 | - 'Registration', |
|
1448 | - $approved_query_args |
|
1449 | - ), |
|
1450 | - 'not_approved_regs' => $this->_cpt_model_obj->count_related( |
|
1451 | - 'Registration', |
|
1452 | - $not_approved_query_args |
|
1453 | - ), |
|
1454 | - 'pending_payment_regs' => $this->_cpt_model_obj->count_related( |
|
1455 | - 'Registration', |
|
1456 | - $pending_payment_query_args |
|
1457 | - ), |
|
1458 | - 'misc_pub_section_class' => apply_filters( |
|
1459 | - 'FHEE_Events_Admin_Page___generate_publish_box_extra_content__misc_pub_section_class', |
|
1460 | - 'misc-pub-section' |
|
1461 | - ), |
|
1462 | - ); |
|
1463 | - ob_start(); |
|
1464 | - do_action( |
|
1465 | - 'AHEE__Events_Admin_Page___generate_publish_box_extra_content__event_editor_overview_add', |
|
1466 | - $this->_cpt_model_obj |
|
1467 | - ); |
|
1468 | - $publish_box_extra_args['event_editor_overview_add'] = ob_get_clean(); |
|
1469 | - // load template |
|
1470 | - EEH_Template::display_template( |
|
1471 | - EVENTS_TEMPLATE_PATH . 'event_publish_box_extras.template.php', |
|
1472 | - $publish_box_extra_args |
|
1473 | - ); |
|
1474 | - } |
|
1475 | - |
|
1476 | - |
|
1477 | - /** |
|
1478 | - * @return EE_Event |
|
1479 | - */ |
|
1480 | - public function get_event_object() |
|
1481 | - { |
|
1482 | - return $this->_cpt_model_obj; |
|
1483 | - } |
|
1484 | - |
|
1485 | - |
|
1486 | - |
|
1487 | - |
|
1488 | - /** METABOXES * */ |
|
1489 | - /** |
|
1490 | - * _register_event_editor_meta_boxes |
|
1491 | - * add all metaboxes related to the event_editor |
|
1492 | - * |
|
1493 | - * @return void |
|
1494 | - */ |
|
1495 | - protected function _register_event_editor_meta_boxes() |
|
1496 | - { |
|
1497 | - $this->verify_cpt_object(); |
|
1498 | - add_meta_box( |
|
1499 | - 'espresso_event_editor_tickets', |
|
1500 | - esc_html__('Event Datetime & Ticket', 'event_espresso'), |
|
1501 | - array($this, 'ticket_metabox'), |
|
1502 | - $this->page_slug, |
|
1503 | - 'normal', |
|
1504 | - 'high' |
|
1505 | - ); |
|
1506 | - add_meta_box( |
|
1507 | - 'espresso_event_editor_event_options', |
|
1508 | - esc_html__('Event Registration Options', 'event_espresso'), |
|
1509 | - array($this, 'registration_options_meta_box'), |
|
1510 | - $this->page_slug, |
|
1511 | - 'side', |
|
1512 | - 'default' |
|
1513 | - ); |
|
1514 | - // NOTE: if you're looking for other metaboxes in here, |
|
1515 | - // where a metabox has a related management page in the admin |
|
1516 | - // you will find it setup in the related management page's "_Hooks" file. |
|
1517 | - // i.e. messages metabox is found in "espresso_events_Messages_Hooks.class.php". |
|
1518 | - } |
|
1519 | - |
|
1520 | - |
|
1521 | - /** |
|
1522 | - * @throws DomainException |
|
1523 | - * @throws EE_Error |
|
1524 | - */ |
|
1525 | - public function ticket_metabox() |
|
1526 | - { |
|
1527 | - $existing_datetime_ids = $existing_ticket_ids = array(); |
|
1528 | - // defaults for template args |
|
1529 | - $template_args = array( |
|
1530 | - 'existing_datetime_ids' => '', |
|
1531 | - 'event_datetime_help_link' => '', |
|
1532 | - 'ticket_options_help_link' => '', |
|
1533 | - 'time' => null, |
|
1534 | - 'ticket_rows' => '', |
|
1535 | - 'existing_ticket_ids' => '', |
|
1536 | - 'total_ticket_rows' => 1, |
|
1537 | - 'ticket_js_structure' => '', |
|
1538 | - 'trash_icon' => 'ee-lock-icon', |
|
1539 | - 'disabled' => '', |
|
1540 | - ); |
|
1541 | - $event_id = is_object($this->_cpt_model_obj) ? $this->_cpt_model_obj->ID() : null; |
|
1542 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
1543 | - /** |
|
1544 | - * 1. Start with retrieving Datetimes |
|
1545 | - * 2. Fore each datetime get related tickets |
|
1546 | - * 3. For each ticket get related prices |
|
1547 | - */ |
|
1548 | - $times = EE_Registry::instance()->load_model('Datetime')->get_all_event_dates($event_id); |
|
1549 | - /** @type EE_Datetime $first_datetime */ |
|
1550 | - $first_datetime = reset($times); |
|
1551 | - // do we get related tickets? |
|
1552 | - if ($first_datetime instanceof EE_Datetime |
|
1553 | - && $first_datetime->ID() !== 0 |
|
1554 | - ) { |
|
1555 | - $existing_datetime_ids[] = $first_datetime->get('DTT_ID'); |
|
1556 | - $template_args['time'] = $first_datetime; |
|
1557 | - $related_tickets = $first_datetime->tickets( |
|
1558 | - array( |
|
1559 | - array('OR' => array('TKT_deleted' => 1, 'TKT_deleted*' => 0)), |
|
1560 | - 'default_where_conditions' => 'none', |
|
1561 | - ) |
|
1562 | - ); |
|
1563 | - if (! empty($related_tickets)) { |
|
1564 | - $template_args['total_ticket_rows'] = count($related_tickets); |
|
1565 | - $row = 0; |
|
1566 | - foreach ($related_tickets as $ticket) { |
|
1567 | - $existing_ticket_ids[] = $ticket->get('TKT_ID'); |
|
1568 | - $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket, false, $row); |
|
1569 | - $row++; |
|
1570 | - } |
|
1571 | - } else { |
|
1572 | - $template_args['total_ticket_rows'] = 1; |
|
1573 | - /** @type EE_Ticket $ticket */ |
|
1574 | - $ticket = EE_Registry::instance()->load_model('Ticket')->create_default_object(); |
|
1575 | - $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket); |
|
1576 | - } |
|
1577 | - } else { |
|
1578 | - $template_args['time'] = $times[0]; |
|
1579 | - /** @type EE_Ticket $ticket */ |
|
1580 | - $ticket = EE_Registry::instance()->load_model('Ticket')->get_all_default_tickets(); |
|
1581 | - $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket[1]); |
|
1582 | - // NOTE: we're just sending the first default row |
|
1583 | - // (decaf can't manage default tickets so this should be sufficient); |
|
1584 | - } |
|
1585 | - $template_args['event_datetime_help_link'] = $this->_get_help_tab_link( |
|
1586 | - 'event_editor_event_datetimes_help_tab' |
|
1587 | - ); |
|
1588 | - $template_args['ticket_options_help_link'] = $this->_get_help_tab_link('ticket_options_info'); |
|
1589 | - $template_args['existing_datetime_ids'] = implode(',', $existing_datetime_ids); |
|
1590 | - $template_args['existing_ticket_ids'] = implode(',', $existing_ticket_ids); |
|
1591 | - $template_args['ticket_js_structure'] = $this->_get_ticket_row( |
|
1592 | - EE_Registry::instance()->load_model('Ticket')->create_default_object(), |
|
1593 | - true |
|
1594 | - ); |
|
1595 | - $template = apply_filters( |
|
1596 | - 'FHEE__Events_Admin_Page__ticket_metabox__template', |
|
1597 | - EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_main.template.php' |
|
1598 | - ); |
|
1599 | - EEH_Template::display_template($template, $template_args); |
|
1600 | - } |
|
1601 | - |
|
1602 | - |
|
1603 | - /** |
|
1604 | - * Setup an individual ticket form for the decaf event editor page |
|
1605 | - * |
|
1606 | - * @access private |
|
1607 | - * @param EE_Ticket $ticket the ticket object |
|
1608 | - * @param boolean $skeleton whether we're generating a skeleton for js manipulation |
|
1609 | - * @param int $row |
|
1610 | - * @return string generated html for the ticket row. |
|
1611 | - */ |
|
1612 | - private function _get_ticket_row($ticket, $skeleton = false, $row = 0) |
|
1613 | - { |
|
1614 | - $template_args = array( |
|
1615 | - 'tkt_status_class' => ' tkt-status-' . $ticket->ticket_status(), |
|
1616 | - 'tkt_archive_class' => $ticket->ticket_status() === EE_Ticket::archived && ! $skeleton ? ' tkt-archived' |
|
1617 | - : '', |
|
1618 | - 'ticketrow' => $skeleton ? 'TICKETNUM' : $row, |
|
1619 | - 'TKT_ID' => $ticket->get('TKT_ID'), |
|
1620 | - 'TKT_name' => $ticket->get('TKT_name'), |
|
1621 | - 'TKT_start_date' => $skeleton ? '' : $ticket->get_date('TKT_start_date', 'Y-m-d h:i a'), |
|
1622 | - 'TKT_end_date' => $skeleton ? '' : $ticket->get_date('TKT_end_date', 'Y-m-d h:i a'), |
|
1623 | - 'TKT_is_default' => $ticket->get('TKT_is_default'), |
|
1624 | - 'TKT_qty' => $ticket->get_pretty('TKT_qty', 'input'), |
|
1625 | - 'edit_ticketrow_name' => $skeleton ? 'TICKETNAMEATTR' : 'edit_tickets', |
|
1626 | - 'TKT_sold' => $skeleton ? 0 : $ticket->get('TKT_sold'), |
|
1627 | - 'trash_icon' => ($skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted'))) |
|
1628 | - && (! empty($ticket) && $ticket->get('TKT_sold') === 0) |
|
1629 | - ? 'trash-icon dashicons dashicons-post-trash clickable' : 'ee-lock-icon', |
|
1630 | - 'disabled' => $skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted')) ? '' |
|
1631 | - : ' disabled=disabled', |
|
1632 | - ); |
|
1633 | - $price = $ticket->ID() !== 0 |
|
1634 | - ? $ticket->get_first_related('Price', array('default_where_conditions' => 'none')) |
|
1635 | - : EE_Registry::instance()->load_model('Price')->create_default_object(); |
|
1636 | - $price_args = array( |
|
1637 | - 'price_currency_symbol' => EE_Registry::instance()->CFG->currency->sign, |
|
1638 | - 'PRC_amount' => $price->get('PRC_amount'), |
|
1639 | - 'PRT_ID' => $price->get('PRT_ID'), |
|
1640 | - 'PRC_ID' => $price->get('PRC_ID'), |
|
1641 | - 'PRC_is_default' => $price->get('PRC_is_default'), |
|
1642 | - ); |
|
1643 | - // make sure we have default start and end dates if skeleton |
|
1644 | - // handle rows that should NOT be empty |
|
1645 | - if (empty($template_args['TKT_start_date'])) { |
|
1646 | - // if empty then the start date will be now. |
|
1647 | - $template_args['TKT_start_date'] = date('Y-m-d h:i a', current_time('timestamp')); |
|
1648 | - } |
|
1649 | - if (empty($template_args['TKT_end_date'])) { |
|
1650 | - // get the earliest datetime (if present); |
|
1651 | - $earliest_dtt = $this->_cpt_model_obj->ID() > 0 |
|
1652 | - ? $this->_cpt_model_obj->get_first_related( |
|
1653 | - 'Datetime', |
|
1654 | - array('order_by' => array('DTT_EVT_start' => 'ASC')) |
|
1655 | - ) |
|
1656 | - : null; |
|
1657 | - if (! empty($earliest_dtt)) { |
|
1658 | - $template_args['TKT_end_date'] = $earliest_dtt->get_datetime('DTT_EVT_start', 'Y-m-d', 'h:i a'); |
|
1659 | - } else { |
|
1660 | - $template_args['TKT_end_date'] = date( |
|
1661 | - 'Y-m-d h:i a', |
|
1662 | - mktime(0, 0, 0, date("m"), date("d") + 7, date("Y")) |
|
1663 | - ); |
|
1664 | - } |
|
1665 | - } |
|
1666 | - $template_args = array_merge($template_args, $price_args); |
|
1667 | - $template = apply_filters( |
|
1668 | - 'FHEE__Events_Admin_Page__get_ticket_row__template', |
|
1669 | - EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_ticket_row.template.php', |
|
1670 | - $ticket |
|
1671 | - ); |
|
1672 | - return EEH_Template::display_template($template, $template_args, true); |
|
1673 | - } |
|
1674 | - |
|
1675 | - |
|
1676 | - /** |
|
1677 | - * @throws DomainException |
|
1678 | - */ |
|
1679 | - public function registration_options_meta_box() |
|
1680 | - { |
|
1681 | - $yes_no_values = array( |
|
1682 | - array('id' => true, 'text' => esc_html__('Yes', 'event_espresso')), |
|
1683 | - array('id' => false, 'text' => esc_html__('No', 'event_espresso')), |
|
1684 | - ); |
|
1685 | - $default_reg_status_values = EEM_Registration::reg_status_array( |
|
1686 | - array( |
|
1687 | - EEM_Registration::status_id_cancelled, |
|
1688 | - EEM_Registration::status_id_declined, |
|
1689 | - EEM_Registration::status_id_incomplete, |
|
1690 | - ), |
|
1691 | - true |
|
1692 | - ); |
|
1693 | - // $template_args['is_active_select'] = EEH_Form_Fields::select_input('is_active', $yes_no_values, $this->_cpt_model_obj->is_active()); |
|
1694 | - $template_args['_event'] = $this->_cpt_model_obj; |
|
1695 | - $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
1696 | - $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
1697 | - $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
1698 | - 'default_reg_status', |
|
1699 | - $default_reg_status_values, |
|
1700 | - $this->_cpt_model_obj->default_registration_status() |
|
1701 | - ); |
|
1702 | - $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
1703 | - 'display_desc', |
|
1704 | - $yes_no_values, |
|
1705 | - $this->_cpt_model_obj->display_description() |
|
1706 | - ); |
|
1707 | - $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
1708 | - 'display_ticket_selector', |
|
1709 | - $yes_no_values, |
|
1710 | - $this->_cpt_model_obj->display_ticket_selector(), |
|
1711 | - '', |
|
1712 | - '', |
|
1713 | - false |
|
1714 | - ); |
|
1715 | - $template_args['additional_registration_options'] = apply_filters( |
|
1716 | - 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
1717 | - '', |
|
1718 | - $template_args, |
|
1719 | - $yes_no_values, |
|
1720 | - $default_reg_status_values |
|
1721 | - ); |
|
1722 | - EEH_Template::display_template( |
|
1723 | - EVENTS_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
1724 | - $template_args |
|
1725 | - ); |
|
1726 | - } |
|
1727 | - |
|
1728 | - |
|
1729 | - /** |
|
1730 | - * _get_events() |
|
1731 | - * This method simply returns all the events (for the given _view and paging) |
|
1732 | - * |
|
1733 | - * @access public |
|
1734 | - * @param int $per_page count of items per page (20 default); |
|
1735 | - * @param int $current_page what is the current page being viewed. |
|
1736 | - * @param bool $count if TRUE then we just return a count of ALL events matching the given _view. |
|
1737 | - * If FALSE then we return an array of event objects |
|
1738 | - * that match the given _view and paging parameters. |
|
1739 | - * @return array an array of event objects. |
|
1740 | - */ |
|
1741 | - public function get_events($per_page = 10, $current_page = 1, $count = false) |
|
1742 | - { |
|
1743 | - $EEME = $this->_event_model(); |
|
1744 | - $offset = ($current_page - 1) * $per_page; |
|
1745 | - $limit = $count ? null : $offset . ',' . $per_page; |
|
1746 | - $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'EVT_ID'; |
|
1747 | - $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : "DESC"; |
|
1748 | - if (isset($this->_req_data['month_range'])) { |
|
1749 | - $pieces = explode(' ', $this->_req_data['month_range'], 3); |
|
1750 | - // simulate the FIRST day of the month, that fixes issues for months like February |
|
1751 | - // where PHP doesn't know what to assume for date. |
|
1752 | - // @see https://events.codebasehq.com/projects/event-espresso/tickets/10437 |
|
1753 | - $month_r = ! empty($pieces[0]) ? date('m', \EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) : ''; |
|
1754 | - $year_r = ! empty($pieces[1]) ? $pieces[1] : ''; |
|
1755 | - } |
|
1756 | - $where = array(); |
|
1757 | - $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
1758 | - // determine what post_status our condition will have for the query. |
|
1759 | - switch ($status) { |
|
1760 | - case 'month': |
|
1761 | - case 'today': |
|
1762 | - case null: |
|
1763 | - case 'all': |
|
1764 | - break; |
|
1765 | - case 'draft': |
|
1766 | - $where['status'] = array('IN', array('draft', 'auto-draft')); |
|
1767 | - break; |
|
1768 | - default: |
|
1769 | - $where['status'] = $status; |
|
1770 | - } |
|
1771 | - // categories? |
|
1772 | - $category = isset($this->_req_data['EVT_CAT']) && $this->_req_data['EVT_CAT'] > 0 |
|
1773 | - ? $this->_req_data['EVT_CAT'] : null; |
|
1774 | - if (! empty($category)) { |
|
1775 | - $where['Term_Taxonomy.taxonomy'] = EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY; |
|
1776 | - $where['Term_Taxonomy.term_id'] = $category; |
|
1777 | - } |
|
1778 | - // date where conditions |
|
1779 | - $start_formats = EEM_Datetime::instance()->get_formats_for('DTT_EVT_start'); |
|
1780 | - if (isset($this->_req_data['month_range']) && $this->_req_data['month_range'] != '') { |
|
1781 | - $DateTime = new DateTime( |
|
1782 | - $year_r . '-' . $month_r . '-01 00:00:00', |
|
1783 | - new DateTimeZone(EEM_Datetime::instance()->get_timezone()) |
|
1784 | - ); |
|
1785 | - $start = $DateTime->format(implode(' ', $start_formats)); |
|
1786 | - $end = $DateTime->setDate( |
|
1787 | - $year_r, |
|
1788 | - $month_r, |
|
1789 | - $DateTime |
|
1790 | - ->format('t') |
|
1791 | - )->setTime(23, 59, 59) |
|
1792 | - ->format(implode(' ', $start_formats)); |
|
1793 | - $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1794 | - } elseif (isset($this->_req_data['status']) && $this->_req_data['status'] == 'today') { |
|
1795 | - $DateTime = new DateTime('now', new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1796 | - $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1797 | - $end = $DateTime->setTime(23, 59, 59)->format(implode(' ', $start_formats)); |
|
1798 | - $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1799 | - } elseif (isset($this->_req_data['status']) && $this->_req_data['status'] == 'month') { |
|
1800 | - $now = date('Y-m-01'); |
|
1801 | - $DateTime = new DateTime($now, new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1802 | - $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1803 | - $end = $DateTime->setDate(date('Y'), date('m'), $DateTime->format('t')) |
|
1804 | - ->setTime(23, 59, 59) |
|
1805 | - ->format(implode(' ', $start_formats)); |
|
1806 | - $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1807 | - } |
|
1808 | - if (! EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events')) { |
|
1809 | - $where['EVT_wp_user'] = get_current_user_id(); |
|
1810 | - } else { |
|
1811 | - if (! isset($where['status'])) { |
|
1812 | - if (! EE_Registry::instance()->CAP->current_user_can('ee_read_private_events', 'get_events')) { |
|
1813 | - $where['OR'] = array( |
|
1814 | - 'status*restrict_private' => array('!=', 'private'), |
|
1815 | - 'AND' => array( |
|
1816 | - 'status*inclusive' => array('=', 'private'), |
|
1817 | - 'EVT_wp_user' => get_current_user_id(), |
|
1818 | - ), |
|
1819 | - ); |
|
1820 | - } |
|
1821 | - } |
|
1822 | - } |
|
1823 | - if (isset($this->_req_data['EVT_wp_user'])) { |
|
1824 | - if ($this->_req_data['EVT_wp_user'] != get_current_user_id() |
|
1825 | - && EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events') |
|
1826 | - ) { |
|
1827 | - $where['EVT_wp_user'] = $this->_req_data['EVT_wp_user']; |
|
1828 | - } |
|
1829 | - } |
|
1830 | - // search query handling |
|
1831 | - if (isset($this->_req_data['s'])) { |
|
1832 | - $search_string = '%' . $this->_req_data['s'] . '%'; |
|
1833 | - $where['OR'] = array( |
|
1834 | - 'EVT_name' => array('LIKE', $search_string), |
|
1835 | - 'EVT_desc' => array('LIKE', $search_string), |
|
1836 | - 'EVT_short_desc' => array('LIKE', $search_string), |
|
1837 | - ); |
|
1838 | - } |
|
1839 | - // filter events by venue. |
|
1840 | - if (isset($this->_req_data['venue']) && ! empty($this->_req_data['venue'])) { |
|
1841 | - $where['Venue.VNU_ID'] = absint($this->_req_data['venue']); |
|
1842 | - } |
|
1843 | - $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $this->_req_data); |
|
1844 | - $query_params = apply_filters( |
|
1845 | - 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1846 | - array( |
|
1847 | - $where, |
|
1848 | - 'limit' => $limit, |
|
1849 | - 'order_by' => $orderby, |
|
1850 | - 'order' => $order, |
|
1851 | - 'group_by' => 'EVT_ID', |
|
1852 | - ), |
|
1853 | - $this->_req_data |
|
1854 | - ); |
|
1855 | - // let's first check if we have special requests coming in. |
|
1856 | - if (isset($this->_req_data['active_status'])) { |
|
1857 | - switch ($this->_req_data['active_status']) { |
|
1858 | - case 'upcoming': |
|
1859 | - return $EEME->get_upcoming_events($query_params, $count); |
|
1860 | - break; |
|
1861 | - case 'expired': |
|
1862 | - return $EEME->get_expired_events($query_params, $count); |
|
1863 | - break; |
|
1864 | - case 'active': |
|
1865 | - return $EEME->get_active_events($query_params, $count); |
|
1866 | - break; |
|
1867 | - case 'inactive': |
|
1868 | - return $EEME->get_inactive_events($query_params, $count); |
|
1869 | - break; |
|
1870 | - } |
|
1871 | - } |
|
1872 | - |
|
1873 | - $events = $count ? $EEME->count(array($where), 'EVT_ID', true) : $EEME->get_all($query_params); |
|
1874 | - return $events; |
|
1875 | - } |
|
1876 | - |
|
1877 | - |
|
1878 | - /** |
|
1879 | - * handling for WordPress CPT actions (trash, restore, delete) |
|
1880 | - * |
|
1881 | - * @param string $post_id |
|
1882 | - */ |
|
1883 | - public function trash_cpt_item($post_id) |
|
1884 | - { |
|
1885 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1886 | - $this->_trash_or_restore_event('trash', false); |
|
1887 | - } |
|
1888 | - |
|
1889 | - |
|
1890 | - /** |
|
1891 | - * @param string $post_id |
|
1892 | - */ |
|
1893 | - public function restore_cpt_item($post_id) |
|
1894 | - { |
|
1895 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1896 | - $this->_trash_or_restore_event('draft', false); |
|
1897 | - } |
|
1898 | - |
|
1899 | - |
|
1900 | - /** |
|
1901 | - * @param string $post_id |
|
1902 | - */ |
|
1903 | - public function delete_cpt_item($post_id) |
|
1904 | - { |
|
1905 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1906 | - $this->_delete_event(false); |
|
1907 | - } |
|
1908 | - |
|
1909 | - |
|
1910 | - /** |
|
1911 | - * _trash_or_restore_event |
|
1912 | - * |
|
1913 | - * @access protected |
|
1914 | - * @param string $event_status |
|
1915 | - * @param bool $redirect_after |
|
1916 | - */ |
|
1917 | - protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
1918 | - { |
|
1919 | - // determine the event id and set to array. |
|
1920 | - $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : false; |
|
1921 | - // loop thru events |
|
1922 | - if ($EVT_ID) { |
|
1923 | - // clean status |
|
1924 | - $event_status = sanitize_key($event_status); |
|
1925 | - // grab status |
|
1926 | - if (! empty($event_status)) { |
|
1927 | - $success = $this->_change_event_status($EVT_ID, $event_status); |
|
1928 | - } else { |
|
1929 | - $success = false; |
|
1930 | - $msg = esc_html__( |
|
1931 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1932 | - 'event_espresso' |
|
1933 | - ); |
|
1934 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1935 | - } |
|
1936 | - } else { |
|
1937 | - $success = false; |
|
1938 | - $msg = esc_html__( |
|
1939 | - 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
1940 | - 'event_espresso' |
|
1941 | - ); |
|
1942 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1943 | - } |
|
1944 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1945 | - if ($redirect_after) { |
|
1946 | - $this->_redirect_after_action($success, 'Event', $action, array('action' => 'default')); |
|
1947 | - } |
|
1948 | - } |
|
1949 | - |
|
1950 | - |
|
1951 | - /** |
|
1952 | - * _trash_or_restore_events |
|
1953 | - * |
|
1954 | - * @access protected |
|
1955 | - * @param string $event_status |
|
1956 | - * @return void |
|
1957 | - */ |
|
1958 | - protected function _trash_or_restore_events($event_status = 'trash') |
|
1959 | - { |
|
1960 | - // clean status |
|
1961 | - $event_status = sanitize_key($event_status); |
|
1962 | - // grab status |
|
1963 | - if (! empty($event_status)) { |
|
1964 | - $success = true; |
|
1965 | - // determine the event id and set to array. |
|
1966 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
1967 | - // loop thru events |
|
1968 | - foreach ($EVT_IDs as $EVT_ID) { |
|
1969 | - if ($EVT_ID = absint($EVT_ID)) { |
|
1970 | - $results = $this->_change_event_status($EVT_ID, $event_status); |
|
1971 | - $success = $results !== false ? $success : false; |
|
1972 | - } else { |
|
1973 | - $msg = sprintf( |
|
1974 | - esc_html__( |
|
1975 | - 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
1976 | - 'event_espresso' |
|
1977 | - ), |
|
1978 | - $EVT_ID |
|
1979 | - ); |
|
1980 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1981 | - $success = false; |
|
1982 | - } |
|
1983 | - } |
|
1984 | - } else { |
|
1985 | - $success = false; |
|
1986 | - $msg = esc_html__( |
|
1987 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1988 | - 'event_espresso' |
|
1989 | - ); |
|
1990 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1991 | - } |
|
1992 | - // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
1993 | - $success = $success ? 2 : false; |
|
1994 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1995 | - $this->_redirect_after_action($success, 'Events', $action, array('action' => 'default')); |
|
1996 | - } |
|
1997 | - |
|
1998 | - |
|
1999 | - /** |
|
2000 | - * _trash_or_restore_events |
|
2001 | - * |
|
2002 | - * @access private |
|
2003 | - * @param int $EVT_ID |
|
2004 | - * @param string $event_status |
|
2005 | - * @return bool |
|
2006 | - */ |
|
2007 | - private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2008 | - { |
|
2009 | - // grab event id |
|
2010 | - if (! $EVT_ID) { |
|
2011 | - $msg = esc_html__( |
|
2012 | - 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2013 | - 'event_espresso' |
|
2014 | - ); |
|
2015 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2016 | - return false; |
|
2017 | - } |
|
2018 | - $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2019 | - // clean status |
|
2020 | - $event_status = sanitize_key($event_status); |
|
2021 | - // grab status |
|
2022 | - if (empty($event_status)) { |
|
2023 | - $msg = esc_html__( |
|
2024 | - 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2025 | - 'event_espresso' |
|
2026 | - ); |
|
2027 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2028 | - return false; |
|
2029 | - } |
|
2030 | - // was event trashed or restored ? |
|
2031 | - switch ($event_status) { |
|
2032 | - case 'draft': |
|
2033 | - $action = 'restored from the trash'; |
|
2034 | - $hook = 'AHEE_event_restored_from_trash'; |
|
2035 | - break; |
|
2036 | - case 'trash': |
|
2037 | - $action = 'moved to the trash'; |
|
2038 | - $hook = 'AHEE_event_moved_to_trash'; |
|
2039 | - break; |
|
2040 | - default: |
|
2041 | - $action = 'updated'; |
|
2042 | - $hook = false; |
|
2043 | - } |
|
2044 | - // use class to change status |
|
2045 | - $this->_cpt_model_obj->set_status($event_status); |
|
2046 | - $success = $this->_cpt_model_obj->save(); |
|
2047 | - if ($success === false) { |
|
2048 | - $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2049 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2050 | - return false; |
|
2051 | - } |
|
2052 | - if ($hook) { |
|
2053 | - do_action($hook); |
|
2054 | - } |
|
2055 | - return true; |
|
2056 | - } |
|
2057 | - |
|
2058 | - |
|
2059 | - /** |
|
2060 | - * _delete_event |
|
2061 | - * |
|
2062 | - * @access protected |
|
2063 | - * @param bool $redirect_after |
|
2064 | - */ |
|
2065 | - protected function _delete_event($redirect_after = true) |
|
2066 | - { |
|
2067 | - // determine the event id and set to array. |
|
2068 | - $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : null; |
|
2069 | - $EVT_ID = isset($this->_req_data['post']) ? absint($this->_req_data['post']) : $EVT_ID; |
|
2070 | - // loop thru events |
|
2071 | - if ($EVT_ID) { |
|
2072 | - $success = $this->_permanently_delete_event($EVT_ID); |
|
2073 | - // get list of events with no prices |
|
2074 | - $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2075 | - // remove this event from the list of events with no prices |
|
2076 | - if (isset($espresso_no_ticket_prices[ $EVT_ID ])) { |
|
2077 | - unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2078 | - } |
|
2079 | - update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2080 | - } else { |
|
2081 | - $success = false; |
|
2082 | - $msg = esc_html__( |
|
2083 | - 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2084 | - 'event_espresso' |
|
2085 | - ); |
|
2086 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2087 | - } |
|
2088 | - if ($redirect_after) { |
|
2089 | - $this->_redirect_after_action( |
|
2090 | - $success, |
|
2091 | - 'Event', |
|
2092 | - 'deleted', |
|
2093 | - array('action' => 'default', 'status' => 'trash') |
|
2094 | - ); |
|
2095 | - } |
|
2096 | - } |
|
2097 | - |
|
2098 | - |
|
2099 | - /** |
|
2100 | - * _delete_events |
|
2101 | - * |
|
2102 | - * @access protected |
|
2103 | - * @return void |
|
2104 | - */ |
|
2105 | - protected function _delete_events() |
|
2106 | - { |
|
2107 | - $success = true; |
|
2108 | - // get list of events with no prices |
|
2109 | - $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2110 | - // determine the event id and set to array. |
|
2111 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
2112 | - // loop thru events |
|
2113 | - foreach ($EVT_IDs as $EVT_ID) { |
|
2114 | - $EVT_ID = absint($EVT_ID); |
|
2115 | - if ($EVT_ID) { |
|
2116 | - $results = $this->_permanently_delete_event($EVT_ID); |
|
2117 | - $success = $results !== false ? $success : false; |
|
2118 | - // remove this event from the list of events with no prices |
|
2119 | - unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2120 | - } else { |
|
2121 | - $success = false; |
|
2122 | - $msg = esc_html__( |
|
2123 | - 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2124 | - 'event_espresso' |
|
2125 | - ); |
|
2126 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2127 | - } |
|
2128 | - } |
|
2129 | - update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2130 | - // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2131 | - $success = $success ? 2 : false; |
|
2132 | - $this->_redirect_after_action($success, 'Events', 'deleted', array('action' => 'default')); |
|
2133 | - } |
|
2134 | - |
|
2135 | - |
|
2136 | - /** |
|
2137 | - * _permanently_delete_event |
|
2138 | - * |
|
2139 | - * @access private |
|
2140 | - * @param int $EVT_ID |
|
2141 | - * @return bool |
|
2142 | - */ |
|
2143 | - private function _permanently_delete_event($EVT_ID = 0) |
|
2144 | - { |
|
2145 | - // grab event id |
|
2146 | - if (! $EVT_ID) { |
|
2147 | - $msg = esc_html__( |
|
2148 | - 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2149 | - 'event_espresso' |
|
2150 | - ); |
|
2151 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2152 | - return false; |
|
2153 | - } |
|
2154 | - if (! $this->_cpt_model_obj instanceof EE_Event |
|
2155 | - || $this->_cpt_model_obj->ID() !== $EVT_ID |
|
2156 | - ) { |
|
2157 | - $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2158 | - } |
|
2159 | - if (! $this->_cpt_model_obj instanceof EE_Event) { |
|
2160 | - return false; |
|
2161 | - } |
|
2162 | - // need to delete related tickets and prices first. |
|
2163 | - $datetimes = $this->_cpt_model_obj->get_many_related('Datetime'); |
|
2164 | - foreach ($datetimes as $datetime) { |
|
2165 | - $this->_cpt_model_obj->_remove_relation_to($datetime, 'Datetime'); |
|
2166 | - $tickets = $datetime->get_many_related('Ticket'); |
|
2167 | - foreach ($tickets as $ticket) { |
|
2168 | - $ticket->_remove_relation_to($datetime, 'Datetime'); |
|
2169 | - $ticket->delete_related_permanently('Price'); |
|
2170 | - $ticket->delete_permanently(); |
|
2171 | - } |
|
2172 | - $datetime->delete(); |
|
2173 | - } |
|
2174 | - // what about related venues or terms? |
|
2175 | - $venues = $this->_cpt_model_obj->get_many_related('Venue'); |
|
2176 | - foreach ($venues as $venue) { |
|
2177 | - $this->_cpt_model_obj->_remove_relation_to($venue, 'Venue'); |
|
2178 | - } |
|
2179 | - // any attached question groups? |
|
2180 | - $question_groups = $this->_cpt_model_obj->get_many_related('Question_Group'); |
|
2181 | - if (! empty($question_groups)) { |
|
2182 | - foreach ($question_groups as $question_group) { |
|
2183 | - $this->_cpt_model_obj->_remove_relation_to($question_group, 'Question_Group'); |
|
2184 | - } |
|
2185 | - } |
|
2186 | - // Message Template Groups |
|
2187 | - $this->_cpt_model_obj->_remove_relations('Message_Template_Group'); |
|
2188 | - /** @type EE_Term_Taxonomy[] $term_taxonomies */ |
|
2189 | - $term_taxonomies = $this->_cpt_model_obj->term_taxonomies(); |
|
2190 | - foreach ($term_taxonomies as $term_taxonomy) { |
|
2191 | - $this->_cpt_model_obj->remove_relation_to_term_taxonomy($term_taxonomy); |
|
2192 | - } |
|
2193 | - $success = $this->_cpt_model_obj->delete_permanently(); |
|
2194 | - // did it all go as planned ? |
|
2195 | - if ($success) { |
|
2196 | - $msg = sprintf(esc_html__('Event ID # %d has been deleted.', 'event_espresso'), $EVT_ID); |
|
2197 | - EE_Error::add_success($msg); |
|
2198 | - } else { |
|
2199 | - $msg = sprintf( |
|
2200 | - esc_html__('An error occurred. Event ID # %d could not be deleted.', 'event_espresso'), |
|
2201 | - $EVT_ID |
|
2202 | - ); |
|
2203 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2204 | - return false; |
|
2205 | - } |
|
2206 | - do_action('AHEE__Events_Admin_Page___permanently_delete_event__after_event_deleted', $EVT_ID); |
|
2207 | - return true; |
|
2208 | - } |
|
2209 | - |
|
2210 | - |
|
2211 | - /** |
|
2212 | - * get total number of events |
|
2213 | - * |
|
2214 | - * @access public |
|
2215 | - * @return int |
|
2216 | - */ |
|
2217 | - public function total_events() |
|
2218 | - { |
|
2219 | - $count = EEM_Event::instance()->count(array('caps' => 'read_admin'), 'EVT_ID', true); |
|
2220 | - return $count; |
|
2221 | - } |
|
2222 | - |
|
2223 | - |
|
2224 | - /** |
|
2225 | - * get total number of draft events |
|
2226 | - * |
|
2227 | - * @access public |
|
2228 | - * @return int |
|
2229 | - */ |
|
2230 | - public function total_events_draft() |
|
2231 | - { |
|
2232 | - $where = array( |
|
2233 | - 'status' => array('IN', array('draft', 'auto-draft')), |
|
2234 | - ); |
|
2235 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2236 | - return $count; |
|
2237 | - } |
|
2238 | - |
|
2239 | - |
|
2240 | - /** |
|
2241 | - * get total number of trashed events |
|
2242 | - * |
|
2243 | - * @access public |
|
2244 | - * @return int |
|
2245 | - */ |
|
2246 | - public function total_trashed_events() |
|
2247 | - { |
|
2248 | - $where = array( |
|
2249 | - 'status' => 'trash', |
|
2250 | - ); |
|
2251 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2252 | - return $count; |
|
2253 | - } |
|
2254 | - |
|
2255 | - |
|
2256 | - /** |
|
2257 | - * _default_event_settings |
|
2258 | - * This generates the Default Settings Tab |
|
2259 | - * |
|
2260 | - * @return void |
|
2261 | - * @throws EE_Error |
|
2262 | - */ |
|
2263 | - protected function _default_event_settings() |
|
2264 | - { |
|
2265 | - $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2266 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2267 | - $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2268 | - $this->display_admin_page_with_sidebar(); |
|
2269 | - } |
|
2270 | - |
|
2271 | - |
|
2272 | - /** |
|
2273 | - * Return the form for event settings. |
|
2274 | - * |
|
2275 | - * @return EE_Form_Section_Proper |
|
2276 | - * @throws EE_Error |
|
2277 | - */ |
|
2278 | - protected function _default_event_settings_form() |
|
2279 | - { |
|
2280 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2281 | - $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2282 | - // exclude |
|
2283 | - array( |
|
2284 | - EEM_Registration::status_id_cancelled, |
|
2285 | - EEM_Registration::status_id_declined, |
|
2286 | - EEM_Registration::status_id_incomplete, |
|
2287 | - EEM_Registration::status_id_wait_list, |
|
2288 | - ), |
|
2289 | - true |
|
2290 | - ); |
|
2291 | - return new EE_Form_Section_Proper( |
|
2292 | - array( |
|
2293 | - 'name' => 'update_default_event_settings', |
|
2294 | - 'html_id' => 'update_default_event_settings', |
|
2295 | - 'html_class' => 'form-table', |
|
2296 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2297 | - 'subsections' => apply_filters( |
|
2298 | - 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2299 | - array( |
|
2300 | - 'default_reg_status' => new EE_Select_Input( |
|
2301 | - $registration_stati_for_selection, |
|
2302 | - array( |
|
2303 | - 'default' => isset($registration_config->default_STS_ID) |
|
2304 | - && array_key_exists( |
|
2305 | - $registration_config->default_STS_ID, |
|
2306 | - $registration_stati_for_selection |
|
2307 | - ) |
|
2308 | - ? sanitize_text_field($registration_config->default_STS_ID) |
|
2309 | - : EEM_Registration::status_id_pending_payment, |
|
2310 | - 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2311 | - . EEH_Template::get_help_tab_link( |
|
2312 | - 'default_settings_status_help_tab' |
|
2313 | - ), |
|
2314 | - 'html_help_text' => esc_html__( |
|
2315 | - 'This setting allows you to preselect what the default registration status setting is when creating an event. Note that changing this setting does NOT retroactively apply it to existing events.', |
|
2316 | - 'event_espresso' |
|
2317 | - ), |
|
2318 | - ) |
|
2319 | - ), |
|
2320 | - 'default_max_tickets' => new EE_Integer_Input( |
|
2321 | - array( |
|
2322 | - 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2323 | - ? $registration_config->default_maximum_number_of_tickets |
|
2324 | - : EEM_Event::get_default_additional_limit(), |
|
2325 | - 'html_label_text' => esc_html__( |
|
2326 | - 'Default Maximum Tickets Allowed Per Order:', |
|
2327 | - 'event_espresso' |
|
2328 | - ) |
|
2329 | - . EEH_Template::get_help_tab_link( |
|
2330 | - 'default_maximum_tickets_help_tab"' |
|
2331 | - ), |
|
2332 | - 'html_help_text' => esc_html__( |
|
2333 | - 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2334 | - 'event_espresso' |
|
2335 | - ), |
|
2336 | - ) |
|
2337 | - ), |
|
2338 | - ) |
|
2339 | - ), |
|
2340 | - ) |
|
2341 | - ); |
|
2342 | - } |
|
2343 | - |
|
2344 | - |
|
2345 | - /** |
|
2346 | - * _update_default_event_settings |
|
2347 | - * |
|
2348 | - * @access protected |
|
2349 | - * @return void |
|
2350 | - * @throws EE_Error |
|
2351 | - */ |
|
2352 | - protected function _update_default_event_settings() |
|
2353 | - { |
|
2354 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2355 | - $form = $this->_default_event_settings_form(); |
|
2356 | - if ($form->was_submitted()) { |
|
2357 | - $form->receive_form_submission(); |
|
2358 | - if ($form->is_valid()) { |
|
2359 | - $valid_data = $form->valid_data(); |
|
2360 | - if (isset($valid_data['default_reg_status'])) { |
|
2361 | - $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2362 | - } |
|
2363 | - if (isset($valid_data['default_max_tickets'])) { |
|
2364 | - $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2365 | - } |
|
2366 | - // update because data was valid! |
|
2367 | - EE_Registry::instance()->CFG->update_espresso_config(); |
|
2368 | - EE_Error::overwrite_success(); |
|
2369 | - EE_Error::add_success( |
|
2370 | - __('Default Event Settings were updated', 'event_espresso') |
|
2371 | - ); |
|
2372 | - } |
|
2373 | - } |
|
2374 | - $this->_redirect_after_action(0, '', '', array('action' => 'default_event_settings'), true); |
|
2375 | - } |
|
2376 | - |
|
2377 | - |
|
2378 | - /************* Templates *************/ |
|
2379 | - protected function _template_settings() |
|
2380 | - { |
|
2381 | - $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2382 | - $this->_template_args['preview_img'] = '<img src="' |
|
2383 | - . EVENTS_ASSETS_URL |
|
2384 | - . '/images/' |
|
2385 | - . 'caffeinated_template_features.jpg" alt="' |
|
2386 | - . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2387 | - . '" />'; |
|
2388 | - $this->_template_args['preview_text'] = '<strong>' |
|
2389 | - . esc_html__( |
|
2390 | - 'Template Settings is a feature that is only available in the premium version of Event Espresso 4 which is available with a support license purchase on EventEspresso.com. Template Settings allow you to configure some of the appearance options for both the Event List and Event Details pages.', |
|
2391 | - 'event_espresso' |
|
2392 | - ) . '</strong>'; |
|
2393 | - $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2394 | - } |
|
2395 | - |
|
2396 | - |
|
2397 | - /** Event Category Stuff **/ |
|
2398 | - /** |
|
2399 | - * set the _category property with the category object for the loaded page. |
|
2400 | - * |
|
2401 | - * @access private |
|
2402 | - * @return void |
|
2403 | - */ |
|
2404 | - private function _set_category_object() |
|
2405 | - { |
|
2406 | - if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2407 | - return; |
|
2408 | - } //already have the category object so get out. |
|
2409 | - // set default category object |
|
2410 | - $this->_set_empty_category_object(); |
|
2411 | - // only set if we've got an id |
|
2412 | - if (! isset($this->_req_data['EVT_CAT_ID'])) { |
|
2413 | - return; |
|
2414 | - } |
|
2415 | - $category_id = absint($this->_req_data['EVT_CAT_ID']); |
|
2416 | - $term = get_term($category_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2417 | - if (! empty($term)) { |
|
2418 | - $this->_category->category_name = $term->name; |
|
2419 | - $this->_category->category_identifier = $term->slug; |
|
2420 | - $this->_category->category_desc = $term->description; |
|
2421 | - $this->_category->id = $term->term_id; |
|
2422 | - $this->_category->parent = $term->parent; |
|
2423 | - } |
|
2424 | - } |
|
2425 | - |
|
2426 | - |
|
2427 | - /** |
|
2428 | - * Clears out category properties. |
|
2429 | - */ |
|
2430 | - private function _set_empty_category_object() |
|
2431 | - { |
|
2432 | - $this->_category = new stdClass(); |
|
2433 | - $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2434 | - $this->_category->id = $this->_category->parent = 0; |
|
2435 | - } |
|
2436 | - |
|
2437 | - |
|
2438 | - /** |
|
2439 | - * @throws EE_Error |
|
2440 | - */ |
|
2441 | - protected function _category_list_table() |
|
2442 | - { |
|
2443 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2444 | - $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2445 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2446 | - 'add_category', |
|
2447 | - 'add_category', |
|
2448 | - array(), |
|
2449 | - 'add-new-h2' |
|
2450 | - ); |
|
2451 | - $this->display_admin_list_table_page_with_sidebar(); |
|
2452 | - } |
|
2453 | - |
|
2454 | - |
|
2455 | - /** |
|
2456 | - * Output category details view. |
|
2457 | - */ |
|
2458 | - protected function _category_details($view) |
|
2459 | - { |
|
2460 | - // load formatter helper |
|
2461 | - // load field generator helper |
|
2462 | - $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2463 | - $this->_set_add_edit_form_tags($route); |
|
2464 | - $this->_set_category_object(); |
|
2465 | - $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2466 | - $delete_action = 'delete_category'; |
|
2467 | - // custom redirect |
|
2468 | - $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2469 | - array('action' => 'category_list'), |
|
2470 | - $this->_admin_base_url |
|
2471 | - ); |
|
2472 | - $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2473 | - // take care of contents |
|
2474 | - $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2475 | - $this->display_admin_page_with_sidebar(); |
|
2476 | - } |
|
2477 | - |
|
2478 | - |
|
2479 | - /** |
|
2480 | - * Output category details content. |
|
2481 | - */ |
|
2482 | - protected function _category_details_content() |
|
2483 | - { |
|
2484 | - $editor_args['category_desc'] = array( |
|
2485 | - 'type' => 'wp_editor', |
|
2486 | - 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2487 | - 'class' => 'my_editor_custom', |
|
2488 | - 'wpeditor_args' => array('media_buttons' => false), |
|
2489 | - ); |
|
2490 | - $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2491 | - $all_terms = get_terms( |
|
2492 | - array(EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY), |
|
2493 | - array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
2494 | - ); |
|
2495 | - // setup category select for term parents. |
|
2496 | - $category_select_values[] = array( |
|
2497 | - 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2498 | - 'id' => 0, |
|
2499 | - ); |
|
2500 | - foreach ($all_terms as $term) { |
|
2501 | - $category_select_values[] = array( |
|
2502 | - 'text' => $term->name, |
|
2503 | - 'id' => $term->term_id, |
|
2504 | - ); |
|
2505 | - } |
|
2506 | - $category_select = EEH_Form_Fields::select_input( |
|
2507 | - 'category_parent', |
|
2508 | - $category_select_values, |
|
2509 | - $this->_category->parent |
|
2510 | - ); |
|
2511 | - $template_args = array( |
|
2512 | - 'category' => $this->_category, |
|
2513 | - 'category_select' => $category_select, |
|
2514 | - 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2515 | - 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2516 | - 'disable' => '', |
|
2517 | - 'disabled_message' => false, |
|
2518 | - ); |
|
2519 | - $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2520 | - return EEH_Template::display_template($template, $template_args, true); |
|
2521 | - } |
|
2522 | - |
|
2523 | - |
|
2524 | - /** |
|
2525 | - * Handles deleting categories. |
|
2526 | - */ |
|
2527 | - protected function _delete_categories() |
|
2528 | - { |
|
2529 | - $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array) $this->_req_data['EVT_CAT_ID'] |
|
2530 | - : (array) $this->_req_data['category_id']; |
|
2531 | - foreach ($cat_ids as $cat_id) { |
|
2532 | - $this->_delete_category($cat_id); |
|
2533 | - } |
|
2534 | - // doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2535 | - $query_args = array( |
|
2536 | - 'action' => 'category_list', |
|
2537 | - ); |
|
2538 | - $this->_redirect_after_action(0, '', '', $query_args); |
|
2539 | - } |
|
2540 | - |
|
2541 | - |
|
2542 | - /** |
|
2543 | - * Handles deleting specific category. |
|
2544 | - * |
|
2545 | - * @param int $cat_id |
|
2546 | - */ |
|
2547 | - protected function _delete_category($cat_id) |
|
2548 | - { |
|
2549 | - $cat_id = absint($cat_id); |
|
2550 | - wp_delete_term($cat_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2551 | - } |
|
2552 | - |
|
2553 | - |
|
2554 | - /** |
|
2555 | - * Handles triggering the update or insertion of a new category. |
|
2556 | - * |
|
2557 | - * @param bool $new_category true means we're triggering the insert of a new category. |
|
2558 | - */ |
|
2559 | - protected function _insert_or_update_category($new_category) |
|
2560 | - { |
|
2561 | - $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2562 | - $success = 0; // we already have a success message so lets not send another. |
|
2563 | - if ($cat_id) { |
|
2564 | - $query_args = array( |
|
2565 | - 'action' => 'edit_category', |
|
2566 | - 'EVT_CAT_ID' => $cat_id, |
|
2567 | - ); |
|
2568 | - } else { |
|
2569 | - $query_args = array('action' => 'add_category'); |
|
2570 | - } |
|
2571 | - $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2572 | - } |
|
2573 | - |
|
2574 | - |
|
2575 | - /** |
|
2576 | - * Inserts or updates category |
|
2577 | - * |
|
2578 | - * @param bool $update (true indicates we're updating a category). |
|
2579 | - * @return bool|mixed|string |
|
2580 | - */ |
|
2581 | - private function _insert_category($update = false) |
|
2582 | - { |
|
2583 | - $cat_id = $update ? $this->_req_data['EVT_CAT_ID'] : ''; |
|
2584 | - $category_name = isset($this->_req_data['category_name']) ? $this->_req_data['category_name'] : ''; |
|
2585 | - $category_desc = isset($this->_req_data['category_desc']) ? $this->_req_data['category_desc'] : ''; |
|
2586 | - $category_parent = isset($this->_req_data['category_parent']) ? $this->_req_data['category_parent'] : 0; |
|
2587 | - if (empty($category_name)) { |
|
2588 | - $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2589 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2590 | - return false; |
|
2591 | - } |
|
2592 | - $term_args = array( |
|
2593 | - 'name' => $category_name, |
|
2594 | - 'description' => $category_desc, |
|
2595 | - 'parent' => $category_parent, |
|
2596 | - ); |
|
2597 | - // was the category_identifier input disabled? |
|
2598 | - if (isset($this->_req_data['category_identifier'])) { |
|
2599 | - $term_args['slug'] = $this->_req_data['category_identifier']; |
|
2600 | - } |
|
2601 | - $insert_ids = $update |
|
2602 | - ? wp_update_term($cat_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args) |
|
2603 | - : wp_insert_term($category_name, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args); |
|
2604 | - if (! is_array($insert_ids)) { |
|
2605 | - $msg = esc_html__( |
|
2606 | - 'An error occurred and the category has not been saved to the database.', |
|
2607 | - 'event_espresso' |
|
2608 | - ); |
|
2609 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2610 | - } else { |
|
2611 | - $cat_id = $insert_ids['term_id']; |
|
2612 | - $msg = sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2613 | - EE_Error::add_success($msg); |
|
2614 | - } |
|
2615 | - return $cat_id; |
|
2616 | - } |
|
2617 | - |
|
2618 | - |
|
2619 | - /** |
|
2620 | - * Gets categories or count of categories matching the arguments in the request. |
|
2621 | - * |
|
2622 | - * @param int $per_page |
|
2623 | - * @param int $current_page |
|
2624 | - * @param bool $count |
|
2625 | - * @return EE_Base_Class[]|EE_Term_Taxonomy[]|int |
|
2626 | - */ |
|
2627 | - public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2628 | - { |
|
2629 | - // testing term stuff |
|
2630 | - $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'Term.term_id'; |
|
2631 | - $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : 'DESC'; |
|
2632 | - $limit = ($current_page - 1) * $per_page; |
|
2633 | - $where = array('taxonomy' => EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2634 | - if (isset($this->_req_data['s'])) { |
|
2635 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2636 | - $where['OR'] = array( |
|
2637 | - 'Term.name' => array('LIKE', $sstr), |
|
2638 | - 'description' => array('LIKE', $sstr), |
|
2639 | - ); |
|
2640 | - } |
|
2641 | - $query_params = array( |
|
2642 | - $where, |
|
2643 | - 'order_by' => array($orderby => $order), |
|
2644 | - 'limit' => $limit . ',' . $per_page, |
|
2645 | - 'force_join' => array('Term'), |
|
2646 | - ); |
|
2647 | - $categories = $count |
|
2648 | - ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2649 | - : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2650 | - return $categories; |
|
2651 | - } |
|
2652 | - |
|
2653 | - /* end category stuff */ |
|
2654 | - /**************/ |
|
2655 | - |
|
2656 | - |
|
2657 | - /** |
|
2658 | - * Callback for the `ee_save_timezone_setting` ajax action. |
|
2659 | - * |
|
2660 | - * @throws EE_Error |
|
2661 | - */ |
|
2662 | - public function save_timezonestring_setting() |
|
2663 | - { |
|
2664 | - $timezone_string = isset($this->_req_data['timezone_selected']) |
|
2665 | - ? $this->_req_data['timezone_selected'] |
|
2666 | - : ''; |
|
2667 | - if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) { |
|
2668 | - EE_Error::add_error( |
|
2669 | - esc_html__('An invalid timezone string submitted.', 'event_espresso'), |
|
2670 | - __FILE__, |
|
2671 | - __FUNCTION__, |
|
2672 | - __LINE__ |
|
2673 | - ); |
|
2674 | - $this->_template_args['error'] = true; |
|
2675 | - $this->_return_json(); |
|
2676 | - } |
|
2677 | - |
|
2678 | - update_option('timezone_string', $timezone_string); |
|
2679 | - EE_Error::add_success( |
|
2680 | - esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2681 | - ); |
|
2682 | - $this->_template_args['success'] = true; |
|
2683 | - $this->_return_json(true, array('action' => 'create_new')); |
|
2684 | - } |
|
15 | + /** |
|
16 | + * This will hold the event object for event_details screen. |
|
17 | + * |
|
18 | + * @access protected |
|
19 | + * @var EE_Event $_event |
|
20 | + */ |
|
21 | + protected $_event; |
|
22 | + |
|
23 | + |
|
24 | + /** |
|
25 | + * This will hold the category object for category_details screen. |
|
26 | + * |
|
27 | + * @var stdClass $_category |
|
28 | + */ |
|
29 | + protected $_category; |
|
30 | + |
|
31 | + |
|
32 | + /** |
|
33 | + * This will hold the event model instance |
|
34 | + * |
|
35 | + * @var EEM_Event $_event_model |
|
36 | + */ |
|
37 | + protected $_event_model; |
|
38 | + |
|
39 | + |
|
40 | + /** |
|
41 | + * @var EE_Event |
|
42 | + */ |
|
43 | + protected $_cpt_model_obj = false; |
|
44 | + |
|
45 | + |
|
46 | + /** |
|
47 | + * Initialize page props for this admin page group. |
|
48 | + */ |
|
49 | + protected function _init_page_props() |
|
50 | + { |
|
51 | + $this->page_slug = EVENTS_PG_SLUG; |
|
52 | + $this->page_label = EVENTS_LABEL; |
|
53 | + $this->_admin_base_url = EVENTS_ADMIN_URL; |
|
54 | + $this->_admin_base_path = EVENTS_ADMIN; |
|
55 | + $this->_cpt_model_names = array( |
|
56 | + 'create_new' => 'EEM_Event', |
|
57 | + 'edit' => 'EEM_Event', |
|
58 | + ); |
|
59 | + $this->_cpt_edit_routes = array( |
|
60 | + 'espresso_events' => 'edit', |
|
61 | + ); |
|
62 | + add_action( |
|
63 | + 'AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object', |
|
64 | + array($this, 'verify_event_edit'), |
|
65 | + 10, |
|
66 | + 2 |
|
67 | + ); |
|
68 | + } |
|
69 | + |
|
70 | + |
|
71 | + /** |
|
72 | + * Sets the ajax hooks used for this admin page group. |
|
73 | + */ |
|
74 | + protected function _ajax_hooks() |
|
75 | + { |
|
76 | + add_action('wp_ajax_ee_save_timezone_setting', array($this, 'save_timezonestring_setting')); |
|
77 | + } |
|
78 | + |
|
79 | + |
|
80 | + /** |
|
81 | + * Sets the page properties for this admin page group. |
|
82 | + */ |
|
83 | + protected function _define_page_props() |
|
84 | + { |
|
85 | + $this->_admin_page_title = EVENTS_LABEL; |
|
86 | + $this->_labels = array( |
|
87 | + 'buttons' => array( |
|
88 | + 'add' => esc_html__('Add New Event', 'event_espresso'), |
|
89 | + 'edit' => esc_html__('Edit Event', 'event_espresso'), |
|
90 | + 'delete' => esc_html__('Delete Event', 'event_espresso'), |
|
91 | + 'add_category' => esc_html__('Add New Category', 'event_espresso'), |
|
92 | + 'edit_category' => esc_html__('Edit Category', 'event_espresso'), |
|
93 | + 'delete_category' => esc_html__('Delete Category', 'event_espresso'), |
|
94 | + ), |
|
95 | + 'editor_title' => array( |
|
96 | + 'espresso_events' => esc_html__('Enter event title here', 'event_espresso'), |
|
97 | + ), |
|
98 | + 'publishbox' => array( |
|
99 | + 'create_new' => esc_html__('Save New Event', 'event_espresso'), |
|
100 | + 'edit' => esc_html__('Update Event', 'event_espresso'), |
|
101 | + 'add_category' => esc_html__('Save New Category', 'event_espresso'), |
|
102 | + 'edit_category' => esc_html__('Update Category', 'event_espresso'), |
|
103 | + 'template_settings' => esc_html__('Update Settings', 'event_espresso'), |
|
104 | + ), |
|
105 | + ); |
|
106 | + } |
|
107 | + |
|
108 | + |
|
109 | + /** |
|
110 | + * Sets the page routes property for this admin page group. |
|
111 | + */ |
|
112 | + protected function _set_page_routes() |
|
113 | + { |
|
114 | + // load formatter helper |
|
115 | + // load field generator helper |
|
116 | + // is there a evt_id in the request? |
|
117 | + $evt_id = ! empty($this->_req_data['EVT_ID']) && ! is_array($this->_req_data['EVT_ID']) |
|
118 | + ? $this->_req_data['EVT_ID'] |
|
119 | + : 0; |
|
120 | + $evt_id = ! empty($this->_req_data['post']) ? $this->_req_data['post'] : $evt_id; |
|
121 | + $this->_page_routes = array( |
|
122 | + 'default' => array( |
|
123 | + 'func' => '_events_overview_list_table', |
|
124 | + 'capability' => 'ee_read_events', |
|
125 | + ), |
|
126 | + 'create_new' => array( |
|
127 | + 'func' => '_create_new_cpt_item', |
|
128 | + 'capability' => 'ee_edit_events', |
|
129 | + ), |
|
130 | + 'edit' => array( |
|
131 | + 'func' => '_edit_cpt_item', |
|
132 | + 'capability' => 'ee_edit_event', |
|
133 | + 'obj_id' => $evt_id, |
|
134 | + ), |
|
135 | + 'copy_event' => array( |
|
136 | + 'func' => '_copy_events', |
|
137 | + 'capability' => 'ee_edit_event', |
|
138 | + 'obj_id' => $evt_id, |
|
139 | + 'noheader' => true, |
|
140 | + ), |
|
141 | + 'trash_event' => array( |
|
142 | + 'func' => '_trash_or_restore_event', |
|
143 | + 'args' => array('event_status' => 'trash'), |
|
144 | + 'capability' => 'ee_delete_event', |
|
145 | + 'obj_id' => $evt_id, |
|
146 | + 'noheader' => true, |
|
147 | + ), |
|
148 | + 'trash_events' => array( |
|
149 | + 'func' => '_trash_or_restore_events', |
|
150 | + 'args' => array('event_status' => 'trash'), |
|
151 | + 'capability' => 'ee_delete_events', |
|
152 | + 'noheader' => true, |
|
153 | + ), |
|
154 | + 'restore_event' => array( |
|
155 | + 'func' => '_trash_or_restore_event', |
|
156 | + 'args' => array('event_status' => 'draft'), |
|
157 | + 'capability' => 'ee_delete_event', |
|
158 | + 'obj_id' => $evt_id, |
|
159 | + 'noheader' => true, |
|
160 | + ), |
|
161 | + 'restore_events' => array( |
|
162 | + 'func' => '_trash_or_restore_events', |
|
163 | + 'args' => array('event_status' => 'draft'), |
|
164 | + 'capability' => 'ee_delete_events', |
|
165 | + 'noheader' => true, |
|
166 | + ), |
|
167 | + 'delete_event' => array( |
|
168 | + 'func' => '_delete_event', |
|
169 | + 'capability' => 'ee_delete_event', |
|
170 | + 'obj_id' => $evt_id, |
|
171 | + 'noheader' => true, |
|
172 | + ), |
|
173 | + 'delete_events' => array( |
|
174 | + 'func' => '_delete_events', |
|
175 | + 'capability' => 'ee_delete_events', |
|
176 | + 'noheader' => true, |
|
177 | + ), |
|
178 | + 'view_report' => array( |
|
179 | + 'func' => '_view_report', |
|
180 | + 'capablity' => 'ee_edit_events', |
|
181 | + ), |
|
182 | + 'default_event_settings' => array( |
|
183 | + 'func' => '_default_event_settings', |
|
184 | + 'capability' => 'manage_options', |
|
185 | + ), |
|
186 | + 'update_default_event_settings' => array( |
|
187 | + 'func' => '_update_default_event_settings', |
|
188 | + 'capability' => 'manage_options', |
|
189 | + 'noheader' => true, |
|
190 | + ), |
|
191 | + 'template_settings' => array( |
|
192 | + 'func' => '_template_settings', |
|
193 | + 'capability' => 'manage_options', |
|
194 | + ), |
|
195 | + // event category tab related |
|
196 | + 'add_category' => array( |
|
197 | + 'func' => '_category_details', |
|
198 | + 'capability' => 'ee_edit_event_category', |
|
199 | + 'args' => array('add'), |
|
200 | + ), |
|
201 | + 'edit_category' => array( |
|
202 | + 'func' => '_category_details', |
|
203 | + 'capability' => 'ee_edit_event_category', |
|
204 | + 'args' => array('edit'), |
|
205 | + ), |
|
206 | + 'delete_categories' => array( |
|
207 | + 'func' => '_delete_categories', |
|
208 | + 'capability' => 'ee_delete_event_category', |
|
209 | + 'noheader' => true, |
|
210 | + ), |
|
211 | + 'delete_category' => array( |
|
212 | + 'func' => '_delete_categories', |
|
213 | + 'capability' => 'ee_delete_event_category', |
|
214 | + 'noheader' => true, |
|
215 | + ), |
|
216 | + 'insert_category' => array( |
|
217 | + 'func' => '_insert_or_update_category', |
|
218 | + 'args' => array('new_category' => true), |
|
219 | + 'capability' => 'ee_edit_event_category', |
|
220 | + 'noheader' => true, |
|
221 | + ), |
|
222 | + 'update_category' => array( |
|
223 | + 'func' => '_insert_or_update_category', |
|
224 | + 'args' => array('new_category' => false), |
|
225 | + 'capability' => 'ee_edit_event_category', |
|
226 | + 'noheader' => true, |
|
227 | + ), |
|
228 | + 'category_list' => array( |
|
229 | + 'func' => '_category_list_table', |
|
230 | + 'capability' => 'ee_manage_event_categories', |
|
231 | + ), |
|
232 | + ); |
|
233 | + } |
|
234 | + |
|
235 | + |
|
236 | + /** |
|
237 | + * Set the _page_config property for this admin page group. |
|
238 | + */ |
|
239 | + protected function _set_page_config() |
|
240 | + { |
|
241 | + $this->_page_config = array( |
|
242 | + 'default' => array( |
|
243 | + 'nav' => array( |
|
244 | + 'label' => esc_html__('Overview', 'event_espresso'), |
|
245 | + 'order' => 10, |
|
246 | + ), |
|
247 | + 'list_table' => 'Events_Admin_List_Table', |
|
248 | + 'help_tabs' => array( |
|
249 | + 'events_overview_help_tab' => array( |
|
250 | + 'title' => esc_html__('Events Overview', 'event_espresso'), |
|
251 | + 'filename' => 'events_overview', |
|
252 | + ), |
|
253 | + 'events_overview_table_column_headings_help_tab' => array( |
|
254 | + 'title' => esc_html__('Events Overview Table Column Headings', 'event_espresso'), |
|
255 | + 'filename' => 'events_overview_table_column_headings', |
|
256 | + ), |
|
257 | + 'events_overview_filters_help_tab' => array( |
|
258 | + 'title' => esc_html__('Events Overview Filters', 'event_espresso'), |
|
259 | + 'filename' => 'events_overview_filters', |
|
260 | + ), |
|
261 | + 'events_overview_view_help_tab' => array( |
|
262 | + 'title' => esc_html__('Events Overview Views', 'event_espresso'), |
|
263 | + 'filename' => 'events_overview_views', |
|
264 | + ), |
|
265 | + 'events_overview_other_help_tab' => array( |
|
266 | + 'title' => esc_html__('Events Overview Other', 'event_espresso'), |
|
267 | + 'filename' => 'events_overview_other', |
|
268 | + ), |
|
269 | + ), |
|
270 | + 'help_tour' => array( |
|
271 | + 'Event_Overview_Help_Tour', |
|
272 | + // 'New_Features_Test_Help_Tour' for testing multiple help tour |
|
273 | + ), |
|
274 | + 'qtips' => array( |
|
275 | + 'EE_Event_List_Table_Tips', |
|
276 | + ), |
|
277 | + 'require_nonce' => false, |
|
278 | + ), |
|
279 | + 'create_new' => array( |
|
280 | + 'nav' => array( |
|
281 | + 'label' => esc_html__('Add Event', 'event_espresso'), |
|
282 | + 'order' => 5, |
|
283 | + 'persistent' => false, |
|
284 | + ), |
|
285 | + 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
286 | + 'help_tabs' => array( |
|
287 | + 'event_editor_help_tab' => array( |
|
288 | + 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
289 | + 'filename' => 'event_editor', |
|
290 | + ), |
|
291 | + 'event_editor_title_richtexteditor_help_tab' => array( |
|
292 | + 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
293 | + 'filename' => 'event_editor_title_richtexteditor', |
|
294 | + ), |
|
295 | + 'event_editor_venue_details_help_tab' => array( |
|
296 | + 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
297 | + 'filename' => 'event_editor_venue_details', |
|
298 | + ), |
|
299 | + 'event_editor_event_datetimes_help_tab' => array( |
|
300 | + 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
301 | + 'filename' => 'event_editor_event_datetimes', |
|
302 | + ), |
|
303 | + 'event_editor_event_tickets_help_tab' => array( |
|
304 | + 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
305 | + 'filename' => 'event_editor_event_tickets', |
|
306 | + ), |
|
307 | + 'event_editor_event_registration_options_help_tab' => array( |
|
308 | + 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
309 | + 'filename' => 'event_editor_event_registration_options', |
|
310 | + ), |
|
311 | + 'event_editor_tags_categories_help_tab' => array( |
|
312 | + 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
313 | + 'filename' => 'event_editor_tags_categories', |
|
314 | + ), |
|
315 | + 'event_editor_questions_registrants_help_tab' => array( |
|
316 | + 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
317 | + 'filename' => 'event_editor_questions_registrants', |
|
318 | + ), |
|
319 | + 'event_editor_save_new_event_help_tab' => array( |
|
320 | + 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
321 | + 'filename' => 'event_editor_save_new_event', |
|
322 | + ), |
|
323 | + 'event_editor_other_help_tab' => array( |
|
324 | + 'title' => esc_html__('Event Other', 'event_espresso'), |
|
325 | + 'filename' => 'event_editor_other', |
|
326 | + ), |
|
327 | + ), |
|
328 | + 'help_tour' => array( |
|
329 | + 'Event_Editor_Help_Tour', |
|
330 | + ), |
|
331 | + 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
332 | + 'require_nonce' => false, |
|
333 | + ), |
|
334 | + 'edit' => array( |
|
335 | + 'nav' => array( |
|
336 | + 'label' => esc_html__('Edit Event', 'event_espresso'), |
|
337 | + 'order' => 5, |
|
338 | + 'persistent' => false, |
|
339 | + 'url' => isset($this->_req_data['post']) |
|
340 | + ? EE_Admin_Page::add_query_args_and_nonce( |
|
341 | + array('post' => $this->_req_data['post'], 'action' => 'edit'), |
|
342 | + $this->_current_page_view_url |
|
343 | + ) |
|
344 | + : $this->_admin_base_url, |
|
345 | + ), |
|
346 | + 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
347 | + 'help_tabs' => array( |
|
348 | + 'event_editor_help_tab' => array( |
|
349 | + 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
350 | + 'filename' => 'event_editor', |
|
351 | + ), |
|
352 | + 'event_editor_title_richtexteditor_help_tab' => array( |
|
353 | + 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
354 | + 'filename' => 'event_editor_title_richtexteditor', |
|
355 | + ), |
|
356 | + 'event_editor_venue_details_help_tab' => array( |
|
357 | + 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
358 | + 'filename' => 'event_editor_venue_details', |
|
359 | + ), |
|
360 | + 'event_editor_event_datetimes_help_tab' => array( |
|
361 | + 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
362 | + 'filename' => 'event_editor_event_datetimes', |
|
363 | + ), |
|
364 | + 'event_editor_event_tickets_help_tab' => array( |
|
365 | + 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
366 | + 'filename' => 'event_editor_event_tickets', |
|
367 | + ), |
|
368 | + 'event_editor_event_registration_options_help_tab' => array( |
|
369 | + 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
370 | + 'filename' => 'event_editor_event_registration_options', |
|
371 | + ), |
|
372 | + 'event_editor_tags_categories_help_tab' => array( |
|
373 | + 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
374 | + 'filename' => 'event_editor_tags_categories', |
|
375 | + ), |
|
376 | + 'event_editor_questions_registrants_help_tab' => array( |
|
377 | + 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
378 | + 'filename' => 'event_editor_questions_registrants', |
|
379 | + ), |
|
380 | + 'event_editor_save_new_event_help_tab' => array( |
|
381 | + 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
382 | + 'filename' => 'event_editor_save_new_event', |
|
383 | + ), |
|
384 | + 'event_editor_other_help_tab' => array( |
|
385 | + 'title' => esc_html__('Event Other', 'event_espresso'), |
|
386 | + 'filename' => 'event_editor_other', |
|
387 | + ), |
|
388 | + ), |
|
389 | + 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
390 | + 'require_nonce' => false, |
|
391 | + ), |
|
392 | + 'default_event_settings' => array( |
|
393 | + 'nav' => array( |
|
394 | + 'label' => esc_html__('Default Settings', 'event_espresso'), |
|
395 | + 'order' => 40, |
|
396 | + ), |
|
397 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
398 | + 'labels' => array( |
|
399 | + 'publishbox' => esc_html__('Update Settings', 'event_espresso'), |
|
400 | + ), |
|
401 | + 'help_tabs' => array( |
|
402 | + 'default_settings_help_tab' => array( |
|
403 | + 'title' => esc_html__('Default Event Settings', 'event_espresso'), |
|
404 | + 'filename' => 'events_default_settings', |
|
405 | + ), |
|
406 | + 'default_settings_status_help_tab' => array( |
|
407 | + 'title' => esc_html__('Default Registration Status', 'event_espresso'), |
|
408 | + 'filename' => 'events_default_settings_status', |
|
409 | + ), |
|
410 | + 'default_maximum_tickets_help_tab' => array( |
|
411 | + 'title' => esc_html__('Default Maximum Tickets Per Order', 'event_espresso'), |
|
412 | + 'filename' => 'events_default_settings_max_tickets', |
|
413 | + ), |
|
414 | + ), |
|
415 | + 'help_tour' => array('Event_Default_Settings_Help_Tour'), |
|
416 | + 'require_nonce' => false, |
|
417 | + ), |
|
418 | + // template settings |
|
419 | + 'template_settings' => array( |
|
420 | + 'nav' => array( |
|
421 | + 'label' => esc_html__('Templates', 'event_espresso'), |
|
422 | + 'order' => 30, |
|
423 | + ), |
|
424 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
425 | + 'help_tabs' => array( |
|
426 | + 'general_settings_templates_help_tab' => array( |
|
427 | + 'title' => esc_html__('Templates', 'event_espresso'), |
|
428 | + 'filename' => 'general_settings_templates', |
|
429 | + ), |
|
430 | + ), |
|
431 | + 'help_tour' => array('Templates_Help_Tour'), |
|
432 | + 'require_nonce' => false, |
|
433 | + ), |
|
434 | + // event category stuff |
|
435 | + 'add_category' => array( |
|
436 | + 'nav' => array( |
|
437 | + 'label' => esc_html__('Add Category', 'event_espresso'), |
|
438 | + 'order' => 15, |
|
439 | + 'persistent' => false, |
|
440 | + ), |
|
441 | + 'help_tabs' => array( |
|
442 | + 'add_category_help_tab' => array( |
|
443 | + 'title' => esc_html__('Add New Event Category', 'event_espresso'), |
|
444 | + 'filename' => 'events_add_category', |
|
445 | + ), |
|
446 | + ), |
|
447 | + 'help_tour' => array('Event_Add_Category_Help_Tour'), |
|
448 | + 'metaboxes' => array('_publish_post_box'), |
|
449 | + 'require_nonce' => false, |
|
450 | + ), |
|
451 | + 'edit_category' => array( |
|
452 | + 'nav' => array( |
|
453 | + 'label' => esc_html__('Edit Category', 'event_espresso'), |
|
454 | + 'order' => 15, |
|
455 | + 'persistent' => false, |
|
456 | + 'url' => isset($this->_req_data['EVT_CAT_ID']) |
|
457 | + ? add_query_arg( |
|
458 | + array('EVT_CAT_ID' => $this->_req_data['EVT_CAT_ID']), |
|
459 | + $this->_current_page_view_url |
|
460 | + ) |
|
461 | + : $this->_admin_base_url, |
|
462 | + ), |
|
463 | + 'help_tabs' => array( |
|
464 | + 'edit_category_help_tab' => array( |
|
465 | + 'title' => esc_html__('Edit Event Category', 'event_espresso'), |
|
466 | + 'filename' => 'events_edit_category', |
|
467 | + ), |
|
468 | + ), |
|
469 | + /*'help_tour' => array('Event_Edit_Category_Help_Tour'),*/ |
|
470 | + 'metaboxes' => array('_publish_post_box'), |
|
471 | + 'require_nonce' => false, |
|
472 | + ), |
|
473 | + 'category_list' => array( |
|
474 | + 'nav' => array( |
|
475 | + 'label' => esc_html__('Categories', 'event_espresso'), |
|
476 | + 'order' => 20, |
|
477 | + ), |
|
478 | + 'list_table' => 'Event_Categories_Admin_List_Table', |
|
479 | + 'help_tabs' => array( |
|
480 | + 'events_categories_help_tab' => array( |
|
481 | + 'title' => esc_html__('Event Categories', 'event_espresso'), |
|
482 | + 'filename' => 'events_categories', |
|
483 | + ), |
|
484 | + 'events_categories_table_column_headings_help_tab' => array( |
|
485 | + 'title' => esc_html__('Event Categories Table Column Headings', 'event_espresso'), |
|
486 | + 'filename' => 'events_categories_table_column_headings', |
|
487 | + ), |
|
488 | + 'events_categories_view_help_tab' => array( |
|
489 | + 'title' => esc_html__('Event Categories Views', 'event_espresso'), |
|
490 | + 'filename' => 'events_categories_views', |
|
491 | + ), |
|
492 | + 'events_categories_other_help_tab' => array( |
|
493 | + 'title' => esc_html__('Event Categories Other', 'event_espresso'), |
|
494 | + 'filename' => 'events_categories_other', |
|
495 | + ), |
|
496 | + ), |
|
497 | + 'help_tour' => array( |
|
498 | + 'Event_Categories_Help_Tour', |
|
499 | + ), |
|
500 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
501 | + 'require_nonce' => false, |
|
502 | + ), |
|
503 | + ); |
|
504 | + } |
|
505 | + |
|
506 | + |
|
507 | + /** |
|
508 | + * Used to register any global screen options if necessary for every route in this admin page group. |
|
509 | + */ |
|
510 | + protected function _add_screen_options() |
|
511 | + { |
|
512 | + } |
|
513 | + |
|
514 | + |
|
515 | + /** |
|
516 | + * Implementing the screen options for the 'default' route. |
|
517 | + */ |
|
518 | + protected function _add_screen_options_default() |
|
519 | + { |
|
520 | + $this->_per_page_screen_option(); |
|
521 | + } |
|
522 | + |
|
523 | + |
|
524 | + /** |
|
525 | + * Implementing screen options for the category list route. |
|
526 | + */ |
|
527 | + protected function _add_screen_options_category_list() |
|
528 | + { |
|
529 | + $page_title = $this->_admin_page_title; |
|
530 | + $this->_admin_page_title = esc_html__('Categories', 'event_espresso'); |
|
531 | + $this->_per_page_screen_option(); |
|
532 | + $this->_admin_page_title = $page_title; |
|
533 | + } |
|
534 | + |
|
535 | + |
|
536 | + /** |
|
537 | + * Used to register any global feature pointers for the admin page group. |
|
538 | + */ |
|
539 | + protected function _add_feature_pointers() |
|
540 | + { |
|
541 | + } |
|
542 | + |
|
543 | + |
|
544 | + /** |
|
545 | + * Registers and enqueues any global scripts and styles for the entire admin page group. |
|
546 | + */ |
|
547 | + public function load_scripts_styles() |
|
548 | + { |
|
549 | + wp_register_style( |
|
550 | + 'events-admin-css', |
|
551 | + EVENTS_ASSETS_URL . 'events-admin-page.css', |
|
552 | + array(), |
|
553 | + EVENT_ESPRESSO_VERSION |
|
554 | + ); |
|
555 | + wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL . 'ee-cat-admin.css', array(), EVENT_ESPRESSO_VERSION); |
|
556 | + wp_enqueue_style('events-admin-css'); |
|
557 | + wp_enqueue_style('ee-cat-admin'); |
|
558 | + // todo note: we also need to load_scripts_styles per view (i.e. default/view_report/event_details |
|
559 | + // registers for all views |
|
560 | + // scripts |
|
561 | + wp_register_script( |
|
562 | + 'event_editor_js', |
|
563 | + EVENTS_ASSETS_URL . 'event_editor.js', |
|
564 | + array('ee_admin_js', 'jquery-ui-slider', 'jquery-ui-timepicker-addon'), |
|
565 | + EVENT_ESPRESSO_VERSION, |
|
566 | + true |
|
567 | + ); |
|
568 | + } |
|
569 | + |
|
570 | + |
|
571 | + /** |
|
572 | + * Enqueuing scripts and styles specific to this view |
|
573 | + */ |
|
574 | + public function load_scripts_styles_create_new() |
|
575 | + { |
|
576 | + $this->load_scripts_styles_edit(); |
|
577 | + } |
|
578 | + |
|
579 | + |
|
580 | + /** |
|
581 | + * Enqueuing scripts and styles specific to this view |
|
582 | + */ |
|
583 | + public function load_scripts_styles_edit() |
|
584 | + { |
|
585 | + // styles |
|
586 | + wp_enqueue_style('espresso-ui-theme'); |
|
587 | + wp_register_style( |
|
588 | + 'event-editor-css', |
|
589 | + EVENTS_ASSETS_URL . 'event-editor.css', |
|
590 | + array('ee-admin-css'), |
|
591 | + EVENT_ESPRESSO_VERSION |
|
592 | + ); |
|
593 | + wp_enqueue_style('event-editor-css'); |
|
594 | + // scripts |
|
595 | + wp_register_script( |
|
596 | + 'event-datetime-metabox', |
|
597 | + EVENTS_ASSETS_URL . 'event-datetime-metabox.js', |
|
598 | + array('event_editor_js', 'ee-datepicker'), |
|
599 | + EVENT_ESPRESSO_VERSION |
|
600 | + ); |
|
601 | + wp_enqueue_script('event-datetime-metabox'); |
|
602 | + } |
|
603 | + |
|
604 | + |
|
605 | + /** |
|
606 | + * Populating the _views property for the category list table view. |
|
607 | + */ |
|
608 | + protected function _set_list_table_views_category_list() |
|
609 | + { |
|
610 | + $this->_views = array( |
|
611 | + 'all' => array( |
|
612 | + 'slug' => 'all', |
|
613 | + 'label' => esc_html__('All', 'event_espresso'), |
|
614 | + 'count' => 0, |
|
615 | + 'bulk_action' => array( |
|
616 | + 'delete_categories' => esc_html__('Delete Permanently', 'event_espresso'), |
|
617 | + ), |
|
618 | + ), |
|
619 | + ); |
|
620 | + } |
|
621 | + |
|
622 | + |
|
623 | + /** |
|
624 | + * For adding anything that fires on the admin_init hook for any route within this admin page group. |
|
625 | + */ |
|
626 | + public function admin_init() |
|
627 | + { |
|
628 | + EE_Registry::$i18n_js_strings['image_confirm'] = esc_html__( |
|
629 | + 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
630 | + 'event_espresso' |
|
631 | + ); |
|
632 | + } |
|
633 | + |
|
634 | + |
|
635 | + /** |
|
636 | + * For adding anything that should be triggered on the admin_notices hook for any route within this admin page |
|
637 | + * group. |
|
638 | + */ |
|
639 | + public function admin_notices() |
|
640 | + { |
|
641 | + } |
|
642 | + |
|
643 | + |
|
644 | + /** |
|
645 | + * For adding anything that should be triggered on the `admin_print_footer_scripts` hook for any route within |
|
646 | + * this admin page group. |
|
647 | + */ |
|
648 | + public function admin_footer_scripts() |
|
649 | + { |
|
650 | + } |
|
651 | + |
|
652 | + |
|
653 | + /** |
|
654 | + * Call this function to verify if an event is public and has tickets for sale. If it does, then we need to show a |
|
655 | + * warning (via EE_Error::add_error()); |
|
656 | + * |
|
657 | + * @param EE_Event $event Event object |
|
658 | + * @param string $req_type |
|
659 | + * @return void |
|
660 | + * @throws EE_Error |
|
661 | + * @access public |
|
662 | + */ |
|
663 | + public function verify_event_edit($event = null, $req_type = '') |
|
664 | + { |
|
665 | + // don't need to do this when processing |
|
666 | + if (! empty($req_type)) { |
|
667 | + return; |
|
668 | + } |
|
669 | + // no event? |
|
670 | + if (empty($event)) { |
|
671 | + // set event |
|
672 | + $event = $this->_cpt_model_obj; |
|
673 | + } |
|
674 | + // STILL no event? |
|
675 | + if (! $event instanceof EE_Event) { |
|
676 | + return; |
|
677 | + } |
|
678 | + $orig_status = $event->status(); |
|
679 | + // first check if event is active. |
|
680 | + if ($orig_status === EEM_Event::cancelled |
|
681 | + || $orig_status === EEM_Event::postponed |
|
682 | + || $event->is_expired() |
|
683 | + || $event->is_inactive() |
|
684 | + ) { |
|
685 | + return; |
|
686 | + } |
|
687 | + // made it here so it IS active... next check that any of the tickets are sold. |
|
688 | + if ($event->is_sold_out(true)) { |
|
689 | + if ($orig_status !== EEM_Event::sold_out && $event->status() !== $orig_status) { |
|
690 | + EE_Error::add_attention( |
|
691 | + sprintf( |
|
692 | + esc_html__( |
|
693 | + 'Please note that the Event Status has automatically been changed to %s because there are no more spaces available for this event. However, this change is not permanent until you update the event. You can change the status back to something else before updating if you wish.', |
|
694 | + 'event_espresso' |
|
695 | + ), |
|
696 | + EEH_Template::pretty_status(EEM_Event::sold_out, false, 'sentence') |
|
697 | + ) |
|
698 | + ); |
|
699 | + } |
|
700 | + return; |
|
701 | + } elseif ($orig_status === EEM_Event::sold_out) { |
|
702 | + EE_Error::add_attention( |
|
703 | + sprintf( |
|
704 | + esc_html__( |
|
705 | + 'Please note that the Event Status has automatically been changed to %s because more spaces have become available for this event, most likely due to abandoned transactions freeing up reserved tickets. However, this change is not permanent until you update the event. If you wish, you can change the status back to something else before updating.', |
|
706 | + 'event_espresso' |
|
707 | + ), |
|
708 | + EEH_Template::pretty_status($event->status(), false, 'sentence') |
|
709 | + ) |
|
710 | + ); |
|
711 | + } |
|
712 | + // now we need to determine if the event has any tickets on sale. If not then we dont' show the error |
|
713 | + if (! $event->tickets_on_sale()) { |
|
714 | + return; |
|
715 | + } |
|
716 | + // made it here so show warning |
|
717 | + $this->_edit_event_warning(); |
|
718 | + } |
|
719 | + |
|
720 | + |
|
721 | + /** |
|
722 | + * This is the text used for when an event is being edited that is public and has tickets for sale. |
|
723 | + * When needed, hook this into a EE_Error::add_error() notice. |
|
724 | + * |
|
725 | + * @access protected |
|
726 | + * @return void |
|
727 | + */ |
|
728 | + protected function _edit_event_warning() |
|
729 | + { |
|
730 | + // we don't want to add warnings during these requests |
|
731 | + if (isset($this->_req_data['action']) && $this->_req_data['action'] === 'editpost') { |
|
732 | + return; |
|
733 | + } |
|
734 | + EE_Error::add_attention( |
|
735 | + sprintf( |
|
736 | + esc_html__( |
|
737 | + 'Your event is open for registration. Making changes may disrupt any transactions in progress. %sLearn more%s', |
|
738 | + 'event_espresso' |
|
739 | + ), |
|
740 | + '<a class="espresso-help-tab-lnk">', |
|
741 | + '</a>' |
|
742 | + ) |
|
743 | + ); |
|
744 | + } |
|
745 | + |
|
746 | + |
|
747 | + /** |
|
748 | + * When a user is creating a new event, notify them if they haven't set their timezone. |
|
749 | + * Otherwise, do the normal logic |
|
750 | + * |
|
751 | + * @return string |
|
752 | + * @throws \EE_Error |
|
753 | + */ |
|
754 | + protected function _create_new_cpt_item() |
|
755 | + { |
|
756 | + $has_timezone_string = get_option('timezone_string'); |
|
757 | + // only nag them about setting their timezone if it's their first event, and they haven't already done it |
|
758 | + if (! $has_timezone_string && ! EEM_Event::instance()->exists(array())) { |
|
759 | + EE_Error::add_attention( |
|
760 | + sprintf( |
|
761 | + __( |
|
762 | + 'Your website\'s timezone is currently set to a UTC offset. We recommend updating your timezone to a city or region near you before you create an event. Change your timezone now:%1$s%2$s%3$sChange Timezone%4$s', |
|
763 | + 'event_espresso' |
|
764 | + ), |
|
765 | + '<br>', |
|
766 | + '<select id="timezone_string" name="timezone_string" aria-describedby="timezone-description">' |
|
767 | + . EEH_DTT_Helper::wp_timezone_choice('', EEH_DTT_Helper::get_user_locale()) |
|
768 | + . '</select>', |
|
769 | + '<button class="button button-secondary timezone-submit">', |
|
770 | + '</button><span class="spinner"></span>' |
|
771 | + ), |
|
772 | + __FILE__, |
|
773 | + __FUNCTION__, |
|
774 | + __LINE__ |
|
775 | + ); |
|
776 | + } |
|
777 | + return parent::_create_new_cpt_item(); |
|
778 | + } |
|
779 | + |
|
780 | + |
|
781 | + /** |
|
782 | + * Sets the _views property for the default route in this admin page group. |
|
783 | + */ |
|
784 | + protected function _set_list_table_views_default() |
|
785 | + { |
|
786 | + $this->_views = array( |
|
787 | + 'all' => array( |
|
788 | + 'slug' => 'all', |
|
789 | + 'label' => esc_html__('View All Events', 'event_espresso'), |
|
790 | + 'count' => 0, |
|
791 | + 'bulk_action' => array( |
|
792 | + 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
793 | + ), |
|
794 | + ), |
|
795 | + 'draft' => array( |
|
796 | + 'slug' => 'draft', |
|
797 | + 'label' => esc_html__('Draft', 'event_espresso'), |
|
798 | + 'count' => 0, |
|
799 | + 'bulk_action' => array( |
|
800 | + 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
801 | + ), |
|
802 | + ), |
|
803 | + ); |
|
804 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_events', 'espresso_events_trash_events')) { |
|
805 | + $this->_views['trash'] = array( |
|
806 | + 'slug' => 'trash', |
|
807 | + 'label' => esc_html__('Trash', 'event_espresso'), |
|
808 | + 'count' => 0, |
|
809 | + 'bulk_action' => array( |
|
810 | + 'restore_events' => esc_html__('Restore From Trash', 'event_espresso'), |
|
811 | + 'delete_events' => esc_html__('Delete Permanently', 'event_espresso'), |
|
812 | + ), |
|
813 | + ); |
|
814 | + } |
|
815 | + } |
|
816 | + |
|
817 | + |
|
818 | + /** |
|
819 | + * Provides the legend item array for the default list table view. |
|
820 | + * |
|
821 | + * @return array |
|
822 | + */ |
|
823 | + protected function _event_legend_items() |
|
824 | + { |
|
825 | + $items = array( |
|
826 | + 'view_details' => array( |
|
827 | + 'class' => 'dashicons dashicons-search', |
|
828 | + 'desc' => esc_html__('View Event', 'event_espresso'), |
|
829 | + ), |
|
830 | + 'edit_event' => array( |
|
831 | + 'class' => 'ee-icon ee-icon-calendar-edit', |
|
832 | + 'desc' => esc_html__('Edit Event Details', 'event_espresso'), |
|
833 | + ), |
|
834 | + 'view_attendees' => array( |
|
835 | + 'class' => 'dashicons dashicons-groups', |
|
836 | + 'desc' => esc_html__('View Registrations for Event', 'event_espresso'), |
|
837 | + ), |
|
838 | + ); |
|
839 | + $items = apply_filters('FHEE__Events_Admin_Page___event_legend_items__items', $items); |
|
840 | + $statuses = array( |
|
841 | + 'sold_out_status' => array( |
|
842 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::sold_out, |
|
843 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::sold_out, false, 'sentence'), |
|
844 | + ), |
|
845 | + 'active_status' => array( |
|
846 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::active, |
|
847 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::active, false, 'sentence'), |
|
848 | + ), |
|
849 | + 'upcoming_status' => array( |
|
850 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::upcoming, |
|
851 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::upcoming, false, 'sentence'), |
|
852 | + ), |
|
853 | + 'postponed_status' => array( |
|
854 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::postponed, |
|
855 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::postponed, false, 'sentence'), |
|
856 | + ), |
|
857 | + 'cancelled_status' => array( |
|
858 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::cancelled, |
|
859 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::cancelled, false, 'sentence'), |
|
860 | + ), |
|
861 | + 'expired_status' => array( |
|
862 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::expired, |
|
863 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::expired, false, 'sentence'), |
|
864 | + ), |
|
865 | + 'inactive_status' => array( |
|
866 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::inactive, |
|
867 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::inactive, false, 'sentence'), |
|
868 | + ), |
|
869 | + ); |
|
870 | + $statuses = apply_filters('FHEE__Events_Admin_Page__event_legend_items__statuses', $statuses); |
|
871 | + return array_merge($items, $statuses); |
|
872 | + } |
|
873 | + |
|
874 | + |
|
875 | + /** |
|
876 | + * @return EEM_Event |
|
877 | + */ |
|
878 | + private function _event_model() |
|
879 | + { |
|
880 | + if (! $this->_event_model instanceof EEM_Event) { |
|
881 | + $this->_event_model = EE_Registry::instance()->load_model('Event'); |
|
882 | + } |
|
883 | + return $this->_event_model; |
|
884 | + } |
|
885 | + |
|
886 | + |
|
887 | + /** |
|
888 | + * Adds extra buttons to the WP CPT permalink field row. |
|
889 | + * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter. |
|
890 | + * |
|
891 | + * @param string $return the current html |
|
892 | + * @param int $id the post id for the page |
|
893 | + * @param string $new_title What the title is |
|
894 | + * @param string $new_slug what the slug is |
|
895 | + * @return string The new html string for the permalink area |
|
896 | + */ |
|
897 | + public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
898 | + { |
|
899 | + // make sure this is only when editing |
|
900 | + if (! empty($id)) { |
|
901 | + $post = get_post($id); |
|
902 | + $return .= '<a class="button button-small" onclick="prompt(\'Shortcode:\', jQuery(\'#shortcode\').val()); return false;" href="#" tabindex="-1">' |
|
903 | + . esc_html__('Shortcode', 'event_espresso') |
|
904 | + . '</a> '; |
|
905 | + $return .= '<input id="shortcode" type="hidden" value="[ESPRESSO_TICKET_SELECTOR event_id=' |
|
906 | + . $post->ID |
|
907 | + . ']">'; |
|
908 | + } |
|
909 | + return $return; |
|
910 | + } |
|
911 | + |
|
912 | + |
|
913 | + /** |
|
914 | + * _events_overview_list_table |
|
915 | + * This contains the logic for showing the events_overview list |
|
916 | + * |
|
917 | + * @access protected |
|
918 | + * @return void |
|
919 | + * @throws \EE_Error |
|
920 | + */ |
|
921 | + protected function _events_overview_list_table() |
|
922 | + { |
|
923 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
924 | + $this->_template_args['after_list_table'] = ! empty($this->_template_args['after_list_table']) |
|
925 | + ? (array) $this->_template_args['after_list_table'] |
|
926 | + : array(); |
|
927 | + $this->_template_args['after_list_table']['view_event_list_button'] = EEH_HTML::br() |
|
928 | + . EEH_Template::get_button_or_link( |
|
929 | + get_post_type_archive_link('espresso_events'), |
|
930 | + esc_html__("View Event Archive Page", "event_espresso"), |
|
931 | + 'button' |
|
932 | + ); |
|
933 | + $this->_template_args['after_list_table']['legend'] = $this->_display_legend($this->_event_legend_items()); |
|
934 | + $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
935 | + 'create_new', |
|
936 | + 'add', |
|
937 | + array(), |
|
938 | + 'add-new-h2' |
|
939 | + ); |
|
940 | + $this->display_admin_list_table_page_with_no_sidebar(); |
|
941 | + } |
|
942 | + |
|
943 | + |
|
944 | + /** |
|
945 | + * this allows for extra misc actions in the default WP publish box |
|
946 | + * |
|
947 | + * @return void |
|
948 | + */ |
|
949 | + public function extra_misc_actions_publish_box() |
|
950 | + { |
|
951 | + $this->_generate_publish_box_extra_content(); |
|
952 | + } |
|
953 | + |
|
954 | + |
|
955 | + /** |
|
956 | + * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been |
|
957 | + * saved. |
|
958 | + * Typically you would use this to save any additional data. |
|
959 | + * Keep in mind also that "save_post" runs on EVERY post update to the database. |
|
960 | + * ALSO very important. When a post transitions from scheduled to published, |
|
961 | + * the save_post action is fired but you will NOT have any _POST data containing any extra info you may have from |
|
962 | + * other meta saves. So MAKE sure that you handle this accordingly. |
|
963 | + * |
|
964 | + * @access protected |
|
965 | + * @abstract |
|
966 | + * @param string $post_id The ID of the cpt that was saved (so you can link relationally) |
|
967 | + * @param object $post The post object of the cpt that was saved. |
|
968 | + * @return void |
|
969 | + * @throws \EE_Error |
|
970 | + */ |
|
971 | + protected function _insert_update_cpt_item($post_id, $post) |
|
972 | + { |
|
973 | + if ($post instanceof WP_Post && $post->post_type !== 'espresso_events') { |
|
974 | + // get out we're not processing an event save. |
|
975 | + return; |
|
976 | + } |
|
977 | + $event_values = array( |
|
978 | + 'EVT_display_desc' => ! empty($this->_req_data['display_desc']) ? 1 : 0, |
|
979 | + 'EVT_display_ticket_selector' => ! empty($this->_req_data['display_ticket_selector']) ? 1 : 0, |
|
980 | + 'EVT_additional_limit' => min( |
|
981 | + apply_filters('FHEE__EE_Events_Admin__insert_update_cpt_item__EVT_additional_limit_max', 255), |
|
982 | + ! empty($this->_req_data['additional_limit']) ? $this->_req_data['additional_limit'] : null |
|
983 | + ), |
|
984 | + 'EVT_default_registration_status' => ! empty($this->_req_data['EVT_default_registration_status']) |
|
985 | + ? $this->_req_data['EVT_default_registration_status'] |
|
986 | + : EE_Registry::instance()->CFG->registration->default_STS_ID, |
|
987 | + 'EVT_member_only' => ! empty($this->_req_data['member_only']) ? 1 : 0, |
|
988 | + 'EVT_allow_overflow' => ! empty($this->_req_data['EVT_allow_overflow']) ? 1 : 0, |
|
989 | + 'EVT_timezone_string' => ! empty($this->_req_data['timezone_string']) |
|
990 | + ? $this->_req_data['timezone_string'] : null, |
|
991 | + 'EVT_external_URL' => ! empty($this->_req_data['externalURL']) |
|
992 | + ? $this->_req_data['externalURL'] : null, |
|
993 | + 'EVT_phone' => ! empty($this->_req_data['event_phone']) |
|
994 | + ? $this->_req_data['event_phone'] : null, |
|
995 | + ); |
|
996 | + // update event |
|
997 | + $success = $this->_event_model()->update_by_ID($event_values, $post_id); |
|
998 | + // get event_object for other metaboxes... though it would seem to make sense to just use $this->_event_model()->get_one_by_ID( $post_id ).. i have to setup where conditions to override the filters in the model that filter out autodraft and inherit statuses so we GET the inherit id! |
|
999 | + $get_one_where = array( |
|
1000 | + $this->_event_model()->primary_key_name() => $post_id, |
|
1001 | + 'OR' => array( |
|
1002 | + 'status' => $post->post_status, |
|
1003 | + // if trying to "Publish" a sold out event, it's status will get switched back to "sold_out" in the db, |
|
1004 | + // but the returned object here has a status of "publish", so use the original post status as well |
|
1005 | + 'status*1' => $this->_req_data['original_post_status'], |
|
1006 | + ), |
|
1007 | + ); |
|
1008 | + $event = $this->_event_model()->get_one(array($get_one_where)); |
|
1009 | + // the following are default callbacks for event attachment updates that can be overridden by caffeinated functionality and/or addons. |
|
1010 | + $event_update_callbacks = apply_filters( |
|
1011 | + 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
1012 | + array( |
|
1013 | + array($this, '_default_venue_update'), |
|
1014 | + array($this, '_default_tickets_update'), |
|
1015 | + ) |
|
1016 | + ); |
|
1017 | + $att_success = true; |
|
1018 | + foreach ($event_update_callbacks as $e_callback) { |
|
1019 | + $_success = is_callable($e_callback) |
|
1020 | + ? call_user_func($e_callback, $event, $this->_req_data) |
|
1021 | + : false; |
|
1022 | + // if ANY of these updates fail then we want the appropriate global error message |
|
1023 | + $att_success = ! $att_success ? $att_success : $_success; |
|
1024 | + } |
|
1025 | + // any errors? |
|
1026 | + if ($success && false === $att_success) { |
|
1027 | + EE_Error::add_error( |
|
1028 | + esc_html__( |
|
1029 | + 'Event Details saved successfully but something went wrong with saving attachments.', |
|
1030 | + 'event_espresso' |
|
1031 | + ), |
|
1032 | + __FILE__, |
|
1033 | + __FUNCTION__, |
|
1034 | + __LINE__ |
|
1035 | + ); |
|
1036 | + } elseif ($success === false) { |
|
1037 | + EE_Error::add_error( |
|
1038 | + esc_html__('Event Details did not save successfully.', 'event_espresso'), |
|
1039 | + __FILE__, |
|
1040 | + __FUNCTION__, |
|
1041 | + __LINE__ |
|
1042 | + ); |
|
1043 | + } |
|
1044 | + } |
|
1045 | + |
|
1046 | + |
|
1047 | + /** |
|
1048 | + * @see parent::restore_item() |
|
1049 | + * @param int $post_id |
|
1050 | + * @param int $revision_id |
|
1051 | + */ |
|
1052 | + protected function _restore_cpt_item($post_id, $revision_id) |
|
1053 | + { |
|
1054 | + // copy existing event meta to new post |
|
1055 | + $post_evt = $this->_event_model()->get_one_by_ID($post_id); |
|
1056 | + if ($post_evt instanceof EE_Event) { |
|
1057 | + // meta revision restore |
|
1058 | + $post_evt->restore_revision($revision_id); |
|
1059 | + // related objs restore |
|
1060 | + $post_evt->restore_revision($revision_id, array('Venue', 'Datetime', 'Price')); |
|
1061 | + } |
|
1062 | + } |
|
1063 | + |
|
1064 | + |
|
1065 | + /** |
|
1066 | + * Attach the venue to the Event |
|
1067 | + * |
|
1068 | + * @param \EE_Event $evtobj Event Object to add the venue to |
|
1069 | + * @param array $data The request data from the form |
|
1070 | + * @return bool Success or fail. |
|
1071 | + */ |
|
1072 | + protected function _default_venue_update(\EE_Event $evtobj, $data) |
|
1073 | + { |
|
1074 | + require_once(EE_MODELS . 'EEM_Venue.model.php'); |
|
1075 | + $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1076 | + $rows_affected = null; |
|
1077 | + $venue_id = ! empty($data['venue_id']) ? $data['venue_id'] : null; |
|
1078 | + // very important. If we don't have a venue name... |
|
1079 | + // then we'll get out because not necessary to create empty venue |
|
1080 | + if (empty($data['venue_title'])) { |
|
1081 | + return false; |
|
1082 | + } |
|
1083 | + $venue_array = array( |
|
1084 | + 'VNU_wp_user' => $evtobj->get('EVT_wp_user'), |
|
1085 | + 'VNU_name' => ! empty($data['venue_title']) ? $data['venue_title'] : null, |
|
1086 | + 'VNU_desc' => ! empty($data['venue_description']) ? $data['venue_description'] : null, |
|
1087 | + 'VNU_identifier' => ! empty($data['venue_identifier']) ? $data['venue_identifier'] : null, |
|
1088 | + 'VNU_short_desc' => ! empty($data['venue_short_description']) ? $data['venue_short_description'] |
|
1089 | + : null, |
|
1090 | + 'VNU_address' => ! empty($data['address']) ? $data['address'] : null, |
|
1091 | + 'VNU_address2' => ! empty($data['address2']) ? $data['address2'] : null, |
|
1092 | + 'VNU_city' => ! empty($data['city']) ? $data['city'] : null, |
|
1093 | + 'STA_ID' => ! empty($data['state']) ? $data['state'] : null, |
|
1094 | + 'CNT_ISO' => ! empty($data['countries']) ? $data['countries'] : null, |
|
1095 | + 'VNU_zip' => ! empty($data['zip']) ? $data['zip'] : null, |
|
1096 | + 'VNU_phone' => ! empty($data['venue_phone']) ? $data['venue_phone'] : null, |
|
1097 | + 'VNU_capacity' => ! empty($data['venue_capacity']) ? $data['venue_capacity'] : null, |
|
1098 | + 'VNU_url' => ! empty($data['venue_url']) ? $data['venue_url'] : null, |
|
1099 | + 'VNU_virtual_phone' => ! empty($data['virtual_phone']) ? $data['virtual_phone'] : null, |
|
1100 | + 'VNU_virtual_url' => ! empty($data['virtual_url']) ? $data['virtual_url'] : null, |
|
1101 | + 'VNU_enable_for_gmap' => isset($data['enable_for_gmap']) ? 1 : 0, |
|
1102 | + 'status' => 'publish', |
|
1103 | + ); |
|
1104 | + // if we've got the venue_id then we're just updating the existing venue so let's do that and then get out. |
|
1105 | + if (! empty($venue_id)) { |
|
1106 | + $update_where = array($venue_model->primary_key_name() => $venue_id); |
|
1107 | + $rows_affected = $venue_model->update($venue_array, array($update_where)); |
|
1108 | + // we've gotta make sure that the venue is always attached to a revision.. add_relation_to should take care of making sure that the relation is already present. |
|
1109 | + $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1110 | + return $rows_affected > 0 ? true : false; |
|
1111 | + } else { |
|
1112 | + // we insert the venue |
|
1113 | + $venue_id = $venue_model->insert($venue_array); |
|
1114 | + $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1115 | + return ! empty($venue_id) ? true : false; |
|
1116 | + } |
|
1117 | + // when we have the ancestor come in it's already been handled by the revision save. |
|
1118 | + } |
|
1119 | + |
|
1120 | + |
|
1121 | + /** |
|
1122 | + * Handles saving everything related to Tickets (datetimes, tickets, prices) |
|
1123 | + * |
|
1124 | + * @param EE_Event $evtobj The Event object we're attaching data to |
|
1125 | + * @param array $data The request data from the form |
|
1126 | + * @return array |
|
1127 | + */ |
|
1128 | + protected function _default_tickets_update(EE_Event $evtobj, $data) |
|
1129 | + { |
|
1130 | + $success = true; |
|
1131 | + $saved_dtt = null; |
|
1132 | + $saved_tickets = array(); |
|
1133 | + $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1134 | + foreach ($data['edit_event_datetimes'] as $row => $dtt) { |
|
1135 | + // trim all values to ensure any excess whitespace is removed. |
|
1136 | + $dtt = array_map('trim', $dtt); |
|
1137 | + $dtt['DTT_EVT_end'] = isset($dtt['DTT_EVT_end']) && ! empty($dtt['DTT_EVT_end']) ? $dtt['DTT_EVT_end'] |
|
1138 | + : $dtt['DTT_EVT_start']; |
|
1139 | + $datetime_values = array( |
|
1140 | + 'DTT_ID' => ! empty($dtt['DTT_ID']) ? $dtt['DTT_ID'] : null, |
|
1141 | + 'DTT_EVT_start' => $dtt['DTT_EVT_start'], |
|
1142 | + 'DTT_EVT_end' => $dtt['DTT_EVT_end'], |
|
1143 | + 'DTT_reg_limit' => empty($dtt['DTT_reg_limit']) ? EE_INF : $dtt['DTT_reg_limit'], |
|
1144 | + 'DTT_order' => $row, |
|
1145 | + ); |
|
1146 | + // if we have an id then let's get existing object first and then set the new values. Otherwise we instantiate a new object for save. |
|
1147 | + if (! empty($dtt['DTT_ID'])) { |
|
1148 | + $DTM = EE_Registry::instance() |
|
1149 | + ->load_model('Datetime', array($evtobj->get_timezone())) |
|
1150 | + ->get_one_by_ID($dtt['DTT_ID']); |
|
1151 | + $DTM->set_date_format($incoming_date_formats[0]); |
|
1152 | + $DTM->set_time_format($incoming_date_formats[1]); |
|
1153 | + foreach ($datetime_values as $field => $value) { |
|
1154 | + $DTM->set($field, $value); |
|
1155 | + } |
|
1156 | + // make sure the $dtt_id here is saved just in case after the add_relation_to() the autosave replaces it. We need to do this so we dont' TRASH the parent DTT. |
|
1157 | + $saved_dtts[ $DTM->ID() ] = $DTM; |
|
1158 | + } else { |
|
1159 | + $DTM = EE_Registry::instance()->load_class( |
|
1160 | + 'Datetime', |
|
1161 | + array($datetime_values, $evtobj->get_timezone(), $incoming_date_formats), |
|
1162 | + false, |
|
1163 | + false |
|
1164 | + ); |
|
1165 | + foreach ($datetime_values as $field => $value) { |
|
1166 | + $DTM->set($field, $value); |
|
1167 | + } |
|
1168 | + } |
|
1169 | + $DTM->save(); |
|
1170 | + $DTT = $evtobj->_add_relation_to($DTM, 'Datetime'); |
|
1171 | + // load DTT helper |
|
1172 | + // before going any further make sure our dates are setup correctly so that the end date is always equal or greater than the start date. |
|
1173 | + if ($DTT->get_raw('DTT_EVT_start') > $DTT->get_raw('DTT_EVT_end')) { |
|
1174 | + $DTT->set('DTT_EVT_end', $DTT->get('DTT_EVT_start')); |
|
1175 | + $DTT = EEH_DTT_Helper::date_time_add($DTT, 'DTT_EVT_end', 'days'); |
|
1176 | + $DTT->save(); |
|
1177 | + } |
|
1178 | + // now we got to make sure we add the new DTT_ID to the $saved_dtts array because it is possible there was a new one created for the autosave. |
|
1179 | + $saved_dtt = $DTT; |
|
1180 | + $success = ! $success ? $success : $DTT; |
|
1181 | + // if ANY of these updates fail then we want the appropriate global error message. |
|
1182 | + // //todo this is actually sucky we need a better error message but this is what it is for now. |
|
1183 | + } |
|
1184 | + // no dtts get deleted so we don't do any of that logic here. |
|
1185 | + // update tickets next |
|
1186 | + $old_tickets = isset($data['ticket_IDs']) ? explode(',', $data['ticket_IDs']) : array(); |
|
1187 | + foreach ($data['edit_tickets'] as $row => $tkt) { |
|
1188 | + $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1189 | + $update_prices = false; |
|
1190 | + $ticket_price = isset($data['edit_prices'][ $row ][1]['PRC_amount']) |
|
1191 | + ? $data['edit_prices'][ $row ][1]['PRC_amount'] : 0; |
|
1192 | + // trim inputs to ensure any excess whitespace is removed. |
|
1193 | + $tkt = array_map('trim', $tkt); |
|
1194 | + if (empty($tkt['TKT_start_date'])) { |
|
1195 | + // let's use now in the set timezone. |
|
1196 | + $now = new DateTime('now', new DateTimeZone($evtobj->get_timezone())); |
|
1197 | + $tkt['TKT_start_date'] = $now->format($incoming_date_formats[0] . ' ' . $incoming_date_formats[1]); |
|
1198 | + } |
|
1199 | + if (empty($tkt['TKT_end_date'])) { |
|
1200 | + // use the start date of the first datetime |
|
1201 | + $dtt = $evtobj->first_datetime(); |
|
1202 | + $tkt['TKT_end_date'] = $dtt->start_date_and_time( |
|
1203 | + $incoming_date_formats[0], |
|
1204 | + $incoming_date_formats[1] |
|
1205 | + ); |
|
1206 | + } |
|
1207 | + $TKT_values = array( |
|
1208 | + 'TKT_ID' => ! empty($tkt['TKT_ID']) ? $tkt['TKT_ID'] : null, |
|
1209 | + 'TTM_ID' => ! empty($tkt['TTM_ID']) ? $tkt['TTM_ID'] : 0, |
|
1210 | + 'TKT_name' => ! empty($tkt['TKT_name']) ? $tkt['TKT_name'] : '', |
|
1211 | + 'TKT_description' => ! empty($tkt['TKT_description']) ? $tkt['TKT_description'] : '', |
|
1212 | + 'TKT_start_date' => $tkt['TKT_start_date'], |
|
1213 | + 'TKT_end_date' => $tkt['TKT_end_date'], |
|
1214 | + 'TKT_qty' => ! isset($tkt['TKT_qty']) || $tkt['TKT_qty'] === '' ? EE_INF : $tkt['TKT_qty'], |
|
1215 | + 'TKT_uses' => ! isset($tkt['TKT_uses']) || $tkt['TKT_uses'] === '' ? EE_INF : $tkt['TKT_uses'], |
|
1216 | + 'TKT_min' => empty($tkt['TKT_min']) ? 0 : $tkt['TKT_min'], |
|
1217 | + 'TKT_max' => empty($tkt['TKT_max']) ? EE_INF : $tkt['TKT_max'], |
|
1218 | + 'TKT_row' => $row, |
|
1219 | + 'TKT_order' => isset($tkt['TKT_order']) ? $tkt['TKT_order'] : $row, |
|
1220 | + 'TKT_price' => $ticket_price, |
|
1221 | + ); |
|
1222 | + // if this is a default TKT, then we need to set the TKT_ID to 0 and update accordingly, which means in turn that the prices will become new prices as well. |
|
1223 | + if (isset($tkt['TKT_is_default']) && $tkt['TKT_is_default']) { |
|
1224 | + $TKT_values['TKT_ID'] = 0; |
|
1225 | + $TKT_values['TKT_is_default'] = 0; |
|
1226 | + $TKT_values['TKT_price'] = $ticket_price; |
|
1227 | + $update_prices = true; |
|
1228 | + } |
|
1229 | + // if we have a TKT_ID then we need to get that existing TKT_obj and update it |
|
1230 | + // we actually do our saves a head of doing any add_relations to because its entirely possible that this ticket didn't removed or added to any datetime in the session but DID have it's items modified. |
|
1231 | + // keep in mind that if the TKT has been sold (and we have changed pricing information), then we won't be updating the tkt but instead a new tkt will be created and the old one archived. |
|
1232 | + if (! empty($tkt['TKT_ID'])) { |
|
1233 | + $TKT = EE_Registry::instance() |
|
1234 | + ->load_model('Ticket', array($evtobj->get_timezone())) |
|
1235 | + ->get_one_by_ID($tkt['TKT_ID']); |
|
1236 | + if ($TKT instanceof EE_Ticket) { |
|
1237 | + $ticket_sold = $TKT->count_related( |
|
1238 | + 'Registration', |
|
1239 | + array( |
|
1240 | + array( |
|
1241 | + 'STS_ID' => array( |
|
1242 | + 'NOT IN', |
|
1243 | + array(EEM_Registration::status_id_incomplete), |
|
1244 | + ), |
|
1245 | + ), |
|
1246 | + ) |
|
1247 | + ) > 0 ? true : false; |
|
1248 | + // let's just check the total price for the existing ticket and determine if it matches the new total price. if they are different then we create a new ticket (if tkts sold) if they aren't different then we go ahead and modify existing ticket. |
|
1249 | + $create_new_TKT = $ticket_sold && $ticket_price != $TKT->get('TKT_price') |
|
1250 | + && ! $TKT->get('TKT_deleted'); |
|
1251 | + $TKT->set_date_format($incoming_date_formats[0]); |
|
1252 | + $TKT->set_time_format($incoming_date_formats[1]); |
|
1253 | + // set new values |
|
1254 | + foreach ($TKT_values as $field => $value) { |
|
1255 | + if ($field == 'TKT_qty') { |
|
1256 | + $TKT->set_qty($value); |
|
1257 | + } else { |
|
1258 | + $TKT->set($field, $value); |
|
1259 | + } |
|
1260 | + } |
|
1261 | + // if $create_new_TKT is false then we can safely update the existing ticket. Otherwise we have to create a new ticket. |
|
1262 | + if ($create_new_TKT) { |
|
1263 | + // archive the old ticket first |
|
1264 | + $TKT->set('TKT_deleted', 1); |
|
1265 | + $TKT->save(); |
|
1266 | + // make sure this ticket is still recorded in our saved_tkts so we don't run it through the regular trash routine. |
|
1267 | + $saved_tickets[ $TKT->ID() ] = $TKT; |
|
1268 | + // create new ticket that's a copy of the existing except a new id of course (and not archived) AND has the new TKT_price associated with it. |
|
1269 | + $TKT = clone $TKT; |
|
1270 | + $TKT->set('TKT_ID', 0); |
|
1271 | + $TKT->set('TKT_deleted', 0); |
|
1272 | + $TKT->set('TKT_price', $ticket_price); |
|
1273 | + $TKT->set('TKT_sold', 0); |
|
1274 | + // now we need to make sure that $new prices are created as well and attached to new ticket. |
|
1275 | + $update_prices = true; |
|
1276 | + } |
|
1277 | + // make sure price is set if it hasn't been already |
|
1278 | + $TKT->set('TKT_price', $ticket_price); |
|
1279 | + } |
|
1280 | + } else { |
|
1281 | + // no TKT_id so a new TKT |
|
1282 | + $TKT_values['TKT_price'] = $ticket_price; |
|
1283 | + $TKT = EE_Registry::instance()->load_class('Ticket', array($TKT_values), false, false); |
|
1284 | + if ($TKT instanceof EE_Ticket) { |
|
1285 | + // need to reset values to properly account for the date formats |
|
1286 | + $TKT->set_date_format($incoming_date_formats[0]); |
|
1287 | + $TKT->set_time_format($incoming_date_formats[1]); |
|
1288 | + $TKT->set_timezone($evtobj->get_timezone()); |
|
1289 | + // set new values |
|
1290 | + foreach ($TKT_values as $field => $value) { |
|
1291 | + if ($field == 'TKT_qty') { |
|
1292 | + $TKT->set_qty($value); |
|
1293 | + } else { |
|
1294 | + $TKT->set($field, $value); |
|
1295 | + } |
|
1296 | + } |
|
1297 | + $update_prices = true; |
|
1298 | + } |
|
1299 | + } |
|
1300 | + // cap ticket qty by datetime reg limits |
|
1301 | + $TKT->set_qty(min($TKT->qty(), $TKT->qty('reg_limit'))); |
|
1302 | + // update ticket. |
|
1303 | + $TKT->save(); |
|
1304 | + // before going any further make sure our dates are setup correctly so that the end date is always equal or greater than the start date. |
|
1305 | + if ($TKT->get_raw('TKT_start_date') > $TKT->get_raw('TKT_end_date')) { |
|
1306 | + $TKT->set('TKT_end_date', $TKT->get('TKT_start_date')); |
|
1307 | + $TKT = EEH_DTT_Helper::date_time_add($TKT, 'TKT_end_date', 'days'); |
|
1308 | + $TKT->save(); |
|
1309 | + } |
|
1310 | + // initially let's add the ticket to the dtt |
|
1311 | + $saved_dtt->_add_relation_to($TKT, 'Ticket'); |
|
1312 | + $saved_tickets[ $TKT->ID() ] = $TKT; |
|
1313 | + // add prices to ticket |
|
1314 | + $this->_add_prices_to_ticket($data['edit_prices'][ $row ], $TKT, $update_prices); |
|
1315 | + } |
|
1316 | + // however now we need to handle permanently deleting tickets via the ui. Keep in mind that the ui does not allow deleting/archiving tickets that have ticket sold. However, it does allow for deleting tickets that have no tickets sold, in which case we want to get rid of permanently because there is no need to save in db. |
|
1317 | + $old_tickets = isset($old_tickets[0]) && $old_tickets[0] == '' ? array() : $old_tickets; |
|
1318 | + $tickets_removed = array_diff($old_tickets, array_keys($saved_tickets)); |
|
1319 | + foreach ($tickets_removed as $id) { |
|
1320 | + $id = absint($id); |
|
1321 | + // get the ticket for this id |
|
1322 | + $tkt_to_remove = EE_Registry::instance()->load_model('Ticket')->get_one_by_ID($id); |
|
1323 | + // need to get all the related datetimes on this ticket and remove from every single one of them (remember this process can ONLY kick off if there are NO tkts_sold) |
|
1324 | + $dtts = $tkt_to_remove->get_many_related('Datetime'); |
|
1325 | + foreach ($dtts as $dtt) { |
|
1326 | + $tkt_to_remove->_remove_relation_to($dtt, 'Datetime'); |
|
1327 | + } |
|
1328 | + // need to do the same for prices (except these prices can also be deleted because again, tickets can only be trashed if they don't have any TKTs sold (otherwise they are just archived)) |
|
1329 | + $tkt_to_remove->delete_related_permanently('Price'); |
|
1330 | + // finally let's delete this ticket (which should not be blocked at this point b/c we've removed all our relationships) |
|
1331 | + $tkt_to_remove->delete_permanently(); |
|
1332 | + } |
|
1333 | + return array($saved_dtt, $saved_tickets); |
|
1334 | + } |
|
1335 | + |
|
1336 | + |
|
1337 | + /** |
|
1338 | + * This attaches a list of given prices to a ticket. |
|
1339 | + * Note we dont' have to worry about ever removing relationships (or archiving prices) because if there is a change |
|
1340 | + * in price information on a ticket, a new ticket is created anyways so the archived ticket will retain the old |
|
1341 | + * price info and prices are automatically "archived" via the ticket. |
|
1342 | + * |
|
1343 | + * @access private |
|
1344 | + * @param array $prices Array of prices from the form. |
|
1345 | + * @param EE_Ticket $ticket EE_Ticket object that prices are being attached to. |
|
1346 | + * @param bool $new_prices Whether attach existing incoming prices or create new ones. |
|
1347 | + * @return void |
|
1348 | + */ |
|
1349 | + private function _add_prices_to_ticket($prices, EE_Ticket $ticket, $new_prices = false) |
|
1350 | + { |
|
1351 | + foreach ($prices as $row => $prc) { |
|
1352 | + $PRC_values = array( |
|
1353 | + 'PRC_ID' => ! empty($prc['PRC_ID']) ? $prc['PRC_ID'] : null, |
|
1354 | + 'PRT_ID' => ! empty($prc['PRT_ID']) ? $prc['PRT_ID'] : null, |
|
1355 | + 'PRC_amount' => ! empty($prc['PRC_amount']) ? $prc['PRC_amount'] : 0, |
|
1356 | + 'PRC_name' => ! empty($prc['PRC_name']) ? $prc['PRC_name'] : '', |
|
1357 | + 'PRC_desc' => ! empty($prc['PRC_desc']) ? $prc['PRC_desc'] : '', |
|
1358 | + 'PRC_is_default' => 0, // make sure prices are NOT set as default from this context |
|
1359 | + 'PRC_order' => $row, |
|
1360 | + ); |
|
1361 | + if ($new_prices || empty($PRC_values['PRC_ID'])) { |
|
1362 | + $PRC_values['PRC_ID'] = 0; |
|
1363 | + $PRC = EE_Registry::instance()->load_class('Price', array($PRC_values), false, false); |
|
1364 | + } else { |
|
1365 | + $PRC = EE_Registry::instance()->load_model('Price')->get_one_by_ID($prc['PRC_ID']); |
|
1366 | + // update this price with new values |
|
1367 | + foreach ($PRC_values as $field => $newprc) { |
|
1368 | + $PRC->set($field, $newprc); |
|
1369 | + } |
|
1370 | + $PRC->save(); |
|
1371 | + } |
|
1372 | + $ticket->_add_relation_to($PRC, 'Price'); |
|
1373 | + } |
|
1374 | + } |
|
1375 | + |
|
1376 | + |
|
1377 | + /** |
|
1378 | + * Add in our autosave ajax handlers |
|
1379 | + * |
|
1380 | + */ |
|
1381 | + protected function _ee_autosave_create_new() |
|
1382 | + { |
|
1383 | + } |
|
1384 | + |
|
1385 | + |
|
1386 | + /** |
|
1387 | + * More autosave handlers. |
|
1388 | + */ |
|
1389 | + protected function _ee_autosave_edit() |
|
1390 | + { |
|
1391 | + return; // TEMPORARILY EXITING CAUSE THIS IS A TODO |
|
1392 | + } |
|
1393 | + |
|
1394 | + |
|
1395 | + /** |
|
1396 | + * _generate_publish_box_extra_content |
|
1397 | + */ |
|
1398 | + private function _generate_publish_box_extra_content() |
|
1399 | + { |
|
1400 | + // load formatter helper |
|
1401 | + // args for getting related registrations |
|
1402 | + $approved_query_args = array( |
|
1403 | + array( |
|
1404 | + 'REG_deleted' => 0, |
|
1405 | + 'STS_ID' => EEM_Registration::status_id_approved, |
|
1406 | + ), |
|
1407 | + ); |
|
1408 | + $not_approved_query_args = array( |
|
1409 | + array( |
|
1410 | + 'REG_deleted' => 0, |
|
1411 | + 'STS_ID' => EEM_Registration::status_id_not_approved, |
|
1412 | + ), |
|
1413 | + ); |
|
1414 | + $pending_payment_query_args = array( |
|
1415 | + array( |
|
1416 | + 'REG_deleted' => 0, |
|
1417 | + 'STS_ID' => EEM_Registration::status_id_pending_payment, |
|
1418 | + ), |
|
1419 | + ); |
|
1420 | + // publish box |
|
1421 | + $publish_box_extra_args = array( |
|
1422 | + 'view_approved_reg_url' => add_query_arg( |
|
1423 | + array( |
|
1424 | + 'action' => 'default', |
|
1425 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1426 | + '_reg_status' => EEM_Registration::status_id_approved, |
|
1427 | + ), |
|
1428 | + REG_ADMIN_URL |
|
1429 | + ), |
|
1430 | + 'view_not_approved_reg_url' => add_query_arg( |
|
1431 | + array( |
|
1432 | + 'action' => 'default', |
|
1433 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1434 | + '_reg_status' => EEM_Registration::status_id_not_approved, |
|
1435 | + ), |
|
1436 | + REG_ADMIN_URL |
|
1437 | + ), |
|
1438 | + 'view_pending_payment_reg_url' => add_query_arg( |
|
1439 | + array( |
|
1440 | + 'action' => 'default', |
|
1441 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1442 | + '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
1443 | + ), |
|
1444 | + REG_ADMIN_URL |
|
1445 | + ), |
|
1446 | + 'approved_regs' => $this->_cpt_model_obj->count_related( |
|
1447 | + 'Registration', |
|
1448 | + $approved_query_args |
|
1449 | + ), |
|
1450 | + 'not_approved_regs' => $this->_cpt_model_obj->count_related( |
|
1451 | + 'Registration', |
|
1452 | + $not_approved_query_args |
|
1453 | + ), |
|
1454 | + 'pending_payment_regs' => $this->_cpt_model_obj->count_related( |
|
1455 | + 'Registration', |
|
1456 | + $pending_payment_query_args |
|
1457 | + ), |
|
1458 | + 'misc_pub_section_class' => apply_filters( |
|
1459 | + 'FHEE_Events_Admin_Page___generate_publish_box_extra_content__misc_pub_section_class', |
|
1460 | + 'misc-pub-section' |
|
1461 | + ), |
|
1462 | + ); |
|
1463 | + ob_start(); |
|
1464 | + do_action( |
|
1465 | + 'AHEE__Events_Admin_Page___generate_publish_box_extra_content__event_editor_overview_add', |
|
1466 | + $this->_cpt_model_obj |
|
1467 | + ); |
|
1468 | + $publish_box_extra_args['event_editor_overview_add'] = ob_get_clean(); |
|
1469 | + // load template |
|
1470 | + EEH_Template::display_template( |
|
1471 | + EVENTS_TEMPLATE_PATH . 'event_publish_box_extras.template.php', |
|
1472 | + $publish_box_extra_args |
|
1473 | + ); |
|
1474 | + } |
|
1475 | + |
|
1476 | + |
|
1477 | + /** |
|
1478 | + * @return EE_Event |
|
1479 | + */ |
|
1480 | + public function get_event_object() |
|
1481 | + { |
|
1482 | + return $this->_cpt_model_obj; |
|
1483 | + } |
|
1484 | + |
|
1485 | + |
|
1486 | + |
|
1487 | + |
|
1488 | + /** METABOXES * */ |
|
1489 | + /** |
|
1490 | + * _register_event_editor_meta_boxes |
|
1491 | + * add all metaboxes related to the event_editor |
|
1492 | + * |
|
1493 | + * @return void |
|
1494 | + */ |
|
1495 | + protected function _register_event_editor_meta_boxes() |
|
1496 | + { |
|
1497 | + $this->verify_cpt_object(); |
|
1498 | + add_meta_box( |
|
1499 | + 'espresso_event_editor_tickets', |
|
1500 | + esc_html__('Event Datetime & Ticket', 'event_espresso'), |
|
1501 | + array($this, 'ticket_metabox'), |
|
1502 | + $this->page_slug, |
|
1503 | + 'normal', |
|
1504 | + 'high' |
|
1505 | + ); |
|
1506 | + add_meta_box( |
|
1507 | + 'espresso_event_editor_event_options', |
|
1508 | + esc_html__('Event Registration Options', 'event_espresso'), |
|
1509 | + array($this, 'registration_options_meta_box'), |
|
1510 | + $this->page_slug, |
|
1511 | + 'side', |
|
1512 | + 'default' |
|
1513 | + ); |
|
1514 | + // NOTE: if you're looking for other metaboxes in here, |
|
1515 | + // where a metabox has a related management page in the admin |
|
1516 | + // you will find it setup in the related management page's "_Hooks" file. |
|
1517 | + // i.e. messages metabox is found in "espresso_events_Messages_Hooks.class.php". |
|
1518 | + } |
|
1519 | + |
|
1520 | + |
|
1521 | + /** |
|
1522 | + * @throws DomainException |
|
1523 | + * @throws EE_Error |
|
1524 | + */ |
|
1525 | + public function ticket_metabox() |
|
1526 | + { |
|
1527 | + $existing_datetime_ids = $existing_ticket_ids = array(); |
|
1528 | + // defaults for template args |
|
1529 | + $template_args = array( |
|
1530 | + 'existing_datetime_ids' => '', |
|
1531 | + 'event_datetime_help_link' => '', |
|
1532 | + 'ticket_options_help_link' => '', |
|
1533 | + 'time' => null, |
|
1534 | + 'ticket_rows' => '', |
|
1535 | + 'existing_ticket_ids' => '', |
|
1536 | + 'total_ticket_rows' => 1, |
|
1537 | + 'ticket_js_structure' => '', |
|
1538 | + 'trash_icon' => 'ee-lock-icon', |
|
1539 | + 'disabled' => '', |
|
1540 | + ); |
|
1541 | + $event_id = is_object($this->_cpt_model_obj) ? $this->_cpt_model_obj->ID() : null; |
|
1542 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
1543 | + /** |
|
1544 | + * 1. Start with retrieving Datetimes |
|
1545 | + * 2. Fore each datetime get related tickets |
|
1546 | + * 3. For each ticket get related prices |
|
1547 | + */ |
|
1548 | + $times = EE_Registry::instance()->load_model('Datetime')->get_all_event_dates($event_id); |
|
1549 | + /** @type EE_Datetime $first_datetime */ |
|
1550 | + $first_datetime = reset($times); |
|
1551 | + // do we get related tickets? |
|
1552 | + if ($first_datetime instanceof EE_Datetime |
|
1553 | + && $first_datetime->ID() !== 0 |
|
1554 | + ) { |
|
1555 | + $existing_datetime_ids[] = $first_datetime->get('DTT_ID'); |
|
1556 | + $template_args['time'] = $first_datetime; |
|
1557 | + $related_tickets = $first_datetime->tickets( |
|
1558 | + array( |
|
1559 | + array('OR' => array('TKT_deleted' => 1, 'TKT_deleted*' => 0)), |
|
1560 | + 'default_where_conditions' => 'none', |
|
1561 | + ) |
|
1562 | + ); |
|
1563 | + if (! empty($related_tickets)) { |
|
1564 | + $template_args['total_ticket_rows'] = count($related_tickets); |
|
1565 | + $row = 0; |
|
1566 | + foreach ($related_tickets as $ticket) { |
|
1567 | + $existing_ticket_ids[] = $ticket->get('TKT_ID'); |
|
1568 | + $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket, false, $row); |
|
1569 | + $row++; |
|
1570 | + } |
|
1571 | + } else { |
|
1572 | + $template_args['total_ticket_rows'] = 1; |
|
1573 | + /** @type EE_Ticket $ticket */ |
|
1574 | + $ticket = EE_Registry::instance()->load_model('Ticket')->create_default_object(); |
|
1575 | + $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket); |
|
1576 | + } |
|
1577 | + } else { |
|
1578 | + $template_args['time'] = $times[0]; |
|
1579 | + /** @type EE_Ticket $ticket */ |
|
1580 | + $ticket = EE_Registry::instance()->load_model('Ticket')->get_all_default_tickets(); |
|
1581 | + $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket[1]); |
|
1582 | + // NOTE: we're just sending the first default row |
|
1583 | + // (decaf can't manage default tickets so this should be sufficient); |
|
1584 | + } |
|
1585 | + $template_args['event_datetime_help_link'] = $this->_get_help_tab_link( |
|
1586 | + 'event_editor_event_datetimes_help_tab' |
|
1587 | + ); |
|
1588 | + $template_args['ticket_options_help_link'] = $this->_get_help_tab_link('ticket_options_info'); |
|
1589 | + $template_args['existing_datetime_ids'] = implode(',', $existing_datetime_ids); |
|
1590 | + $template_args['existing_ticket_ids'] = implode(',', $existing_ticket_ids); |
|
1591 | + $template_args['ticket_js_structure'] = $this->_get_ticket_row( |
|
1592 | + EE_Registry::instance()->load_model('Ticket')->create_default_object(), |
|
1593 | + true |
|
1594 | + ); |
|
1595 | + $template = apply_filters( |
|
1596 | + 'FHEE__Events_Admin_Page__ticket_metabox__template', |
|
1597 | + EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_main.template.php' |
|
1598 | + ); |
|
1599 | + EEH_Template::display_template($template, $template_args); |
|
1600 | + } |
|
1601 | + |
|
1602 | + |
|
1603 | + /** |
|
1604 | + * Setup an individual ticket form for the decaf event editor page |
|
1605 | + * |
|
1606 | + * @access private |
|
1607 | + * @param EE_Ticket $ticket the ticket object |
|
1608 | + * @param boolean $skeleton whether we're generating a skeleton for js manipulation |
|
1609 | + * @param int $row |
|
1610 | + * @return string generated html for the ticket row. |
|
1611 | + */ |
|
1612 | + private function _get_ticket_row($ticket, $skeleton = false, $row = 0) |
|
1613 | + { |
|
1614 | + $template_args = array( |
|
1615 | + 'tkt_status_class' => ' tkt-status-' . $ticket->ticket_status(), |
|
1616 | + 'tkt_archive_class' => $ticket->ticket_status() === EE_Ticket::archived && ! $skeleton ? ' tkt-archived' |
|
1617 | + : '', |
|
1618 | + 'ticketrow' => $skeleton ? 'TICKETNUM' : $row, |
|
1619 | + 'TKT_ID' => $ticket->get('TKT_ID'), |
|
1620 | + 'TKT_name' => $ticket->get('TKT_name'), |
|
1621 | + 'TKT_start_date' => $skeleton ? '' : $ticket->get_date('TKT_start_date', 'Y-m-d h:i a'), |
|
1622 | + 'TKT_end_date' => $skeleton ? '' : $ticket->get_date('TKT_end_date', 'Y-m-d h:i a'), |
|
1623 | + 'TKT_is_default' => $ticket->get('TKT_is_default'), |
|
1624 | + 'TKT_qty' => $ticket->get_pretty('TKT_qty', 'input'), |
|
1625 | + 'edit_ticketrow_name' => $skeleton ? 'TICKETNAMEATTR' : 'edit_tickets', |
|
1626 | + 'TKT_sold' => $skeleton ? 0 : $ticket->get('TKT_sold'), |
|
1627 | + 'trash_icon' => ($skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted'))) |
|
1628 | + && (! empty($ticket) && $ticket->get('TKT_sold') === 0) |
|
1629 | + ? 'trash-icon dashicons dashicons-post-trash clickable' : 'ee-lock-icon', |
|
1630 | + 'disabled' => $skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted')) ? '' |
|
1631 | + : ' disabled=disabled', |
|
1632 | + ); |
|
1633 | + $price = $ticket->ID() !== 0 |
|
1634 | + ? $ticket->get_first_related('Price', array('default_where_conditions' => 'none')) |
|
1635 | + : EE_Registry::instance()->load_model('Price')->create_default_object(); |
|
1636 | + $price_args = array( |
|
1637 | + 'price_currency_symbol' => EE_Registry::instance()->CFG->currency->sign, |
|
1638 | + 'PRC_amount' => $price->get('PRC_amount'), |
|
1639 | + 'PRT_ID' => $price->get('PRT_ID'), |
|
1640 | + 'PRC_ID' => $price->get('PRC_ID'), |
|
1641 | + 'PRC_is_default' => $price->get('PRC_is_default'), |
|
1642 | + ); |
|
1643 | + // make sure we have default start and end dates if skeleton |
|
1644 | + // handle rows that should NOT be empty |
|
1645 | + if (empty($template_args['TKT_start_date'])) { |
|
1646 | + // if empty then the start date will be now. |
|
1647 | + $template_args['TKT_start_date'] = date('Y-m-d h:i a', current_time('timestamp')); |
|
1648 | + } |
|
1649 | + if (empty($template_args['TKT_end_date'])) { |
|
1650 | + // get the earliest datetime (if present); |
|
1651 | + $earliest_dtt = $this->_cpt_model_obj->ID() > 0 |
|
1652 | + ? $this->_cpt_model_obj->get_first_related( |
|
1653 | + 'Datetime', |
|
1654 | + array('order_by' => array('DTT_EVT_start' => 'ASC')) |
|
1655 | + ) |
|
1656 | + : null; |
|
1657 | + if (! empty($earliest_dtt)) { |
|
1658 | + $template_args['TKT_end_date'] = $earliest_dtt->get_datetime('DTT_EVT_start', 'Y-m-d', 'h:i a'); |
|
1659 | + } else { |
|
1660 | + $template_args['TKT_end_date'] = date( |
|
1661 | + 'Y-m-d h:i a', |
|
1662 | + mktime(0, 0, 0, date("m"), date("d") + 7, date("Y")) |
|
1663 | + ); |
|
1664 | + } |
|
1665 | + } |
|
1666 | + $template_args = array_merge($template_args, $price_args); |
|
1667 | + $template = apply_filters( |
|
1668 | + 'FHEE__Events_Admin_Page__get_ticket_row__template', |
|
1669 | + EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_ticket_row.template.php', |
|
1670 | + $ticket |
|
1671 | + ); |
|
1672 | + return EEH_Template::display_template($template, $template_args, true); |
|
1673 | + } |
|
1674 | + |
|
1675 | + |
|
1676 | + /** |
|
1677 | + * @throws DomainException |
|
1678 | + */ |
|
1679 | + public function registration_options_meta_box() |
|
1680 | + { |
|
1681 | + $yes_no_values = array( |
|
1682 | + array('id' => true, 'text' => esc_html__('Yes', 'event_espresso')), |
|
1683 | + array('id' => false, 'text' => esc_html__('No', 'event_espresso')), |
|
1684 | + ); |
|
1685 | + $default_reg_status_values = EEM_Registration::reg_status_array( |
|
1686 | + array( |
|
1687 | + EEM_Registration::status_id_cancelled, |
|
1688 | + EEM_Registration::status_id_declined, |
|
1689 | + EEM_Registration::status_id_incomplete, |
|
1690 | + ), |
|
1691 | + true |
|
1692 | + ); |
|
1693 | + // $template_args['is_active_select'] = EEH_Form_Fields::select_input('is_active', $yes_no_values, $this->_cpt_model_obj->is_active()); |
|
1694 | + $template_args['_event'] = $this->_cpt_model_obj; |
|
1695 | + $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
1696 | + $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
1697 | + $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
1698 | + 'default_reg_status', |
|
1699 | + $default_reg_status_values, |
|
1700 | + $this->_cpt_model_obj->default_registration_status() |
|
1701 | + ); |
|
1702 | + $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
1703 | + 'display_desc', |
|
1704 | + $yes_no_values, |
|
1705 | + $this->_cpt_model_obj->display_description() |
|
1706 | + ); |
|
1707 | + $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
1708 | + 'display_ticket_selector', |
|
1709 | + $yes_no_values, |
|
1710 | + $this->_cpt_model_obj->display_ticket_selector(), |
|
1711 | + '', |
|
1712 | + '', |
|
1713 | + false |
|
1714 | + ); |
|
1715 | + $template_args['additional_registration_options'] = apply_filters( |
|
1716 | + 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
1717 | + '', |
|
1718 | + $template_args, |
|
1719 | + $yes_no_values, |
|
1720 | + $default_reg_status_values |
|
1721 | + ); |
|
1722 | + EEH_Template::display_template( |
|
1723 | + EVENTS_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
1724 | + $template_args |
|
1725 | + ); |
|
1726 | + } |
|
1727 | + |
|
1728 | + |
|
1729 | + /** |
|
1730 | + * _get_events() |
|
1731 | + * This method simply returns all the events (for the given _view and paging) |
|
1732 | + * |
|
1733 | + * @access public |
|
1734 | + * @param int $per_page count of items per page (20 default); |
|
1735 | + * @param int $current_page what is the current page being viewed. |
|
1736 | + * @param bool $count if TRUE then we just return a count of ALL events matching the given _view. |
|
1737 | + * If FALSE then we return an array of event objects |
|
1738 | + * that match the given _view and paging parameters. |
|
1739 | + * @return array an array of event objects. |
|
1740 | + */ |
|
1741 | + public function get_events($per_page = 10, $current_page = 1, $count = false) |
|
1742 | + { |
|
1743 | + $EEME = $this->_event_model(); |
|
1744 | + $offset = ($current_page - 1) * $per_page; |
|
1745 | + $limit = $count ? null : $offset . ',' . $per_page; |
|
1746 | + $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'EVT_ID'; |
|
1747 | + $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : "DESC"; |
|
1748 | + if (isset($this->_req_data['month_range'])) { |
|
1749 | + $pieces = explode(' ', $this->_req_data['month_range'], 3); |
|
1750 | + // simulate the FIRST day of the month, that fixes issues for months like February |
|
1751 | + // where PHP doesn't know what to assume for date. |
|
1752 | + // @see https://events.codebasehq.com/projects/event-espresso/tickets/10437 |
|
1753 | + $month_r = ! empty($pieces[0]) ? date('m', \EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) : ''; |
|
1754 | + $year_r = ! empty($pieces[1]) ? $pieces[1] : ''; |
|
1755 | + } |
|
1756 | + $where = array(); |
|
1757 | + $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
1758 | + // determine what post_status our condition will have for the query. |
|
1759 | + switch ($status) { |
|
1760 | + case 'month': |
|
1761 | + case 'today': |
|
1762 | + case null: |
|
1763 | + case 'all': |
|
1764 | + break; |
|
1765 | + case 'draft': |
|
1766 | + $where['status'] = array('IN', array('draft', 'auto-draft')); |
|
1767 | + break; |
|
1768 | + default: |
|
1769 | + $where['status'] = $status; |
|
1770 | + } |
|
1771 | + // categories? |
|
1772 | + $category = isset($this->_req_data['EVT_CAT']) && $this->_req_data['EVT_CAT'] > 0 |
|
1773 | + ? $this->_req_data['EVT_CAT'] : null; |
|
1774 | + if (! empty($category)) { |
|
1775 | + $where['Term_Taxonomy.taxonomy'] = EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY; |
|
1776 | + $where['Term_Taxonomy.term_id'] = $category; |
|
1777 | + } |
|
1778 | + // date where conditions |
|
1779 | + $start_formats = EEM_Datetime::instance()->get_formats_for('DTT_EVT_start'); |
|
1780 | + if (isset($this->_req_data['month_range']) && $this->_req_data['month_range'] != '') { |
|
1781 | + $DateTime = new DateTime( |
|
1782 | + $year_r . '-' . $month_r . '-01 00:00:00', |
|
1783 | + new DateTimeZone(EEM_Datetime::instance()->get_timezone()) |
|
1784 | + ); |
|
1785 | + $start = $DateTime->format(implode(' ', $start_formats)); |
|
1786 | + $end = $DateTime->setDate( |
|
1787 | + $year_r, |
|
1788 | + $month_r, |
|
1789 | + $DateTime |
|
1790 | + ->format('t') |
|
1791 | + )->setTime(23, 59, 59) |
|
1792 | + ->format(implode(' ', $start_formats)); |
|
1793 | + $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1794 | + } elseif (isset($this->_req_data['status']) && $this->_req_data['status'] == 'today') { |
|
1795 | + $DateTime = new DateTime('now', new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1796 | + $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1797 | + $end = $DateTime->setTime(23, 59, 59)->format(implode(' ', $start_formats)); |
|
1798 | + $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1799 | + } elseif (isset($this->_req_data['status']) && $this->_req_data['status'] == 'month') { |
|
1800 | + $now = date('Y-m-01'); |
|
1801 | + $DateTime = new DateTime($now, new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1802 | + $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1803 | + $end = $DateTime->setDate(date('Y'), date('m'), $DateTime->format('t')) |
|
1804 | + ->setTime(23, 59, 59) |
|
1805 | + ->format(implode(' ', $start_formats)); |
|
1806 | + $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1807 | + } |
|
1808 | + if (! EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events')) { |
|
1809 | + $where['EVT_wp_user'] = get_current_user_id(); |
|
1810 | + } else { |
|
1811 | + if (! isset($where['status'])) { |
|
1812 | + if (! EE_Registry::instance()->CAP->current_user_can('ee_read_private_events', 'get_events')) { |
|
1813 | + $where['OR'] = array( |
|
1814 | + 'status*restrict_private' => array('!=', 'private'), |
|
1815 | + 'AND' => array( |
|
1816 | + 'status*inclusive' => array('=', 'private'), |
|
1817 | + 'EVT_wp_user' => get_current_user_id(), |
|
1818 | + ), |
|
1819 | + ); |
|
1820 | + } |
|
1821 | + } |
|
1822 | + } |
|
1823 | + if (isset($this->_req_data['EVT_wp_user'])) { |
|
1824 | + if ($this->_req_data['EVT_wp_user'] != get_current_user_id() |
|
1825 | + && EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events') |
|
1826 | + ) { |
|
1827 | + $where['EVT_wp_user'] = $this->_req_data['EVT_wp_user']; |
|
1828 | + } |
|
1829 | + } |
|
1830 | + // search query handling |
|
1831 | + if (isset($this->_req_data['s'])) { |
|
1832 | + $search_string = '%' . $this->_req_data['s'] . '%'; |
|
1833 | + $where['OR'] = array( |
|
1834 | + 'EVT_name' => array('LIKE', $search_string), |
|
1835 | + 'EVT_desc' => array('LIKE', $search_string), |
|
1836 | + 'EVT_short_desc' => array('LIKE', $search_string), |
|
1837 | + ); |
|
1838 | + } |
|
1839 | + // filter events by venue. |
|
1840 | + if (isset($this->_req_data['venue']) && ! empty($this->_req_data['venue'])) { |
|
1841 | + $where['Venue.VNU_ID'] = absint($this->_req_data['venue']); |
|
1842 | + } |
|
1843 | + $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $this->_req_data); |
|
1844 | + $query_params = apply_filters( |
|
1845 | + 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1846 | + array( |
|
1847 | + $where, |
|
1848 | + 'limit' => $limit, |
|
1849 | + 'order_by' => $orderby, |
|
1850 | + 'order' => $order, |
|
1851 | + 'group_by' => 'EVT_ID', |
|
1852 | + ), |
|
1853 | + $this->_req_data |
|
1854 | + ); |
|
1855 | + // let's first check if we have special requests coming in. |
|
1856 | + if (isset($this->_req_data['active_status'])) { |
|
1857 | + switch ($this->_req_data['active_status']) { |
|
1858 | + case 'upcoming': |
|
1859 | + return $EEME->get_upcoming_events($query_params, $count); |
|
1860 | + break; |
|
1861 | + case 'expired': |
|
1862 | + return $EEME->get_expired_events($query_params, $count); |
|
1863 | + break; |
|
1864 | + case 'active': |
|
1865 | + return $EEME->get_active_events($query_params, $count); |
|
1866 | + break; |
|
1867 | + case 'inactive': |
|
1868 | + return $EEME->get_inactive_events($query_params, $count); |
|
1869 | + break; |
|
1870 | + } |
|
1871 | + } |
|
1872 | + |
|
1873 | + $events = $count ? $EEME->count(array($where), 'EVT_ID', true) : $EEME->get_all($query_params); |
|
1874 | + return $events; |
|
1875 | + } |
|
1876 | + |
|
1877 | + |
|
1878 | + /** |
|
1879 | + * handling for WordPress CPT actions (trash, restore, delete) |
|
1880 | + * |
|
1881 | + * @param string $post_id |
|
1882 | + */ |
|
1883 | + public function trash_cpt_item($post_id) |
|
1884 | + { |
|
1885 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1886 | + $this->_trash_or_restore_event('trash', false); |
|
1887 | + } |
|
1888 | + |
|
1889 | + |
|
1890 | + /** |
|
1891 | + * @param string $post_id |
|
1892 | + */ |
|
1893 | + public function restore_cpt_item($post_id) |
|
1894 | + { |
|
1895 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1896 | + $this->_trash_or_restore_event('draft', false); |
|
1897 | + } |
|
1898 | + |
|
1899 | + |
|
1900 | + /** |
|
1901 | + * @param string $post_id |
|
1902 | + */ |
|
1903 | + public function delete_cpt_item($post_id) |
|
1904 | + { |
|
1905 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1906 | + $this->_delete_event(false); |
|
1907 | + } |
|
1908 | + |
|
1909 | + |
|
1910 | + /** |
|
1911 | + * _trash_or_restore_event |
|
1912 | + * |
|
1913 | + * @access protected |
|
1914 | + * @param string $event_status |
|
1915 | + * @param bool $redirect_after |
|
1916 | + */ |
|
1917 | + protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
1918 | + { |
|
1919 | + // determine the event id and set to array. |
|
1920 | + $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : false; |
|
1921 | + // loop thru events |
|
1922 | + if ($EVT_ID) { |
|
1923 | + // clean status |
|
1924 | + $event_status = sanitize_key($event_status); |
|
1925 | + // grab status |
|
1926 | + if (! empty($event_status)) { |
|
1927 | + $success = $this->_change_event_status($EVT_ID, $event_status); |
|
1928 | + } else { |
|
1929 | + $success = false; |
|
1930 | + $msg = esc_html__( |
|
1931 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1932 | + 'event_espresso' |
|
1933 | + ); |
|
1934 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1935 | + } |
|
1936 | + } else { |
|
1937 | + $success = false; |
|
1938 | + $msg = esc_html__( |
|
1939 | + 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
1940 | + 'event_espresso' |
|
1941 | + ); |
|
1942 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1943 | + } |
|
1944 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1945 | + if ($redirect_after) { |
|
1946 | + $this->_redirect_after_action($success, 'Event', $action, array('action' => 'default')); |
|
1947 | + } |
|
1948 | + } |
|
1949 | + |
|
1950 | + |
|
1951 | + /** |
|
1952 | + * _trash_or_restore_events |
|
1953 | + * |
|
1954 | + * @access protected |
|
1955 | + * @param string $event_status |
|
1956 | + * @return void |
|
1957 | + */ |
|
1958 | + protected function _trash_or_restore_events($event_status = 'trash') |
|
1959 | + { |
|
1960 | + // clean status |
|
1961 | + $event_status = sanitize_key($event_status); |
|
1962 | + // grab status |
|
1963 | + if (! empty($event_status)) { |
|
1964 | + $success = true; |
|
1965 | + // determine the event id and set to array. |
|
1966 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
1967 | + // loop thru events |
|
1968 | + foreach ($EVT_IDs as $EVT_ID) { |
|
1969 | + if ($EVT_ID = absint($EVT_ID)) { |
|
1970 | + $results = $this->_change_event_status($EVT_ID, $event_status); |
|
1971 | + $success = $results !== false ? $success : false; |
|
1972 | + } else { |
|
1973 | + $msg = sprintf( |
|
1974 | + esc_html__( |
|
1975 | + 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
1976 | + 'event_espresso' |
|
1977 | + ), |
|
1978 | + $EVT_ID |
|
1979 | + ); |
|
1980 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1981 | + $success = false; |
|
1982 | + } |
|
1983 | + } |
|
1984 | + } else { |
|
1985 | + $success = false; |
|
1986 | + $msg = esc_html__( |
|
1987 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1988 | + 'event_espresso' |
|
1989 | + ); |
|
1990 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1991 | + } |
|
1992 | + // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
1993 | + $success = $success ? 2 : false; |
|
1994 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1995 | + $this->_redirect_after_action($success, 'Events', $action, array('action' => 'default')); |
|
1996 | + } |
|
1997 | + |
|
1998 | + |
|
1999 | + /** |
|
2000 | + * _trash_or_restore_events |
|
2001 | + * |
|
2002 | + * @access private |
|
2003 | + * @param int $EVT_ID |
|
2004 | + * @param string $event_status |
|
2005 | + * @return bool |
|
2006 | + */ |
|
2007 | + private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2008 | + { |
|
2009 | + // grab event id |
|
2010 | + if (! $EVT_ID) { |
|
2011 | + $msg = esc_html__( |
|
2012 | + 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2013 | + 'event_espresso' |
|
2014 | + ); |
|
2015 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2016 | + return false; |
|
2017 | + } |
|
2018 | + $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2019 | + // clean status |
|
2020 | + $event_status = sanitize_key($event_status); |
|
2021 | + // grab status |
|
2022 | + if (empty($event_status)) { |
|
2023 | + $msg = esc_html__( |
|
2024 | + 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2025 | + 'event_espresso' |
|
2026 | + ); |
|
2027 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2028 | + return false; |
|
2029 | + } |
|
2030 | + // was event trashed or restored ? |
|
2031 | + switch ($event_status) { |
|
2032 | + case 'draft': |
|
2033 | + $action = 'restored from the trash'; |
|
2034 | + $hook = 'AHEE_event_restored_from_trash'; |
|
2035 | + break; |
|
2036 | + case 'trash': |
|
2037 | + $action = 'moved to the trash'; |
|
2038 | + $hook = 'AHEE_event_moved_to_trash'; |
|
2039 | + break; |
|
2040 | + default: |
|
2041 | + $action = 'updated'; |
|
2042 | + $hook = false; |
|
2043 | + } |
|
2044 | + // use class to change status |
|
2045 | + $this->_cpt_model_obj->set_status($event_status); |
|
2046 | + $success = $this->_cpt_model_obj->save(); |
|
2047 | + if ($success === false) { |
|
2048 | + $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2049 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2050 | + return false; |
|
2051 | + } |
|
2052 | + if ($hook) { |
|
2053 | + do_action($hook); |
|
2054 | + } |
|
2055 | + return true; |
|
2056 | + } |
|
2057 | + |
|
2058 | + |
|
2059 | + /** |
|
2060 | + * _delete_event |
|
2061 | + * |
|
2062 | + * @access protected |
|
2063 | + * @param bool $redirect_after |
|
2064 | + */ |
|
2065 | + protected function _delete_event($redirect_after = true) |
|
2066 | + { |
|
2067 | + // determine the event id and set to array. |
|
2068 | + $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : null; |
|
2069 | + $EVT_ID = isset($this->_req_data['post']) ? absint($this->_req_data['post']) : $EVT_ID; |
|
2070 | + // loop thru events |
|
2071 | + if ($EVT_ID) { |
|
2072 | + $success = $this->_permanently_delete_event($EVT_ID); |
|
2073 | + // get list of events with no prices |
|
2074 | + $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2075 | + // remove this event from the list of events with no prices |
|
2076 | + if (isset($espresso_no_ticket_prices[ $EVT_ID ])) { |
|
2077 | + unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2078 | + } |
|
2079 | + update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2080 | + } else { |
|
2081 | + $success = false; |
|
2082 | + $msg = esc_html__( |
|
2083 | + 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2084 | + 'event_espresso' |
|
2085 | + ); |
|
2086 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2087 | + } |
|
2088 | + if ($redirect_after) { |
|
2089 | + $this->_redirect_after_action( |
|
2090 | + $success, |
|
2091 | + 'Event', |
|
2092 | + 'deleted', |
|
2093 | + array('action' => 'default', 'status' => 'trash') |
|
2094 | + ); |
|
2095 | + } |
|
2096 | + } |
|
2097 | + |
|
2098 | + |
|
2099 | + /** |
|
2100 | + * _delete_events |
|
2101 | + * |
|
2102 | + * @access protected |
|
2103 | + * @return void |
|
2104 | + */ |
|
2105 | + protected function _delete_events() |
|
2106 | + { |
|
2107 | + $success = true; |
|
2108 | + // get list of events with no prices |
|
2109 | + $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2110 | + // determine the event id and set to array. |
|
2111 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
2112 | + // loop thru events |
|
2113 | + foreach ($EVT_IDs as $EVT_ID) { |
|
2114 | + $EVT_ID = absint($EVT_ID); |
|
2115 | + if ($EVT_ID) { |
|
2116 | + $results = $this->_permanently_delete_event($EVT_ID); |
|
2117 | + $success = $results !== false ? $success : false; |
|
2118 | + // remove this event from the list of events with no prices |
|
2119 | + unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2120 | + } else { |
|
2121 | + $success = false; |
|
2122 | + $msg = esc_html__( |
|
2123 | + 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2124 | + 'event_espresso' |
|
2125 | + ); |
|
2126 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2127 | + } |
|
2128 | + } |
|
2129 | + update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2130 | + // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2131 | + $success = $success ? 2 : false; |
|
2132 | + $this->_redirect_after_action($success, 'Events', 'deleted', array('action' => 'default')); |
|
2133 | + } |
|
2134 | + |
|
2135 | + |
|
2136 | + /** |
|
2137 | + * _permanently_delete_event |
|
2138 | + * |
|
2139 | + * @access private |
|
2140 | + * @param int $EVT_ID |
|
2141 | + * @return bool |
|
2142 | + */ |
|
2143 | + private function _permanently_delete_event($EVT_ID = 0) |
|
2144 | + { |
|
2145 | + // grab event id |
|
2146 | + if (! $EVT_ID) { |
|
2147 | + $msg = esc_html__( |
|
2148 | + 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2149 | + 'event_espresso' |
|
2150 | + ); |
|
2151 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2152 | + return false; |
|
2153 | + } |
|
2154 | + if (! $this->_cpt_model_obj instanceof EE_Event |
|
2155 | + || $this->_cpt_model_obj->ID() !== $EVT_ID |
|
2156 | + ) { |
|
2157 | + $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2158 | + } |
|
2159 | + if (! $this->_cpt_model_obj instanceof EE_Event) { |
|
2160 | + return false; |
|
2161 | + } |
|
2162 | + // need to delete related tickets and prices first. |
|
2163 | + $datetimes = $this->_cpt_model_obj->get_many_related('Datetime'); |
|
2164 | + foreach ($datetimes as $datetime) { |
|
2165 | + $this->_cpt_model_obj->_remove_relation_to($datetime, 'Datetime'); |
|
2166 | + $tickets = $datetime->get_many_related('Ticket'); |
|
2167 | + foreach ($tickets as $ticket) { |
|
2168 | + $ticket->_remove_relation_to($datetime, 'Datetime'); |
|
2169 | + $ticket->delete_related_permanently('Price'); |
|
2170 | + $ticket->delete_permanently(); |
|
2171 | + } |
|
2172 | + $datetime->delete(); |
|
2173 | + } |
|
2174 | + // what about related venues or terms? |
|
2175 | + $venues = $this->_cpt_model_obj->get_many_related('Venue'); |
|
2176 | + foreach ($venues as $venue) { |
|
2177 | + $this->_cpt_model_obj->_remove_relation_to($venue, 'Venue'); |
|
2178 | + } |
|
2179 | + // any attached question groups? |
|
2180 | + $question_groups = $this->_cpt_model_obj->get_many_related('Question_Group'); |
|
2181 | + if (! empty($question_groups)) { |
|
2182 | + foreach ($question_groups as $question_group) { |
|
2183 | + $this->_cpt_model_obj->_remove_relation_to($question_group, 'Question_Group'); |
|
2184 | + } |
|
2185 | + } |
|
2186 | + // Message Template Groups |
|
2187 | + $this->_cpt_model_obj->_remove_relations('Message_Template_Group'); |
|
2188 | + /** @type EE_Term_Taxonomy[] $term_taxonomies */ |
|
2189 | + $term_taxonomies = $this->_cpt_model_obj->term_taxonomies(); |
|
2190 | + foreach ($term_taxonomies as $term_taxonomy) { |
|
2191 | + $this->_cpt_model_obj->remove_relation_to_term_taxonomy($term_taxonomy); |
|
2192 | + } |
|
2193 | + $success = $this->_cpt_model_obj->delete_permanently(); |
|
2194 | + // did it all go as planned ? |
|
2195 | + if ($success) { |
|
2196 | + $msg = sprintf(esc_html__('Event ID # %d has been deleted.', 'event_espresso'), $EVT_ID); |
|
2197 | + EE_Error::add_success($msg); |
|
2198 | + } else { |
|
2199 | + $msg = sprintf( |
|
2200 | + esc_html__('An error occurred. Event ID # %d could not be deleted.', 'event_espresso'), |
|
2201 | + $EVT_ID |
|
2202 | + ); |
|
2203 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2204 | + return false; |
|
2205 | + } |
|
2206 | + do_action('AHEE__Events_Admin_Page___permanently_delete_event__after_event_deleted', $EVT_ID); |
|
2207 | + return true; |
|
2208 | + } |
|
2209 | + |
|
2210 | + |
|
2211 | + /** |
|
2212 | + * get total number of events |
|
2213 | + * |
|
2214 | + * @access public |
|
2215 | + * @return int |
|
2216 | + */ |
|
2217 | + public function total_events() |
|
2218 | + { |
|
2219 | + $count = EEM_Event::instance()->count(array('caps' => 'read_admin'), 'EVT_ID', true); |
|
2220 | + return $count; |
|
2221 | + } |
|
2222 | + |
|
2223 | + |
|
2224 | + /** |
|
2225 | + * get total number of draft events |
|
2226 | + * |
|
2227 | + * @access public |
|
2228 | + * @return int |
|
2229 | + */ |
|
2230 | + public function total_events_draft() |
|
2231 | + { |
|
2232 | + $where = array( |
|
2233 | + 'status' => array('IN', array('draft', 'auto-draft')), |
|
2234 | + ); |
|
2235 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2236 | + return $count; |
|
2237 | + } |
|
2238 | + |
|
2239 | + |
|
2240 | + /** |
|
2241 | + * get total number of trashed events |
|
2242 | + * |
|
2243 | + * @access public |
|
2244 | + * @return int |
|
2245 | + */ |
|
2246 | + public function total_trashed_events() |
|
2247 | + { |
|
2248 | + $where = array( |
|
2249 | + 'status' => 'trash', |
|
2250 | + ); |
|
2251 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2252 | + return $count; |
|
2253 | + } |
|
2254 | + |
|
2255 | + |
|
2256 | + /** |
|
2257 | + * _default_event_settings |
|
2258 | + * This generates the Default Settings Tab |
|
2259 | + * |
|
2260 | + * @return void |
|
2261 | + * @throws EE_Error |
|
2262 | + */ |
|
2263 | + protected function _default_event_settings() |
|
2264 | + { |
|
2265 | + $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2266 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2267 | + $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2268 | + $this->display_admin_page_with_sidebar(); |
|
2269 | + } |
|
2270 | + |
|
2271 | + |
|
2272 | + /** |
|
2273 | + * Return the form for event settings. |
|
2274 | + * |
|
2275 | + * @return EE_Form_Section_Proper |
|
2276 | + * @throws EE_Error |
|
2277 | + */ |
|
2278 | + protected function _default_event_settings_form() |
|
2279 | + { |
|
2280 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2281 | + $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2282 | + // exclude |
|
2283 | + array( |
|
2284 | + EEM_Registration::status_id_cancelled, |
|
2285 | + EEM_Registration::status_id_declined, |
|
2286 | + EEM_Registration::status_id_incomplete, |
|
2287 | + EEM_Registration::status_id_wait_list, |
|
2288 | + ), |
|
2289 | + true |
|
2290 | + ); |
|
2291 | + return new EE_Form_Section_Proper( |
|
2292 | + array( |
|
2293 | + 'name' => 'update_default_event_settings', |
|
2294 | + 'html_id' => 'update_default_event_settings', |
|
2295 | + 'html_class' => 'form-table', |
|
2296 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2297 | + 'subsections' => apply_filters( |
|
2298 | + 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2299 | + array( |
|
2300 | + 'default_reg_status' => new EE_Select_Input( |
|
2301 | + $registration_stati_for_selection, |
|
2302 | + array( |
|
2303 | + 'default' => isset($registration_config->default_STS_ID) |
|
2304 | + && array_key_exists( |
|
2305 | + $registration_config->default_STS_ID, |
|
2306 | + $registration_stati_for_selection |
|
2307 | + ) |
|
2308 | + ? sanitize_text_field($registration_config->default_STS_ID) |
|
2309 | + : EEM_Registration::status_id_pending_payment, |
|
2310 | + 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2311 | + . EEH_Template::get_help_tab_link( |
|
2312 | + 'default_settings_status_help_tab' |
|
2313 | + ), |
|
2314 | + 'html_help_text' => esc_html__( |
|
2315 | + 'This setting allows you to preselect what the default registration status setting is when creating an event. Note that changing this setting does NOT retroactively apply it to existing events.', |
|
2316 | + 'event_espresso' |
|
2317 | + ), |
|
2318 | + ) |
|
2319 | + ), |
|
2320 | + 'default_max_tickets' => new EE_Integer_Input( |
|
2321 | + array( |
|
2322 | + 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2323 | + ? $registration_config->default_maximum_number_of_tickets |
|
2324 | + : EEM_Event::get_default_additional_limit(), |
|
2325 | + 'html_label_text' => esc_html__( |
|
2326 | + 'Default Maximum Tickets Allowed Per Order:', |
|
2327 | + 'event_espresso' |
|
2328 | + ) |
|
2329 | + . EEH_Template::get_help_tab_link( |
|
2330 | + 'default_maximum_tickets_help_tab"' |
|
2331 | + ), |
|
2332 | + 'html_help_text' => esc_html__( |
|
2333 | + 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2334 | + 'event_espresso' |
|
2335 | + ), |
|
2336 | + ) |
|
2337 | + ), |
|
2338 | + ) |
|
2339 | + ), |
|
2340 | + ) |
|
2341 | + ); |
|
2342 | + } |
|
2343 | + |
|
2344 | + |
|
2345 | + /** |
|
2346 | + * _update_default_event_settings |
|
2347 | + * |
|
2348 | + * @access protected |
|
2349 | + * @return void |
|
2350 | + * @throws EE_Error |
|
2351 | + */ |
|
2352 | + protected function _update_default_event_settings() |
|
2353 | + { |
|
2354 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2355 | + $form = $this->_default_event_settings_form(); |
|
2356 | + if ($form->was_submitted()) { |
|
2357 | + $form->receive_form_submission(); |
|
2358 | + if ($form->is_valid()) { |
|
2359 | + $valid_data = $form->valid_data(); |
|
2360 | + if (isset($valid_data['default_reg_status'])) { |
|
2361 | + $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2362 | + } |
|
2363 | + if (isset($valid_data['default_max_tickets'])) { |
|
2364 | + $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2365 | + } |
|
2366 | + // update because data was valid! |
|
2367 | + EE_Registry::instance()->CFG->update_espresso_config(); |
|
2368 | + EE_Error::overwrite_success(); |
|
2369 | + EE_Error::add_success( |
|
2370 | + __('Default Event Settings were updated', 'event_espresso') |
|
2371 | + ); |
|
2372 | + } |
|
2373 | + } |
|
2374 | + $this->_redirect_after_action(0, '', '', array('action' => 'default_event_settings'), true); |
|
2375 | + } |
|
2376 | + |
|
2377 | + |
|
2378 | + /************* Templates *************/ |
|
2379 | + protected function _template_settings() |
|
2380 | + { |
|
2381 | + $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2382 | + $this->_template_args['preview_img'] = '<img src="' |
|
2383 | + . EVENTS_ASSETS_URL |
|
2384 | + . '/images/' |
|
2385 | + . 'caffeinated_template_features.jpg" alt="' |
|
2386 | + . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2387 | + . '" />'; |
|
2388 | + $this->_template_args['preview_text'] = '<strong>' |
|
2389 | + . esc_html__( |
|
2390 | + 'Template Settings is a feature that is only available in the premium version of Event Espresso 4 which is available with a support license purchase on EventEspresso.com. Template Settings allow you to configure some of the appearance options for both the Event List and Event Details pages.', |
|
2391 | + 'event_espresso' |
|
2392 | + ) . '</strong>'; |
|
2393 | + $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2394 | + } |
|
2395 | + |
|
2396 | + |
|
2397 | + /** Event Category Stuff **/ |
|
2398 | + /** |
|
2399 | + * set the _category property with the category object for the loaded page. |
|
2400 | + * |
|
2401 | + * @access private |
|
2402 | + * @return void |
|
2403 | + */ |
|
2404 | + private function _set_category_object() |
|
2405 | + { |
|
2406 | + if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2407 | + return; |
|
2408 | + } //already have the category object so get out. |
|
2409 | + // set default category object |
|
2410 | + $this->_set_empty_category_object(); |
|
2411 | + // only set if we've got an id |
|
2412 | + if (! isset($this->_req_data['EVT_CAT_ID'])) { |
|
2413 | + return; |
|
2414 | + } |
|
2415 | + $category_id = absint($this->_req_data['EVT_CAT_ID']); |
|
2416 | + $term = get_term($category_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2417 | + if (! empty($term)) { |
|
2418 | + $this->_category->category_name = $term->name; |
|
2419 | + $this->_category->category_identifier = $term->slug; |
|
2420 | + $this->_category->category_desc = $term->description; |
|
2421 | + $this->_category->id = $term->term_id; |
|
2422 | + $this->_category->parent = $term->parent; |
|
2423 | + } |
|
2424 | + } |
|
2425 | + |
|
2426 | + |
|
2427 | + /** |
|
2428 | + * Clears out category properties. |
|
2429 | + */ |
|
2430 | + private function _set_empty_category_object() |
|
2431 | + { |
|
2432 | + $this->_category = new stdClass(); |
|
2433 | + $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2434 | + $this->_category->id = $this->_category->parent = 0; |
|
2435 | + } |
|
2436 | + |
|
2437 | + |
|
2438 | + /** |
|
2439 | + * @throws EE_Error |
|
2440 | + */ |
|
2441 | + protected function _category_list_table() |
|
2442 | + { |
|
2443 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2444 | + $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2445 | + $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2446 | + 'add_category', |
|
2447 | + 'add_category', |
|
2448 | + array(), |
|
2449 | + 'add-new-h2' |
|
2450 | + ); |
|
2451 | + $this->display_admin_list_table_page_with_sidebar(); |
|
2452 | + } |
|
2453 | + |
|
2454 | + |
|
2455 | + /** |
|
2456 | + * Output category details view. |
|
2457 | + */ |
|
2458 | + protected function _category_details($view) |
|
2459 | + { |
|
2460 | + // load formatter helper |
|
2461 | + // load field generator helper |
|
2462 | + $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2463 | + $this->_set_add_edit_form_tags($route); |
|
2464 | + $this->_set_category_object(); |
|
2465 | + $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2466 | + $delete_action = 'delete_category'; |
|
2467 | + // custom redirect |
|
2468 | + $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2469 | + array('action' => 'category_list'), |
|
2470 | + $this->_admin_base_url |
|
2471 | + ); |
|
2472 | + $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2473 | + // take care of contents |
|
2474 | + $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2475 | + $this->display_admin_page_with_sidebar(); |
|
2476 | + } |
|
2477 | + |
|
2478 | + |
|
2479 | + /** |
|
2480 | + * Output category details content. |
|
2481 | + */ |
|
2482 | + protected function _category_details_content() |
|
2483 | + { |
|
2484 | + $editor_args['category_desc'] = array( |
|
2485 | + 'type' => 'wp_editor', |
|
2486 | + 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2487 | + 'class' => 'my_editor_custom', |
|
2488 | + 'wpeditor_args' => array('media_buttons' => false), |
|
2489 | + ); |
|
2490 | + $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2491 | + $all_terms = get_terms( |
|
2492 | + array(EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY), |
|
2493 | + array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
2494 | + ); |
|
2495 | + // setup category select for term parents. |
|
2496 | + $category_select_values[] = array( |
|
2497 | + 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2498 | + 'id' => 0, |
|
2499 | + ); |
|
2500 | + foreach ($all_terms as $term) { |
|
2501 | + $category_select_values[] = array( |
|
2502 | + 'text' => $term->name, |
|
2503 | + 'id' => $term->term_id, |
|
2504 | + ); |
|
2505 | + } |
|
2506 | + $category_select = EEH_Form_Fields::select_input( |
|
2507 | + 'category_parent', |
|
2508 | + $category_select_values, |
|
2509 | + $this->_category->parent |
|
2510 | + ); |
|
2511 | + $template_args = array( |
|
2512 | + 'category' => $this->_category, |
|
2513 | + 'category_select' => $category_select, |
|
2514 | + 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2515 | + 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2516 | + 'disable' => '', |
|
2517 | + 'disabled_message' => false, |
|
2518 | + ); |
|
2519 | + $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2520 | + return EEH_Template::display_template($template, $template_args, true); |
|
2521 | + } |
|
2522 | + |
|
2523 | + |
|
2524 | + /** |
|
2525 | + * Handles deleting categories. |
|
2526 | + */ |
|
2527 | + protected function _delete_categories() |
|
2528 | + { |
|
2529 | + $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array) $this->_req_data['EVT_CAT_ID'] |
|
2530 | + : (array) $this->_req_data['category_id']; |
|
2531 | + foreach ($cat_ids as $cat_id) { |
|
2532 | + $this->_delete_category($cat_id); |
|
2533 | + } |
|
2534 | + // doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2535 | + $query_args = array( |
|
2536 | + 'action' => 'category_list', |
|
2537 | + ); |
|
2538 | + $this->_redirect_after_action(0, '', '', $query_args); |
|
2539 | + } |
|
2540 | + |
|
2541 | + |
|
2542 | + /** |
|
2543 | + * Handles deleting specific category. |
|
2544 | + * |
|
2545 | + * @param int $cat_id |
|
2546 | + */ |
|
2547 | + protected function _delete_category($cat_id) |
|
2548 | + { |
|
2549 | + $cat_id = absint($cat_id); |
|
2550 | + wp_delete_term($cat_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2551 | + } |
|
2552 | + |
|
2553 | + |
|
2554 | + /** |
|
2555 | + * Handles triggering the update or insertion of a new category. |
|
2556 | + * |
|
2557 | + * @param bool $new_category true means we're triggering the insert of a new category. |
|
2558 | + */ |
|
2559 | + protected function _insert_or_update_category($new_category) |
|
2560 | + { |
|
2561 | + $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2562 | + $success = 0; // we already have a success message so lets not send another. |
|
2563 | + if ($cat_id) { |
|
2564 | + $query_args = array( |
|
2565 | + 'action' => 'edit_category', |
|
2566 | + 'EVT_CAT_ID' => $cat_id, |
|
2567 | + ); |
|
2568 | + } else { |
|
2569 | + $query_args = array('action' => 'add_category'); |
|
2570 | + } |
|
2571 | + $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2572 | + } |
|
2573 | + |
|
2574 | + |
|
2575 | + /** |
|
2576 | + * Inserts or updates category |
|
2577 | + * |
|
2578 | + * @param bool $update (true indicates we're updating a category). |
|
2579 | + * @return bool|mixed|string |
|
2580 | + */ |
|
2581 | + private function _insert_category($update = false) |
|
2582 | + { |
|
2583 | + $cat_id = $update ? $this->_req_data['EVT_CAT_ID'] : ''; |
|
2584 | + $category_name = isset($this->_req_data['category_name']) ? $this->_req_data['category_name'] : ''; |
|
2585 | + $category_desc = isset($this->_req_data['category_desc']) ? $this->_req_data['category_desc'] : ''; |
|
2586 | + $category_parent = isset($this->_req_data['category_parent']) ? $this->_req_data['category_parent'] : 0; |
|
2587 | + if (empty($category_name)) { |
|
2588 | + $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2589 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2590 | + return false; |
|
2591 | + } |
|
2592 | + $term_args = array( |
|
2593 | + 'name' => $category_name, |
|
2594 | + 'description' => $category_desc, |
|
2595 | + 'parent' => $category_parent, |
|
2596 | + ); |
|
2597 | + // was the category_identifier input disabled? |
|
2598 | + if (isset($this->_req_data['category_identifier'])) { |
|
2599 | + $term_args['slug'] = $this->_req_data['category_identifier']; |
|
2600 | + } |
|
2601 | + $insert_ids = $update |
|
2602 | + ? wp_update_term($cat_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args) |
|
2603 | + : wp_insert_term($category_name, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args); |
|
2604 | + if (! is_array($insert_ids)) { |
|
2605 | + $msg = esc_html__( |
|
2606 | + 'An error occurred and the category has not been saved to the database.', |
|
2607 | + 'event_espresso' |
|
2608 | + ); |
|
2609 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2610 | + } else { |
|
2611 | + $cat_id = $insert_ids['term_id']; |
|
2612 | + $msg = sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2613 | + EE_Error::add_success($msg); |
|
2614 | + } |
|
2615 | + return $cat_id; |
|
2616 | + } |
|
2617 | + |
|
2618 | + |
|
2619 | + /** |
|
2620 | + * Gets categories or count of categories matching the arguments in the request. |
|
2621 | + * |
|
2622 | + * @param int $per_page |
|
2623 | + * @param int $current_page |
|
2624 | + * @param bool $count |
|
2625 | + * @return EE_Base_Class[]|EE_Term_Taxonomy[]|int |
|
2626 | + */ |
|
2627 | + public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2628 | + { |
|
2629 | + // testing term stuff |
|
2630 | + $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'Term.term_id'; |
|
2631 | + $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : 'DESC'; |
|
2632 | + $limit = ($current_page - 1) * $per_page; |
|
2633 | + $where = array('taxonomy' => EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2634 | + if (isset($this->_req_data['s'])) { |
|
2635 | + $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2636 | + $where['OR'] = array( |
|
2637 | + 'Term.name' => array('LIKE', $sstr), |
|
2638 | + 'description' => array('LIKE', $sstr), |
|
2639 | + ); |
|
2640 | + } |
|
2641 | + $query_params = array( |
|
2642 | + $where, |
|
2643 | + 'order_by' => array($orderby => $order), |
|
2644 | + 'limit' => $limit . ',' . $per_page, |
|
2645 | + 'force_join' => array('Term'), |
|
2646 | + ); |
|
2647 | + $categories = $count |
|
2648 | + ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2649 | + : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2650 | + return $categories; |
|
2651 | + } |
|
2652 | + |
|
2653 | + /* end category stuff */ |
|
2654 | + /**************/ |
|
2655 | + |
|
2656 | + |
|
2657 | + /** |
|
2658 | + * Callback for the `ee_save_timezone_setting` ajax action. |
|
2659 | + * |
|
2660 | + * @throws EE_Error |
|
2661 | + */ |
|
2662 | + public function save_timezonestring_setting() |
|
2663 | + { |
|
2664 | + $timezone_string = isset($this->_req_data['timezone_selected']) |
|
2665 | + ? $this->_req_data['timezone_selected'] |
|
2666 | + : ''; |
|
2667 | + if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) { |
|
2668 | + EE_Error::add_error( |
|
2669 | + esc_html__('An invalid timezone string submitted.', 'event_espresso'), |
|
2670 | + __FILE__, |
|
2671 | + __FUNCTION__, |
|
2672 | + __LINE__ |
|
2673 | + ); |
|
2674 | + $this->_template_args['error'] = true; |
|
2675 | + $this->_return_json(); |
|
2676 | + } |
|
2677 | + |
|
2678 | + update_option('timezone_string', $timezone_string); |
|
2679 | + EE_Error::add_success( |
|
2680 | + esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2681 | + ); |
|
2682 | + $this->_template_args['success'] = true; |
|
2683 | + $this->_return_json(true, array('action' => 'create_new')); |
|
2684 | + } |
|
2685 | 2685 | } |
@@ -17,356 +17,356 @@ |
||
17 | 17 | class TicketSelectorRowStandard extends TicketSelectorRow |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * @var TicketDetails $ticket_details |
|
22 | - */ |
|
23 | - protected $ticket_details; |
|
24 | - |
|
25 | - /** |
|
26 | - * @var \EE_Ticket_Selector_Config $template_settings |
|
27 | - */ |
|
28 | - protected $template_settings; |
|
29 | - |
|
30 | - /** |
|
31 | - * @var EE_Tax_Config $tax_settings |
|
32 | - */ |
|
33 | - protected $tax_settings; |
|
34 | - |
|
35 | - /** |
|
36 | - * @var boolean $prices_displayed_including_taxes |
|
37 | - */ |
|
38 | - protected $prices_displayed_including_taxes; |
|
39 | - |
|
40 | - /** |
|
41 | - * @var int $row |
|
42 | - */ |
|
43 | - protected $row; |
|
44 | - |
|
45 | - /** |
|
46 | - * @var int $cols |
|
47 | - */ |
|
48 | - protected $cols; |
|
49 | - |
|
50 | - /** |
|
51 | - * @var boolean $hidden_input_qty |
|
52 | - */ |
|
53 | - protected $hidden_input_qty; |
|
54 | - |
|
55 | - /** |
|
56 | - * @var string $ticket_datetime_classes |
|
57 | - */ |
|
58 | - protected $ticket_datetime_classes; |
|
59 | - |
|
60 | - |
|
61 | - /** |
|
62 | - * TicketDetails constructor. |
|
63 | - * |
|
64 | - * @param TicketDetails $ticket_details |
|
65 | - * @param EE_Tax_Config $tax_settings |
|
66 | - * @param int $total_tickets |
|
67 | - * @param int $max_attendees |
|
68 | - * @param int $row |
|
69 | - * @param int $cols |
|
70 | - * @param boolean $required_ticket_sold_out |
|
71 | - * @param string $event_status |
|
72 | - * @param string $ticket_datetime_classes |
|
73 | - * @throws EE_Error |
|
74 | - * @throws UnexpectedEntityException |
|
75 | - */ |
|
76 | - public function __construct( |
|
77 | - TicketDetails $ticket_details, |
|
78 | - EE_Tax_Config $tax_settings, |
|
79 | - $total_tickets, |
|
80 | - $max_attendees, |
|
81 | - $row, |
|
82 | - $cols, |
|
83 | - $required_ticket_sold_out, |
|
84 | - $event_status, |
|
85 | - $ticket_datetime_classes |
|
86 | - ) { |
|
87 | - $this->ticket_details = $ticket_details; |
|
88 | - $this->template_settings = $ticket_details->getTemplateSettings(); |
|
89 | - $this->tax_settings = $tax_settings; |
|
90 | - $this->row = $row; |
|
91 | - $this->cols = $cols; |
|
92 | - $this->ticket_datetime_classes = $ticket_datetime_classes; |
|
93 | - parent::__construct( |
|
94 | - $ticket_details->getTicket(), |
|
95 | - $max_attendees, |
|
96 | - $ticket_details->getDateFormat(), |
|
97 | - $event_status, |
|
98 | - $required_ticket_sold_out, |
|
99 | - $total_tickets |
|
100 | - ); |
|
101 | - } |
|
102 | - |
|
103 | - |
|
104 | - /** |
|
105 | - * other ticket rows will need to know if a required ticket is sold out, |
|
106 | - * so that they are not offered for sale |
|
107 | - * |
|
108 | - * @return boolean |
|
109 | - */ |
|
110 | - public function getRequiredTicketSoldOut() |
|
111 | - { |
|
112 | - return $this->required_ticket_sold_out; |
|
113 | - } |
|
114 | - |
|
115 | - |
|
116 | - /** |
|
117 | - * @return int |
|
118 | - */ |
|
119 | - public function getCols() |
|
120 | - { |
|
121 | - return $this->cols; |
|
122 | - } |
|
123 | - |
|
124 | - |
|
125 | - /** |
|
126 | - * getHtml |
|
127 | - * |
|
128 | - * @return string |
|
129 | - * @throws EE_Error |
|
130 | - */ |
|
131 | - public function getHtml() |
|
132 | - { |
|
133 | - $this->min = 0; |
|
134 | - $this->max = $this->ticket->max(); |
|
135 | - $remaining = $this->ticket->remaining(); |
|
136 | - $this->setTicketMinAndMax($remaining); |
|
137 | - // set flag if ticket is required (flag is set to start date so that future tickets are not blocked) |
|
138 | - $this->required_ticket_sold_out = $this->ticket->required() && ! $remaining |
|
139 | - ? $this->ticket->start_date() |
|
140 | - : $this->required_ticket_sold_out; |
|
141 | - $this->setTicketPriceDetails(); |
|
142 | - $this->setTicketStatusClasses($remaining); |
|
143 | - $filtered_row_html = $this->getFilteredRowHtml(); |
|
144 | - if ($filtered_row_html !== false) { |
|
145 | - return $filtered_row_html; |
|
146 | - } |
|
147 | - $ticket_selector_row_html = EEH_HTML::tr( |
|
148 | - '', |
|
149 | - '', |
|
150 | - "tckt-slctr-tbl-tr {$this->status_class}{$this->ticket_datetime_classes} " |
|
151 | - . espresso_get_object_css_class($this->ticket) |
|
152 | - ); |
|
153 | - $filtered_row_content = $this->getFilteredRowContents(); |
|
154 | - if ($filtered_row_content !== false && $this->max_attendees === 1) { |
|
155 | - return $ticket_selector_row_html |
|
156 | - . $filtered_row_content |
|
157 | - . $this->ticketQtyAndIdHiddenInputs() |
|
158 | - . EEH_HTML::trx(); |
|
159 | - } |
|
160 | - if ($filtered_row_content !== false) { |
|
161 | - return $ticket_selector_row_html |
|
162 | - . $filtered_row_content |
|
163 | - . EEH_HTML::trx(); |
|
164 | - } |
|
165 | - $this->hidden_input_qty = $this->max_attendees > 1; |
|
166 | - |
|
167 | - $ticket_selector_row_html .= $this->ticketNameTableCell(); |
|
168 | - $ticket_selector_row_html .= $this->ticketPriceTableCell(); |
|
169 | - $ticket_selector_row_html .= EEH_HTML::td( |
|
170 | - '', |
|
171 | - '', |
|
172 | - 'tckt-slctr-tbl-td-qty cntr', |
|
173 | - '', |
|
174 | - 'headers="quantity-' . $this->EVT_ID . '"' |
|
175 | - ); |
|
176 | - $this->setTicketStatusDisplay($remaining); |
|
177 | - if (empty($this->ticket_status_display)) { |
|
178 | - if ($this->max_attendees === 1) { |
|
179 | - // only ONE attendee is allowed to register at a time |
|
180 | - $ticket_selector_row_html .= $this->onlyOneAttendeeCanRegister(); |
|
181 | - } elseif ($this->max > 0) { |
|
182 | - $ticket_selector_row_html .= $this->ticketQuantitySelector(); |
|
183 | - } |
|
184 | - } |
|
185 | - $ticket_selector_row_html .= $this->ticket_status_display; |
|
186 | - $ticket_selector_row_html .= $this->ticketQtyAndIdHiddenInputs(); |
|
187 | - $ticket_selector_row_html .= $this->ticket_details->display( |
|
188 | - $this->ticket_price, |
|
189 | - $remaining, |
|
190 | - $this->cols |
|
191 | - ); |
|
192 | - $ticket_selector_row_html .= EEH_HTML::tdx(); |
|
193 | - $ticket_selector_row_html .= EEH_HTML::trx(); |
|
194 | - |
|
195 | - |
|
196 | - $this->row++; |
|
197 | - return $ticket_selector_row_html; |
|
198 | - } |
|
199 | - |
|
200 | - |
|
201 | - /** |
|
202 | - * getTicketPriceDetails |
|
203 | - * |
|
204 | - * @return void |
|
205 | - * @throws EE_Error |
|
206 | - */ |
|
207 | - protected function setTicketPriceDetails() |
|
208 | - { |
|
209 | - $this->ticket_price = $this->tax_settings->prices_displayed_including_taxes |
|
210 | - ? $this->ticket->get_ticket_total_with_taxes() |
|
211 | - : $this->ticket->get_ticket_subtotal(); |
|
212 | - $this->ticket_bundle = false; |
|
213 | - $ticket_min = $this->ticket->min(); |
|
214 | - // for ticket bundles, set min and max qty the same |
|
215 | - if ($ticket_min !== 0 && $ticket_min === $this->ticket->max()) { |
|
216 | - $this->ticket_price *= $ticket_min; |
|
217 | - $this->ticket_bundle = true; |
|
218 | - } |
|
219 | - $this->ticket_price = apply_filters( |
|
220 | - 'FHEE__ticket_selector_chart_template__ticket_price', |
|
221 | - $this->ticket_price, |
|
222 | - $this->ticket |
|
223 | - ); |
|
224 | - } |
|
225 | - |
|
226 | - |
|
227 | - /** |
|
228 | - * ticketNameTableCell |
|
229 | - * |
|
230 | - * @return string |
|
231 | - * @throws EE_Error |
|
232 | - */ |
|
233 | - protected function ticketNameTableCell() |
|
234 | - { |
|
235 | - $html = EEH_HTML::td( |
|
236 | - '', |
|
237 | - '', |
|
238 | - 'tckt-slctr-tbl-td-name', |
|
239 | - '', |
|
240 | - 'headers="details-' . $this->EVT_ID . '"' |
|
241 | - ); |
|
242 | - $html .= EEH_HTML::strong($this->ticket->get_pretty('TKT_name')); |
|
243 | - $html .= $this->ticket_details->getShowHideLinks(); |
|
244 | - if ($this->ticket->required()) { |
|
245 | - $html .= EEH_HTML::p( |
|
246 | - apply_filters( |
|
247 | - 'FHEE__ticket_selector_chart_template__ticket_required_message', |
|
248 | - esc_html__('This ticket is required and must be purchased.', 'event_espresso') |
|
249 | - ), |
|
250 | - '', |
|
251 | - 'ticket-required-pg' |
|
252 | - ); |
|
253 | - } |
|
254 | - $html .= EEH_HTML::tdx(); |
|
255 | - return $html; |
|
256 | - } |
|
257 | - |
|
258 | - |
|
259 | - /** |
|
260 | - * ticketPriceTableCell |
|
261 | - * |
|
262 | - * @return string |
|
263 | - * @throws EE_Error |
|
264 | - */ |
|
265 | - protected function ticketPriceTableCell() |
|
266 | - { |
|
267 | - $html = ''; |
|
268 | - if (apply_filters('FHEE__ticket_selector_chart_template__display_ticket_price_details', true)) { |
|
269 | - $html .= EEH_HTML::td( |
|
270 | - '', |
|
271 | - '', |
|
272 | - 'tckt-slctr-tbl-td-price jst-rght', |
|
273 | - '', |
|
274 | - 'headers="price-' . $this->EVT_ID . '"' |
|
275 | - ); |
|
276 | - $html .= \EEH_Template::format_currency($this->ticket_price); |
|
277 | - $html .= $this->ticket->taxable() |
|
278 | - ? EEH_HTML::span('*', '', 'taxable-tickets-asterisk grey-text') |
|
279 | - : ''; |
|
280 | - $html .= ' '; |
|
281 | - // phpcs:disable WordPress.WP.I18n.NoEmptyStrings |
|
282 | - $html .= EEH_HTML::span( |
|
283 | - $this->ticket_bundle |
|
284 | - ? apply_filters( |
|
285 | - 'FHEE__ticket_selector_chart_template__per_ticket_bundle_text', |
|
286 | - __(' / bundle', 'event_espresso') |
|
287 | - ) |
|
288 | - : apply_filters( |
|
289 | - 'FHEE__ticket_selector_chart_template__per_ticket_text', |
|
290 | - __('', 'event_espresso') |
|
291 | - ), |
|
292 | - '', |
|
293 | - 'smaller-text no-bold' |
|
294 | - ); |
|
295 | - $html .= ' '; |
|
296 | - $html .= EEH_HTML::tdx(); |
|
297 | - $this->cols++; |
|
298 | - } |
|
299 | - return $html; |
|
300 | - } |
|
301 | - |
|
302 | - |
|
303 | - /** |
|
304 | - * onlyOneAttendeeCanRegister |
|
305 | - * |
|
306 | - * @return string |
|
307 | - */ |
|
308 | - protected function onlyOneAttendeeCanRegister() |
|
309 | - { |
|
310 | - // display submit button since we have tickets available |
|
311 | - add_filter('FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true'); |
|
312 | - $this->hidden_input_qty = false; |
|
313 | - $id = 'ticket-selector-tbl-qty-slct-' . $this->EVT_ID . '-' . $this->row; |
|
314 | - $html = '<label class="ee-a11y-screen-reader-text" for="' . $id . '">'; |
|
315 | - $html .= esc_html__('Select this ticket', 'event_espresso') . '</label>'; |
|
316 | - $html .= '<input type="radio" name="tkt-slctr-qty-' . $this->EVT_ID . '"'; |
|
317 | - $html .= ' id="' . $id . '"'; |
|
318 | - $html .= ' class="ticket-selector-tbl-qty-slct" value="' . $this->row . '-1"'; |
|
319 | - $html .= $this->total_tickets === 1 ? ' checked="checked"' : ''; |
|
320 | - $html .= ' title=""/>'; |
|
321 | - return $html; |
|
322 | - } |
|
323 | - |
|
324 | - |
|
325 | - /** |
|
326 | - * ticketQuantitySelector |
|
327 | - * |
|
328 | - * @return string |
|
329 | - * @throws EE_Error |
|
330 | - */ |
|
331 | - protected function ticketQuantitySelector() |
|
332 | - { |
|
333 | - // display submit button since we have tickets available |
|
334 | - add_filter('FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true'); |
|
335 | - $this->hidden_input_qty = false; |
|
336 | - $id = 'ticket-selector-tbl-qty-slct-' . $this->EVT_ID . '-' . $this->row; |
|
337 | - $html = '<label class="ee-a11y-screen-reader-text" for="' . $id . '">'; |
|
338 | - $html .= esc_html__('Quantity', 'event_espresso') . '</label>'; |
|
339 | - $html .= '<select name="tkt-slctr-qty-' . $this->EVT_ID . '[]"'; |
|
340 | - $html .= ' id="' . $id . '"'; |
|
341 | - $html .= ' class="ticket-selector-tbl-qty-slct">'; |
|
342 | - // this ensures that non-required tickets with non-zero MIN QTYs don't HAVE to be purchased |
|
343 | - if ($this->min !== 0 && ! $this->ticket->required()) { |
|
344 | - $html .= '<option value="0"> 0 </option>'; |
|
345 | - } |
|
346 | - // offer ticket quantities from the min to the max |
|
347 | - for ($i = $this->min; $i <= $this->max; $i++) { |
|
348 | - $html .= '<option value="' . $i . '"> ' . $i . ' </option>'; |
|
349 | - } |
|
350 | - $html .= '</select>'; |
|
351 | - return $html; |
|
352 | - } |
|
353 | - |
|
354 | - |
|
355 | - /** |
|
356 | - * getHiddenInputs |
|
357 | - * |
|
358 | - * @return string |
|
359 | - * @throws EE_Error |
|
360 | - */ |
|
361 | - protected function ticketQtyAndIdHiddenInputs() |
|
362 | - { |
|
363 | - $html = ''; |
|
364 | - // depending on group reg we need to change the format for qty |
|
365 | - if ($this->hidden_input_qty) { |
|
366 | - $html .= '<input type="hidden" name="tkt-slctr-qty-' . $this->EVT_ID . '[]" value="0"/>'; |
|
367 | - } |
|
368 | - $html .= '<input type="hidden" name="tkt-slctr-ticket-id-' . $this->EVT_ID . '[]"'; |
|
369 | - $html .= ' value="' . $this->ticket->ID() . '"/>'; |
|
370 | - return $html; |
|
371 | - } |
|
20 | + /** |
|
21 | + * @var TicketDetails $ticket_details |
|
22 | + */ |
|
23 | + protected $ticket_details; |
|
24 | + |
|
25 | + /** |
|
26 | + * @var \EE_Ticket_Selector_Config $template_settings |
|
27 | + */ |
|
28 | + protected $template_settings; |
|
29 | + |
|
30 | + /** |
|
31 | + * @var EE_Tax_Config $tax_settings |
|
32 | + */ |
|
33 | + protected $tax_settings; |
|
34 | + |
|
35 | + /** |
|
36 | + * @var boolean $prices_displayed_including_taxes |
|
37 | + */ |
|
38 | + protected $prices_displayed_including_taxes; |
|
39 | + |
|
40 | + /** |
|
41 | + * @var int $row |
|
42 | + */ |
|
43 | + protected $row; |
|
44 | + |
|
45 | + /** |
|
46 | + * @var int $cols |
|
47 | + */ |
|
48 | + protected $cols; |
|
49 | + |
|
50 | + /** |
|
51 | + * @var boolean $hidden_input_qty |
|
52 | + */ |
|
53 | + protected $hidden_input_qty; |
|
54 | + |
|
55 | + /** |
|
56 | + * @var string $ticket_datetime_classes |
|
57 | + */ |
|
58 | + protected $ticket_datetime_classes; |
|
59 | + |
|
60 | + |
|
61 | + /** |
|
62 | + * TicketDetails constructor. |
|
63 | + * |
|
64 | + * @param TicketDetails $ticket_details |
|
65 | + * @param EE_Tax_Config $tax_settings |
|
66 | + * @param int $total_tickets |
|
67 | + * @param int $max_attendees |
|
68 | + * @param int $row |
|
69 | + * @param int $cols |
|
70 | + * @param boolean $required_ticket_sold_out |
|
71 | + * @param string $event_status |
|
72 | + * @param string $ticket_datetime_classes |
|
73 | + * @throws EE_Error |
|
74 | + * @throws UnexpectedEntityException |
|
75 | + */ |
|
76 | + public function __construct( |
|
77 | + TicketDetails $ticket_details, |
|
78 | + EE_Tax_Config $tax_settings, |
|
79 | + $total_tickets, |
|
80 | + $max_attendees, |
|
81 | + $row, |
|
82 | + $cols, |
|
83 | + $required_ticket_sold_out, |
|
84 | + $event_status, |
|
85 | + $ticket_datetime_classes |
|
86 | + ) { |
|
87 | + $this->ticket_details = $ticket_details; |
|
88 | + $this->template_settings = $ticket_details->getTemplateSettings(); |
|
89 | + $this->tax_settings = $tax_settings; |
|
90 | + $this->row = $row; |
|
91 | + $this->cols = $cols; |
|
92 | + $this->ticket_datetime_classes = $ticket_datetime_classes; |
|
93 | + parent::__construct( |
|
94 | + $ticket_details->getTicket(), |
|
95 | + $max_attendees, |
|
96 | + $ticket_details->getDateFormat(), |
|
97 | + $event_status, |
|
98 | + $required_ticket_sold_out, |
|
99 | + $total_tickets |
|
100 | + ); |
|
101 | + } |
|
102 | + |
|
103 | + |
|
104 | + /** |
|
105 | + * other ticket rows will need to know if a required ticket is sold out, |
|
106 | + * so that they are not offered for sale |
|
107 | + * |
|
108 | + * @return boolean |
|
109 | + */ |
|
110 | + public function getRequiredTicketSoldOut() |
|
111 | + { |
|
112 | + return $this->required_ticket_sold_out; |
|
113 | + } |
|
114 | + |
|
115 | + |
|
116 | + /** |
|
117 | + * @return int |
|
118 | + */ |
|
119 | + public function getCols() |
|
120 | + { |
|
121 | + return $this->cols; |
|
122 | + } |
|
123 | + |
|
124 | + |
|
125 | + /** |
|
126 | + * getHtml |
|
127 | + * |
|
128 | + * @return string |
|
129 | + * @throws EE_Error |
|
130 | + */ |
|
131 | + public function getHtml() |
|
132 | + { |
|
133 | + $this->min = 0; |
|
134 | + $this->max = $this->ticket->max(); |
|
135 | + $remaining = $this->ticket->remaining(); |
|
136 | + $this->setTicketMinAndMax($remaining); |
|
137 | + // set flag if ticket is required (flag is set to start date so that future tickets are not blocked) |
|
138 | + $this->required_ticket_sold_out = $this->ticket->required() && ! $remaining |
|
139 | + ? $this->ticket->start_date() |
|
140 | + : $this->required_ticket_sold_out; |
|
141 | + $this->setTicketPriceDetails(); |
|
142 | + $this->setTicketStatusClasses($remaining); |
|
143 | + $filtered_row_html = $this->getFilteredRowHtml(); |
|
144 | + if ($filtered_row_html !== false) { |
|
145 | + return $filtered_row_html; |
|
146 | + } |
|
147 | + $ticket_selector_row_html = EEH_HTML::tr( |
|
148 | + '', |
|
149 | + '', |
|
150 | + "tckt-slctr-tbl-tr {$this->status_class}{$this->ticket_datetime_classes} " |
|
151 | + . espresso_get_object_css_class($this->ticket) |
|
152 | + ); |
|
153 | + $filtered_row_content = $this->getFilteredRowContents(); |
|
154 | + if ($filtered_row_content !== false && $this->max_attendees === 1) { |
|
155 | + return $ticket_selector_row_html |
|
156 | + . $filtered_row_content |
|
157 | + . $this->ticketQtyAndIdHiddenInputs() |
|
158 | + . EEH_HTML::trx(); |
|
159 | + } |
|
160 | + if ($filtered_row_content !== false) { |
|
161 | + return $ticket_selector_row_html |
|
162 | + . $filtered_row_content |
|
163 | + . EEH_HTML::trx(); |
|
164 | + } |
|
165 | + $this->hidden_input_qty = $this->max_attendees > 1; |
|
166 | + |
|
167 | + $ticket_selector_row_html .= $this->ticketNameTableCell(); |
|
168 | + $ticket_selector_row_html .= $this->ticketPriceTableCell(); |
|
169 | + $ticket_selector_row_html .= EEH_HTML::td( |
|
170 | + '', |
|
171 | + '', |
|
172 | + 'tckt-slctr-tbl-td-qty cntr', |
|
173 | + '', |
|
174 | + 'headers="quantity-' . $this->EVT_ID . '"' |
|
175 | + ); |
|
176 | + $this->setTicketStatusDisplay($remaining); |
|
177 | + if (empty($this->ticket_status_display)) { |
|
178 | + if ($this->max_attendees === 1) { |
|
179 | + // only ONE attendee is allowed to register at a time |
|
180 | + $ticket_selector_row_html .= $this->onlyOneAttendeeCanRegister(); |
|
181 | + } elseif ($this->max > 0) { |
|
182 | + $ticket_selector_row_html .= $this->ticketQuantitySelector(); |
|
183 | + } |
|
184 | + } |
|
185 | + $ticket_selector_row_html .= $this->ticket_status_display; |
|
186 | + $ticket_selector_row_html .= $this->ticketQtyAndIdHiddenInputs(); |
|
187 | + $ticket_selector_row_html .= $this->ticket_details->display( |
|
188 | + $this->ticket_price, |
|
189 | + $remaining, |
|
190 | + $this->cols |
|
191 | + ); |
|
192 | + $ticket_selector_row_html .= EEH_HTML::tdx(); |
|
193 | + $ticket_selector_row_html .= EEH_HTML::trx(); |
|
194 | + |
|
195 | + |
|
196 | + $this->row++; |
|
197 | + return $ticket_selector_row_html; |
|
198 | + } |
|
199 | + |
|
200 | + |
|
201 | + /** |
|
202 | + * getTicketPriceDetails |
|
203 | + * |
|
204 | + * @return void |
|
205 | + * @throws EE_Error |
|
206 | + */ |
|
207 | + protected function setTicketPriceDetails() |
|
208 | + { |
|
209 | + $this->ticket_price = $this->tax_settings->prices_displayed_including_taxes |
|
210 | + ? $this->ticket->get_ticket_total_with_taxes() |
|
211 | + : $this->ticket->get_ticket_subtotal(); |
|
212 | + $this->ticket_bundle = false; |
|
213 | + $ticket_min = $this->ticket->min(); |
|
214 | + // for ticket bundles, set min and max qty the same |
|
215 | + if ($ticket_min !== 0 && $ticket_min === $this->ticket->max()) { |
|
216 | + $this->ticket_price *= $ticket_min; |
|
217 | + $this->ticket_bundle = true; |
|
218 | + } |
|
219 | + $this->ticket_price = apply_filters( |
|
220 | + 'FHEE__ticket_selector_chart_template__ticket_price', |
|
221 | + $this->ticket_price, |
|
222 | + $this->ticket |
|
223 | + ); |
|
224 | + } |
|
225 | + |
|
226 | + |
|
227 | + /** |
|
228 | + * ticketNameTableCell |
|
229 | + * |
|
230 | + * @return string |
|
231 | + * @throws EE_Error |
|
232 | + */ |
|
233 | + protected function ticketNameTableCell() |
|
234 | + { |
|
235 | + $html = EEH_HTML::td( |
|
236 | + '', |
|
237 | + '', |
|
238 | + 'tckt-slctr-tbl-td-name', |
|
239 | + '', |
|
240 | + 'headers="details-' . $this->EVT_ID . '"' |
|
241 | + ); |
|
242 | + $html .= EEH_HTML::strong($this->ticket->get_pretty('TKT_name')); |
|
243 | + $html .= $this->ticket_details->getShowHideLinks(); |
|
244 | + if ($this->ticket->required()) { |
|
245 | + $html .= EEH_HTML::p( |
|
246 | + apply_filters( |
|
247 | + 'FHEE__ticket_selector_chart_template__ticket_required_message', |
|
248 | + esc_html__('This ticket is required and must be purchased.', 'event_espresso') |
|
249 | + ), |
|
250 | + '', |
|
251 | + 'ticket-required-pg' |
|
252 | + ); |
|
253 | + } |
|
254 | + $html .= EEH_HTML::tdx(); |
|
255 | + return $html; |
|
256 | + } |
|
257 | + |
|
258 | + |
|
259 | + /** |
|
260 | + * ticketPriceTableCell |
|
261 | + * |
|
262 | + * @return string |
|
263 | + * @throws EE_Error |
|
264 | + */ |
|
265 | + protected function ticketPriceTableCell() |
|
266 | + { |
|
267 | + $html = ''; |
|
268 | + if (apply_filters('FHEE__ticket_selector_chart_template__display_ticket_price_details', true)) { |
|
269 | + $html .= EEH_HTML::td( |
|
270 | + '', |
|
271 | + '', |
|
272 | + 'tckt-slctr-tbl-td-price jst-rght', |
|
273 | + '', |
|
274 | + 'headers="price-' . $this->EVT_ID . '"' |
|
275 | + ); |
|
276 | + $html .= \EEH_Template::format_currency($this->ticket_price); |
|
277 | + $html .= $this->ticket->taxable() |
|
278 | + ? EEH_HTML::span('*', '', 'taxable-tickets-asterisk grey-text') |
|
279 | + : ''; |
|
280 | + $html .= ' '; |
|
281 | + // phpcs:disable WordPress.WP.I18n.NoEmptyStrings |
|
282 | + $html .= EEH_HTML::span( |
|
283 | + $this->ticket_bundle |
|
284 | + ? apply_filters( |
|
285 | + 'FHEE__ticket_selector_chart_template__per_ticket_bundle_text', |
|
286 | + __(' / bundle', 'event_espresso') |
|
287 | + ) |
|
288 | + : apply_filters( |
|
289 | + 'FHEE__ticket_selector_chart_template__per_ticket_text', |
|
290 | + __('', 'event_espresso') |
|
291 | + ), |
|
292 | + '', |
|
293 | + 'smaller-text no-bold' |
|
294 | + ); |
|
295 | + $html .= ' '; |
|
296 | + $html .= EEH_HTML::tdx(); |
|
297 | + $this->cols++; |
|
298 | + } |
|
299 | + return $html; |
|
300 | + } |
|
301 | + |
|
302 | + |
|
303 | + /** |
|
304 | + * onlyOneAttendeeCanRegister |
|
305 | + * |
|
306 | + * @return string |
|
307 | + */ |
|
308 | + protected function onlyOneAttendeeCanRegister() |
|
309 | + { |
|
310 | + // display submit button since we have tickets available |
|
311 | + add_filter('FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true'); |
|
312 | + $this->hidden_input_qty = false; |
|
313 | + $id = 'ticket-selector-tbl-qty-slct-' . $this->EVT_ID . '-' . $this->row; |
|
314 | + $html = '<label class="ee-a11y-screen-reader-text" for="' . $id . '">'; |
|
315 | + $html .= esc_html__('Select this ticket', 'event_espresso') . '</label>'; |
|
316 | + $html .= '<input type="radio" name="tkt-slctr-qty-' . $this->EVT_ID . '"'; |
|
317 | + $html .= ' id="' . $id . '"'; |
|
318 | + $html .= ' class="ticket-selector-tbl-qty-slct" value="' . $this->row . '-1"'; |
|
319 | + $html .= $this->total_tickets === 1 ? ' checked="checked"' : ''; |
|
320 | + $html .= ' title=""/>'; |
|
321 | + return $html; |
|
322 | + } |
|
323 | + |
|
324 | + |
|
325 | + /** |
|
326 | + * ticketQuantitySelector |
|
327 | + * |
|
328 | + * @return string |
|
329 | + * @throws EE_Error |
|
330 | + */ |
|
331 | + protected function ticketQuantitySelector() |
|
332 | + { |
|
333 | + // display submit button since we have tickets available |
|
334 | + add_filter('FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true'); |
|
335 | + $this->hidden_input_qty = false; |
|
336 | + $id = 'ticket-selector-tbl-qty-slct-' . $this->EVT_ID . '-' . $this->row; |
|
337 | + $html = '<label class="ee-a11y-screen-reader-text" for="' . $id . '">'; |
|
338 | + $html .= esc_html__('Quantity', 'event_espresso') . '</label>'; |
|
339 | + $html .= '<select name="tkt-slctr-qty-' . $this->EVT_ID . '[]"'; |
|
340 | + $html .= ' id="' . $id . '"'; |
|
341 | + $html .= ' class="ticket-selector-tbl-qty-slct">'; |
|
342 | + // this ensures that non-required tickets with non-zero MIN QTYs don't HAVE to be purchased |
|
343 | + if ($this->min !== 0 && ! $this->ticket->required()) { |
|
344 | + $html .= '<option value="0"> 0 </option>'; |
|
345 | + } |
|
346 | + // offer ticket quantities from the min to the max |
|
347 | + for ($i = $this->min; $i <= $this->max; $i++) { |
|
348 | + $html .= '<option value="' . $i . '"> ' . $i . ' </option>'; |
|
349 | + } |
|
350 | + $html .= '</select>'; |
|
351 | + return $html; |
|
352 | + } |
|
353 | + |
|
354 | + |
|
355 | + /** |
|
356 | + * getHiddenInputs |
|
357 | + * |
|
358 | + * @return string |
|
359 | + * @throws EE_Error |
|
360 | + */ |
|
361 | + protected function ticketQtyAndIdHiddenInputs() |
|
362 | + { |
|
363 | + $html = ''; |
|
364 | + // depending on group reg we need to change the format for qty |
|
365 | + if ($this->hidden_input_qty) { |
|
366 | + $html .= '<input type="hidden" name="tkt-slctr-qty-' . $this->EVT_ID . '[]" value="0"/>'; |
|
367 | + } |
|
368 | + $html .= '<input type="hidden" name="tkt-slctr-ticket-id-' . $this->EVT_ID . '[]"'; |
|
369 | + $html .= ' value="' . $this->ticket->ID() . '"/>'; |
|
370 | + return $html; |
|
371 | + } |
|
372 | 372 | } |
@@ -16,1282 +16,1282 @@ |
||
16 | 16 | { |
17 | 17 | |
18 | 18 | |
19 | - /** |
|
20 | - * Extend_Events_Admin_Page constructor. |
|
21 | - * |
|
22 | - * @param bool $routing |
|
23 | - */ |
|
24 | - public function __construct($routing = true) |
|
25 | - { |
|
26 | - parent::__construct($routing); |
|
27 | - if (! defined('EVENTS_CAF_TEMPLATE_PATH')) { |
|
28 | - define('EVENTS_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'events/templates/'); |
|
29 | - define('EVENTS_CAF_ASSETS', EE_CORE_CAF_ADMIN_EXTEND . 'events/assets/'); |
|
30 | - define('EVENTS_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'events/assets/'); |
|
31 | - } |
|
32 | - } |
|
33 | - |
|
34 | - |
|
35 | - /** |
|
36 | - * Sets routes. |
|
37 | - */ |
|
38 | - protected function _extend_page_config() |
|
39 | - { |
|
40 | - $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'events'; |
|
41 | - // is there a evt_id in the request? |
|
42 | - $evt_id = ! empty($this->_req_data['EVT_ID']) && ! is_array($this->_req_data['EVT_ID']) |
|
43 | - ? $this->_req_data['EVT_ID'] |
|
44 | - : 0; |
|
45 | - $evt_id = ! empty($this->_req_data['post']) ? $this->_req_data['post'] : $evt_id; |
|
46 | - // tkt_id? |
|
47 | - $tkt_id = ! empty($this->_req_data['TKT_ID']) && ! is_array($this->_req_data['TKT_ID']) |
|
48 | - ? $this->_req_data['TKT_ID'] |
|
49 | - : 0; |
|
50 | - $new_page_routes = array( |
|
51 | - 'duplicate_event' => array( |
|
52 | - 'func' => '_duplicate_event', |
|
53 | - 'capability' => 'ee_edit_event', |
|
54 | - 'obj_id' => $evt_id, |
|
55 | - 'noheader' => true, |
|
56 | - ), |
|
57 | - 'ticket_list_table' => array( |
|
58 | - 'func' => '_tickets_overview_list_table', |
|
59 | - 'capability' => 'ee_read_default_tickets', |
|
60 | - ), |
|
61 | - 'trash_ticket' => array( |
|
62 | - 'func' => '_trash_or_restore_ticket', |
|
63 | - 'capability' => 'ee_delete_default_ticket', |
|
64 | - 'obj_id' => $tkt_id, |
|
65 | - 'noheader' => true, |
|
66 | - 'args' => array('trash' => true), |
|
67 | - ), |
|
68 | - 'trash_tickets' => array( |
|
69 | - 'func' => '_trash_or_restore_ticket', |
|
70 | - 'capability' => 'ee_delete_default_tickets', |
|
71 | - 'noheader' => true, |
|
72 | - 'args' => array('trash' => true), |
|
73 | - ), |
|
74 | - 'restore_ticket' => array( |
|
75 | - 'func' => '_trash_or_restore_ticket', |
|
76 | - 'capability' => 'ee_delete_default_ticket', |
|
77 | - 'obj_id' => $tkt_id, |
|
78 | - 'noheader' => true, |
|
79 | - ), |
|
80 | - 'restore_tickets' => array( |
|
81 | - 'func' => '_trash_or_restore_ticket', |
|
82 | - 'capability' => 'ee_delete_default_tickets', |
|
83 | - 'noheader' => true, |
|
84 | - ), |
|
85 | - 'delete_ticket' => array( |
|
86 | - 'func' => '_delete_ticket', |
|
87 | - 'capability' => 'ee_delete_default_ticket', |
|
88 | - 'obj_id' => $tkt_id, |
|
89 | - 'noheader' => true, |
|
90 | - ), |
|
91 | - 'delete_tickets' => array( |
|
92 | - 'func' => '_delete_ticket', |
|
93 | - 'capability' => 'ee_delete_default_tickets', |
|
94 | - 'noheader' => true, |
|
95 | - ), |
|
96 | - 'import_page' => array( |
|
97 | - 'func' => '_import_page', |
|
98 | - 'capability' => 'import', |
|
99 | - ), |
|
100 | - 'import' => array( |
|
101 | - 'func' => '_import_events', |
|
102 | - 'capability' => 'import', |
|
103 | - 'noheader' => true, |
|
104 | - ), |
|
105 | - 'import_events' => array( |
|
106 | - 'func' => '_import_events', |
|
107 | - 'capability' => 'import', |
|
108 | - 'noheader' => true, |
|
109 | - ), |
|
110 | - 'export_events' => array( |
|
111 | - 'func' => '_events_export', |
|
112 | - 'capability' => 'export', |
|
113 | - 'noheader' => true, |
|
114 | - ), |
|
115 | - 'export_categories' => array( |
|
116 | - 'func' => '_categories_export', |
|
117 | - 'capability' => 'export', |
|
118 | - 'noheader' => true, |
|
119 | - ), |
|
120 | - 'sample_export_file' => array( |
|
121 | - 'func' => '_sample_export_file', |
|
122 | - 'capability' => 'export', |
|
123 | - 'noheader' => true, |
|
124 | - ), |
|
125 | - 'update_template_settings' => array( |
|
126 | - 'func' => '_update_template_settings', |
|
127 | - 'capability' => 'manage_options', |
|
128 | - 'noheader' => true, |
|
129 | - ), |
|
130 | - ); |
|
131 | - $this->_page_routes = array_merge($this->_page_routes, $new_page_routes); |
|
132 | - // partial route/config override |
|
133 | - $this->_page_config['import_events']['metaboxes'] = $this->_default_espresso_metaboxes; |
|
134 | - $this->_page_config['create_new']['metaboxes'][] = '_premium_event_editor_meta_boxes'; |
|
135 | - $this->_page_config['create_new']['qtips'][] = 'EE_Event_Editor_Tips'; |
|
136 | - $this->_page_config['edit']['qtips'][] = 'EE_Event_Editor_Tips'; |
|
137 | - $this->_page_config['edit']['metaboxes'][] = '_premium_event_editor_meta_boxes'; |
|
138 | - $this->_page_config['default']['list_table'] = 'Extend_Events_Admin_List_Table'; |
|
139 | - // add tickets tab but only if there are more than one default ticket! |
|
140 | - $tkt_count = EEM_Ticket::instance()->count_deleted_and_undeleted( |
|
141 | - array(array('TKT_is_default' => 1)), |
|
142 | - 'TKT_ID', |
|
143 | - true |
|
144 | - ); |
|
145 | - if ($tkt_count > 1) { |
|
146 | - $new_page_config = array( |
|
147 | - 'ticket_list_table' => array( |
|
148 | - 'nav' => array( |
|
149 | - 'label' => esc_html__('Default Tickets', 'event_espresso'), |
|
150 | - 'order' => 60, |
|
151 | - ), |
|
152 | - 'list_table' => 'Tickets_List_Table', |
|
153 | - 'require_nonce' => false, |
|
154 | - ), |
|
155 | - ); |
|
156 | - } |
|
157 | - // template settings |
|
158 | - $new_page_config['template_settings'] = array( |
|
159 | - 'nav' => array( |
|
160 | - 'label' => esc_html__('Templates', 'event_espresso'), |
|
161 | - 'order' => 30, |
|
162 | - ), |
|
163 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
164 | - 'help_tabs' => array( |
|
165 | - 'general_settings_templates_help_tab' => array( |
|
166 | - 'title' => esc_html__('Templates', 'event_espresso'), |
|
167 | - 'filename' => 'general_settings_templates', |
|
168 | - ), |
|
169 | - ), |
|
170 | - 'help_tour' => array('Templates_Help_Tour'), |
|
171 | - 'require_nonce' => false, |
|
172 | - ); |
|
173 | - $this->_page_config = array_merge($this->_page_config, $new_page_config); |
|
174 | - // add filters and actions |
|
175 | - // modifying _views |
|
176 | - add_filter( |
|
177 | - 'FHEE_event_datetime_metabox_add_additional_date_time_template', |
|
178 | - array($this, 'add_additional_datetime_button'), |
|
179 | - 10, |
|
180 | - 2 |
|
181 | - ); |
|
182 | - add_filter( |
|
183 | - 'FHEE_event_datetime_metabox_clone_button_template', |
|
184 | - array($this, 'add_datetime_clone_button'), |
|
185 | - 10, |
|
186 | - 2 |
|
187 | - ); |
|
188 | - add_filter( |
|
189 | - 'FHEE_event_datetime_metabox_timezones_template', |
|
190 | - array($this, 'datetime_timezones_template'), |
|
191 | - 10, |
|
192 | - 2 |
|
193 | - ); |
|
194 | - // filters for event list table |
|
195 | - add_filter('FHEE__Extend_Events_Admin_List_Table__filters', array($this, 'list_table_filters'), 10, 2); |
|
196 | - add_filter( |
|
197 | - 'FHEE__Events_Admin_List_Table__column_actions__action_links', |
|
198 | - array($this, 'extra_list_table_actions'), |
|
199 | - 10, |
|
200 | - 2 |
|
201 | - ); |
|
202 | - // legend item |
|
203 | - add_filter('FHEE__Events_Admin_Page___event_legend_items__items', array($this, 'additional_legend_items')); |
|
204 | - add_action('admin_init', array($this, 'admin_init')); |
|
205 | - } |
|
206 | - |
|
207 | - |
|
208 | - /** |
|
209 | - * admin_init |
|
210 | - */ |
|
211 | - public function admin_init() |
|
212 | - { |
|
213 | - EE_Registry::$i18n_js_strings = array_merge( |
|
214 | - EE_Registry::$i18n_js_strings, |
|
215 | - array( |
|
216 | - 'image_confirm' => esc_html__( |
|
217 | - 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
218 | - 'event_espresso' |
|
219 | - ), |
|
220 | - 'event_starts_on' => esc_html__('Event Starts on', 'event_espresso'), |
|
221 | - 'event_ends_on' => esc_html__('Event Ends on', 'event_espresso'), |
|
222 | - 'event_datetime_actions' => esc_html__('Actions', 'event_espresso'), |
|
223 | - 'event_clone_dt_msg' => esc_html__('Clone this Event Date and Time', 'event_espresso'), |
|
224 | - 'remove_event_dt_msg' => esc_html__('Remove this Event Time', 'event_espresso'), |
|
225 | - ) |
|
226 | - ); |
|
227 | - } |
|
228 | - |
|
229 | - |
|
230 | - /** |
|
231 | - * Add per page screen options to the default ticket list table view. |
|
232 | - */ |
|
233 | - protected function _add_screen_options_ticket_list_table() |
|
234 | - { |
|
235 | - $this->_per_page_screen_option(); |
|
236 | - } |
|
237 | - |
|
238 | - |
|
239 | - /** |
|
240 | - * @param string $return |
|
241 | - * @param int $id |
|
242 | - * @param string $new_title |
|
243 | - * @param string $new_slug |
|
244 | - * @return string |
|
245 | - */ |
|
246 | - public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
247 | - { |
|
248 | - $return = parent::extra_permalink_field_buttons($return, $id, $new_title, $new_slug); |
|
249 | - // make sure this is only when editing |
|
250 | - if (! empty($id)) { |
|
251 | - $href = EE_Admin_Page::add_query_args_and_nonce( |
|
252 | - array('action' => 'duplicate_event', 'EVT_ID' => $id), |
|
253 | - $this->_admin_base_url |
|
254 | - ); |
|
255 | - $title = esc_attr__('Duplicate Event', 'event_espresso'); |
|
256 | - $return .= '<a href="' |
|
257 | - . $href |
|
258 | - . '" title="' |
|
259 | - . $title |
|
260 | - . '" id="ee-duplicate-event-button" class="button button-small" value="duplicate_event">' |
|
261 | - . $title |
|
262 | - . '</a>'; |
|
263 | - } |
|
264 | - return $return; |
|
265 | - } |
|
266 | - |
|
267 | - |
|
268 | - /** |
|
269 | - * Set the list table views for the default ticket list table view. |
|
270 | - */ |
|
271 | - public function _set_list_table_views_ticket_list_table() |
|
272 | - { |
|
273 | - $this->_views = array( |
|
274 | - 'all' => array( |
|
275 | - 'slug' => 'all', |
|
276 | - 'label' => esc_html__('All', 'event_espresso'), |
|
277 | - 'count' => 0, |
|
278 | - 'bulk_action' => array( |
|
279 | - 'trash_tickets' => esc_html__('Move to Trash', 'event_espresso'), |
|
280 | - ), |
|
281 | - ), |
|
282 | - 'trashed' => array( |
|
283 | - 'slug' => 'trashed', |
|
284 | - 'label' => esc_html__('Trash', 'event_espresso'), |
|
285 | - 'count' => 0, |
|
286 | - 'bulk_action' => array( |
|
287 | - 'restore_tickets' => esc_html__('Restore from Trash', 'event_espresso'), |
|
288 | - 'delete_tickets' => esc_html__('Delete Permanently', 'event_espresso'), |
|
289 | - ), |
|
290 | - ), |
|
291 | - ); |
|
292 | - } |
|
293 | - |
|
294 | - |
|
295 | - /** |
|
296 | - * Enqueue scripts and styles for the event editor. |
|
297 | - */ |
|
298 | - public function load_scripts_styles_edit() |
|
299 | - { |
|
300 | - wp_register_script( |
|
301 | - 'ee-event-editor-heartbeat', |
|
302 | - EVENTS_CAF_ASSETS_URL . 'event-editor-heartbeat.js', |
|
303 | - array('ee_admin_js', 'heartbeat'), |
|
304 | - EVENT_ESPRESSO_VERSION, |
|
305 | - true |
|
306 | - ); |
|
307 | - wp_enqueue_script('ee-accounting'); |
|
308 | - // styles |
|
309 | - wp_enqueue_style('espresso-ui-theme'); |
|
310 | - wp_enqueue_script('event_editor_js'); |
|
311 | - wp_enqueue_script('ee-event-editor-heartbeat'); |
|
312 | - } |
|
313 | - |
|
314 | - |
|
315 | - /** |
|
316 | - * Returns template for the additional datetime. |
|
317 | - * |
|
318 | - * @param $template |
|
319 | - * @param $template_args |
|
320 | - * @return mixed |
|
321 | - * @throws DomainException |
|
322 | - */ |
|
323 | - public function add_additional_datetime_button($template, $template_args) |
|
324 | - { |
|
325 | - return EEH_Template::display_template( |
|
326 | - EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_add_additional_time.template.php', |
|
327 | - $template_args, |
|
328 | - true |
|
329 | - ); |
|
330 | - } |
|
331 | - |
|
332 | - |
|
333 | - /** |
|
334 | - * Returns the template for cloning a datetime. |
|
335 | - * |
|
336 | - * @param $template |
|
337 | - * @param $template_args |
|
338 | - * @return mixed |
|
339 | - * @throws DomainException |
|
340 | - */ |
|
341 | - public function add_datetime_clone_button($template, $template_args) |
|
342 | - { |
|
343 | - return EEH_Template::display_template( |
|
344 | - EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_metabox_clone_button.template.php', |
|
345 | - $template_args, |
|
346 | - true |
|
347 | - ); |
|
348 | - } |
|
349 | - |
|
350 | - |
|
351 | - /** |
|
352 | - * Returns the template for datetime timezones. |
|
353 | - * |
|
354 | - * @param $template |
|
355 | - * @param $template_args |
|
356 | - * @return mixed |
|
357 | - * @throws DomainException |
|
358 | - */ |
|
359 | - public function datetime_timezones_template($template, $template_args) |
|
360 | - { |
|
361 | - return EEH_Template::display_template( |
|
362 | - EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_timezones.template.php', |
|
363 | - $template_args, |
|
364 | - true |
|
365 | - ); |
|
366 | - } |
|
367 | - |
|
368 | - |
|
369 | - /** |
|
370 | - * Sets the views for the default list table view. |
|
371 | - */ |
|
372 | - protected function _set_list_table_views_default() |
|
373 | - { |
|
374 | - parent::_set_list_table_views_default(); |
|
375 | - $new_views = array( |
|
376 | - 'today' => array( |
|
377 | - 'slug' => 'today', |
|
378 | - 'label' => esc_html__('Today', 'event_espresso'), |
|
379 | - 'count' => $this->total_events_today(), |
|
380 | - 'bulk_action' => array( |
|
381 | - 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
382 | - ), |
|
383 | - ), |
|
384 | - 'month' => array( |
|
385 | - 'slug' => 'month', |
|
386 | - 'label' => esc_html__('This Month', 'event_espresso'), |
|
387 | - 'count' => $this->total_events_this_month(), |
|
388 | - 'bulk_action' => array( |
|
389 | - 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
390 | - ), |
|
391 | - ), |
|
392 | - ); |
|
393 | - $this->_views = array_merge($this->_views, $new_views); |
|
394 | - } |
|
395 | - |
|
396 | - |
|
397 | - /** |
|
398 | - * Returns the extra action links for the default list table view. |
|
399 | - * |
|
400 | - * @param array $action_links |
|
401 | - * @param \EE_Event $event |
|
402 | - * @return array |
|
403 | - * @throws EE_Error |
|
404 | - */ |
|
405 | - public function extra_list_table_actions(array $action_links, \EE_Event $event) |
|
406 | - { |
|
407 | - if (EE_Registry::instance()->CAP->current_user_can( |
|
408 | - 'ee_read_registrations', |
|
409 | - 'espresso_registrations_reports', |
|
410 | - $event->ID() |
|
411 | - ) |
|
412 | - ) { |
|
413 | - $reports_query_args = array( |
|
414 | - 'action' => 'reports', |
|
415 | - 'EVT_ID' => $event->ID(), |
|
416 | - ); |
|
417 | - $reports_link = EE_Admin_Page::add_query_args_and_nonce($reports_query_args, REG_ADMIN_URL); |
|
418 | - $action_links[] = '<a href="' |
|
419 | - . $reports_link |
|
420 | - . '" title="' |
|
421 | - . esc_attr__('View Report', 'event_espresso') |
|
422 | - . '"><div class="dashicons dashicons-chart-bar"></div></a>' |
|
423 | - . "\n\t"; |
|
424 | - } |
|
425 | - if (EE_Registry::instance()->CAP->current_user_can('ee_read_global_messages', 'view_filtered_messages')) { |
|
426 | - EE_Registry::instance()->load_helper('MSG_Template'); |
|
427 | - $action_links[] = EEH_MSG_Template::get_message_action_link( |
|
428 | - 'see_notifications_for', |
|
429 | - null, |
|
430 | - array('EVT_ID' => $event->ID()) |
|
431 | - ); |
|
432 | - } |
|
433 | - return $action_links; |
|
434 | - } |
|
435 | - |
|
436 | - |
|
437 | - /** |
|
438 | - * @param $items |
|
439 | - * @return mixed |
|
440 | - */ |
|
441 | - public function additional_legend_items($items) |
|
442 | - { |
|
443 | - if (EE_Registry::instance()->CAP->current_user_can( |
|
444 | - 'ee_read_registrations', |
|
445 | - 'espresso_registrations_reports' |
|
446 | - ) |
|
447 | - ) { |
|
448 | - $items['reports'] = array( |
|
449 | - 'class' => 'dashicons dashicons-chart-bar', |
|
450 | - 'desc' => esc_html__('Event Reports', 'event_espresso'), |
|
451 | - ); |
|
452 | - } |
|
453 | - if (EE_Registry::instance()->CAP->current_user_can('ee_read_global_messages', 'view_filtered_messages')) { |
|
454 | - $related_for_icon = EEH_MSG_Template::get_message_action_icon('see_notifications_for'); |
|
455 | - if (isset($related_for_icon['css_class']) && isset($related_for_icon['label'])) { |
|
456 | - $items['view_related_messages'] = array( |
|
457 | - 'class' => $related_for_icon['css_class'], |
|
458 | - 'desc' => $related_for_icon['label'], |
|
459 | - ); |
|
460 | - } |
|
461 | - } |
|
462 | - return $items; |
|
463 | - } |
|
464 | - |
|
465 | - |
|
466 | - /** |
|
467 | - * This is the callback method for the duplicate event route |
|
468 | - * Method looks for 'EVT_ID' in the request and retrieves that event and its details and duplicates them |
|
469 | - * into a new event. We add a hook so that any plugins that add extra event details can hook into this |
|
470 | - * action. Note that the dupe will have **DUPLICATE** as its title and slug. |
|
471 | - * After duplication the redirect is to the new event edit page. |
|
472 | - * |
|
473 | - * @return void |
|
474 | - * @access protected |
|
475 | - * @throws EE_Error If EE_Event is not available with given ID |
|
476 | - */ |
|
477 | - protected function _duplicate_event() |
|
478 | - { |
|
479 | - // first make sure the ID for the event is in the request. |
|
480 | - // If it isn't then we need to bail and redirect back to overview list table (cause how did we get here?) |
|
481 | - if (! isset($this->_req_data['EVT_ID'])) { |
|
482 | - EE_Error::add_error( |
|
483 | - esc_html__( |
|
484 | - 'In order to duplicate an event an Event ID is required. None was given.', |
|
485 | - 'event_espresso' |
|
486 | - ), |
|
487 | - __FILE__, |
|
488 | - __FUNCTION__, |
|
489 | - __LINE__ |
|
490 | - ); |
|
491 | - $this->_redirect_after_action(false, '', '', array(), true); |
|
492 | - return; |
|
493 | - } |
|
494 | - // k we've got EVT_ID so let's use that to get the event we'll duplicate |
|
495 | - $orig_event = EEM_Event::instance()->get_one_by_ID($this->_req_data['EVT_ID']); |
|
496 | - if (! $orig_event instanceof EE_Event) { |
|
497 | - throw new EE_Error( |
|
498 | - sprintf( |
|
499 | - esc_html__('An EE_Event object could not be retrieved for the given ID (%s)', 'event_espresso'), |
|
500 | - $this->_req_data['EVT_ID'] |
|
501 | - ) |
|
502 | - ); |
|
503 | - } |
|
504 | - // k now let's clone the $orig_event before getting relations |
|
505 | - $new_event = clone $orig_event; |
|
506 | - // original datetimes |
|
507 | - $orig_datetimes = $orig_event->get_many_related('Datetime'); |
|
508 | - // other original relations |
|
509 | - $orig_ven = $orig_event->get_many_related('Venue'); |
|
510 | - // reset the ID and modify other details to make it clear this is a dupe |
|
511 | - $new_event->set('EVT_ID', 0); |
|
512 | - $new_name = $new_event->name() . ' ' . esc_html__('**DUPLICATE**', 'event_espresso'); |
|
513 | - $new_event->set('EVT_name', $new_name); |
|
514 | - $new_event->set( |
|
515 | - 'EVT_slug', |
|
516 | - wp_unique_post_slug( |
|
517 | - sanitize_title($orig_event->name()), |
|
518 | - 0, |
|
519 | - 'publish', |
|
520 | - 'espresso_events', |
|
521 | - 0 |
|
522 | - ) |
|
523 | - ); |
|
524 | - $new_event->set('status', 'draft'); |
|
525 | - // duplicate discussion settings |
|
526 | - $new_event->set('comment_status', $orig_event->get('comment_status')); |
|
527 | - $new_event->set('ping_status', $orig_event->get('ping_status')); |
|
528 | - // save the new event |
|
529 | - $new_event->save(); |
|
530 | - // venues |
|
531 | - foreach ($orig_ven as $ven) { |
|
532 | - $new_event->_add_relation_to($ven, 'Venue'); |
|
533 | - } |
|
534 | - $new_event->save(); |
|
535 | - // now we need to get the question group relations and handle that |
|
536 | - // first primary question groups |
|
537 | - $orig_primary_qgs = $orig_event->get_many_related( |
|
538 | - 'Question_Group', |
|
539 | - [['Event_Question_Group.EQG_primary' => true]] |
|
540 | - ); |
|
541 | - if (! empty($orig_primary_qgs)) { |
|
542 | - foreach ($orig_primary_qgs as $id => $obj) { |
|
543 | - if ($obj instanceof EE_Question_Group) { |
|
544 | - $new_event->_add_relation_to($obj, 'Question_Group', ['EQG_primary' => true]); |
|
545 | - } |
|
546 | - } |
|
547 | - } |
|
548 | - // next additional attendee question groups |
|
549 | - $orig_additional_qgs = $orig_event->get_many_related( |
|
550 | - 'Question_Group', |
|
551 | - [['Event_Question_Group.EQG_additional' => true]] |
|
552 | - ); |
|
553 | - if (! empty($orig_additional_qgs)) { |
|
554 | - foreach ($orig_additional_qgs as $id => $obj) { |
|
555 | - if ($obj instanceof EE_Question_Group) { |
|
556 | - $new_event->_add_relation_to($obj, 'Question_Group', ['EQG_additional' => true]); |
|
557 | - } |
|
558 | - } |
|
559 | - } |
|
560 | - |
|
561 | - $new_event->save(); |
|
562 | - |
|
563 | - // k now that we have the new event saved we can loop through the datetimes and start adding relations. |
|
564 | - $cloned_tickets = array(); |
|
565 | - foreach ($orig_datetimes as $orig_dtt) { |
|
566 | - if (! $orig_dtt instanceof EE_Datetime) { |
|
567 | - continue; |
|
568 | - } |
|
569 | - $new_dtt = clone $orig_dtt; |
|
570 | - $orig_tkts = $orig_dtt->tickets(); |
|
571 | - // save new dtt then add to event |
|
572 | - $new_dtt->set('DTT_ID', 0); |
|
573 | - $new_dtt->set('DTT_sold', 0); |
|
574 | - $new_dtt->set_reserved(0); |
|
575 | - $new_dtt->save(); |
|
576 | - $new_event->_add_relation_to($new_dtt, 'Datetime'); |
|
577 | - $new_event->save(); |
|
578 | - // now let's get the ticket relations setup. |
|
579 | - foreach ((array) $orig_tkts as $orig_tkt) { |
|
580 | - // it's possible a datetime will have no tickets so let's verify we HAVE a ticket first. |
|
581 | - if (! $orig_tkt instanceof EE_Ticket) { |
|
582 | - continue; |
|
583 | - } |
|
584 | - // is this ticket archived? If it is then let's skip |
|
585 | - if ($orig_tkt->get('TKT_deleted')) { |
|
586 | - continue; |
|
587 | - } |
|
588 | - // does this original ticket already exist in the clone_tickets cache? |
|
589 | - // If so we'll just use the new ticket from it. |
|
590 | - if (isset($cloned_tickets[ $orig_tkt->ID() ])) { |
|
591 | - $new_tkt = $cloned_tickets[ $orig_tkt->ID() ]; |
|
592 | - } else { |
|
593 | - $new_tkt = clone $orig_tkt; |
|
594 | - // get relations on the $orig_tkt that we need to setup. |
|
595 | - $orig_prices = $orig_tkt->prices(); |
|
596 | - $new_tkt->set('TKT_ID', 0); |
|
597 | - $new_tkt->set('TKT_sold', 0); |
|
598 | - $new_tkt->set('TKT_reserved', 0); |
|
599 | - $new_tkt->save(); // make sure new ticket has ID. |
|
600 | - // price relations on new ticket need to be setup. |
|
601 | - foreach ($orig_prices as $orig_price) { |
|
602 | - $new_price = clone $orig_price; |
|
603 | - $new_price->set('PRC_ID', 0); |
|
604 | - $new_price->save(); |
|
605 | - $new_tkt->_add_relation_to($new_price, 'Price'); |
|
606 | - $new_tkt->save(); |
|
607 | - } |
|
608 | - |
|
609 | - do_action( |
|
610 | - 'AHEE__Extend_Events_Admin_Page___duplicate_event__duplicate_ticket__after', |
|
611 | - $orig_tkt, |
|
612 | - $new_tkt, |
|
613 | - $orig_prices, |
|
614 | - $orig_event, |
|
615 | - $orig_dtt, |
|
616 | - $new_dtt |
|
617 | - ); |
|
618 | - } |
|
619 | - // k now we can add the new ticket as a relation to the new datetime |
|
620 | - // and make sure its added to our cached $cloned_tickets array |
|
621 | - // for use with later datetimes that have the same ticket. |
|
622 | - $new_dtt->_add_relation_to($new_tkt, 'Ticket'); |
|
623 | - $new_dtt->save(); |
|
624 | - $cloned_tickets[ $orig_tkt->ID() ] = $new_tkt; |
|
625 | - } |
|
626 | - } |
|
627 | - // clone taxonomy information |
|
628 | - $taxonomies_to_clone_with = apply_filters( |
|
629 | - 'FHEE__Extend_Events_Admin_Page___duplicate_event__taxonomies_to_clone', |
|
630 | - array('espresso_event_categories', 'espresso_event_type', 'post_tag') |
|
631 | - ); |
|
632 | - // get terms for original event (notice) |
|
633 | - $orig_terms = wp_get_object_terms($orig_event->ID(), $taxonomies_to_clone_with); |
|
634 | - // loop through terms and add them to new event. |
|
635 | - foreach ($orig_terms as $term) { |
|
636 | - wp_set_object_terms($new_event->ID(), $term->term_id, $term->taxonomy, true); |
|
637 | - } |
|
638 | - |
|
639 | - // duplicate other core WP_Post items for this event. |
|
640 | - // post thumbnail (feature image). |
|
641 | - $feature_image_id = get_post_thumbnail_id($orig_event->ID()); |
|
642 | - if ($feature_image_id) { |
|
643 | - update_post_meta($new_event->ID(), '_thumbnail_id', $feature_image_id); |
|
644 | - } |
|
645 | - |
|
646 | - // duplicate page_template setting |
|
647 | - $page_template = get_post_meta($orig_event->ID(), '_wp_page_template', true); |
|
648 | - if ($page_template) { |
|
649 | - update_post_meta($new_event->ID(), '_wp_page_template', $page_template); |
|
650 | - } |
|
651 | - |
|
652 | - do_action('AHEE__Extend_Events_Admin_Page___duplicate_event__after', $new_event, $orig_event); |
|
653 | - // now let's redirect to the edit page for this duplicated event if we have a new event id. |
|
654 | - if ($new_event->ID()) { |
|
655 | - $redirect_args = array( |
|
656 | - 'post' => $new_event->ID(), |
|
657 | - 'action' => 'edit', |
|
658 | - ); |
|
659 | - EE_Error::add_success( |
|
660 | - esc_html__( |
|
661 | - 'Event successfully duplicated. Please review the details below and make any necessary edits', |
|
662 | - 'event_espresso' |
|
663 | - ) |
|
664 | - ); |
|
665 | - } else { |
|
666 | - $redirect_args = array( |
|
667 | - 'action' => 'default', |
|
668 | - ); |
|
669 | - EE_Error::add_error( |
|
670 | - esc_html__('Not able to duplicate event. Something went wrong.', 'event_espresso'), |
|
671 | - __FILE__, |
|
672 | - __FUNCTION__, |
|
673 | - __LINE__ |
|
674 | - ); |
|
675 | - } |
|
676 | - $this->_redirect_after_action(false, '', '', $redirect_args, true); |
|
677 | - } |
|
678 | - |
|
679 | - |
|
680 | - /** |
|
681 | - * Generates output for the import page. |
|
682 | - * |
|
683 | - * @throws DomainException |
|
684 | - */ |
|
685 | - protected function _import_page() |
|
686 | - { |
|
687 | - $title = esc_html__('Import', 'event_espresso'); |
|
688 | - $intro = esc_html__( |
|
689 | - 'If you have a previously exported Event Espresso 4 information in a Comma Separated Value (CSV) file format, you can upload the file here: ', |
|
690 | - 'event_espresso' |
|
691 | - ); |
|
692 | - $form_url = EVENTS_ADMIN_URL; |
|
693 | - $action = 'import_events'; |
|
694 | - $type = 'csv'; |
|
695 | - $this->_template_args['form'] = EE_Import::instance()->upload_form( |
|
696 | - $title, |
|
697 | - $intro, |
|
698 | - $form_url, |
|
699 | - $action, |
|
700 | - $type |
|
701 | - ); |
|
702 | - $this->_template_args['sample_file_link'] = EE_Admin_Page::add_query_args_and_nonce( |
|
703 | - array('action' => 'sample_export_file'), |
|
704 | - $this->_admin_base_url |
|
705 | - ); |
|
706 | - $content = EEH_Template::display_template( |
|
707 | - EVENTS_CAF_TEMPLATE_PATH . 'import_page.template.php', |
|
708 | - $this->_template_args, |
|
709 | - true |
|
710 | - ); |
|
711 | - $this->_template_args['admin_page_content'] = $content; |
|
712 | - $this->display_admin_page_with_sidebar(); |
|
713 | - } |
|
714 | - |
|
715 | - |
|
716 | - /** |
|
717 | - * _import_events |
|
718 | - * This handles displaying the screen and running imports for importing events. |
|
719 | - * |
|
720 | - * @return void |
|
721 | - */ |
|
722 | - protected function _import_events() |
|
723 | - { |
|
724 | - require_once(EE_CLASSES . 'EE_Import.class.php'); |
|
725 | - $success = EE_Import::instance()->import(); |
|
726 | - $this->_redirect_after_action($success, 'Import File', 'ran', array('action' => 'import_page'), true); |
|
727 | - } |
|
728 | - |
|
729 | - |
|
730 | - /** |
|
731 | - * _events_export |
|
732 | - * Will export all (or just the given event) to a Excel compatible file. |
|
733 | - * |
|
734 | - * @access protected |
|
735 | - * @return void |
|
736 | - */ |
|
737 | - protected function _events_export() |
|
738 | - { |
|
739 | - if (isset($this->_req_data['EVT_ID'])) { |
|
740 | - $event_ids = $this->_req_data['EVT_ID']; |
|
741 | - } elseif (isset($this->_req_data['EVT_IDs'])) { |
|
742 | - $event_ids = $this->_req_data['EVT_IDs']; |
|
743 | - } else { |
|
744 | - $event_ids = null; |
|
745 | - } |
|
746 | - // todo: I don't like doing this but it'll do until we modify EE_Export Class. |
|
747 | - $new_request_args = array( |
|
748 | - 'export' => 'report', |
|
749 | - 'action' => 'all_event_data', |
|
750 | - 'EVT_ID' => $event_ids, |
|
751 | - ); |
|
752 | - $this->_req_data = array_merge($this->_req_data, $new_request_args); |
|
753 | - if (is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
754 | - require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
755 | - $EE_Export = EE_Export::instance($this->_req_data); |
|
756 | - $EE_Export->export(); |
|
757 | - } |
|
758 | - } |
|
759 | - |
|
760 | - |
|
761 | - /** |
|
762 | - * handle category exports() |
|
763 | - * |
|
764 | - * @return void |
|
765 | - */ |
|
766 | - protected function _categories_export() |
|
767 | - { |
|
768 | - // todo: I don't like doing this but it'll do until we modify EE_Export Class. |
|
769 | - $new_request_args = array( |
|
770 | - 'export' => 'report', |
|
771 | - 'action' => 'categories', |
|
772 | - 'category_ids' => $this->_req_data['EVT_CAT_ID'], |
|
773 | - ); |
|
774 | - $this->_req_data = array_merge($this->_req_data, $new_request_args); |
|
775 | - if (is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
776 | - require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
777 | - $EE_Export = EE_Export::instance($this->_req_data); |
|
778 | - $EE_Export->export(); |
|
779 | - } |
|
780 | - } |
|
781 | - |
|
782 | - |
|
783 | - /** |
|
784 | - * Creates a sample CSV file for importing |
|
785 | - */ |
|
786 | - protected function _sample_export_file() |
|
787 | - { |
|
788 | - // require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
789 | - EE_Export::instance()->export_sample(); |
|
790 | - } |
|
791 | - |
|
792 | - |
|
793 | - /************* Template Settings *************/ |
|
794 | - /** |
|
795 | - * Generates template settings page output |
|
796 | - * |
|
797 | - * @throws DomainException |
|
798 | - * @throws EE_Error |
|
799 | - */ |
|
800 | - protected function _template_settings() |
|
801 | - { |
|
802 | - $this->_template_args['values'] = $this->_yes_no_values; |
|
803 | - /** |
|
804 | - * Note leaving this filter in for backward compatibility this was moved in 4.6.x |
|
805 | - * from General_Settings_Admin_Page to here. |
|
806 | - */ |
|
807 | - $this->_template_args = apply_filters( |
|
808 | - 'FHEE__General_Settings_Admin_Page__template_settings__template_args', |
|
809 | - $this->_template_args |
|
810 | - ); |
|
811 | - $this->_set_add_edit_form_tags('update_template_settings'); |
|
812 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
813 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
814 | - EVENTS_CAF_TEMPLATE_PATH . 'template_settings.template.php', |
|
815 | - $this->_template_args, |
|
816 | - true |
|
817 | - ); |
|
818 | - $this->display_admin_page_with_sidebar(); |
|
819 | - } |
|
820 | - |
|
821 | - |
|
822 | - /** |
|
823 | - * Handler for updating template settings. |
|
824 | - * |
|
825 | - * @throws InvalidInterfaceException |
|
826 | - * @throws InvalidDataTypeException |
|
827 | - * @throws InvalidArgumentException |
|
828 | - */ |
|
829 | - protected function _update_template_settings() |
|
830 | - { |
|
831 | - /** |
|
832 | - * Note leaving this filter in for backward compatibility this was moved in 4.6.x |
|
833 | - * from General_Settings_Admin_Page to here. |
|
834 | - */ |
|
835 | - EE_Registry::instance()->CFG->template_settings = apply_filters( |
|
836 | - 'FHEE__General_Settings_Admin_Page__update_template_settings__data', |
|
837 | - EE_Registry::instance()->CFG->template_settings, |
|
838 | - $this->_req_data |
|
839 | - ); |
|
840 | - // update custom post type slugs and detect if we need to flush rewrite rules |
|
841 | - $old_slug = EE_Registry::instance()->CFG->core->event_cpt_slug; |
|
842 | - EE_Registry::instance()->CFG->core->event_cpt_slug = empty($this->_req_data['event_cpt_slug']) |
|
843 | - ? EE_Registry::instance()->CFG->core->event_cpt_slug |
|
844 | - : EEH_URL::slugify($this->_req_data['event_cpt_slug'], 'events'); |
|
845 | - $what = 'Template Settings'; |
|
846 | - $success = $this->_update_espresso_configuration( |
|
847 | - $what, |
|
848 | - EE_Registry::instance()->CFG->template_settings, |
|
849 | - __FILE__, |
|
850 | - __FUNCTION__, |
|
851 | - __LINE__ |
|
852 | - ); |
|
853 | - if (EE_Registry::instance()->CFG->core->event_cpt_slug != $old_slug) { |
|
854 | - /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */ |
|
855 | - $rewrite_rules = LoaderFactory::getLoader()->getShared( |
|
856 | - 'EventEspresso\core\domain\services\custom_post_types\RewriteRules' |
|
857 | - ); |
|
858 | - $rewrite_rules->flush(); |
|
859 | - } |
|
860 | - $this->_redirect_after_action($success, $what, 'updated', array('action' => 'template_settings')); |
|
861 | - } |
|
862 | - |
|
863 | - |
|
864 | - /** |
|
865 | - * _premium_event_editor_meta_boxes |
|
866 | - * add all metaboxes related to the event_editor |
|
867 | - * |
|
868 | - * @access protected |
|
869 | - * @return void |
|
870 | - * @throws EE_Error |
|
871 | - */ |
|
872 | - protected function _premium_event_editor_meta_boxes() |
|
873 | - { |
|
874 | - $this->verify_cpt_object(); |
|
875 | - add_meta_box( |
|
876 | - 'espresso_event_editor_event_options', |
|
877 | - esc_html__('Event Registration Options', 'event_espresso'), |
|
878 | - array($this, 'registration_options_meta_box'), |
|
879 | - $this->page_slug, |
|
880 | - 'side', |
|
881 | - 'core' |
|
882 | - ); |
|
883 | - } |
|
884 | - |
|
885 | - |
|
886 | - /** |
|
887 | - * override caf metabox |
|
888 | - * |
|
889 | - * @return void |
|
890 | - * @throws DomainException |
|
891 | - */ |
|
892 | - public function registration_options_meta_box() |
|
893 | - { |
|
894 | - $yes_no_values = array( |
|
895 | - array('id' => true, 'text' => esc_html__('Yes', 'event_espresso')), |
|
896 | - array('id' => false, 'text' => esc_html__('No', 'event_espresso')), |
|
897 | - ); |
|
898 | - $default_reg_status_values = EEM_Registration::reg_status_array( |
|
899 | - array( |
|
900 | - EEM_Registration::status_id_cancelled, |
|
901 | - EEM_Registration::status_id_declined, |
|
902 | - EEM_Registration::status_id_incomplete, |
|
903 | - EEM_Registration::status_id_wait_list, |
|
904 | - ), |
|
905 | - true |
|
906 | - ); |
|
907 | - $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
908 | - $template_args['_event'] = $this->_cpt_model_obj; |
|
909 | - $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
910 | - $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
911 | - 'default_reg_status', |
|
912 | - $default_reg_status_values, |
|
913 | - $this->_cpt_model_obj->default_registration_status() |
|
914 | - ); |
|
915 | - $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
916 | - 'display_desc', |
|
917 | - $yes_no_values, |
|
918 | - $this->_cpt_model_obj->display_description() |
|
919 | - ); |
|
920 | - $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
921 | - 'display_ticket_selector', |
|
922 | - $yes_no_values, |
|
923 | - $this->_cpt_model_obj->display_ticket_selector(), |
|
924 | - '', |
|
925 | - '', |
|
926 | - false |
|
927 | - ); |
|
928 | - $template_args['EVT_default_registration_status'] = EEH_Form_Fields::select_input( |
|
929 | - 'EVT_default_registration_status', |
|
930 | - $default_reg_status_values, |
|
931 | - $this->_cpt_model_obj->default_registration_status() |
|
932 | - ); |
|
933 | - $template_args['additional_registration_options'] = apply_filters( |
|
934 | - 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
935 | - '', |
|
936 | - $template_args, |
|
937 | - $yes_no_values, |
|
938 | - $default_reg_status_values |
|
939 | - ); |
|
940 | - EEH_Template::display_template( |
|
941 | - EVENTS_CAF_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
942 | - $template_args |
|
943 | - ); |
|
944 | - } |
|
945 | - |
|
946 | - |
|
947 | - |
|
948 | - /** |
|
949 | - * wp_list_table_mods for caf |
|
950 | - * ============================ |
|
951 | - */ |
|
952 | - /** |
|
953 | - * hook into list table filters and provide filters for caffeinated list table |
|
954 | - * |
|
955 | - * @param array $old_filters any existing filters present |
|
956 | - * @param array $list_table_obj the list table object |
|
957 | - * @return array new filters |
|
958 | - */ |
|
959 | - public function list_table_filters($old_filters, $list_table_obj) |
|
960 | - { |
|
961 | - $filters = array(); |
|
962 | - // first month/year filters |
|
963 | - $filters[] = $this->espresso_event_months_dropdown(); |
|
964 | - $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
965 | - // active status dropdown |
|
966 | - if ($status !== 'draft') { |
|
967 | - $filters[] = $this->active_status_dropdown( |
|
968 | - isset($this->_req_data['active_status']) ? $this->_req_data['active_status'] : '' |
|
969 | - ); |
|
970 | - $filters[] = $this->venuesDropdown( |
|
971 | - isset($this->_req_data['venue']) ? $this->_req_data['venue'] : '' |
|
972 | - ); |
|
973 | - } |
|
974 | - // category filter |
|
975 | - $filters[] = $this->category_dropdown(); |
|
976 | - return array_merge($old_filters, $filters); |
|
977 | - } |
|
978 | - |
|
979 | - |
|
980 | - /** |
|
981 | - * espresso_event_months_dropdown |
|
982 | - * |
|
983 | - * @access public |
|
984 | - * @return string dropdown listing month/year selections for events. |
|
985 | - */ |
|
986 | - public function espresso_event_months_dropdown() |
|
987 | - { |
|
988 | - // what we need to do is get all PRIMARY datetimes for all events to filter on. |
|
989 | - // Note we need to include any other filters that are set! |
|
990 | - $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
991 | - // categories? |
|
992 | - $category = isset($this->_req_data['EVT_CAT']) && $this->_req_data['EVT_CAT'] > 0 |
|
993 | - ? $this->_req_data['EVT_CAT'] |
|
994 | - : null; |
|
995 | - // active status? |
|
996 | - $active_status = isset($this->_req_data['active_status']) ? $this->_req_data['active_status'] : null; |
|
997 | - $cur_date = isset($this->_req_data['month_range']) ? $this->_req_data['month_range'] : ''; |
|
998 | - return EEH_Form_Fields::generate_event_months_dropdown($cur_date, $status, $category, $active_status); |
|
999 | - } |
|
1000 | - |
|
1001 | - |
|
1002 | - /** |
|
1003 | - * returns a list of "active" statuses on the event |
|
1004 | - * |
|
1005 | - * @param string $current_value whatever the current active status is |
|
1006 | - * @return string |
|
1007 | - */ |
|
1008 | - public function active_status_dropdown($current_value = '') |
|
1009 | - { |
|
1010 | - $select_name = 'active_status'; |
|
1011 | - $values = array( |
|
1012 | - 'none' => esc_html__('Show Active/Inactive', 'event_espresso'), |
|
1013 | - 'active' => esc_html__('Active', 'event_espresso'), |
|
1014 | - 'upcoming' => esc_html__('Upcoming', 'event_espresso'), |
|
1015 | - 'expired' => esc_html__('Expired', 'event_espresso'), |
|
1016 | - 'inactive' => esc_html__('Inactive', 'event_espresso'), |
|
1017 | - ); |
|
1018 | - |
|
1019 | - return EEH_Form_Fields::select_input($select_name, $values, $current_value, '', 'wide'); |
|
1020 | - } |
|
1021 | - |
|
1022 | - /** |
|
1023 | - * returns a list of "venues" |
|
1024 | - * |
|
1025 | - * @param string $current_value whatever the current active status is |
|
1026 | - * @return string |
|
1027 | - */ |
|
1028 | - protected function venuesDropdown($current_value = '') |
|
1029 | - { |
|
1030 | - $select_name = 'venue'; |
|
1031 | - $values = array( |
|
1032 | - '' => esc_html__('All Venues', 'event_espresso'), |
|
1033 | - ); |
|
1034 | - // populate the list of venues. |
|
1035 | - $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1036 | - $venues = $venue_model->get_all(array('order_by' => array('VNU_name' => 'ASC'))); |
|
1037 | - |
|
1038 | - foreach ($venues as $venue) { |
|
1039 | - $values[ $venue->ID() ] = $venue->name(); |
|
1040 | - } |
|
1041 | - |
|
1042 | - return EEH_Form_Fields::select_input($select_name, $values, $current_value, '', 'wide'); |
|
1043 | - } |
|
1044 | - |
|
1045 | - |
|
1046 | - /** |
|
1047 | - * output a dropdown of the categories for the category filter on the event admin list table |
|
1048 | - * |
|
1049 | - * @access public |
|
1050 | - * @return string html |
|
1051 | - */ |
|
1052 | - public function category_dropdown() |
|
1053 | - { |
|
1054 | - $cur_cat = isset($this->_req_data['EVT_CAT']) ? $this->_req_data['EVT_CAT'] : -1; |
|
1055 | - return EEH_Form_Fields::generate_event_category_dropdown($cur_cat); |
|
1056 | - } |
|
1057 | - |
|
1058 | - |
|
1059 | - /** |
|
1060 | - * get total number of events today |
|
1061 | - * |
|
1062 | - * @access public |
|
1063 | - * @return int |
|
1064 | - * @throws EE_Error |
|
1065 | - */ |
|
1066 | - public function total_events_today() |
|
1067 | - { |
|
1068 | - $start = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1069 | - 'DTT_EVT_start', |
|
1070 | - date('Y-m-d') . ' 00:00:00', |
|
1071 | - 'Y-m-d H:i:s', |
|
1072 | - 'UTC' |
|
1073 | - ); |
|
1074 | - $end = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1075 | - 'DTT_EVT_start', |
|
1076 | - date('Y-m-d') . ' 23:59:59', |
|
1077 | - 'Y-m-d H:i:s', |
|
1078 | - 'UTC' |
|
1079 | - ); |
|
1080 | - $where = array( |
|
1081 | - 'Datetime.DTT_EVT_start' => array('BETWEEN', array($start, $end)), |
|
1082 | - ); |
|
1083 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
1084 | - return $count; |
|
1085 | - } |
|
1086 | - |
|
1087 | - |
|
1088 | - /** |
|
1089 | - * get total number of events this month |
|
1090 | - * |
|
1091 | - * @access public |
|
1092 | - * @return int |
|
1093 | - * @throws EE_Error |
|
1094 | - */ |
|
1095 | - public function total_events_this_month() |
|
1096 | - { |
|
1097 | - // Dates |
|
1098 | - $this_year_r = date('Y'); |
|
1099 | - $this_month_r = date('m'); |
|
1100 | - $days_this_month = date('t'); |
|
1101 | - $start = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1102 | - 'DTT_EVT_start', |
|
1103 | - $this_year_r . '-' . $this_month_r . '-01 00:00:00', |
|
1104 | - 'Y-m-d H:i:s', |
|
1105 | - 'UTC' |
|
1106 | - ); |
|
1107 | - $end = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1108 | - 'DTT_EVT_start', |
|
1109 | - $this_year_r . '-' . $this_month_r . '-' . $days_this_month . ' 23:59:59', |
|
1110 | - 'Y-m-d H:i:s', |
|
1111 | - 'UTC' |
|
1112 | - ); |
|
1113 | - $where = array( |
|
1114 | - 'Datetime.DTT_EVT_start' => array('BETWEEN', array($start, $end)), |
|
1115 | - ); |
|
1116 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
1117 | - return $count; |
|
1118 | - } |
|
1119 | - |
|
1120 | - |
|
1121 | - /** DEFAULT TICKETS STUFF **/ |
|
1122 | - |
|
1123 | - /** |
|
1124 | - * Output default tickets list table view. |
|
1125 | - */ |
|
1126 | - public function _tickets_overview_list_table() |
|
1127 | - { |
|
1128 | - $this->_search_btn_label = esc_html__('Tickets', 'event_espresso'); |
|
1129 | - $this->display_admin_list_table_page_with_no_sidebar(); |
|
1130 | - } |
|
1131 | - |
|
1132 | - |
|
1133 | - /** |
|
1134 | - * @param int $per_page |
|
1135 | - * @param bool $count |
|
1136 | - * @param bool $trashed |
|
1137 | - * @return \EE_Soft_Delete_Base_Class[]|int |
|
1138 | - */ |
|
1139 | - public function get_default_tickets($per_page = 10, $count = false, $trashed = false) |
|
1140 | - { |
|
1141 | - $orderby = empty($this->_req_data['orderby']) ? 'TKT_name' : $this->_req_data['orderby']; |
|
1142 | - $order = empty($this->_req_data['order']) ? 'ASC' : $this->_req_data['order']; |
|
1143 | - switch ($orderby) { |
|
1144 | - case 'TKT_name': |
|
1145 | - $orderby = array('TKT_name' => $order); |
|
1146 | - break; |
|
1147 | - case 'TKT_price': |
|
1148 | - $orderby = array('TKT_price' => $order); |
|
1149 | - break; |
|
1150 | - case 'TKT_uses': |
|
1151 | - $orderby = array('TKT_uses' => $order); |
|
1152 | - break; |
|
1153 | - case 'TKT_min': |
|
1154 | - $orderby = array('TKT_min' => $order); |
|
1155 | - break; |
|
1156 | - case 'TKT_max': |
|
1157 | - $orderby = array('TKT_max' => $order); |
|
1158 | - break; |
|
1159 | - case 'TKT_qty': |
|
1160 | - $orderby = array('TKT_qty' => $order); |
|
1161 | - break; |
|
1162 | - } |
|
1163 | - $current_page = isset($this->_req_data['paged']) && ! empty($this->_req_data['paged']) |
|
1164 | - ? $this->_req_data['paged'] |
|
1165 | - : 1; |
|
1166 | - $per_page = isset($this->_req_data['perpage']) && ! empty($this->_req_data['perpage']) |
|
1167 | - ? $this->_req_data['perpage'] |
|
1168 | - : $per_page; |
|
1169 | - $_where = array( |
|
1170 | - 'TKT_is_default' => 1, |
|
1171 | - 'TKT_deleted' => $trashed, |
|
1172 | - ); |
|
1173 | - $offset = ($current_page - 1) * $per_page; |
|
1174 | - $limit = array($offset, $per_page); |
|
1175 | - if (isset($this->_req_data['s'])) { |
|
1176 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
1177 | - $_where['OR'] = array( |
|
1178 | - 'TKT_name' => array('LIKE', $sstr), |
|
1179 | - 'TKT_description' => array('LIKE', $sstr), |
|
1180 | - ); |
|
1181 | - } |
|
1182 | - $query_params = array( |
|
1183 | - $_where, |
|
1184 | - 'order_by' => $orderby, |
|
1185 | - 'limit' => $limit, |
|
1186 | - 'group_by' => 'TKT_ID', |
|
1187 | - ); |
|
1188 | - if ($count) { |
|
1189 | - return EEM_Ticket::instance()->count_deleted_and_undeleted(array($_where)); |
|
1190 | - } else { |
|
1191 | - return EEM_Ticket::instance()->get_all_deleted_and_undeleted($query_params); |
|
1192 | - } |
|
1193 | - } |
|
1194 | - |
|
1195 | - |
|
1196 | - /** |
|
1197 | - * @param bool $trash |
|
1198 | - * @throws EE_Error |
|
1199 | - */ |
|
1200 | - protected function _trash_or_restore_ticket($trash = false) |
|
1201 | - { |
|
1202 | - $success = 1; |
|
1203 | - $TKT = EEM_Ticket::instance(); |
|
1204 | - // checkboxes? |
|
1205 | - if (! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1206 | - // if array has more than one element then success message should be plural |
|
1207 | - $success = count($this->_req_data['checkbox']) > 1 ? 2 : 1; |
|
1208 | - // cycle thru the boxes |
|
1209 | - while (list($TKT_ID, $value) = each($this->_req_data['checkbox'])) { |
|
1210 | - if ($trash) { |
|
1211 | - if (! $TKT->delete_by_ID($TKT_ID)) { |
|
1212 | - $success = 0; |
|
1213 | - } |
|
1214 | - } else { |
|
1215 | - if (! $TKT->restore_by_ID($TKT_ID)) { |
|
1216 | - $success = 0; |
|
1217 | - } |
|
1218 | - } |
|
1219 | - } |
|
1220 | - } else { |
|
1221 | - // grab single id and trash |
|
1222 | - $TKT_ID = absint($this->_req_data['TKT_ID']); |
|
1223 | - if ($trash) { |
|
1224 | - if (! $TKT->delete_by_ID($TKT_ID)) { |
|
1225 | - $success = 0; |
|
1226 | - } |
|
1227 | - } else { |
|
1228 | - if (! $TKT->restore_by_ID($TKT_ID)) { |
|
1229 | - $success = 0; |
|
1230 | - } |
|
1231 | - } |
|
1232 | - } |
|
1233 | - $action_desc = $trash ? 'moved to the trash' : 'restored'; |
|
1234 | - $query_args = array( |
|
1235 | - 'action' => 'ticket_list_table', |
|
1236 | - 'status' => $trash ? '' : 'trashed', |
|
1237 | - ); |
|
1238 | - $this->_redirect_after_action($success, 'Tickets', $action_desc, $query_args); |
|
1239 | - } |
|
1240 | - |
|
1241 | - |
|
1242 | - /** |
|
1243 | - * Handles trashing default ticket. |
|
1244 | - */ |
|
1245 | - protected function _delete_ticket() |
|
1246 | - { |
|
1247 | - $success = 1; |
|
1248 | - // checkboxes? |
|
1249 | - if (! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1250 | - // if array has more than one element then success message should be plural |
|
1251 | - $success = count($this->_req_data['checkbox']) > 1 ? 2 : 1; |
|
1252 | - // cycle thru the boxes |
|
1253 | - while (list($TKT_ID, $value) = each($this->_req_data['checkbox'])) { |
|
1254 | - // delete |
|
1255 | - if (! $this->_delete_the_ticket($TKT_ID)) { |
|
1256 | - $success = 0; |
|
1257 | - } |
|
1258 | - } |
|
1259 | - } else { |
|
1260 | - // grab single id and trash |
|
1261 | - $TKT_ID = absint($this->_req_data['TKT_ID']); |
|
1262 | - if (! $this->_delete_the_ticket($TKT_ID)) { |
|
1263 | - $success = 0; |
|
1264 | - } |
|
1265 | - } |
|
1266 | - $action_desc = 'deleted'; |
|
1267 | - $query_args = array( |
|
1268 | - 'action' => 'ticket_list_table', |
|
1269 | - 'status' => 'trashed', |
|
1270 | - ); |
|
1271 | - // fail safe. If the default ticket count === 1 then we need to redirect to event overview. |
|
1272 | - if (EEM_Ticket::instance()->count_deleted_and_undeleted( |
|
1273 | - array(array('TKT_is_default' => 1)), |
|
1274 | - 'TKT_ID', |
|
1275 | - true |
|
1276 | - ) |
|
1277 | - ) { |
|
1278 | - $query_args = array(); |
|
1279 | - } |
|
1280 | - $this->_redirect_after_action($success, 'Tickets', $action_desc, $query_args); |
|
1281 | - } |
|
1282 | - |
|
1283 | - |
|
1284 | - /** |
|
1285 | - * @param int $TKT_ID |
|
1286 | - * @return bool|int |
|
1287 | - * @throws EE_Error |
|
1288 | - */ |
|
1289 | - protected function _delete_the_ticket($TKT_ID) |
|
1290 | - { |
|
1291 | - $tkt = EEM_Ticket::instance()->get_one_by_ID($TKT_ID); |
|
1292 | - $tkt->_remove_relations('Datetime'); |
|
1293 | - // delete all related prices first |
|
1294 | - $tkt->delete_related_permanently('Price'); |
|
1295 | - return $tkt->delete_permanently(); |
|
1296 | - } |
|
19 | + /** |
|
20 | + * Extend_Events_Admin_Page constructor. |
|
21 | + * |
|
22 | + * @param bool $routing |
|
23 | + */ |
|
24 | + public function __construct($routing = true) |
|
25 | + { |
|
26 | + parent::__construct($routing); |
|
27 | + if (! defined('EVENTS_CAF_TEMPLATE_PATH')) { |
|
28 | + define('EVENTS_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'events/templates/'); |
|
29 | + define('EVENTS_CAF_ASSETS', EE_CORE_CAF_ADMIN_EXTEND . 'events/assets/'); |
|
30 | + define('EVENTS_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'events/assets/'); |
|
31 | + } |
|
32 | + } |
|
33 | + |
|
34 | + |
|
35 | + /** |
|
36 | + * Sets routes. |
|
37 | + */ |
|
38 | + protected function _extend_page_config() |
|
39 | + { |
|
40 | + $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'events'; |
|
41 | + // is there a evt_id in the request? |
|
42 | + $evt_id = ! empty($this->_req_data['EVT_ID']) && ! is_array($this->_req_data['EVT_ID']) |
|
43 | + ? $this->_req_data['EVT_ID'] |
|
44 | + : 0; |
|
45 | + $evt_id = ! empty($this->_req_data['post']) ? $this->_req_data['post'] : $evt_id; |
|
46 | + // tkt_id? |
|
47 | + $tkt_id = ! empty($this->_req_data['TKT_ID']) && ! is_array($this->_req_data['TKT_ID']) |
|
48 | + ? $this->_req_data['TKT_ID'] |
|
49 | + : 0; |
|
50 | + $new_page_routes = array( |
|
51 | + 'duplicate_event' => array( |
|
52 | + 'func' => '_duplicate_event', |
|
53 | + 'capability' => 'ee_edit_event', |
|
54 | + 'obj_id' => $evt_id, |
|
55 | + 'noheader' => true, |
|
56 | + ), |
|
57 | + 'ticket_list_table' => array( |
|
58 | + 'func' => '_tickets_overview_list_table', |
|
59 | + 'capability' => 'ee_read_default_tickets', |
|
60 | + ), |
|
61 | + 'trash_ticket' => array( |
|
62 | + 'func' => '_trash_or_restore_ticket', |
|
63 | + 'capability' => 'ee_delete_default_ticket', |
|
64 | + 'obj_id' => $tkt_id, |
|
65 | + 'noheader' => true, |
|
66 | + 'args' => array('trash' => true), |
|
67 | + ), |
|
68 | + 'trash_tickets' => array( |
|
69 | + 'func' => '_trash_or_restore_ticket', |
|
70 | + 'capability' => 'ee_delete_default_tickets', |
|
71 | + 'noheader' => true, |
|
72 | + 'args' => array('trash' => true), |
|
73 | + ), |
|
74 | + 'restore_ticket' => array( |
|
75 | + 'func' => '_trash_or_restore_ticket', |
|
76 | + 'capability' => 'ee_delete_default_ticket', |
|
77 | + 'obj_id' => $tkt_id, |
|
78 | + 'noheader' => true, |
|
79 | + ), |
|
80 | + 'restore_tickets' => array( |
|
81 | + 'func' => '_trash_or_restore_ticket', |
|
82 | + 'capability' => 'ee_delete_default_tickets', |
|
83 | + 'noheader' => true, |
|
84 | + ), |
|
85 | + 'delete_ticket' => array( |
|
86 | + 'func' => '_delete_ticket', |
|
87 | + 'capability' => 'ee_delete_default_ticket', |
|
88 | + 'obj_id' => $tkt_id, |
|
89 | + 'noheader' => true, |
|
90 | + ), |
|
91 | + 'delete_tickets' => array( |
|
92 | + 'func' => '_delete_ticket', |
|
93 | + 'capability' => 'ee_delete_default_tickets', |
|
94 | + 'noheader' => true, |
|
95 | + ), |
|
96 | + 'import_page' => array( |
|
97 | + 'func' => '_import_page', |
|
98 | + 'capability' => 'import', |
|
99 | + ), |
|
100 | + 'import' => array( |
|
101 | + 'func' => '_import_events', |
|
102 | + 'capability' => 'import', |
|
103 | + 'noheader' => true, |
|
104 | + ), |
|
105 | + 'import_events' => array( |
|
106 | + 'func' => '_import_events', |
|
107 | + 'capability' => 'import', |
|
108 | + 'noheader' => true, |
|
109 | + ), |
|
110 | + 'export_events' => array( |
|
111 | + 'func' => '_events_export', |
|
112 | + 'capability' => 'export', |
|
113 | + 'noheader' => true, |
|
114 | + ), |
|
115 | + 'export_categories' => array( |
|
116 | + 'func' => '_categories_export', |
|
117 | + 'capability' => 'export', |
|
118 | + 'noheader' => true, |
|
119 | + ), |
|
120 | + 'sample_export_file' => array( |
|
121 | + 'func' => '_sample_export_file', |
|
122 | + 'capability' => 'export', |
|
123 | + 'noheader' => true, |
|
124 | + ), |
|
125 | + 'update_template_settings' => array( |
|
126 | + 'func' => '_update_template_settings', |
|
127 | + 'capability' => 'manage_options', |
|
128 | + 'noheader' => true, |
|
129 | + ), |
|
130 | + ); |
|
131 | + $this->_page_routes = array_merge($this->_page_routes, $new_page_routes); |
|
132 | + // partial route/config override |
|
133 | + $this->_page_config['import_events']['metaboxes'] = $this->_default_espresso_metaboxes; |
|
134 | + $this->_page_config['create_new']['metaboxes'][] = '_premium_event_editor_meta_boxes'; |
|
135 | + $this->_page_config['create_new']['qtips'][] = 'EE_Event_Editor_Tips'; |
|
136 | + $this->_page_config['edit']['qtips'][] = 'EE_Event_Editor_Tips'; |
|
137 | + $this->_page_config['edit']['metaboxes'][] = '_premium_event_editor_meta_boxes'; |
|
138 | + $this->_page_config['default']['list_table'] = 'Extend_Events_Admin_List_Table'; |
|
139 | + // add tickets tab but only if there are more than one default ticket! |
|
140 | + $tkt_count = EEM_Ticket::instance()->count_deleted_and_undeleted( |
|
141 | + array(array('TKT_is_default' => 1)), |
|
142 | + 'TKT_ID', |
|
143 | + true |
|
144 | + ); |
|
145 | + if ($tkt_count > 1) { |
|
146 | + $new_page_config = array( |
|
147 | + 'ticket_list_table' => array( |
|
148 | + 'nav' => array( |
|
149 | + 'label' => esc_html__('Default Tickets', 'event_espresso'), |
|
150 | + 'order' => 60, |
|
151 | + ), |
|
152 | + 'list_table' => 'Tickets_List_Table', |
|
153 | + 'require_nonce' => false, |
|
154 | + ), |
|
155 | + ); |
|
156 | + } |
|
157 | + // template settings |
|
158 | + $new_page_config['template_settings'] = array( |
|
159 | + 'nav' => array( |
|
160 | + 'label' => esc_html__('Templates', 'event_espresso'), |
|
161 | + 'order' => 30, |
|
162 | + ), |
|
163 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
164 | + 'help_tabs' => array( |
|
165 | + 'general_settings_templates_help_tab' => array( |
|
166 | + 'title' => esc_html__('Templates', 'event_espresso'), |
|
167 | + 'filename' => 'general_settings_templates', |
|
168 | + ), |
|
169 | + ), |
|
170 | + 'help_tour' => array('Templates_Help_Tour'), |
|
171 | + 'require_nonce' => false, |
|
172 | + ); |
|
173 | + $this->_page_config = array_merge($this->_page_config, $new_page_config); |
|
174 | + // add filters and actions |
|
175 | + // modifying _views |
|
176 | + add_filter( |
|
177 | + 'FHEE_event_datetime_metabox_add_additional_date_time_template', |
|
178 | + array($this, 'add_additional_datetime_button'), |
|
179 | + 10, |
|
180 | + 2 |
|
181 | + ); |
|
182 | + add_filter( |
|
183 | + 'FHEE_event_datetime_metabox_clone_button_template', |
|
184 | + array($this, 'add_datetime_clone_button'), |
|
185 | + 10, |
|
186 | + 2 |
|
187 | + ); |
|
188 | + add_filter( |
|
189 | + 'FHEE_event_datetime_metabox_timezones_template', |
|
190 | + array($this, 'datetime_timezones_template'), |
|
191 | + 10, |
|
192 | + 2 |
|
193 | + ); |
|
194 | + // filters for event list table |
|
195 | + add_filter('FHEE__Extend_Events_Admin_List_Table__filters', array($this, 'list_table_filters'), 10, 2); |
|
196 | + add_filter( |
|
197 | + 'FHEE__Events_Admin_List_Table__column_actions__action_links', |
|
198 | + array($this, 'extra_list_table_actions'), |
|
199 | + 10, |
|
200 | + 2 |
|
201 | + ); |
|
202 | + // legend item |
|
203 | + add_filter('FHEE__Events_Admin_Page___event_legend_items__items', array($this, 'additional_legend_items')); |
|
204 | + add_action('admin_init', array($this, 'admin_init')); |
|
205 | + } |
|
206 | + |
|
207 | + |
|
208 | + /** |
|
209 | + * admin_init |
|
210 | + */ |
|
211 | + public function admin_init() |
|
212 | + { |
|
213 | + EE_Registry::$i18n_js_strings = array_merge( |
|
214 | + EE_Registry::$i18n_js_strings, |
|
215 | + array( |
|
216 | + 'image_confirm' => esc_html__( |
|
217 | + 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
218 | + 'event_espresso' |
|
219 | + ), |
|
220 | + 'event_starts_on' => esc_html__('Event Starts on', 'event_espresso'), |
|
221 | + 'event_ends_on' => esc_html__('Event Ends on', 'event_espresso'), |
|
222 | + 'event_datetime_actions' => esc_html__('Actions', 'event_espresso'), |
|
223 | + 'event_clone_dt_msg' => esc_html__('Clone this Event Date and Time', 'event_espresso'), |
|
224 | + 'remove_event_dt_msg' => esc_html__('Remove this Event Time', 'event_espresso'), |
|
225 | + ) |
|
226 | + ); |
|
227 | + } |
|
228 | + |
|
229 | + |
|
230 | + /** |
|
231 | + * Add per page screen options to the default ticket list table view. |
|
232 | + */ |
|
233 | + protected function _add_screen_options_ticket_list_table() |
|
234 | + { |
|
235 | + $this->_per_page_screen_option(); |
|
236 | + } |
|
237 | + |
|
238 | + |
|
239 | + /** |
|
240 | + * @param string $return |
|
241 | + * @param int $id |
|
242 | + * @param string $new_title |
|
243 | + * @param string $new_slug |
|
244 | + * @return string |
|
245 | + */ |
|
246 | + public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
247 | + { |
|
248 | + $return = parent::extra_permalink_field_buttons($return, $id, $new_title, $new_slug); |
|
249 | + // make sure this is only when editing |
|
250 | + if (! empty($id)) { |
|
251 | + $href = EE_Admin_Page::add_query_args_and_nonce( |
|
252 | + array('action' => 'duplicate_event', 'EVT_ID' => $id), |
|
253 | + $this->_admin_base_url |
|
254 | + ); |
|
255 | + $title = esc_attr__('Duplicate Event', 'event_espresso'); |
|
256 | + $return .= '<a href="' |
|
257 | + . $href |
|
258 | + . '" title="' |
|
259 | + . $title |
|
260 | + . '" id="ee-duplicate-event-button" class="button button-small" value="duplicate_event">' |
|
261 | + . $title |
|
262 | + . '</a>'; |
|
263 | + } |
|
264 | + return $return; |
|
265 | + } |
|
266 | + |
|
267 | + |
|
268 | + /** |
|
269 | + * Set the list table views for the default ticket list table view. |
|
270 | + */ |
|
271 | + public function _set_list_table_views_ticket_list_table() |
|
272 | + { |
|
273 | + $this->_views = array( |
|
274 | + 'all' => array( |
|
275 | + 'slug' => 'all', |
|
276 | + 'label' => esc_html__('All', 'event_espresso'), |
|
277 | + 'count' => 0, |
|
278 | + 'bulk_action' => array( |
|
279 | + 'trash_tickets' => esc_html__('Move to Trash', 'event_espresso'), |
|
280 | + ), |
|
281 | + ), |
|
282 | + 'trashed' => array( |
|
283 | + 'slug' => 'trashed', |
|
284 | + 'label' => esc_html__('Trash', 'event_espresso'), |
|
285 | + 'count' => 0, |
|
286 | + 'bulk_action' => array( |
|
287 | + 'restore_tickets' => esc_html__('Restore from Trash', 'event_espresso'), |
|
288 | + 'delete_tickets' => esc_html__('Delete Permanently', 'event_espresso'), |
|
289 | + ), |
|
290 | + ), |
|
291 | + ); |
|
292 | + } |
|
293 | + |
|
294 | + |
|
295 | + /** |
|
296 | + * Enqueue scripts and styles for the event editor. |
|
297 | + */ |
|
298 | + public function load_scripts_styles_edit() |
|
299 | + { |
|
300 | + wp_register_script( |
|
301 | + 'ee-event-editor-heartbeat', |
|
302 | + EVENTS_CAF_ASSETS_URL . 'event-editor-heartbeat.js', |
|
303 | + array('ee_admin_js', 'heartbeat'), |
|
304 | + EVENT_ESPRESSO_VERSION, |
|
305 | + true |
|
306 | + ); |
|
307 | + wp_enqueue_script('ee-accounting'); |
|
308 | + // styles |
|
309 | + wp_enqueue_style('espresso-ui-theme'); |
|
310 | + wp_enqueue_script('event_editor_js'); |
|
311 | + wp_enqueue_script('ee-event-editor-heartbeat'); |
|
312 | + } |
|
313 | + |
|
314 | + |
|
315 | + /** |
|
316 | + * Returns template for the additional datetime. |
|
317 | + * |
|
318 | + * @param $template |
|
319 | + * @param $template_args |
|
320 | + * @return mixed |
|
321 | + * @throws DomainException |
|
322 | + */ |
|
323 | + public function add_additional_datetime_button($template, $template_args) |
|
324 | + { |
|
325 | + return EEH_Template::display_template( |
|
326 | + EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_add_additional_time.template.php', |
|
327 | + $template_args, |
|
328 | + true |
|
329 | + ); |
|
330 | + } |
|
331 | + |
|
332 | + |
|
333 | + /** |
|
334 | + * Returns the template for cloning a datetime. |
|
335 | + * |
|
336 | + * @param $template |
|
337 | + * @param $template_args |
|
338 | + * @return mixed |
|
339 | + * @throws DomainException |
|
340 | + */ |
|
341 | + public function add_datetime_clone_button($template, $template_args) |
|
342 | + { |
|
343 | + return EEH_Template::display_template( |
|
344 | + EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_metabox_clone_button.template.php', |
|
345 | + $template_args, |
|
346 | + true |
|
347 | + ); |
|
348 | + } |
|
349 | + |
|
350 | + |
|
351 | + /** |
|
352 | + * Returns the template for datetime timezones. |
|
353 | + * |
|
354 | + * @param $template |
|
355 | + * @param $template_args |
|
356 | + * @return mixed |
|
357 | + * @throws DomainException |
|
358 | + */ |
|
359 | + public function datetime_timezones_template($template, $template_args) |
|
360 | + { |
|
361 | + return EEH_Template::display_template( |
|
362 | + EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_timezones.template.php', |
|
363 | + $template_args, |
|
364 | + true |
|
365 | + ); |
|
366 | + } |
|
367 | + |
|
368 | + |
|
369 | + /** |
|
370 | + * Sets the views for the default list table view. |
|
371 | + */ |
|
372 | + protected function _set_list_table_views_default() |
|
373 | + { |
|
374 | + parent::_set_list_table_views_default(); |
|
375 | + $new_views = array( |
|
376 | + 'today' => array( |
|
377 | + 'slug' => 'today', |
|
378 | + 'label' => esc_html__('Today', 'event_espresso'), |
|
379 | + 'count' => $this->total_events_today(), |
|
380 | + 'bulk_action' => array( |
|
381 | + 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
382 | + ), |
|
383 | + ), |
|
384 | + 'month' => array( |
|
385 | + 'slug' => 'month', |
|
386 | + 'label' => esc_html__('This Month', 'event_espresso'), |
|
387 | + 'count' => $this->total_events_this_month(), |
|
388 | + 'bulk_action' => array( |
|
389 | + 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
390 | + ), |
|
391 | + ), |
|
392 | + ); |
|
393 | + $this->_views = array_merge($this->_views, $new_views); |
|
394 | + } |
|
395 | + |
|
396 | + |
|
397 | + /** |
|
398 | + * Returns the extra action links for the default list table view. |
|
399 | + * |
|
400 | + * @param array $action_links |
|
401 | + * @param \EE_Event $event |
|
402 | + * @return array |
|
403 | + * @throws EE_Error |
|
404 | + */ |
|
405 | + public function extra_list_table_actions(array $action_links, \EE_Event $event) |
|
406 | + { |
|
407 | + if (EE_Registry::instance()->CAP->current_user_can( |
|
408 | + 'ee_read_registrations', |
|
409 | + 'espresso_registrations_reports', |
|
410 | + $event->ID() |
|
411 | + ) |
|
412 | + ) { |
|
413 | + $reports_query_args = array( |
|
414 | + 'action' => 'reports', |
|
415 | + 'EVT_ID' => $event->ID(), |
|
416 | + ); |
|
417 | + $reports_link = EE_Admin_Page::add_query_args_and_nonce($reports_query_args, REG_ADMIN_URL); |
|
418 | + $action_links[] = '<a href="' |
|
419 | + . $reports_link |
|
420 | + . '" title="' |
|
421 | + . esc_attr__('View Report', 'event_espresso') |
|
422 | + . '"><div class="dashicons dashicons-chart-bar"></div></a>' |
|
423 | + . "\n\t"; |
|
424 | + } |
|
425 | + if (EE_Registry::instance()->CAP->current_user_can('ee_read_global_messages', 'view_filtered_messages')) { |
|
426 | + EE_Registry::instance()->load_helper('MSG_Template'); |
|
427 | + $action_links[] = EEH_MSG_Template::get_message_action_link( |
|
428 | + 'see_notifications_for', |
|
429 | + null, |
|
430 | + array('EVT_ID' => $event->ID()) |
|
431 | + ); |
|
432 | + } |
|
433 | + return $action_links; |
|
434 | + } |
|
435 | + |
|
436 | + |
|
437 | + /** |
|
438 | + * @param $items |
|
439 | + * @return mixed |
|
440 | + */ |
|
441 | + public function additional_legend_items($items) |
|
442 | + { |
|
443 | + if (EE_Registry::instance()->CAP->current_user_can( |
|
444 | + 'ee_read_registrations', |
|
445 | + 'espresso_registrations_reports' |
|
446 | + ) |
|
447 | + ) { |
|
448 | + $items['reports'] = array( |
|
449 | + 'class' => 'dashicons dashicons-chart-bar', |
|
450 | + 'desc' => esc_html__('Event Reports', 'event_espresso'), |
|
451 | + ); |
|
452 | + } |
|
453 | + if (EE_Registry::instance()->CAP->current_user_can('ee_read_global_messages', 'view_filtered_messages')) { |
|
454 | + $related_for_icon = EEH_MSG_Template::get_message_action_icon('see_notifications_for'); |
|
455 | + if (isset($related_for_icon['css_class']) && isset($related_for_icon['label'])) { |
|
456 | + $items['view_related_messages'] = array( |
|
457 | + 'class' => $related_for_icon['css_class'], |
|
458 | + 'desc' => $related_for_icon['label'], |
|
459 | + ); |
|
460 | + } |
|
461 | + } |
|
462 | + return $items; |
|
463 | + } |
|
464 | + |
|
465 | + |
|
466 | + /** |
|
467 | + * This is the callback method for the duplicate event route |
|
468 | + * Method looks for 'EVT_ID' in the request and retrieves that event and its details and duplicates them |
|
469 | + * into a new event. We add a hook so that any plugins that add extra event details can hook into this |
|
470 | + * action. Note that the dupe will have **DUPLICATE** as its title and slug. |
|
471 | + * After duplication the redirect is to the new event edit page. |
|
472 | + * |
|
473 | + * @return void |
|
474 | + * @access protected |
|
475 | + * @throws EE_Error If EE_Event is not available with given ID |
|
476 | + */ |
|
477 | + protected function _duplicate_event() |
|
478 | + { |
|
479 | + // first make sure the ID for the event is in the request. |
|
480 | + // If it isn't then we need to bail and redirect back to overview list table (cause how did we get here?) |
|
481 | + if (! isset($this->_req_data['EVT_ID'])) { |
|
482 | + EE_Error::add_error( |
|
483 | + esc_html__( |
|
484 | + 'In order to duplicate an event an Event ID is required. None was given.', |
|
485 | + 'event_espresso' |
|
486 | + ), |
|
487 | + __FILE__, |
|
488 | + __FUNCTION__, |
|
489 | + __LINE__ |
|
490 | + ); |
|
491 | + $this->_redirect_after_action(false, '', '', array(), true); |
|
492 | + return; |
|
493 | + } |
|
494 | + // k we've got EVT_ID so let's use that to get the event we'll duplicate |
|
495 | + $orig_event = EEM_Event::instance()->get_one_by_ID($this->_req_data['EVT_ID']); |
|
496 | + if (! $orig_event instanceof EE_Event) { |
|
497 | + throw new EE_Error( |
|
498 | + sprintf( |
|
499 | + esc_html__('An EE_Event object could not be retrieved for the given ID (%s)', 'event_espresso'), |
|
500 | + $this->_req_data['EVT_ID'] |
|
501 | + ) |
|
502 | + ); |
|
503 | + } |
|
504 | + // k now let's clone the $orig_event before getting relations |
|
505 | + $new_event = clone $orig_event; |
|
506 | + // original datetimes |
|
507 | + $orig_datetimes = $orig_event->get_many_related('Datetime'); |
|
508 | + // other original relations |
|
509 | + $orig_ven = $orig_event->get_many_related('Venue'); |
|
510 | + // reset the ID and modify other details to make it clear this is a dupe |
|
511 | + $new_event->set('EVT_ID', 0); |
|
512 | + $new_name = $new_event->name() . ' ' . esc_html__('**DUPLICATE**', 'event_espresso'); |
|
513 | + $new_event->set('EVT_name', $new_name); |
|
514 | + $new_event->set( |
|
515 | + 'EVT_slug', |
|
516 | + wp_unique_post_slug( |
|
517 | + sanitize_title($orig_event->name()), |
|
518 | + 0, |
|
519 | + 'publish', |
|
520 | + 'espresso_events', |
|
521 | + 0 |
|
522 | + ) |
|
523 | + ); |
|
524 | + $new_event->set('status', 'draft'); |
|
525 | + // duplicate discussion settings |
|
526 | + $new_event->set('comment_status', $orig_event->get('comment_status')); |
|
527 | + $new_event->set('ping_status', $orig_event->get('ping_status')); |
|
528 | + // save the new event |
|
529 | + $new_event->save(); |
|
530 | + // venues |
|
531 | + foreach ($orig_ven as $ven) { |
|
532 | + $new_event->_add_relation_to($ven, 'Venue'); |
|
533 | + } |
|
534 | + $new_event->save(); |
|
535 | + // now we need to get the question group relations and handle that |
|
536 | + // first primary question groups |
|
537 | + $orig_primary_qgs = $orig_event->get_many_related( |
|
538 | + 'Question_Group', |
|
539 | + [['Event_Question_Group.EQG_primary' => true]] |
|
540 | + ); |
|
541 | + if (! empty($orig_primary_qgs)) { |
|
542 | + foreach ($orig_primary_qgs as $id => $obj) { |
|
543 | + if ($obj instanceof EE_Question_Group) { |
|
544 | + $new_event->_add_relation_to($obj, 'Question_Group', ['EQG_primary' => true]); |
|
545 | + } |
|
546 | + } |
|
547 | + } |
|
548 | + // next additional attendee question groups |
|
549 | + $orig_additional_qgs = $orig_event->get_many_related( |
|
550 | + 'Question_Group', |
|
551 | + [['Event_Question_Group.EQG_additional' => true]] |
|
552 | + ); |
|
553 | + if (! empty($orig_additional_qgs)) { |
|
554 | + foreach ($orig_additional_qgs as $id => $obj) { |
|
555 | + if ($obj instanceof EE_Question_Group) { |
|
556 | + $new_event->_add_relation_to($obj, 'Question_Group', ['EQG_additional' => true]); |
|
557 | + } |
|
558 | + } |
|
559 | + } |
|
560 | + |
|
561 | + $new_event->save(); |
|
562 | + |
|
563 | + // k now that we have the new event saved we can loop through the datetimes and start adding relations. |
|
564 | + $cloned_tickets = array(); |
|
565 | + foreach ($orig_datetimes as $orig_dtt) { |
|
566 | + if (! $orig_dtt instanceof EE_Datetime) { |
|
567 | + continue; |
|
568 | + } |
|
569 | + $new_dtt = clone $orig_dtt; |
|
570 | + $orig_tkts = $orig_dtt->tickets(); |
|
571 | + // save new dtt then add to event |
|
572 | + $new_dtt->set('DTT_ID', 0); |
|
573 | + $new_dtt->set('DTT_sold', 0); |
|
574 | + $new_dtt->set_reserved(0); |
|
575 | + $new_dtt->save(); |
|
576 | + $new_event->_add_relation_to($new_dtt, 'Datetime'); |
|
577 | + $new_event->save(); |
|
578 | + // now let's get the ticket relations setup. |
|
579 | + foreach ((array) $orig_tkts as $orig_tkt) { |
|
580 | + // it's possible a datetime will have no tickets so let's verify we HAVE a ticket first. |
|
581 | + if (! $orig_tkt instanceof EE_Ticket) { |
|
582 | + continue; |
|
583 | + } |
|
584 | + // is this ticket archived? If it is then let's skip |
|
585 | + if ($orig_tkt->get('TKT_deleted')) { |
|
586 | + continue; |
|
587 | + } |
|
588 | + // does this original ticket already exist in the clone_tickets cache? |
|
589 | + // If so we'll just use the new ticket from it. |
|
590 | + if (isset($cloned_tickets[ $orig_tkt->ID() ])) { |
|
591 | + $new_tkt = $cloned_tickets[ $orig_tkt->ID() ]; |
|
592 | + } else { |
|
593 | + $new_tkt = clone $orig_tkt; |
|
594 | + // get relations on the $orig_tkt that we need to setup. |
|
595 | + $orig_prices = $orig_tkt->prices(); |
|
596 | + $new_tkt->set('TKT_ID', 0); |
|
597 | + $new_tkt->set('TKT_sold', 0); |
|
598 | + $new_tkt->set('TKT_reserved', 0); |
|
599 | + $new_tkt->save(); // make sure new ticket has ID. |
|
600 | + // price relations on new ticket need to be setup. |
|
601 | + foreach ($orig_prices as $orig_price) { |
|
602 | + $new_price = clone $orig_price; |
|
603 | + $new_price->set('PRC_ID', 0); |
|
604 | + $new_price->save(); |
|
605 | + $new_tkt->_add_relation_to($new_price, 'Price'); |
|
606 | + $new_tkt->save(); |
|
607 | + } |
|
608 | + |
|
609 | + do_action( |
|
610 | + 'AHEE__Extend_Events_Admin_Page___duplicate_event__duplicate_ticket__after', |
|
611 | + $orig_tkt, |
|
612 | + $new_tkt, |
|
613 | + $orig_prices, |
|
614 | + $orig_event, |
|
615 | + $orig_dtt, |
|
616 | + $new_dtt |
|
617 | + ); |
|
618 | + } |
|
619 | + // k now we can add the new ticket as a relation to the new datetime |
|
620 | + // and make sure its added to our cached $cloned_tickets array |
|
621 | + // for use with later datetimes that have the same ticket. |
|
622 | + $new_dtt->_add_relation_to($new_tkt, 'Ticket'); |
|
623 | + $new_dtt->save(); |
|
624 | + $cloned_tickets[ $orig_tkt->ID() ] = $new_tkt; |
|
625 | + } |
|
626 | + } |
|
627 | + // clone taxonomy information |
|
628 | + $taxonomies_to_clone_with = apply_filters( |
|
629 | + 'FHEE__Extend_Events_Admin_Page___duplicate_event__taxonomies_to_clone', |
|
630 | + array('espresso_event_categories', 'espresso_event_type', 'post_tag') |
|
631 | + ); |
|
632 | + // get terms for original event (notice) |
|
633 | + $orig_terms = wp_get_object_terms($orig_event->ID(), $taxonomies_to_clone_with); |
|
634 | + // loop through terms and add them to new event. |
|
635 | + foreach ($orig_terms as $term) { |
|
636 | + wp_set_object_terms($new_event->ID(), $term->term_id, $term->taxonomy, true); |
|
637 | + } |
|
638 | + |
|
639 | + // duplicate other core WP_Post items for this event. |
|
640 | + // post thumbnail (feature image). |
|
641 | + $feature_image_id = get_post_thumbnail_id($orig_event->ID()); |
|
642 | + if ($feature_image_id) { |
|
643 | + update_post_meta($new_event->ID(), '_thumbnail_id', $feature_image_id); |
|
644 | + } |
|
645 | + |
|
646 | + // duplicate page_template setting |
|
647 | + $page_template = get_post_meta($orig_event->ID(), '_wp_page_template', true); |
|
648 | + if ($page_template) { |
|
649 | + update_post_meta($new_event->ID(), '_wp_page_template', $page_template); |
|
650 | + } |
|
651 | + |
|
652 | + do_action('AHEE__Extend_Events_Admin_Page___duplicate_event__after', $new_event, $orig_event); |
|
653 | + // now let's redirect to the edit page for this duplicated event if we have a new event id. |
|
654 | + if ($new_event->ID()) { |
|
655 | + $redirect_args = array( |
|
656 | + 'post' => $new_event->ID(), |
|
657 | + 'action' => 'edit', |
|
658 | + ); |
|
659 | + EE_Error::add_success( |
|
660 | + esc_html__( |
|
661 | + 'Event successfully duplicated. Please review the details below and make any necessary edits', |
|
662 | + 'event_espresso' |
|
663 | + ) |
|
664 | + ); |
|
665 | + } else { |
|
666 | + $redirect_args = array( |
|
667 | + 'action' => 'default', |
|
668 | + ); |
|
669 | + EE_Error::add_error( |
|
670 | + esc_html__('Not able to duplicate event. Something went wrong.', 'event_espresso'), |
|
671 | + __FILE__, |
|
672 | + __FUNCTION__, |
|
673 | + __LINE__ |
|
674 | + ); |
|
675 | + } |
|
676 | + $this->_redirect_after_action(false, '', '', $redirect_args, true); |
|
677 | + } |
|
678 | + |
|
679 | + |
|
680 | + /** |
|
681 | + * Generates output for the import page. |
|
682 | + * |
|
683 | + * @throws DomainException |
|
684 | + */ |
|
685 | + protected function _import_page() |
|
686 | + { |
|
687 | + $title = esc_html__('Import', 'event_espresso'); |
|
688 | + $intro = esc_html__( |
|
689 | + 'If you have a previously exported Event Espresso 4 information in a Comma Separated Value (CSV) file format, you can upload the file here: ', |
|
690 | + 'event_espresso' |
|
691 | + ); |
|
692 | + $form_url = EVENTS_ADMIN_URL; |
|
693 | + $action = 'import_events'; |
|
694 | + $type = 'csv'; |
|
695 | + $this->_template_args['form'] = EE_Import::instance()->upload_form( |
|
696 | + $title, |
|
697 | + $intro, |
|
698 | + $form_url, |
|
699 | + $action, |
|
700 | + $type |
|
701 | + ); |
|
702 | + $this->_template_args['sample_file_link'] = EE_Admin_Page::add_query_args_and_nonce( |
|
703 | + array('action' => 'sample_export_file'), |
|
704 | + $this->_admin_base_url |
|
705 | + ); |
|
706 | + $content = EEH_Template::display_template( |
|
707 | + EVENTS_CAF_TEMPLATE_PATH . 'import_page.template.php', |
|
708 | + $this->_template_args, |
|
709 | + true |
|
710 | + ); |
|
711 | + $this->_template_args['admin_page_content'] = $content; |
|
712 | + $this->display_admin_page_with_sidebar(); |
|
713 | + } |
|
714 | + |
|
715 | + |
|
716 | + /** |
|
717 | + * _import_events |
|
718 | + * This handles displaying the screen and running imports for importing events. |
|
719 | + * |
|
720 | + * @return void |
|
721 | + */ |
|
722 | + protected function _import_events() |
|
723 | + { |
|
724 | + require_once(EE_CLASSES . 'EE_Import.class.php'); |
|
725 | + $success = EE_Import::instance()->import(); |
|
726 | + $this->_redirect_after_action($success, 'Import File', 'ran', array('action' => 'import_page'), true); |
|
727 | + } |
|
728 | + |
|
729 | + |
|
730 | + /** |
|
731 | + * _events_export |
|
732 | + * Will export all (or just the given event) to a Excel compatible file. |
|
733 | + * |
|
734 | + * @access protected |
|
735 | + * @return void |
|
736 | + */ |
|
737 | + protected function _events_export() |
|
738 | + { |
|
739 | + if (isset($this->_req_data['EVT_ID'])) { |
|
740 | + $event_ids = $this->_req_data['EVT_ID']; |
|
741 | + } elseif (isset($this->_req_data['EVT_IDs'])) { |
|
742 | + $event_ids = $this->_req_data['EVT_IDs']; |
|
743 | + } else { |
|
744 | + $event_ids = null; |
|
745 | + } |
|
746 | + // todo: I don't like doing this but it'll do until we modify EE_Export Class. |
|
747 | + $new_request_args = array( |
|
748 | + 'export' => 'report', |
|
749 | + 'action' => 'all_event_data', |
|
750 | + 'EVT_ID' => $event_ids, |
|
751 | + ); |
|
752 | + $this->_req_data = array_merge($this->_req_data, $new_request_args); |
|
753 | + if (is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
754 | + require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
755 | + $EE_Export = EE_Export::instance($this->_req_data); |
|
756 | + $EE_Export->export(); |
|
757 | + } |
|
758 | + } |
|
759 | + |
|
760 | + |
|
761 | + /** |
|
762 | + * handle category exports() |
|
763 | + * |
|
764 | + * @return void |
|
765 | + */ |
|
766 | + protected function _categories_export() |
|
767 | + { |
|
768 | + // todo: I don't like doing this but it'll do until we modify EE_Export Class. |
|
769 | + $new_request_args = array( |
|
770 | + 'export' => 'report', |
|
771 | + 'action' => 'categories', |
|
772 | + 'category_ids' => $this->_req_data['EVT_CAT_ID'], |
|
773 | + ); |
|
774 | + $this->_req_data = array_merge($this->_req_data, $new_request_args); |
|
775 | + if (is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
776 | + require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
777 | + $EE_Export = EE_Export::instance($this->_req_data); |
|
778 | + $EE_Export->export(); |
|
779 | + } |
|
780 | + } |
|
781 | + |
|
782 | + |
|
783 | + /** |
|
784 | + * Creates a sample CSV file for importing |
|
785 | + */ |
|
786 | + protected function _sample_export_file() |
|
787 | + { |
|
788 | + // require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
789 | + EE_Export::instance()->export_sample(); |
|
790 | + } |
|
791 | + |
|
792 | + |
|
793 | + /************* Template Settings *************/ |
|
794 | + /** |
|
795 | + * Generates template settings page output |
|
796 | + * |
|
797 | + * @throws DomainException |
|
798 | + * @throws EE_Error |
|
799 | + */ |
|
800 | + protected function _template_settings() |
|
801 | + { |
|
802 | + $this->_template_args['values'] = $this->_yes_no_values; |
|
803 | + /** |
|
804 | + * Note leaving this filter in for backward compatibility this was moved in 4.6.x |
|
805 | + * from General_Settings_Admin_Page to here. |
|
806 | + */ |
|
807 | + $this->_template_args = apply_filters( |
|
808 | + 'FHEE__General_Settings_Admin_Page__template_settings__template_args', |
|
809 | + $this->_template_args |
|
810 | + ); |
|
811 | + $this->_set_add_edit_form_tags('update_template_settings'); |
|
812 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
813 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
814 | + EVENTS_CAF_TEMPLATE_PATH . 'template_settings.template.php', |
|
815 | + $this->_template_args, |
|
816 | + true |
|
817 | + ); |
|
818 | + $this->display_admin_page_with_sidebar(); |
|
819 | + } |
|
820 | + |
|
821 | + |
|
822 | + /** |
|
823 | + * Handler for updating template settings. |
|
824 | + * |
|
825 | + * @throws InvalidInterfaceException |
|
826 | + * @throws InvalidDataTypeException |
|
827 | + * @throws InvalidArgumentException |
|
828 | + */ |
|
829 | + protected function _update_template_settings() |
|
830 | + { |
|
831 | + /** |
|
832 | + * Note leaving this filter in for backward compatibility this was moved in 4.6.x |
|
833 | + * from General_Settings_Admin_Page to here. |
|
834 | + */ |
|
835 | + EE_Registry::instance()->CFG->template_settings = apply_filters( |
|
836 | + 'FHEE__General_Settings_Admin_Page__update_template_settings__data', |
|
837 | + EE_Registry::instance()->CFG->template_settings, |
|
838 | + $this->_req_data |
|
839 | + ); |
|
840 | + // update custom post type slugs and detect if we need to flush rewrite rules |
|
841 | + $old_slug = EE_Registry::instance()->CFG->core->event_cpt_slug; |
|
842 | + EE_Registry::instance()->CFG->core->event_cpt_slug = empty($this->_req_data['event_cpt_slug']) |
|
843 | + ? EE_Registry::instance()->CFG->core->event_cpt_slug |
|
844 | + : EEH_URL::slugify($this->_req_data['event_cpt_slug'], 'events'); |
|
845 | + $what = 'Template Settings'; |
|
846 | + $success = $this->_update_espresso_configuration( |
|
847 | + $what, |
|
848 | + EE_Registry::instance()->CFG->template_settings, |
|
849 | + __FILE__, |
|
850 | + __FUNCTION__, |
|
851 | + __LINE__ |
|
852 | + ); |
|
853 | + if (EE_Registry::instance()->CFG->core->event_cpt_slug != $old_slug) { |
|
854 | + /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */ |
|
855 | + $rewrite_rules = LoaderFactory::getLoader()->getShared( |
|
856 | + 'EventEspresso\core\domain\services\custom_post_types\RewriteRules' |
|
857 | + ); |
|
858 | + $rewrite_rules->flush(); |
|
859 | + } |
|
860 | + $this->_redirect_after_action($success, $what, 'updated', array('action' => 'template_settings')); |
|
861 | + } |
|
862 | + |
|
863 | + |
|
864 | + /** |
|
865 | + * _premium_event_editor_meta_boxes |
|
866 | + * add all metaboxes related to the event_editor |
|
867 | + * |
|
868 | + * @access protected |
|
869 | + * @return void |
|
870 | + * @throws EE_Error |
|
871 | + */ |
|
872 | + protected function _premium_event_editor_meta_boxes() |
|
873 | + { |
|
874 | + $this->verify_cpt_object(); |
|
875 | + add_meta_box( |
|
876 | + 'espresso_event_editor_event_options', |
|
877 | + esc_html__('Event Registration Options', 'event_espresso'), |
|
878 | + array($this, 'registration_options_meta_box'), |
|
879 | + $this->page_slug, |
|
880 | + 'side', |
|
881 | + 'core' |
|
882 | + ); |
|
883 | + } |
|
884 | + |
|
885 | + |
|
886 | + /** |
|
887 | + * override caf metabox |
|
888 | + * |
|
889 | + * @return void |
|
890 | + * @throws DomainException |
|
891 | + */ |
|
892 | + public function registration_options_meta_box() |
|
893 | + { |
|
894 | + $yes_no_values = array( |
|
895 | + array('id' => true, 'text' => esc_html__('Yes', 'event_espresso')), |
|
896 | + array('id' => false, 'text' => esc_html__('No', 'event_espresso')), |
|
897 | + ); |
|
898 | + $default_reg_status_values = EEM_Registration::reg_status_array( |
|
899 | + array( |
|
900 | + EEM_Registration::status_id_cancelled, |
|
901 | + EEM_Registration::status_id_declined, |
|
902 | + EEM_Registration::status_id_incomplete, |
|
903 | + EEM_Registration::status_id_wait_list, |
|
904 | + ), |
|
905 | + true |
|
906 | + ); |
|
907 | + $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
908 | + $template_args['_event'] = $this->_cpt_model_obj; |
|
909 | + $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
910 | + $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
911 | + 'default_reg_status', |
|
912 | + $default_reg_status_values, |
|
913 | + $this->_cpt_model_obj->default_registration_status() |
|
914 | + ); |
|
915 | + $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
916 | + 'display_desc', |
|
917 | + $yes_no_values, |
|
918 | + $this->_cpt_model_obj->display_description() |
|
919 | + ); |
|
920 | + $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
921 | + 'display_ticket_selector', |
|
922 | + $yes_no_values, |
|
923 | + $this->_cpt_model_obj->display_ticket_selector(), |
|
924 | + '', |
|
925 | + '', |
|
926 | + false |
|
927 | + ); |
|
928 | + $template_args['EVT_default_registration_status'] = EEH_Form_Fields::select_input( |
|
929 | + 'EVT_default_registration_status', |
|
930 | + $default_reg_status_values, |
|
931 | + $this->_cpt_model_obj->default_registration_status() |
|
932 | + ); |
|
933 | + $template_args['additional_registration_options'] = apply_filters( |
|
934 | + 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
935 | + '', |
|
936 | + $template_args, |
|
937 | + $yes_no_values, |
|
938 | + $default_reg_status_values |
|
939 | + ); |
|
940 | + EEH_Template::display_template( |
|
941 | + EVENTS_CAF_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
942 | + $template_args |
|
943 | + ); |
|
944 | + } |
|
945 | + |
|
946 | + |
|
947 | + |
|
948 | + /** |
|
949 | + * wp_list_table_mods for caf |
|
950 | + * ============================ |
|
951 | + */ |
|
952 | + /** |
|
953 | + * hook into list table filters and provide filters for caffeinated list table |
|
954 | + * |
|
955 | + * @param array $old_filters any existing filters present |
|
956 | + * @param array $list_table_obj the list table object |
|
957 | + * @return array new filters |
|
958 | + */ |
|
959 | + public function list_table_filters($old_filters, $list_table_obj) |
|
960 | + { |
|
961 | + $filters = array(); |
|
962 | + // first month/year filters |
|
963 | + $filters[] = $this->espresso_event_months_dropdown(); |
|
964 | + $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
965 | + // active status dropdown |
|
966 | + if ($status !== 'draft') { |
|
967 | + $filters[] = $this->active_status_dropdown( |
|
968 | + isset($this->_req_data['active_status']) ? $this->_req_data['active_status'] : '' |
|
969 | + ); |
|
970 | + $filters[] = $this->venuesDropdown( |
|
971 | + isset($this->_req_data['venue']) ? $this->_req_data['venue'] : '' |
|
972 | + ); |
|
973 | + } |
|
974 | + // category filter |
|
975 | + $filters[] = $this->category_dropdown(); |
|
976 | + return array_merge($old_filters, $filters); |
|
977 | + } |
|
978 | + |
|
979 | + |
|
980 | + /** |
|
981 | + * espresso_event_months_dropdown |
|
982 | + * |
|
983 | + * @access public |
|
984 | + * @return string dropdown listing month/year selections for events. |
|
985 | + */ |
|
986 | + public function espresso_event_months_dropdown() |
|
987 | + { |
|
988 | + // what we need to do is get all PRIMARY datetimes for all events to filter on. |
|
989 | + // Note we need to include any other filters that are set! |
|
990 | + $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
991 | + // categories? |
|
992 | + $category = isset($this->_req_data['EVT_CAT']) && $this->_req_data['EVT_CAT'] > 0 |
|
993 | + ? $this->_req_data['EVT_CAT'] |
|
994 | + : null; |
|
995 | + // active status? |
|
996 | + $active_status = isset($this->_req_data['active_status']) ? $this->_req_data['active_status'] : null; |
|
997 | + $cur_date = isset($this->_req_data['month_range']) ? $this->_req_data['month_range'] : ''; |
|
998 | + return EEH_Form_Fields::generate_event_months_dropdown($cur_date, $status, $category, $active_status); |
|
999 | + } |
|
1000 | + |
|
1001 | + |
|
1002 | + /** |
|
1003 | + * returns a list of "active" statuses on the event |
|
1004 | + * |
|
1005 | + * @param string $current_value whatever the current active status is |
|
1006 | + * @return string |
|
1007 | + */ |
|
1008 | + public function active_status_dropdown($current_value = '') |
|
1009 | + { |
|
1010 | + $select_name = 'active_status'; |
|
1011 | + $values = array( |
|
1012 | + 'none' => esc_html__('Show Active/Inactive', 'event_espresso'), |
|
1013 | + 'active' => esc_html__('Active', 'event_espresso'), |
|
1014 | + 'upcoming' => esc_html__('Upcoming', 'event_espresso'), |
|
1015 | + 'expired' => esc_html__('Expired', 'event_espresso'), |
|
1016 | + 'inactive' => esc_html__('Inactive', 'event_espresso'), |
|
1017 | + ); |
|
1018 | + |
|
1019 | + return EEH_Form_Fields::select_input($select_name, $values, $current_value, '', 'wide'); |
|
1020 | + } |
|
1021 | + |
|
1022 | + /** |
|
1023 | + * returns a list of "venues" |
|
1024 | + * |
|
1025 | + * @param string $current_value whatever the current active status is |
|
1026 | + * @return string |
|
1027 | + */ |
|
1028 | + protected function venuesDropdown($current_value = '') |
|
1029 | + { |
|
1030 | + $select_name = 'venue'; |
|
1031 | + $values = array( |
|
1032 | + '' => esc_html__('All Venues', 'event_espresso'), |
|
1033 | + ); |
|
1034 | + // populate the list of venues. |
|
1035 | + $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1036 | + $venues = $venue_model->get_all(array('order_by' => array('VNU_name' => 'ASC'))); |
|
1037 | + |
|
1038 | + foreach ($venues as $venue) { |
|
1039 | + $values[ $venue->ID() ] = $venue->name(); |
|
1040 | + } |
|
1041 | + |
|
1042 | + return EEH_Form_Fields::select_input($select_name, $values, $current_value, '', 'wide'); |
|
1043 | + } |
|
1044 | + |
|
1045 | + |
|
1046 | + /** |
|
1047 | + * output a dropdown of the categories for the category filter on the event admin list table |
|
1048 | + * |
|
1049 | + * @access public |
|
1050 | + * @return string html |
|
1051 | + */ |
|
1052 | + public function category_dropdown() |
|
1053 | + { |
|
1054 | + $cur_cat = isset($this->_req_data['EVT_CAT']) ? $this->_req_data['EVT_CAT'] : -1; |
|
1055 | + return EEH_Form_Fields::generate_event_category_dropdown($cur_cat); |
|
1056 | + } |
|
1057 | + |
|
1058 | + |
|
1059 | + /** |
|
1060 | + * get total number of events today |
|
1061 | + * |
|
1062 | + * @access public |
|
1063 | + * @return int |
|
1064 | + * @throws EE_Error |
|
1065 | + */ |
|
1066 | + public function total_events_today() |
|
1067 | + { |
|
1068 | + $start = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1069 | + 'DTT_EVT_start', |
|
1070 | + date('Y-m-d') . ' 00:00:00', |
|
1071 | + 'Y-m-d H:i:s', |
|
1072 | + 'UTC' |
|
1073 | + ); |
|
1074 | + $end = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1075 | + 'DTT_EVT_start', |
|
1076 | + date('Y-m-d') . ' 23:59:59', |
|
1077 | + 'Y-m-d H:i:s', |
|
1078 | + 'UTC' |
|
1079 | + ); |
|
1080 | + $where = array( |
|
1081 | + 'Datetime.DTT_EVT_start' => array('BETWEEN', array($start, $end)), |
|
1082 | + ); |
|
1083 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
1084 | + return $count; |
|
1085 | + } |
|
1086 | + |
|
1087 | + |
|
1088 | + /** |
|
1089 | + * get total number of events this month |
|
1090 | + * |
|
1091 | + * @access public |
|
1092 | + * @return int |
|
1093 | + * @throws EE_Error |
|
1094 | + */ |
|
1095 | + public function total_events_this_month() |
|
1096 | + { |
|
1097 | + // Dates |
|
1098 | + $this_year_r = date('Y'); |
|
1099 | + $this_month_r = date('m'); |
|
1100 | + $days_this_month = date('t'); |
|
1101 | + $start = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1102 | + 'DTT_EVT_start', |
|
1103 | + $this_year_r . '-' . $this_month_r . '-01 00:00:00', |
|
1104 | + 'Y-m-d H:i:s', |
|
1105 | + 'UTC' |
|
1106 | + ); |
|
1107 | + $end = EEM_Datetime::instance()->convert_datetime_for_query( |
|
1108 | + 'DTT_EVT_start', |
|
1109 | + $this_year_r . '-' . $this_month_r . '-' . $days_this_month . ' 23:59:59', |
|
1110 | + 'Y-m-d H:i:s', |
|
1111 | + 'UTC' |
|
1112 | + ); |
|
1113 | + $where = array( |
|
1114 | + 'Datetime.DTT_EVT_start' => array('BETWEEN', array($start, $end)), |
|
1115 | + ); |
|
1116 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
1117 | + return $count; |
|
1118 | + } |
|
1119 | + |
|
1120 | + |
|
1121 | + /** DEFAULT TICKETS STUFF **/ |
|
1122 | + |
|
1123 | + /** |
|
1124 | + * Output default tickets list table view. |
|
1125 | + */ |
|
1126 | + public function _tickets_overview_list_table() |
|
1127 | + { |
|
1128 | + $this->_search_btn_label = esc_html__('Tickets', 'event_espresso'); |
|
1129 | + $this->display_admin_list_table_page_with_no_sidebar(); |
|
1130 | + } |
|
1131 | + |
|
1132 | + |
|
1133 | + /** |
|
1134 | + * @param int $per_page |
|
1135 | + * @param bool $count |
|
1136 | + * @param bool $trashed |
|
1137 | + * @return \EE_Soft_Delete_Base_Class[]|int |
|
1138 | + */ |
|
1139 | + public function get_default_tickets($per_page = 10, $count = false, $trashed = false) |
|
1140 | + { |
|
1141 | + $orderby = empty($this->_req_data['orderby']) ? 'TKT_name' : $this->_req_data['orderby']; |
|
1142 | + $order = empty($this->_req_data['order']) ? 'ASC' : $this->_req_data['order']; |
|
1143 | + switch ($orderby) { |
|
1144 | + case 'TKT_name': |
|
1145 | + $orderby = array('TKT_name' => $order); |
|
1146 | + break; |
|
1147 | + case 'TKT_price': |
|
1148 | + $orderby = array('TKT_price' => $order); |
|
1149 | + break; |
|
1150 | + case 'TKT_uses': |
|
1151 | + $orderby = array('TKT_uses' => $order); |
|
1152 | + break; |
|
1153 | + case 'TKT_min': |
|
1154 | + $orderby = array('TKT_min' => $order); |
|
1155 | + break; |
|
1156 | + case 'TKT_max': |
|
1157 | + $orderby = array('TKT_max' => $order); |
|
1158 | + break; |
|
1159 | + case 'TKT_qty': |
|
1160 | + $orderby = array('TKT_qty' => $order); |
|
1161 | + break; |
|
1162 | + } |
|
1163 | + $current_page = isset($this->_req_data['paged']) && ! empty($this->_req_data['paged']) |
|
1164 | + ? $this->_req_data['paged'] |
|
1165 | + : 1; |
|
1166 | + $per_page = isset($this->_req_data['perpage']) && ! empty($this->_req_data['perpage']) |
|
1167 | + ? $this->_req_data['perpage'] |
|
1168 | + : $per_page; |
|
1169 | + $_where = array( |
|
1170 | + 'TKT_is_default' => 1, |
|
1171 | + 'TKT_deleted' => $trashed, |
|
1172 | + ); |
|
1173 | + $offset = ($current_page - 1) * $per_page; |
|
1174 | + $limit = array($offset, $per_page); |
|
1175 | + if (isset($this->_req_data['s'])) { |
|
1176 | + $sstr = '%' . $this->_req_data['s'] . '%'; |
|
1177 | + $_where['OR'] = array( |
|
1178 | + 'TKT_name' => array('LIKE', $sstr), |
|
1179 | + 'TKT_description' => array('LIKE', $sstr), |
|
1180 | + ); |
|
1181 | + } |
|
1182 | + $query_params = array( |
|
1183 | + $_where, |
|
1184 | + 'order_by' => $orderby, |
|
1185 | + 'limit' => $limit, |
|
1186 | + 'group_by' => 'TKT_ID', |
|
1187 | + ); |
|
1188 | + if ($count) { |
|
1189 | + return EEM_Ticket::instance()->count_deleted_and_undeleted(array($_where)); |
|
1190 | + } else { |
|
1191 | + return EEM_Ticket::instance()->get_all_deleted_and_undeleted($query_params); |
|
1192 | + } |
|
1193 | + } |
|
1194 | + |
|
1195 | + |
|
1196 | + /** |
|
1197 | + * @param bool $trash |
|
1198 | + * @throws EE_Error |
|
1199 | + */ |
|
1200 | + protected function _trash_or_restore_ticket($trash = false) |
|
1201 | + { |
|
1202 | + $success = 1; |
|
1203 | + $TKT = EEM_Ticket::instance(); |
|
1204 | + // checkboxes? |
|
1205 | + if (! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1206 | + // if array has more than one element then success message should be plural |
|
1207 | + $success = count($this->_req_data['checkbox']) > 1 ? 2 : 1; |
|
1208 | + // cycle thru the boxes |
|
1209 | + while (list($TKT_ID, $value) = each($this->_req_data['checkbox'])) { |
|
1210 | + if ($trash) { |
|
1211 | + if (! $TKT->delete_by_ID($TKT_ID)) { |
|
1212 | + $success = 0; |
|
1213 | + } |
|
1214 | + } else { |
|
1215 | + if (! $TKT->restore_by_ID($TKT_ID)) { |
|
1216 | + $success = 0; |
|
1217 | + } |
|
1218 | + } |
|
1219 | + } |
|
1220 | + } else { |
|
1221 | + // grab single id and trash |
|
1222 | + $TKT_ID = absint($this->_req_data['TKT_ID']); |
|
1223 | + if ($trash) { |
|
1224 | + if (! $TKT->delete_by_ID($TKT_ID)) { |
|
1225 | + $success = 0; |
|
1226 | + } |
|
1227 | + } else { |
|
1228 | + if (! $TKT->restore_by_ID($TKT_ID)) { |
|
1229 | + $success = 0; |
|
1230 | + } |
|
1231 | + } |
|
1232 | + } |
|
1233 | + $action_desc = $trash ? 'moved to the trash' : 'restored'; |
|
1234 | + $query_args = array( |
|
1235 | + 'action' => 'ticket_list_table', |
|
1236 | + 'status' => $trash ? '' : 'trashed', |
|
1237 | + ); |
|
1238 | + $this->_redirect_after_action($success, 'Tickets', $action_desc, $query_args); |
|
1239 | + } |
|
1240 | + |
|
1241 | + |
|
1242 | + /** |
|
1243 | + * Handles trashing default ticket. |
|
1244 | + */ |
|
1245 | + protected function _delete_ticket() |
|
1246 | + { |
|
1247 | + $success = 1; |
|
1248 | + // checkboxes? |
|
1249 | + if (! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1250 | + // if array has more than one element then success message should be plural |
|
1251 | + $success = count($this->_req_data['checkbox']) > 1 ? 2 : 1; |
|
1252 | + // cycle thru the boxes |
|
1253 | + while (list($TKT_ID, $value) = each($this->_req_data['checkbox'])) { |
|
1254 | + // delete |
|
1255 | + if (! $this->_delete_the_ticket($TKT_ID)) { |
|
1256 | + $success = 0; |
|
1257 | + } |
|
1258 | + } |
|
1259 | + } else { |
|
1260 | + // grab single id and trash |
|
1261 | + $TKT_ID = absint($this->_req_data['TKT_ID']); |
|
1262 | + if (! $this->_delete_the_ticket($TKT_ID)) { |
|
1263 | + $success = 0; |
|
1264 | + } |
|
1265 | + } |
|
1266 | + $action_desc = 'deleted'; |
|
1267 | + $query_args = array( |
|
1268 | + 'action' => 'ticket_list_table', |
|
1269 | + 'status' => 'trashed', |
|
1270 | + ); |
|
1271 | + // fail safe. If the default ticket count === 1 then we need to redirect to event overview. |
|
1272 | + if (EEM_Ticket::instance()->count_deleted_and_undeleted( |
|
1273 | + array(array('TKT_is_default' => 1)), |
|
1274 | + 'TKT_ID', |
|
1275 | + true |
|
1276 | + ) |
|
1277 | + ) { |
|
1278 | + $query_args = array(); |
|
1279 | + } |
|
1280 | + $this->_redirect_after_action($success, 'Tickets', $action_desc, $query_args); |
|
1281 | + } |
|
1282 | + |
|
1283 | + |
|
1284 | + /** |
|
1285 | + * @param int $TKT_ID |
|
1286 | + * @return bool|int |
|
1287 | + * @throws EE_Error |
|
1288 | + */ |
|
1289 | + protected function _delete_the_ticket($TKT_ID) |
|
1290 | + { |
|
1291 | + $tkt = EEM_Ticket::instance()->get_one_by_ID($TKT_ID); |
|
1292 | + $tkt->_remove_relations('Datetime'); |
|
1293 | + // delete all related prices first |
|
1294 | + $tkt->delete_related_permanently('Price'); |
|
1295 | + return $tkt->delete_permanently(); |
|
1296 | + } |
|
1297 | 1297 | } |
@@ -24,10 +24,10 @@ discard block |
||
24 | 24 | public function __construct($routing = true) |
25 | 25 | { |
26 | 26 | parent::__construct($routing); |
27 | - if (! defined('EVENTS_CAF_TEMPLATE_PATH')) { |
|
28 | - define('EVENTS_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'events/templates/'); |
|
29 | - define('EVENTS_CAF_ASSETS', EE_CORE_CAF_ADMIN_EXTEND . 'events/assets/'); |
|
30 | - define('EVENTS_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'events/assets/'); |
|
27 | + if ( ! defined('EVENTS_CAF_TEMPLATE_PATH')) { |
|
28 | + define('EVENTS_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND.'events/templates/'); |
|
29 | + define('EVENTS_CAF_ASSETS', EE_CORE_CAF_ADMIN_EXTEND.'events/assets/'); |
|
30 | + define('EVENTS_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL.'events/assets/'); |
|
31 | 31 | } |
32 | 32 | } |
33 | 33 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | protected function _extend_page_config() |
39 | 39 | { |
40 | - $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'events'; |
|
40 | + $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND.'events'; |
|
41 | 41 | // is there a evt_id in the request? |
42 | 42 | $evt_id = ! empty($this->_req_data['EVT_ID']) && ! is_array($this->_req_data['EVT_ID']) |
43 | 43 | ? $this->_req_data['EVT_ID'] |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | { |
248 | 248 | $return = parent::extra_permalink_field_buttons($return, $id, $new_title, $new_slug); |
249 | 249 | // make sure this is only when editing |
250 | - if (! empty($id)) { |
|
250 | + if ( ! empty($id)) { |
|
251 | 251 | $href = EE_Admin_Page::add_query_args_and_nonce( |
252 | 252 | array('action' => 'duplicate_event', 'EVT_ID' => $id), |
253 | 253 | $this->_admin_base_url |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | { |
300 | 300 | wp_register_script( |
301 | 301 | 'ee-event-editor-heartbeat', |
302 | - EVENTS_CAF_ASSETS_URL . 'event-editor-heartbeat.js', |
|
302 | + EVENTS_CAF_ASSETS_URL.'event-editor-heartbeat.js', |
|
303 | 303 | array('ee_admin_js', 'heartbeat'), |
304 | 304 | EVENT_ESPRESSO_VERSION, |
305 | 305 | true |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | public function add_additional_datetime_button($template, $template_args) |
324 | 324 | { |
325 | 325 | return EEH_Template::display_template( |
326 | - EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_add_additional_time.template.php', |
|
326 | + EVENTS_CAF_TEMPLATE_PATH.'event_datetime_add_additional_time.template.php', |
|
327 | 327 | $template_args, |
328 | 328 | true |
329 | 329 | ); |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | public function add_datetime_clone_button($template, $template_args) |
342 | 342 | { |
343 | 343 | return EEH_Template::display_template( |
344 | - EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_metabox_clone_button.template.php', |
|
344 | + EVENTS_CAF_TEMPLATE_PATH.'event_datetime_metabox_clone_button.template.php', |
|
345 | 345 | $template_args, |
346 | 346 | true |
347 | 347 | ); |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | public function datetime_timezones_template($template, $template_args) |
360 | 360 | { |
361 | 361 | return EEH_Template::display_template( |
362 | - EVENTS_CAF_TEMPLATE_PATH . 'event_datetime_timezones.template.php', |
|
362 | + EVENTS_CAF_TEMPLATE_PATH.'event_datetime_timezones.template.php', |
|
363 | 363 | $template_args, |
364 | 364 | true |
365 | 365 | ); |
@@ -478,7 +478,7 @@ discard block |
||
478 | 478 | { |
479 | 479 | // first make sure the ID for the event is in the request. |
480 | 480 | // If it isn't then we need to bail and redirect back to overview list table (cause how did we get here?) |
481 | - if (! isset($this->_req_data['EVT_ID'])) { |
|
481 | + if ( ! isset($this->_req_data['EVT_ID'])) { |
|
482 | 482 | EE_Error::add_error( |
483 | 483 | esc_html__( |
484 | 484 | 'In order to duplicate an event an Event ID is required. None was given.', |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | } |
494 | 494 | // k we've got EVT_ID so let's use that to get the event we'll duplicate |
495 | 495 | $orig_event = EEM_Event::instance()->get_one_by_ID($this->_req_data['EVT_ID']); |
496 | - if (! $orig_event instanceof EE_Event) { |
|
496 | + if ( ! $orig_event instanceof EE_Event) { |
|
497 | 497 | throw new EE_Error( |
498 | 498 | sprintf( |
499 | 499 | esc_html__('An EE_Event object could not be retrieved for the given ID (%s)', 'event_espresso'), |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | $orig_ven = $orig_event->get_many_related('Venue'); |
510 | 510 | // reset the ID and modify other details to make it clear this is a dupe |
511 | 511 | $new_event->set('EVT_ID', 0); |
512 | - $new_name = $new_event->name() . ' ' . esc_html__('**DUPLICATE**', 'event_espresso'); |
|
512 | + $new_name = $new_event->name().' '.esc_html__('**DUPLICATE**', 'event_espresso'); |
|
513 | 513 | $new_event->set('EVT_name', $new_name); |
514 | 514 | $new_event->set( |
515 | 515 | 'EVT_slug', |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | 'Question_Group', |
539 | 539 | [['Event_Question_Group.EQG_primary' => true]] |
540 | 540 | ); |
541 | - if (! empty($orig_primary_qgs)) { |
|
541 | + if ( ! empty($orig_primary_qgs)) { |
|
542 | 542 | foreach ($orig_primary_qgs as $id => $obj) { |
543 | 543 | if ($obj instanceof EE_Question_Group) { |
544 | 544 | $new_event->_add_relation_to($obj, 'Question_Group', ['EQG_primary' => true]); |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | 'Question_Group', |
551 | 551 | [['Event_Question_Group.EQG_additional' => true]] |
552 | 552 | ); |
553 | - if (! empty($orig_additional_qgs)) { |
|
553 | + if ( ! empty($orig_additional_qgs)) { |
|
554 | 554 | foreach ($orig_additional_qgs as $id => $obj) { |
555 | 555 | if ($obj instanceof EE_Question_Group) { |
556 | 556 | $new_event->_add_relation_to($obj, 'Question_Group', ['EQG_additional' => true]); |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | // k now that we have the new event saved we can loop through the datetimes and start adding relations. |
564 | 564 | $cloned_tickets = array(); |
565 | 565 | foreach ($orig_datetimes as $orig_dtt) { |
566 | - if (! $orig_dtt instanceof EE_Datetime) { |
|
566 | + if ( ! $orig_dtt instanceof EE_Datetime) { |
|
567 | 567 | continue; |
568 | 568 | } |
569 | 569 | $new_dtt = clone $orig_dtt; |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | // now let's get the ticket relations setup. |
579 | 579 | foreach ((array) $orig_tkts as $orig_tkt) { |
580 | 580 | // it's possible a datetime will have no tickets so let's verify we HAVE a ticket first. |
581 | - if (! $orig_tkt instanceof EE_Ticket) { |
|
581 | + if ( ! $orig_tkt instanceof EE_Ticket) { |
|
582 | 582 | continue; |
583 | 583 | } |
584 | 584 | // is this ticket archived? If it is then let's skip |
@@ -587,8 +587,8 @@ discard block |
||
587 | 587 | } |
588 | 588 | // does this original ticket already exist in the clone_tickets cache? |
589 | 589 | // If so we'll just use the new ticket from it. |
590 | - if (isset($cloned_tickets[ $orig_tkt->ID() ])) { |
|
591 | - $new_tkt = $cloned_tickets[ $orig_tkt->ID() ]; |
|
590 | + if (isset($cloned_tickets[$orig_tkt->ID()])) { |
|
591 | + $new_tkt = $cloned_tickets[$orig_tkt->ID()]; |
|
592 | 592 | } else { |
593 | 593 | $new_tkt = clone $orig_tkt; |
594 | 594 | // get relations on the $orig_tkt that we need to setup. |
@@ -621,7 +621,7 @@ discard block |
||
621 | 621 | // for use with later datetimes that have the same ticket. |
622 | 622 | $new_dtt->_add_relation_to($new_tkt, 'Ticket'); |
623 | 623 | $new_dtt->save(); |
624 | - $cloned_tickets[ $orig_tkt->ID() ] = $new_tkt; |
|
624 | + $cloned_tickets[$orig_tkt->ID()] = $new_tkt; |
|
625 | 625 | } |
626 | 626 | } |
627 | 627 | // clone taxonomy information |
@@ -704,7 +704,7 @@ discard block |
||
704 | 704 | $this->_admin_base_url |
705 | 705 | ); |
706 | 706 | $content = EEH_Template::display_template( |
707 | - EVENTS_CAF_TEMPLATE_PATH . 'import_page.template.php', |
|
707 | + EVENTS_CAF_TEMPLATE_PATH.'import_page.template.php', |
|
708 | 708 | $this->_template_args, |
709 | 709 | true |
710 | 710 | ); |
@@ -721,7 +721,7 @@ discard block |
||
721 | 721 | */ |
722 | 722 | protected function _import_events() |
723 | 723 | { |
724 | - require_once(EE_CLASSES . 'EE_Import.class.php'); |
|
724 | + require_once(EE_CLASSES.'EE_Import.class.php'); |
|
725 | 725 | $success = EE_Import::instance()->import(); |
726 | 726 | $this->_redirect_after_action($success, 'Import File', 'ran', array('action' => 'import_page'), true); |
727 | 727 | } |
@@ -750,8 +750,8 @@ discard block |
||
750 | 750 | 'EVT_ID' => $event_ids, |
751 | 751 | ); |
752 | 752 | $this->_req_data = array_merge($this->_req_data, $new_request_args); |
753 | - if (is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
754 | - require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
753 | + if (is_readable(EE_CLASSES.'EE_Export.class.php')) { |
|
754 | + require_once(EE_CLASSES.'EE_Export.class.php'); |
|
755 | 755 | $EE_Export = EE_Export::instance($this->_req_data); |
756 | 756 | $EE_Export->export(); |
757 | 757 | } |
@@ -772,8 +772,8 @@ discard block |
||
772 | 772 | 'category_ids' => $this->_req_data['EVT_CAT_ID'], |
773 | 773 | ); |
774 | 774 | $this->_req_data = array_merge($this->_req_data, $new_request_args); |
775 | - if (is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
776 | - require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
775 | + if (is_readable(EE_CLASSES.'EE_Export.class.php')) { |
|
776 | + require_once(EE_CLASSES.'EE_Export.class.php'); |
|
777 | 777 | $EE_Export = EE_Export::instance($this->_req_data); |
778 | 778 | $EE_Export->export(); |
779 | 779 | } |
@@ -811,7 +811,7 @@ discard block |
||
811 | 811 | $this->_set_add_edit_form_tags('update_template_settings'); |
812 | 812 | $this->_set_publish_post_box_vars(null, false, false, null, false); |
813 | 813 | $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
814 | - EVENTS_CAF_TEMPLATE_PATH . 'template_settings.template.php', |
|
814 | + EVENTS_CAF_TEMPLATE_PATH.'template_settings.template.php', |
|
815 | 815 | $this->_template_args, |
816 | 816 | true |
817 | 817 | ); |
@@ -938,7 +938,7 @@ discard block |
||
938 | 938 | $default_reg_status_values |
939 | 939 | ); |
940 | 940 | EEH_Template::display_template( |
941 | - EVENTS_CAF_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
941 | + EVENTS_CAF_TEMPLATE_PATH.'event_registration_options.template.php', |
|
942 | 942 | $template_args |
943 | 943 | ); |
944 | 944 | } |
@@ -1036,7 +1036,7 @@ discard block |
||
1036 | 1036 | $venues = $venue_model->get_all(array('order_by' => array('VNU_name' => 'ASC'))); |
1037 | 1037 | |
1038 | 1038 | foreach ($venues as $venue) { |
1039 | - $values[ $venue->ID() ] = $venue->name(); |
|
1039 | + $values[$venue->ID()] = $venue->name(); |
|
1040 | 1040 | } |
1041 | 1041 | |
1042 | 1042 | return EEH_Form_Fields::select_input($select_name, $values, $current_value, '', 'wide'); |
@@ -1067,13 +1067,13 @@ discard block |
||
1067 | 1067 | { |
1068 | 1068 | $start = EEM_Datetime::instance()->convert_datetime_for_query( |
1069 | 1069 | 'DTT_EVT_start', |
1070 | - date('Y-m-d') . ' 00:00:00', |
|
1070 | + date('Y-m-d').' 00:00:00', |
|
1071 | 1071 | 'Y-m-d H:i:s', |
1072 | 1072 | 'UTC' |
1073 | 1073 | ); |
1074 | 1074 | $end = EEM_Datetime::instance()->convert_datetime_for_query( |
1075 | 1075 | 'DTT_EVT_start', |
1076 | - date('Y-m-d') . ' 23:59:59', |
|
1076 | + date('Y-m-d').' 23:59:59', |
|
1077 | 1077 | 'Y-m-d H:i:s', |
1078 | 1078 | 'UTC' |
1079 | 1079 | ); |
@@ -1100,13 +1100,13 @@ discard block |
||
1100 | 1100 | $days_this_month = date('t'); |
1101 | 1101 | $start = EEM_Datetime::instance()->convert_datetime_for_query( |
1102 | 1102 | 'DTT_EVT_start', |
1103 | - $this_year_r . '-' . $this_month_r . '-01 00:00:00', |
|
1103 | + $this_year_r.'-'.$this_month_r.'-01 00:00:00', |
|
1104 | 1104 | 'Y-m-d H:i:s', |
1105 | 1105 | 'UTC' |
1106 | 1106 | ); |
1107 | 1107 | $end = EEM_Datetime::instance()->convert_datetime_for_query( |
1108 | 1108 | 'DTT_EVT_start', |
1109 | - $this_year_r . '-' . $this_month_r . '-' . $days_this_month . ' 23:59:59', |
|
1109 | + $this_year_r.'-'.$this_month_r.'-'.$days_this_month.' 23:59:59', |
|
1110 | 1110 | 'Y-m-d H:i:s', |
1111 | 1111 | 'UTC' |
1112 | 1112 | ); |
@@ -1173,7 +1173,7 @@ discard block |
||
1173 | 1173 | $offset = ($current_page - 1) * $per_page; |
1174 | 1174 | $limit = array($offset, $per_page); |
1175 | 1175 | if (isset($this->_req_data['s'])) { |
1176 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
1176 | + $sstr = '%'.$this->_req_data['s'].'%'; |
|
1177 | 1177 | $_where['OR'] = array( |
1178 | 1178 | 'TKT_name' => array('LIKE', $sstr), |
1179 | 1179 | 'TKT_description' => array('LIKE', $sstr), |
@@ -1202,17 +1202,17 @@ discard block |
||
1202 | 1202 | $success = 1; |
1203 | 1203 | $TKT = EEM_Ticket::instance(); |
1204 | 1204 | // checkboxes? |
1205 | - if (! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1205 | + if ( ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1206 | 1206 | // if array has more than one element then success message should be plural |
1207 | 1207 | $success = count($this->_req_data['checkbox']) > 1 ? 2 : 1; |
1208 | 1208 | // cycle thru the boxes |
1209 | 1209 | while (list($TKT_ID, $value) = each($this->_req_data['checkbox'])) { |
1210 | 1210 | if ($trash) { |
1211 | - if (! $TKT->delete_by_ID($TKT_ID)) { |
|
1211 | + if ( ! $TKT->delete_by_ID($TKT_ID)) { |
|
1212 | 1212 | $success = 0; |
1213 | 1213 | } |
1214 | 1214 | } else { |
1215 | - if (! $TKT->restore_by_ID($TKT_ID)) { |
|
1215 | + if ( ! $TKT->restore_by_ID($TKT_ID)) { |
|
1216 | 1216 | $success = 0; |
1217 | 1217 | } |
1218 | 1218 | } |
@@ -1221,11 +1221,11 @@ discard block |
||
1221 | 1221 | // grab single id and trash |
1222 | 1222 | $TKT_ID = absint($this->_req_data['TKT_ID']); |
1223 | 1223 | if ($trash) { |
1224 | - if (! $TKT->delete_by_ID($TKT_ID)) { |
|
1224 | + if ( ! $TKT->delete_by_ID($TKT_ID)) { |
|
1225 | 1225 | $success = 0; |
1226 | 1226 | } |
1227 | 1227 | } else { |
1228 | - if (! $TKT->restore_by_ID($TKT_ID)) { |
|
1228 | + if ( ! $TKT->restore_by_ID($TKT_ID)) { |
|
1229 | 1229 | $success = 0; |
1230 | 1230 | } |
1231 | 1231 | } |
@@ -1246,20 +1246,20 @@ discard block |
||
1246 | 1246 | { |
1247 | 1247 | $success = 1; |
1248 | 1248 | // checkboxes? |
1249 | - if (! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1249 | + if ( ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
1250 | 1250 | // if array has more than one element then success message should be plural |
1251 | 1251 | $success = count($this->_req_data['checkbox']) > 1 ? 2 : 1; |
1252 | 1252 | // cycle thru the boxes |
1253 | 1253 | while (list($TKT_ID, $value) = each($this->_req_data['checkbox'])) { |
1254 | 1254 | // delete |
1255 | - if (! $this->_delete_the_ticket($TKT_ID)) { |
|
1255 | + if ( ! $this->_delete_the_ticket($TKT_ID)) { |
|
1256 | 1256 | $success = 0; |
1257 | 1257 | } |
1258 | 1258 | } |
1259 | 1259 | } else { |
1260 | 1260 | // grab single id and trash |
1261 | 1261 | $TKT_ID = absint($this->_req_data['TKT_ID']); |
1262 | - if (! $this->_delete_the_ticket($TKT_ID)) { |
|
1262 | + if ( ! $this->_delete_the_ticket($TKT_ID)) { |
|
1263 | 1263 | $success = 0; |
1264 | 1264 | } |
1265 | 1265 | } |
@@ -29,102 +29,102 @@ |
||
29 | 29 | { |
30 | 30 | |
31 | 31 | |
32 | - /** |
|
33 | - * @param EE_Event $event |
|
34 | - * @param EE_Transaction $transaction |
|
35 | - * @param EE_Ticket $ticket |
|
36 | - * @param EE_Line_Item $ticket_line_item |
|
37 | - * @param $reg_count |
|
38 | - * @param $reg_group_size |
|
39 | - * @param string $reg_status |
|
40 | - * @return EE_Registration |
|
41 | - * @throws OutOfRangeException |
|
42 | - * @throws EE_Error |
|
43 | - * @throws UnexpectedEntityException |
|
44 | - */ |
|
45 | - public function create( |
|
46 | - EE_Event $event, |
|
47 | - EE_Transaction $transaction, |
|
48 | - EE_Ticket $ticket, |
|
49 | - EE_Line_Item $ticket_line_item, |
|
50 | - $reg_count, |
|
51 | - $reg_group_size, |
|
52 | - $reg_status = EEM_Registration::status_id_incomplete |
|
53 | - ) { |
|
54 | - $registrations = $transaction->registrations(); |
|
55 | - $reg_count = $reg_count ? $reg_count : count($registrations) + 1; |
|
56 | - $reg_url_link = new RegUrlLink($reg_count, $ticket_line_item); |
|
57 | - $reg_code = new RegCode($reg_url_link, $transaction, $ticket); |
|
58 | - // generate new EE_Registration |
|
59 | - $registration = EE_Registration::new_instance( |
|
60 | - array( |
|
61 | - 'EVT_ID' => $event->ID(), |
|
62 | - 'TXN_ID' => $transaction->ID(), |
|
63 | - 'TKT_ID' => $ticket->ID(), |
|
64 | - 'STS_ID' => $reg_status, |
|
65 | - 'REG_final_price' => $this->resolveFinalPrice($transaction, $ticket, $ticket_line_item), |
|
66 | - 'REG_session' => EE_Registry::instance()->SSN->id(), |
|
67 | - 'REG_count' => $reg_count, |
|
68 | - 'REG_group_size' => $reg_group_size ? $reg_group_size : $this->incrementRegGroupSize($registrations), |
|
69 | - 'REG_url_link' => $reg_url_link, |
|
70 | - 'REG_code' => $reg_code, |
|
71 | - ) |
|
72 | - ); |
|
73 | - if (! $registration instanceof EE_Registration) { |
|
74 | - throw new UnexpectedEntityException($registration, 'EE_Registration'); |
|
75 | - } |
|
76 | - // save registration so that we have an ID |
|
77 | - $registration->save(); |
|
78 | - // track reservation on reg but don't adjust ticket and datetime reserved counts |
|
79 | - // because that is done as soon as the tickets are added/removed from the cart |
|
80 | - $registration->reserve_ticket(false, 'CreateRegistrationService:' . __LINE__); |
|
81 | - $registration->_add_relation_to($event, 'Event', array(), $event->ID()); |
|
82 | - $registration->_add_relation_to($ticket, 'Ticket', array(), $ticket->ID()); |
|
83 | - $transaction->_add_relation_to($registration, 'Registration', array(), $registration->ID()); |
|
84 | - $registration->save(); |
|
85 | - return $registration; |
|
86 | - } |
|
32 | + /** |
|
33 | + * @param EE_Event $event |
|
34 | + * @param EE_Transaction $transaction |
|
35 | + * @param EE_Ticket $ticket |
|
36 | + * @param EE_Line_Item $ticket_line_item |
|
37 | + * @param $reg_count |
|
38 | + * @param $reg_group_size |
|
39 | + * @param string $reg_status |
|
40 | + * @return EE_Registration |
|
41 | + * @throws OutOfRangeException |
|
42 | + * @throws EE_Error |
|
43 | + * @throws UnexpectedEntityException |
|
44 | + */ |
|
45 | + public function create( |
|
46 | + EE_Event $event, |
|
47 | + EE_Transaction $transaction, |
|
48 | + EE_Ticket $ticket, |
|
49 | + EE_Line_Item $ticket_line_item, |
|
50 | + $reg_count, |
|
51 | + $reg_group_size, |
|
52 | + $reg_status = EEM_Registration::status_id_incomplete |
|
53 | + ) { |
|
54 | + $registrations = $transaction->registrations(); |
|
55 | + $reg_count = $reg_count ? $reg_count : count($registrations) + 1; |
|
56 | + $reg_url_link = new RegUrlLink($reg_count, $ticket_line_item); |
|
57 | + $reg_code = new RegCode($reg_url_link, $transaction, $ticket); |
|
58 | + // generate new EE_Registration |
|
59 | + $registration = EE_Registration::new_instance( |
|
60 | + array( |
|
61 | + 'EVT_ID' => $event->ID(), |
|
62 | + 'TXN_ID' => $transaction->ID(), |
|
63 | + 'TKT_ID' => $ticket->ID(), |
|
64 | + 'STS_ID' => $reg_status, |
|
65 | + 'REG_final_price' => $this->resolveFinalPrice($transaction, $ticket, $ticket_line_item), |
|
66 | + 'REG_session' => EE_Registry::instance()->SSN->id(), |
|
67 | + 'REG_count' => $reg_count, |
|
68 | + 'REG_group_size' => $reg_group_size ? $reg_group_size : $this->incrementRegGroupSize($registrations), |
|
69 | + 'REG_url_link' => $reg_url_link, |
|
70 | + 'REG_code' => $reg_code, |
|
71 | + ) |
|
72 | + ); |
|
73 | + if (! $registration instanceof EE_Registration) { |
|
74 | + throw new UnexpectedEntityException($registration, 'EE_Registration'); |
|
75 | + } |
|
76 | + // save registration so that we have an ID |
|
77 | + $registration->save(); |
|
78 | + // track reservation on reg but don't adjust ticket and datetime reserved counts |
|
79 | + // because that is done as soon as the tickets are added/removed from the cart |
|
80 | + $registration->reserve_ticket(false, 'CreateRegistrationService:' . __LINE__); |
|
81 | + $registration->_add_relation_to($event, 'Event', array(), $event->ID()); |
|
82 | + $registration->_add_relation_to($ticket, 'Ticket', array(), $ticket->ID()); |
|
83 | + $transaction->_add_relation_to($registration, 'Registration', array(), $registration->ID()); |
|
84 | + $registration->save(); |
|
85 | + return $registration; |
|
86 | + } |
|
87 | 87 | |
88 | 88 | |
89 | - /** |
|
90 | - * @param EE_Transaction $transaction |
|
91 | - * @param EE_Ticket $ticket |
|
92 | - * @param EE_Line_Item $ticket_line_item |
|
93 | - * @return float |
|
94 | - * @throws EE_Error |
|
95 | - * @throws OutOfRangeException |
|
96 | - */ |
|
97 | - protected function resolveFinalPrice( |
|
98 | - EE_Transaction $transaction, |
|
99 | - EE_Ticket $ticket, |
|
100 | - EE_Line_Item $ticket_line_item |
|
101 | - ) { |
|
102 | - $final_price = EEH_Line_Item::calculate_final_price_for_ticket_line_item( |
|
103 | - $transaction->total_line_item(), |
|
104 | - $ticket_line_item |
|
105 | - ); |
|
106 | - $final_price = $final_price !== null ? $final_price : $ticket->get_ticket_total_with_taxes(); |
|
107 | - return (float) $final_price; |
|
108 | - } |
|
89 | + /** |
|
90 | + * @param EE_Transaction $transaction |
|
91 | + * @param EE_Ticket $ticket |
|
92 | + * @param EE_Line_Item $ticket_line_item |
|
93 | + * @return float |
|
94 | + * @throws EE_Error |
|
95 | + * @throws OutOfRangeException |
|
96 | + */ |
|
97 | + protected function resolveFinalPrice( |
|
98 | + EE_Transaction $transaction, |
|
99 | + EE_Ticket $ticket, |
|
100 | + EE_Line_Item $ticket_line_item |
|
101 | + ) { |
|
102 | + $final_price = EEH_Line_Item::calculate_final_price_for_ticket_line_item( |
|
103 | + $transaction->total_line_item(), |
|
104 | + $ticket_line_item |
|
105 | + ); |
|
106 | + $final_price = $final_price !== null ? $final_price : $ticket->get_ticket_total_with_taxes(); |
|
107 | + return (float) $final_price; |
|
108 | + } |
|
109 | 109 | |
110 | 110 | |
111 | - /** |
|
112 | - * @param EE_Registration[] $registrations |
|
113 | - * @param boolean $update_existing_registrations |
|
114 | - * @return int |
|
115 | - * @throws EE_Error |
|
116 | - */ |
|
117 | - protected function incrementRegGroupSize(array $registrations, $update_existing_registrations = true) |
|
118 | - { |
|
119 | - $new_reg_group_size = count($registrations) + 1; |
|
120 | - if ($update_existing_registrations) { |
|
121 | - foreach ($registrations as $registration) { |
|
122 | - if ($registration instanceof EE_Registration) { |
|
123 | - $registration->set_group_size($new_reg_group_size); |
|
124 | - $registration->save(); |
|
125 | - } |
|
126 | - } |
|
127 | - } |
|
128 | - return $new_reg_group_size; |
|
129 | - } |
|
111 | + /** |
|
112 | + * @param EE_Registration[] $registrations |
|
113 | + * @param boolean $update_existing_registrations |
|
114 | + * @return int |
|
115 | + * @throws EE_Error |
|
116 | + */ |
|
117 | + protected function incrementRegGroupSize(array $registrations, $update_existing_registrations = true) |
|
118 | + { |
|
119 | + $new_reg_group_size = count($registrations) + 1; |
|
120 | + if ($update_existing_registrations) { |
|
121 | + foreach ($registrations as $registration) { |
|
122 | + if ($registration instanceof EE_Registration) { |
|
123 | + $registration->set_group_size($new_reg_group_size); |
|
124 | + $registration->save(); |
|
125 | + } |
|
126 | + } |
|
127 | + } |
|
128 | + return $new_reg_group_size; |
|
129 | + } |
|
130 | 130 | } |
@@ -18,225 +18,225 @@ |
||
18 | 18 | class EE_Recipient_List_Shortcodes extends EE_Shortcodes |
19 | 19 | { |
20 | 20 | |
21 | - public function __construct() |
|
22 | - { |
|
23 | - parent::__construct(); |
|
24 | - } |
|
25 | - |
|
26 | - |
|
27 | - protected function _init_props() |
|
28 | - { |
|
29 | - $this->label = __('Recipient List Shortcodes', 'event_espresso'); |
|
30 | - $this->description = __('All shortcodes specific to registrant recipients list type data.', 'event_espresso'); |
|
31 | - $this->_shortcodes = array( |
|
32 | - '[RECIPIENT_TICKET_LIST]' => __( |
|
33 | - 'Will output a list of tickets for the recipient of the email. Note, if the recipient is the Event Author, then this is blank.', |
|
34 | - 'event_espresso' |
|
35 | - ), |
|
36 | - '[RECIPIENT_DATETIME_LIST]' => __( |
|
37 | - 'Will output a list of datetimes that the person receiving this message has been registered for.', |
|
38 | - 'event_espresso' |
|
39 | - ), |
|
40 | - ); |
|
41 | - } |
|
42 | - |
|
43 | - |
|
44 | - protected function _parser($shortcode) |
|
45 | - { |
|
46 | - switch ($shortcode) { |
|
47 | - case '[RECIPIENT_TICKET_LIST]': |
|
48 | - return $this->_get_recipient_ticket_list(); |
|
49 | - break; |
|
50 | - |
|
51 | - case '[RECIPIENT_DATETIME_LIST]': |
|
52 | - return $this->_get_recipient_datetime_list(); |
|
53 | - break; |
|
54 | - } |
|
55 | - return ''; |
|
56 | - } |
|
57 | - |
|
58 | - |
|
59 | - /** |
|
60 | - * figure out what the incoming data is and then return the appropriate parsed value |
|
61 | - * |
|
62 | - * @return string |
|
63 | - */ |
|
64 | - private function _get_recipient_ticket_list() |
|
65 | - { |
|
66 | - $this->_validate_list_requirements(); |
|
67 | - |
|
68 | - if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
69 | - return $this->_get_recipient_ticket_list_parsed($this->_data['data']); |
|
70 | - } elseif ($this->_extra_data['data'] instanceof EE_Messages_Addressee) { |
|
71 | - return $this->_get_recipient_ticket_list_parsed($this->_extra_data['data']); |
|
72 | - } else { |
|
73 | - return ''; |
|
74 | - } |
|
75 | - } |
|
76 | - |
|
77 | - |
|
78 | - private function _get_recipient_ticket_list_parsed(EE_Messages_Addressee $data) |
|
79 | - { |
|
80 | - // first get registrations just for this attendee. |
|
81 | - $att = $data->att_obj; |
|
82 | - $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[ $att->ID() ]['reg_objs'] : array(); |
|
83 | - $registrations_on_attendee = empty($registrations_on_attendee) && $data->reg_obj instanceof EE_Registration |
|
84 | - ? array($data->reg_obj) : $registrations_on_attendee; |
|
85 | - $tkts = array(); |
|
86 | - |
|
87 | - // if we're coming in from the main content then $this->_data['data'] is instanceof EE_Messages_Addressee. |
|
88 | - // which means we want to get tickets for all events this addressee is a part of. |
|
89 | - if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
90 | - $valid_shortcodes = array( |
|
91 | - 'ticket', |
|
92 | - 'event_list', |
|
93 | - 'attendee_list', |
|
94 | - 'datetime_list', |
|
95 | - 'registration_details', |
|
96 | - 'attendee', |
|
97 | - 'recipient_details', |
|
98 | - ); |
|
99 | - $template = $this->_data['template']; |
|
100 | - |
|
101 | - // tickets will be tickets for all registrations on this attendee. |
|
102 | - foreach ($registrations_on_attendee as $reg) { |
|
103 | - if ($reg instanceof EE_Registration) { |
|
104 | - $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
105 | - $data->registrations[ $reg->ID() ] |
|
106 | - ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
107 | - ) ]['tkt_obj'] : null; |
|
108 | - if ($ticket instanceof EE_Ticket) { |
|
109 | - $tkts[ $ticket->ID() ] = $ticket; |
|
110 | - } |
|
111 | - } |
|
112 | - } |
|
113 | - } |
|
114 | - |
|
115 | - // if coming from the context of the event list parser, then let's return just the tickets for that event. |
|
116 | - $event = $this->_data['data']; |
|
117 | - if ($event instanceof EE_Event) { |
|
118 | - $valid_shortcodes = array('ticket', 'attendee_list', 'datetime_list', 'attendee', 'recipient_details'); |
|
119 | - $template = is_array($this->_data['template']) && isset($this->_data['template']['ticket_list']) |
|
120 | - ? $this->_data['template']['ticket_list'] : $this->_extra_data['template']['ticket_list']; |
|
121 | - // let's remove any existing [EVENT_LIST] shortcode from the ticket list template so that we don't get recursion. |
|
122 | - $template = str_replace('[EVENT_LIST]', '', $template); |
|
123 | - // data will be tickets for this event for this recipient. |
|
124 | - foreach ($registrations_on_attendee as $reg) { |
|
125 | - if ($reg instanceof EE_Registration && $reg->event_ID() == $event->ID()) { |
|
126 | - $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
127 | - $data->registrations[ $reg->ID() ] |
|
128 | - ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
129 | - ) ]['tkt_obj'] : null; |
|
130 | - if ($ticket instanceof EE_Ticket) { |
|
131 | - $tkts[ $ticket->ID() ] = $ticket; |
|
132 | - } |
|
133 | - } |
|
134 | - } |
|
135 | - } |
|
136 | - |
|
137 | - $tkt_parsed = ''; |
|
138 | - foreach ($tkts as $ticket) { |
|
139 | - $tkt_parsed .= $this->_shortcode_helper->parse_ticket_list_template( |
|
140 | - $template, |
|
141 | - $ticket, |
|
142 | - $valid_shortcodes, |
|
143 | - $this->_extra_data |
|
144 | - ); |
|
145 | - } |
|
146 | - return $tkt_parsed; |
|
147 | - } |
|
148 | - |
|
149 | - |
|
150 | - /** |
|
151 | - * figure out what the incoming data is and then return the appropriate parsed value |
|
152 | - * |
|
153 | - * @return string |
|
154 | - */ |
|
155 | - private function _get_recipient_datetime_list() |
|
156 | - { |
|
157 | - $this->_validate_list_requirements(); |
|
158 | - |
|
159 | - if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
160 | - return $this->_get_recipient_datetime_list_parsed($this->_data['data']); |
|
161 | - } elseif ($this->_extra_data['data'] instanceof EE_Messages_Addressee) { |
|
162 | - return $this->_get_recipient_datetime_list_parsed($this->_extra_data['data']); |
|
163 | - } else { |
|
164 | - return ''; |
|
165 | - } |
|
166 | - } |
|
167 | - |
|
168 | - |
|
169 | - private function _get_recipient_datetime_list_parsed(EE_Messages_Addressee $data) |
|
170 | - { |
|
171 | - // first get registrations just for this attendee. |
|
172 | - $att = $data->att_obj; |
|
173 | - $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[ $att->ID() ]['reg_objs'] : array(); |
|
174 | - $registrations_on_attendee = empty($registrations_on_attendee) && $data->reg_obj instanceof EE_Registration |
|
175 | - ? array($data->reg_obj) |
|
176 | - : $registrations_on_attendee; |
|
177 | - $valid_shortcodes = array('datetime', 'attendee', 'recipient_details'); |
|
178 | - $template = ''; |
|
179 | - $dtts = array(); |
|
180 | - |
|
181 | - // setup valid shortcodes depending on what the status of the $this->_data property is |
|
182 | - if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
183 | - $template = $this->_data['template']; |
|
184 | - |
|
185 | - // dtts will be datetimes for all registrations on this attendee |
|
186 | - foreach ($registrations_on_attendee as $reg) { |
|
187 | - if ($reg instanceof EE_Registration) { |
|
188 | - $dtt_objs = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
189 | - $data->registrations[ $reg->ID() ] |
|
190 | - ) && isset($data->registrations[ $reg->ID() ]['dtt_objs']) ? $data->registrations[ $reg->ID( |
|
191 | - ) ]['dtt_objs'] : array(); |
|
192 | - $dtt_objs = (array) $dtt_objs; |
|
193 | - foreach ($dtt_objs as $dtt_obj) { |
|
194 | - if ($dtt_obj instanceof EE_Datetime) { |
|
195 | - $dtts[ $dtt_obj->ID() ] = $dtt_obj; |
|
196 | - } |
|
197 | - } |
|
198 | - } |
|
199 | - } |
|
200 | - } |
|
201 | - |
|
202 | - // if coming from the context of the event list parser, then let's just return the datetimes for the specific event. |
|
203 | - $event = $this->_data['data']; |
|
204 | - if ($event instanceof EE_Event) { |
|
205 | - $template = is_array($this->_data['template']) && isset($this->_data['template']['datetime_list']) |
|
206 | - ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list']; |
|
207 | - |
|
208 | - // data will be datetimes for this event for this recipient |
|
209 | - foreach ($registrations_on_attendee as $reg) { |
|
210 | - if ($reg instanceof EE_Registration && $reg->event_ID() == $event->ID()) { |
|
211 | - $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
212 | - $data->registrations[ $reg->ID() ] |
|
213 | - ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
214 | - ) ]['tkt_obj'] : null; |
|
215 | - if ($ticket instanceof EE_Ticket) { |
|
216 | - $dtt_objs = isset($data->tickets[ $ticket->ID() ]) && is_array( |
|
217 | - $data->tickets[ $ticket->ID() ] |
|
218 | - ) && isset($data->tickets[ $ticket->ID() ]['dtt_objs']) ? $data->tickets[ $ticket->ID( |
|
219 | - ) ]['dtt_objs'] : array(); |
|
220 | - $dtt_objs = (array) $dtt_objs; |
|
221 | - foreach ($dtt_objs as $dtt_obj) { |
|
222 | - if ($dtt_obj instanceof EE_Datetime) { |
|
223 | - $dtts[ $dtt_obj->ID() ] = $dtt_obj; |
|
224 | - } |
|
225 | - } |
|
226 | - } |
|
227 | - } |
|
228 | - } |
|
229 | - } |
|
230 | - |
|
231 | - $dtt_parsed = ''; |
|
232 | - foreach ($dtts as $datetime) { |
|
233 | - $dtt_parsed .= $this->_shortcode_helper->parse_datetime_list_template( |
|
234 | - $template, |
|
235 | - $datetime, |
|
236 | - $valid_shortcodes, |
|
237 | - $this->_extra_data |
|
238 | - ); |
|
239 | - } |
|
240 | - return $dtt_parsed; |
|
241 | - } |
|
21 | + public function __construct() |
|
22 | + { |
|
23 | + parent::__construct(); |
|
24 | + } |
|
25 | + |
|
26 | + |
|
27 | + protected function _init_props() |
|
28 | + { |
|
29 | + $this->label = __('Recipient List Shortcodes', 'event_espresso'); |
|
30 | + $this->description = __('All shortcodes specific to registrant recipients list type data.', 'event_espresso'); |
|
31 | + $this->_shortcodes = array( |
|
32 | + '[RECIPIENT_TICKET_LIST]' => __( |
|
33 | + 'Will output a list of tickets for the recipient of the email. Note, if the recipient is the Event Author, then this is blank.', |
|
34 | + 'event_espresso' |
|
35 | + ), |
|
36 | + '[RECIPIENT_DATETIME_LIST]' => __( |
|
37 | + 'Will output a list of datetimes that the person receiving this message has been registered for.', |
|
38 | + 'event_espresso' |
|
39 | + ), |
|
40 | + ); |
|
41 | + } |
|
42 | + |
|
43 | + |
|
44 | + protected function _parser($shortcode) |
|
45 | + { |
|
46 | + switch ($shortcode) { |
|
47 | + case '[RECIPIENT_TICKET_LIST]': |
|
48 | + return $this->_get_recipient_ticket_list(); |
|
49 | + break; |
|
50 | + |
|
51 | + case '[RECIPIENT_DATETIME_LIST]': |
|
52 | + return $this->_get_recipient_datetime_list(); |
|
53 | + break; |
|
54 | + } |
|
55 | + return ''; |
|
56 | + } |
|
57 | + |
|
58 | + |
|
59 | + /** |
|
60 | + * figure out what the incoming data is and then return the appropriate parsed value |
|
61 | + * |
|
62 | + * @return string |
|
63 | + */ |
|
64 | + private function _get_recipient_ticket_list() |
|
65 | + { |
|
66 | + $this->_validate_list_requirements(); |
|
67 | + |
|
68 | + if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
69 | + return $this->_get_recipient_ticket_list_parsed($this->_data['data']); |
|
70 | + } elseif ($this->_extra_data['data'] instanceof EE_Messages_Addressee) { |
|
71 | + return $this->_get_recipient_ticket_list_parsed($this->_extra_data['data']); |
|
72 | + } else { |
|
73 | + return ''; |
|
74 | + } |
|
75 | + } |
|
76 | + |
|
77 | + |
|
78 | + private function _get_recipient_ticket_list_parsed(EE_Messages_Addressee $data) |
|
79 | + { |
|
80 | + // first get registrations just for this attendee. |
|
81 | + $att = $data->att_obj; |
|
82 | + $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[ $att->ID() ]['reg_objs'] : array(); |
|
83 | + $registrations_on_attendee = empty($registrations_on_attendee) && $data->reg_obj instanceof EE_Registration |
|
84 | + ? array($data->reg_obj) : $registrations_on_attendee; |
|
85 | + $tkts = array(); |
|
86 | + |
|
87 | + // if we're coming in from the main content then $this->_data['data'] is instanceof EE_Messages_Addressee. |
|
88 | + // which means we want to get tickets for all events this addressee is a part of. |
|
89 | + if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
90 | + $valid_shortcodes = array( |
|
91 | + 'ticket', |
|
92 | + 'event_list', |
|
93 | + 'attendee_list', |
|
94 | + 'datetime_list', |
|
95 | + 'registration_details', |
|
96 | + 'attendee', |
|
97 | + 'recipient_details', |
|
98 | + ); |
|
99 | + $template = $this->_data['template']; |
|
100 | + |
|
101 | + // tickets will be tickets for all registrations on this attendee. |
|
102 | + foreach ($registrations_on_attendee as $reg) { |
|
103 | + if ($reg instanceof EE_Registration) { |
|
104 | + $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
105 | + $data->registrations[ $reg->ID() ] |
|
106 | + ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
107 | + ) ]['tkt_obj'] : null; |
|
108 | + if ($ticket instanceof EE_Ticket) { |
|
109 | + $tkts[ $ticket->ID() ] = $ticket; |
|
110 | + } |
|
111 | + } |
|
112 | + } |
|
113 | + } |
|
114 | + |
|
115 | + // if coming from the context of the event list parser, then let's return just the tickets for that event. |
|
116 | + $event = $this->_data['data']; |
|
117 | + if ($event instanceof EE_Event) { |
|
118 | + $valid_shortcodes = array('ticket', 'attendee_list', 'datetime_list', 'attendee', 'recipient_details'); |
|
119 | + $template = is_array($this->_data['template']) && isset($this->_data['template']['ticket_list']) |
|
120 | + ? $this->_data['template']['ticket_list'] : $this->_extra_data['template']['ticket_list']; |
|
121 | + // let's remove any existing [EVENT_LIST] shortcode from the ticket list template so that we don't get recursion. |
|
122 | + $template = str_replace('[EVENT_LIST]', '', $template); |
|
123 | + // data will be tickets for this event for this recipient. |
|
124 | + foreach ($registrations_on_attendee as $reg) { |
|
125 | + if ($reg instanceof EE_Registration && $reg->event_ID() == $event->ID()) { |
|
126 | + $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
127 | + $data->registrations[ $reg->ID() ] |
|
128 | + ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
129 | + ) ]['tkt_obj'] : null; |
|
130 | + if ($ticket instanceof EE_Ticket) { |
|
131 | + $tkts[ $ticket->ID() ] = $ticket; |
|
132 | + } |
|
133 | + } |
|
134 | + } |
|
135 | + } |
|
136 | + |
|
137 | + $tkt_parsed = ''; |
|
138 | + foreach ($tkts as $ticket) { |
|
139 | + $tkt_parsed .= $this->_shortcode_helper->parse_ticket_list_template( |
|
140 | + $template, |
|
141 | + $ticket, |
|
142 | + $valid_shortcodes, |
|
143 | + $this->_extra_data |
|
144 | + ); |
|
145 | + } |
|
146 | + return $tkt_parsed; |
|
147 | + } |
|
148 | + |
|
149 | + |
|
150 | + /** |
|
151 | + * figure out what the incoming data is and then return the appropriate parsed value |
|
152 | + * |
|
153 | + * @return string |
|
154 | + */ |
|
155 | + private function _get_recipient_datetime_list() |
|
156 | + { |
|
157 | + $this->_validate_list_requirements(); |
|
158 | + |
|
159 | + if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
160 | + return $this->_get_recipient_datetime_list_parsed($this->_data['data']); |
|
161 | + } elseif ($this->_extra_data['data'] instanceof EE_Messages_Addressee) { |
|
162 | + return $this->_get_recipient_datetime_list_parsed($this->_extra_data['data']); |
|
163 | + } else { |
|
164 | + return ''; |
|
165 | + } |
|
166 | + } |
|
167 | + |
|
168 | + |
|
169 | + private function _get_recipient_datetime_list_parsed(EE_Messages_Addressee $data) |
|
170 | + { |
|
171 | + // first get registrations just for this attendee. |
|
172 | + $att = $data->att_obj; |
|
173 | + $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[ $att->ID() ]['reg_objs'] : array(); |
|
174 | + $registrations_on_attendee = empty($registrations_on_attendee) && $data->reg_obj instanceof EE_Registration |
|
175 | + ? array($data->reg_obj) |
|
176 | + : $registrations_on_attendee; |
|
177 | + $valid_shortcodes = array('datetime', 'attendee', 'recipient_details'); |
|
178 | + $template = ''; |
|
179 | + $dtts = array(); |
|
180 | + |
|
181 | + // setup valid shortcodes depending on what the status of the $this->_data property is |
|
182 | + if ($this->_data['data'] instanceof EE_Messages_Addressee) { |
|
183 | + $template = $this->_data['template']; |
|
184 | + |
|
185 | + // dtts will be datetimes for all registrations on this attendee |
|
186 | + foreach ($registrations_on_attendee as $reg) { |
|
187 | + if ($reg instanceof EE_Registration) { |
|
188 | + $dtt_objs = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
189 | + $data->registrations[ $reg->ID() ] |
|
190 | + ) && isset($data->registrations[ $reg->ID() ]['dtt_objs']) ? $data->registrations[ $reg->ID( |
|
191 | + ) ]['dtt_objs'] : array(); |
|
192 | + $dtt_objs = (array) $dtt_objs; |
|
193 | + foreach ($dtt_objs as $dtt_obj) { |
|
194 | + if ($dtt_obj instanceof EE_Datetime) { |
|
195 | + $dtts[ $dtt_obj->ID() ] = $dtt_obj; |
|
196 | + } |
|
197 | + } |
|
198 | + } |
|
199 | + } |
|
200 | + } |
|
201 | + |
|
202 | + // if coming from the context of the event list parser, then let's just return the datetimes for the specific event. |
|
203 | + $event = $this->_data['data']; |
|
204 | + if ($event instanceof EE_Event) { |
|
205 | + $template = is_array($this->_data['template']) && isset($this->_data['template']['datetime_list']) |
|
206 | + ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list']; |
|
207 | + |
|
208 | + // data will be datetimes for this event for this recipient |
|
209 | + foreach ($registrations_on_attendee as $reg) { |
|
210 | + if ($reg instanceof EE_Registration && $reg->event_ID() == $event->ID()) { |
|
211 | + $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
212 | + $data->registrations[ $reg->ID() ] |
|
213 | + ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
214 | + ) ]['tkt_obj'] : null; |
|
215 | + if ($ticket instanceof EE_Ticket) { |
|
216 | + $dtt_objs = isset($data->tickets[ $ticket->ID() ]) && is_array( |
|
217 | + $data->tickets[ $ticket->ID() ] |
|
218 | + ) && isset($data->tickets[ $ticket->ID() ]['dtt_objs']) ? $data->tickets[ $ticket->ID( |
|
219 | + ) ]['dtt_objs'] : array(); |
|
220 | + $dtt_objs = (array) $dtt_objs; |
|
221 | + foreach ($dtt_objs as $dtt_obj) { |
|
222 | + if ($dtt_obj instanceof EE_Datetime) { |
|
223 | + $dtts[ $dtt_obj->ID() ] = $dtt_obj; |
|
224 | + } |
|
225 | + } |
|
226 | + } |
|
227 | + } |
|
228 | + } |
|
229 | + } |
|
230 | + |
|
231 | + $dtt_parsed = ''; |
|
232 | + foreach ($dtts as $datetime) { |
|
233 | + $dtt_parsed .= $this->_shortcode_helper->parse_datetime_list_template( |
|
234 | + $template, |
|
235 | + $datetime, |
|
236 | + $valid_shortcodes, |
|
237 | + $this->_extra_data |
|
238 | + ); |
|
239 | + } |
|
240 | + return $dtt_parsed; |
|
241 | + } |
|
242 | 242 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | { |
80 | 80 | // first get registrations just for this attendee. |
81 | 81 | $att = $data->att_obj; |
82 | - $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[ $att->ID() ]['reg_objs'] : array(); |
|
82 | + $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[$att->ID()]['reg_objs'] : array(); |
|
83 | 83 | $registrations_on_attendee = empty($registrations_on_attendee) && $data->reg_obj instanceof EE_Registration |
84 | 84 | ? array($data->reg_obj) : $registrations_on_attendee; |
85 | 85 | $tkts = array(); |
@@ -101,12 +101,12 @@ discard block |
||
101 | 101 | // tickets will be tickets for all registrations on this attendee. |
102 | 102 | foreach ($registrations_on_attendee as $reg) { |
103 | 103 | if ($reg instanceof EE_Registration) { |
104 | - $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
105 | - $data->registrations[ $reg->ID() ] |
|
106 | - ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
107 | - ) ]['tkt_obj'] : null; |
|
104 | + $ticket = isset($data->registrations[$reg->ID()]) && is_array( |
|
105 | + $data->registrations[$reg->ID()] |
|
106 | + ) && isset($data->registrations[$reg->ID()]['tkt_obj']) ? $data->registrations[$reg->ID( |
|
107 | + )]['tkt_obj'] : null; |
|
108 | 108 | if ($ticket instanceof EE_Ticket) { |
109 | - $tkts[ $ticket->ID() ] = $ticket; |
|
109 | + $tkts[$ticket->ID()] = $ticket; |
|
110 | 110 | } |
111 | 111 | } |
112 | 112 | } |
@@ -123,12 +123,12 @@ discard block |
||
123 | 123 | // data will be tickets for this event for this recipient. |
124 | 124 | foreach ($registrations_on_attendee as $reg) { |
125 | 125 | if ($reg instanceof EE_Registration && $reg->event_ID() == $event->ID()) { |
126 | - $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
127 | - $data->registrations[ $reg->ID() ] |
|
128 | - ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
129 | - ) ]['tkt_obj'] : null; |
|
126 | + $ticket = isset($data->registrations[$reg->ID()]) && is_array( |
|
127 | + $data->registrations[$reg->ID()] |
|
128 | + ) && isset($data->registrations[$reg->ID()]['tkt_obj']) ? $data->registrations[$reg->ID( |
|
129 | + )]['tkt_obj'] : null; |
|
130 | 130 | if ($ticket instanceof EE_Ticket) { |
131 | - $tkts[ $ticket->ID() ] = $ticket; |
|
131 | + $tkts[$ticket->ID()] = $ticket; |
|
132 | 132 | } |
133 | 133 | } |
134 | 134 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | { |
171 | 171 | // first get registrations just for this attendee. |
172 | 172 | $att = $data->att_obj; |
173 | - $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[ $att->ID() ]['reg_objs'] : array(); |
|
173 | + $registrations_on_attendee = $att instanceof EE_Attendee ? $data->attendees[$att->ID()]['reg_objs'] : array(); |
|
174 | 174 | $registrations_on_attendee = empty($registrations_on_attendee) && $data->reg_obj instanceof EE_Registration |
175 | 175 | ? array($data->reg_obj) |
176 | 176 | : $registrations_on_attendee; |
@@ -185,14 +185,14 @@ discard block |
||
185 | 185 | // dtts will be datetimes for all registrations on this attendee |
186 | 186 | foreach ($registrations_on_attendee as $reg) { |
187 | 187 | if ($reg instanceof EE_Registration) { |
188 | - $dtt_objs = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
189 | - $data->registrations[ $reg->ID() ] |
|
190 | - ) && isset($data->registrations[ $reg->ID() ]['dtt_objs']) ? $data->registrations[ $reg->ID( |
|
191 | - ) ]['dtt_objs'] : array(); |
|
188 | + $dtt_objs = isset($data->registrations[$reg->ID()]) && is_array( |
|
189 | + $data->registrations[$reg->ID()] |
|
190 | + ) && isset($data->registrations[$reg->ID()]['dtt_objs']) ? $data->registrations[$reg->ID( |
|
191 | + )]['dtt_objs'] : array(); |
|
192 | 192 | $dtt_objs = (array) $dtt_objs; |
193 | 193 | foreach ($dtt_objs as $dtt_obj) { |
194 | 194 | if ($dtt_obj instanceof EE_Datetime) { |
195 | - $dtts[ $dtt_obj->ID() ] = $dtt_obj; |
|
195 | + $dtts[$dtt_obj->ID()] = $dtt_obj; |
|
196 | 196 | } |
197 | 197 | } |
198 | 198 | } |
@@ -208,19 +208,19 @@ discard block |
||
208 | 208 | // data will be datetimes for this event for this recipient |
209 | 209 | foreach ($registrations_on_attendee as $reg) { |
210 | 210 | if ($reg instanceof EE_Registration && $reg->event_ID() == $event->ID()) { |
211 | - $ticket = isset($data->registrations[ $reg->ID() ]) && is_array( |
|
212 | - $data->registrations[ $reg->ID() ] |
|
213 | - ) && isset($data->registrations[ $reg->ID() ]['tkt_obj']) ? $data->registrations[ $reg->ID( |
|
214 | - ) ]['tkt_obj'] : null; |
|
211 | + $ticket = isset($data->registrations[$reg->ID()]) && is_array( |
|
212 | + $data->registrations[$reg->ID()] |
|
213 | + ) && isset($data->registrations[$reg->ID()]['tkt_obj']) ? $data->registrations[$reg->ID( |
|
214 | + )]['tkt_obj'] : null; |
|
215 | 215 | if ($ticket instanceof EE_Ticket) { |
216 | - $dtt_objs = isset($data->tickets[ $ticket->ID() ]) && is_array( |
|
217 | - $data->tickets[ $ticket->ID() ] |
|
218 | - ) && isset($data->tickets[ $ticket->ID() ]['dtt_objs']) ? $data->tickets[ $ticket->ID( |
|
219 | - ) ]['dtt_objs'] : array(); |
|
216 | + $dtt_objs = isset($data->tickets[$ticket->ID()]) && is_array( |
|
217 | + $data->tickets[$ticket->ID()] |
|
218 | + ) && isset($data->tickets[$ticket->ID()]['dtt_objs']) ? $data->tickets[$ticket->ID( |
|
219 | + )]['dtt_objs'] : array(); |
|
220 | 220 | $dtt_objs = (array) $dtt_objs; |
221 | 221 | foreach ($dtt_objs as $dtt_obj) { |
222 | 222 | if ($dtt_obj instanceof EE_Datetime) { |
223 | - $dtts[ $dtt_obj->ID() ] = $dtt_obj; |
|
223 | + $dtts[$dtt_obj->ID()] = $dtt_obj; |
|
224 | 224 | } |
225 | 225 | } |
226 | 226 | } |
@@ -383,7 +383,7 @@ |
||
383 | 383 | /** |
384 | 384 | * Sets up the limit for the registrations query. |
385 | 385 | * |
386 | - * @param $per_page |
|
386 | + * @param integer $per_page |
|
387 | 387 | * @return array |
388 | 388 | */ |
389 | 389 | protected function getLimitClause($per_page) |
@@ -21,384 +21,384 @@ |
||
21 | 21 | class QueryBuilder |
22 | 22 | { |
23 | 23 | |
24 | - /** |
|
25 | - * @var RequestInterface $request |
|
26 | - */ |
|
27 | - protected $request; |
|
28 | - |
|
29 | - /** |
|
30 | - * @var EEM_Registration $registration_model |
|
31 | - */ |
|
32 | - protected $registration_model; |
|
33 | - |
|
34 | - /** |
|
35 | - * @var string $view |
|
36 | - */ |
|
37 | - protected $view; |
|
38 | - |
|
39 | - /** |
|
40 | - * @var array $where_params |
|
41 | - */ |
|
42 | - protected $where_params; |
|
43 | - |
|
44 | - |
|
45 | - /** |
|
46 | - * QueryBuilder constructor. |
|
47 | - * |
|
48 | - * @param array $extra_request_params |
|
49 | - * @param RequestInterface $request |
|
50 | - * @param EEM_Registration $registration_model |
|
51 | - */ |
|
52 | - public function __construct( |
|
53 | - array $extra_request_params, |
|
54 | - RequestInterface $request, |
|
55 | - EEM_Registration $registration_model |
|
56 | - ) { |
|
57 | - $this->request = $request; |
|
58 | - $this->registration_model = $registration_model; |
|
59 | - foreach ($extra_request_params as $key => $value) { |
|
60 | - $this->request->setRequestParam($key, $value); |
|
61 | - } |
|
62 | - $this->view = $this->request->getRequestParam('status', ''); |
|
63 | - $this->where_params = []; |
|
64 | - } |
|
65 | - |
|
66 | - |
|
67 | - /** |
|
68 | - * Sets up the where conditions for the registrations query. |
|
69 | - * |
|
70 | - * @param int $per_page |
|
71 | - * @param bool $count_query |
|
72 | - * @return array |
|
73 | - * @throws EE_Error |
|
74 | - * @throws InvalidArgumentException |
|
75 | - * @throws InvalidDataTypeException |
|
76 | - * @throws InvalidInterfaceException |
|
77 | - */ |
|
78 | - public function getQueryParams($per_page = 10, $count_query = false) |
|
79 | - { |
|
80 | - $query_params = [ |
|
81 | - 0 => $this->getWhereClause(), |
|
82 | - 'caps' => EEM_Registration::caps_read_admin, |
|
83 | - 'default_where_conditions' => 'this_model_only', |
|
84 | - ]; |
|
85 | - if (! $count_query) { |
|
86 | - $query_params = array_merge( |
|
87 | - $query_params, |
|
88 | - $this->getOrderbyClause(), |
|
89 | - $this->getLimitClause($per_page) |
|
90 | - ); |
|
91 | - } |
|
92 | - |
|
93 | - return $query_params; |
|
94 | - } |
|
95 | - |
|
96 | - |
|
97 | - /** |
|
98 | - * Sets up the where conditions for the registrations query. |
|
99 | - * |
|
100 | - * @return array |
|
101 | - * @throws EE_Error |
|
102 | - * @throws InvalidArgumentException |
|
103 | - * @throws InvalidDataTypeException |
|
104 | - * @throws InvalidInterfaceException |
|
105 | - */ |
|
106 | - protected function getWhereClause() |
|
107 | - { |
|
108 | - $this->addAttendeeIdToWhereConditions(); |
|
109 | - $this->addEventIdToWhereConditions(); |
|
110 | - $this->addCategoryIdToWhereConditions(); |
|
111 | - $this->addDatetimeIdToWhereConditions(); |
|
112 | - $this->addTicketIdToWhereConditions(); |
|
113 | - $this->addRegistrationStatusToWhereConditions(); |
|
114 | - $this->addDateToWhereConditions(); |
|
115 | - $this->addSearchToWhereConditions(); |
|
116 | - return apply_filters( |
|
117 | - 'FHEE__Registrations_Admin_Page___get_where_conditions_for_registrations_query', |
|
118 | - $this->where_params, |
|
119 | - $this->request->requestParams() |
|
120 | - ); |
|
121 | - } |
|
122 | - |
|
123 | - |
|
124 | - /** |
|
125 | - * This will add ATT_ID to the provided $this->where_clause array for EE model query parameters. |
|
126 | - */ |
|
127 | - protected function addAttendeeIdToWhereConditions() |
|
128 | - { |
|
129 | - $ATT_ID = $this->request->getRequestParam('attendee_id'); |
|
130 | - $ATT_ID = $this->request->getRequestParam('ATT_ID', $ATT_ID); |
|
131 | - if ($ATT_ID) { |
|
132 | - $this->where_params['ATT_ID'] = absint($ATT_ID); |
|
133 | - } |
|
134 | - } |
|
135 | - |
|
136 | - |
|
137 | - /** |
|
138 | - * This will add EVT_ID to the provided $this->where_clause array for EE model query parameters. |
|
139 | - */ |
|
140 | - protected function addEventIdToWhereConditions() |
|
141 | - { |
|
142 | - $EVT_ID = $this->request->getRequestParam('event_id'); |
|
143 | - $EVT_ID = $this->request->getRequestParam('EVT_ID', $EVT_ID); |
|
144 | - if ($EVT_ID) { |
|
145 | - $this->where_params['EVT_ID'] = absint($EVT_ID); |
|
146 | - } |
|
147 | - } |
|
148 | - |
|
149 | - |
|
150 | - /** |
|
151 | - * Adds category ID if it exists in the request to the where conditions for the registrations query. |
|
152 | - */ |
|
153 | - protected function addCategoryIdToWhereConditions() |
|
154 | - { |
|
155 | - $EVT_CAT = (int) $this->request->getRequestParam('EVT_CAT'); |
|
156 | - if ($EVT_CAT > 0) { |
|
157 | - $this->where_params['Event.Term_Taxonomy.term_id'] = absint($EVT_CAT); |
|
158 | - } |
|
159 | - } |
|
160 | - |
|
161 | - |
|
162 | - /** |
|
163 | - * Adds the datetime ID if it exists in the request to the where conditions for the registrations query. |
|
164 | - */ |
|
165 | - protected function addDatetimeIdToWhereConditions() |
|
166 | - { |
|
167 | - // first look for 'datetime_id' then 'DTT_ID' using first result as fallback default value |
|
168 | - $DTT_ID = $this->request->getRequestParam('datetime_id'); |
|
169 | - $DTT_ID = $this->request->getRequestParam('DTT_ID', $DTT_ID); |
|
170 | - if ($DTT_ID) { |
|
171 | - $this->where_params['Ticket.Datetime.DTT_ID'] = absint($DTT_ID); |
|
172 | - } |
|
173 | - } |
|
174 | - |
|
175 | - |
|
176 | - /** |
|
177 | - * Adds the ticket ID if it exists in the request to the where conditions for the registrations query. |
|
178 | - */ |
|
179 | - protected function addTicketIdToWhereConditions() |
|
180 | - { |
|
181 | - // first look for 'ticket_id' then 'TKT_ID' using first result as fallback default value |
|
182 | - $TKT_ID = $this->request->getRequestParam('ticket_id'); |
|
183 | - $TKT_ID = $this->request->getRequestParam('TKT_ID', $TKT_ID); |
|
184 | - if ($TKT_ID) { |
|
185 | - $this->where_params['TKT_ID'] = absint($TKT_ID); |
|
186 | - } |
|
187 | - } |
|
188 | - |
|
189 | - |
|
190 | - /** |
|
191 | - * Adds the correct registration status to the where conditions for the registrations query. |
|
192 | - * If filtering by registration status, then we show registrations matching that status. |
|
193 | - * If not filtering by specified status, then we show all registrations excluding incomplete registrations |
|
194 | - * UNLESS viewing trashed registrations. |
|
195 | - */ |
|
196 | - protected function addRegistrationStatusToWhereConditions() |
|
197 | - { |
|
198 | - $registration_status = $this->request->getRequestParam('_reg_status'); |
|
199 | - if ($registration_status) { |
|
200 | - $this->where_params['STS_ID'] = sanitize_text_field($registration_status); |
|
201 | - return; |
|
202 | - } |
|
203 | - // make sure we exclude incomplete registrations, but only if not trashed. |
|
204 | - if ($this->view === 'trash') { |
|
205 | - $this->where_params['REG_deleted'] = true; |
|
206 | - return; |
|
207 | - } |
|
208 | - $this->where_params['STS_ID'] = $this->view === 'incomplete' |
|
209 | - ? EEM_Registration::status_id_incomplete |
|
210 | - : ['!=', EEM_Registration::status_id_incomplete]; |
|
211 | - } |
|
212 | - |
|
213 | - |
|
214 | - /** |
|
215 | - * Adds any provided date restraints to the where conditions for the registrations query. |
|
216 | - * |
|
217 | - * @throws EE_Error |
|
218 | - * @throws InvalidArgumentException |
|
219 | - * @throws InvalidDataTypeException |
|
220 | - * @throws InvalidInterfaceException |
|
221 | - */ |
|
222 | - protected function addDateToWhereConditions() |
|
223 | - { |
|
224 | - if ($this->view === 'today') { |
|
225 | - $now = date('Y-m-d', current_time('timestamp')); |
|
226 | - $this->where_params['REG_date'] = [ |
|
227 | - 'BETWEEN', |
|
228 | - [ |
|
229 | - $this->registration_model->convert_datetime_for_query( |
|
230 | - 'REG_date', |
|
231 | - $now . ' 00:00:00', |
|
232 | - 'Y-m-d H:i:s' |
|
233 | - ), |
|
234 | - $this->registration_model->convert_datetime_for_query( |
|
235 | - 'REG_date', |
|
236 | - $now . ' 23:59:59', |
|
237 | - 'Y-m-d H:i:s' |
|
238 | - ), |
|
239 | - ], |
|
240 | - ]; |
|
241 | - return; |
|
242 | - } |
|
243 | - if ($this->view === 'month') { |
|
244 | - $current_year_and_month = date('Y-m', current_time('timestamp')); |
|
245 | - $days_this_month = date('t', current_time('timestamp')); |
|
246 | - $this->where_params['REG_date'] = [ |
|
247 | - 'BETWEEN', |
|
248 | - [ |
|
249 | - $this->registration_model->convert_datetime_for_query( |
|
250 | - 'REG_date', |
|
251 | - $current_year_and_month . '-01 00:00:00', |
|
252 | - 'Y-m-d H:i:s' |
|
253 | - ), |
|
254 | - $this->registration_model->convert_datetime_for_query( |
|
255 | - 'REG_date', |
|
256 | - $current_year_and_month . '-' . $days_this_month . ' 23:59:59', |
|
257 | - 'Y-m-d H:i:s' |
|
258 | - ), |
|
259 | - ], |
|
260 | - ]; |
|
261 | - return; |
|
262 | - } |
|
263 | - $month_range = $this->request->getRequestParam('month_range'); |
|
264 | - if ($month_range) { |
|
265 | - $month_range = sanitize_text_field($month_range); |
|
266 | - $pieces = explode(' ', $month_range, 3); |
|
267 | - $month_requested = ! empty($pieces[0]) |
|
268 | - ? date('m', EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) |
|
269 | - : ''; |
|
270 | - $year_requested = ! empty($pieces[1]) |
|
271 | - ? $pieces[1] |
|
272 | - : ''; |
|
273 | - // if there is not a month or year then we can't go further |
|
274 | - if ($month_requested && $year_requested) { |
|
275 | - $days_in_month = date('t', strtotime($year_requested . '-' . $month_requested . '-' . '01')); |
|
276 | - $this->where_params['REG_date'] = [ |
|
277 | - 'BETWEEN', |
|
278 | - [ |
|
279 | - $this->registration_model->convert_datetime_for_query( |
|
280 | - 'REG_date', |
|
281 | - $year_requested . '-' . $month_requested . '-01 00:00:00', |
|
282 | - 'Y-m-d H:i:s' |
|
283 | - ), |
|
284 | - $this->registration_model->convert_datetime_for_query( |
|
285 | - 'REG_date', |
|
286 | - $year_requested . '-' . $month_requested . '-' . $days_in_month . ' 23:59:59', |
|
287 | - 'Y-m-d H:i:s' |
|
288 | - ), |
|
289 | - ], |
|
290 | - ]; |
|
291 | - } |
|
292 | - } |
|
293 | - } |
|
294 | - |
|
295 | - |
|
296 | - /** |
|
297 | - * Adds any provided search restraints to the where conditions for the registrations query |
|
298 | - */ |
|
299 | - protected function addSearchToWhereConditions() |
|
300 | - { |
|
301 | - $search = $this->request->getRequestParam('s'); |
|
302 | - if ($search) { |
|
303 | - $search_string = '%' . sanitize_text_field($search) . '%'; |
|
304 | - $this->where_params['OR*search_conditions'] = [ |
|
305 | - 'Event.EVT_name' => ['LIKE', $search_string], |
|
306 | - 'Event.EVT_desc' => ['LIKE', $search_string], |
|
307 | - 'Event.EVT_short_desc' => ['LIKE', $search_string], |
|
308 | - 'Attendee.ATT_full_name' => ['LIKE', $search_string], |
|
309 | - 'Attendee.ATT_fname' => ['LIKE', $search_string], |
|
310 | - 'Attendee.ATT_lname' => ['LIKE', $search_string], |
|
311 | - 'Attendee.ATT_short_bio' => ['LIKE', $search_string], |
|
312 | - 'Attendee.ATT_email' => ['LIKE', $search_string], |
|
313 | - 'Attendee.ATT_address' => ['LIKE', $search_string], |
|
314 | - 'Attendee.ATT_address2' => ['LIKE', $search_string], |
|
315 | - 'Attendee.ATT_city' => ['LIKE', $search_string], |
|
316 | - 'REG_final_price' => ['LIKE', $search_string], |
|
317 | - 'REG_code' => ['LIKE', $search_string], |
|
318 | - 'REG_count' => ['LIKE', $search_string], |
|
319 | - 'REG_group_size' => ['LIKE', $search_string], |
|
320 | - 'Ticket.TKT_name' => ['LIKE', $search_string], |
|
321 | - 'Ticket.TKT_description' => ['LIKE', $search_string], |
|
322 | - 'Transaction.Payment.PAY_txn_id_chq_nmbr' => ['LIKE', $search_string], |
|
323 | - ]; |
|
324 | - } |
|
325 | - } |
|
326 | - |
|
327 | - |
|
328 | - /** |
|
329 | - * Sets up the orderby for the registrations query. |
|
330 | - * |
|
331 | - * @return array |
|
332 | - */ |
|
333 | - protected function getOrderbyClause() |
|
334 | - { |
|
335 | - $orderby_field = $this->request->getRequestParam('orderby'); |
|
336 | - $orderby_field = $orderby_field ? sanitize_text_field($orderby_field) : '_REG_date'; |
|
337 | - switch ($orderby_field) { |
|
338 | - case '_REG_ID': |
|
339 | - $orderby = ['REG_ID']; |
|
340 | - break; |
|
341 | - case '_Reg_status': |
|
342 | - $orderby = ['STS_ID']; |
|
343 | - break; |
|
344 | - case 'ATT_fname': |
|
345 | - $orderby = ['Attendee.ATT_fname', 'Attendee.ATT_lname']; |
|
346 | - break; |
|
347 | - case 'ATT_lname': |
|
348 | - $orderby = ['Attendee.ATT_lname', 'Attendee.ATT_fname']; |
|
349 | - break; |
|
350 | - case 'event_name': |
|
351 | - $orderby = ['Event.EVT_name']; |
|
352 | - break; |
|
353 | - case 'DTT_EVT_start': |
|
354 | - $orderby = ['Event.Datetime.DTT_EVT_start']; |
|
355 | - break; |
|
356 | - case '_REG_date': |
|
357 | - $orderby = ['REG_date']; |
|
358 | - break; |
|
359 | - default: |
|
360 | - $orderby = [$orderby_field]; |
|
361 | - break; |
|
362 | - } |
|
363 | - $order = $this->request->getRequestParam('order'); |
|
364 | - $order = $order ? sanitize_text_field($order) : 'DESC'; |
|
365 | - |
|
366 | - $orderby = array_combine( |
|
367 | - $orderby, |
|
368 | - array_fill(0, count($orderby), $order) |
|
369 | - ); |
|
370 | - // because there are many registrations with the same date, define |
|
371 | - // a secondary way to order them, otherwise MySQL seems to be a bit random |
|
372 | - if (empty($orderby['REG_ID'])) { |
|
373 | - $orderby['REG_ID'] = $order; |
|
374 | - } |
|
375 | - |
|
376 | - $orderby = apply_filters( |
|
377 | - 'FHEE__Registrations_Admin_Page___get_orderby_for_registrations_query', |
|
378 | - $orderby, |
|
379 | - $this->request->requestParams() |
|
380 | - ); |
|
381 | - return ['order_by' => $orderby]; |
|
382 | - } |
|
383 | - |
|
384 | - |
|
385 | - /** |
|
386 | - * Sets up the limit for the registrations query. |
|
387 | - * |
|
388 | - * @param $per_page |
|
389 | - * @return array |
|
390 | - */ |
|
391 | - protected function getLimitClause($per_page) |
|
392 | - { |
|
393 | - $current_page = $this->request->getRequestParam('paged'); |
|
394 | - $current_page = $current_page ? absint($current_page) : 1; |
|
395 | - $per_page = (int) $this->request->getRequestParam('perpage', $per_page); |
|
396 | - // -1 means return all results so get out if that's set. |
|
397 | - if ($per_page === -1) { |
|
398 | - return []; |
|
399 | - } |
|
400 | - $per_page = absint($per_page); |
|
401 | - $offset = ($current_page - 1) * $per_page; |
|
402 | - return ['limit' => [$offset, $per_page]]; |
|
403 | - } |
|
24 | + /** |
|
25 | + * @var RequestInterface $request |
|
26 | + */ |
|
27 | + protected $request; |
|
28 | + |
|
29 | + /** |
|
30 | + * @var EEM_Registration $registration_model |
|
31 | + */ |
|
32 | + protected $registration_model; |
|
33 | + |
|
34 | + /** |
|
35 | + * @var string $view |
|
36 | + */ |
|
37 | + protected $view; |
|
38 | + |
|
39 | + /** |
|
40 | + * @var array $where_params |
|
41 | + */ |
|
42 | + protected $where_params; |
|
43 | + |
|
44 | + |
|
45 | + /** |
|
46 | + * QueryBuilder constructor. |
|
47 | + * |
|
48 | + * @param array $extra_request_params |
|
49 | + * @param RequestInterface $request |
|
50 | + * @param EEM_Registration $registration_model |
|
51 | + */ |
|
52 | + public function __construct( |
|
53 | + array $extra_request_params, |
|
54 | + RequestInterface $request, |
|
55 | + EEM_Registration $registration_model |
|
56 | + ) { |
|
57 | + $this->request = $request; |
|
58 | + $this->registration_model = $registration_model; |
|
59 | + foreach ($extra_request_params as $key => $value) { |
|
60 | + $this->request->setRequestParam($key, $value); |
|
61 | + } |
|
62 | + $this->view = $this->request->getRequestParam('status', ''); |
|
63 | + $this->where_params = []; |
|
64 | + } |
|
65 | + |
|
66 | + |
|
67 | + /** |
|
68 | + * Sets up the where conditions for the registrations query. |
|
69 | + * |
|
70 | + * @param int $per_page |
|
71 | + * @param bool $count_query |
|
72 | + * @return array |
|
73 | + * @throws EE_Error |
|
74 | + * @throws InvalidArgumentException |
|
75 | + * @throws InvalidDataTypeException |
|
76 | + * @throws InvalidInterfaceException |
|
77 | + */ |
|
78 | + public function getQueryParams($per_page = 10, $count_query = false) |
|
79 | + { |
|
80 | + $query_params = [ |
|
81 | + 0 => $this->getWhereClause(), |
|
82 | + 'caps' => EEM_Registration::caps_read_admin, |
|
83 | + 'default_where_conditions' => 'this_model_only', |
|
84 | + ]; |
|
85 | + if (! $count_query) { |
|
86 | + $query_params = array_merge( |
|
87 | + $query_params, |
|
88 | + $this->getOrderbyClause(), |
|
89 | + $this->getLimitClause($per_page) |
|
90 | + ); |
|
91 | + } |
|
92 | + |
|
93 | + return $query_params; |
|
94 | + } |
|
95 | + |
|
96 | + |
|
97 | + /** |
|
98 | + * Sets up the where conditions for the registrations query. |
|
99 | + * |
|
100 | + * @return array |
|
101 | + * @throws EE_Error |
|
102 | + * @throws InvalidArgumentException |
|
103 | + * @throws InvalidDataTypeException |
|
104 | + * @throws InvalidInterfaceException |
|
105 | + */ |
|
106 | + protected function getWhereClause() |
|
107 | + { |
|
108 | + $this->addAttendeeIdToWhereConditions(); |
|
109 | + $this->addEventIdToWhereConditions(); |
|
110 | + $this->addCategoryIdToWhereConditions(); |
|
111 | + $this->addDatetimeIdToWhereConditions(); |
|
112 | + $this->addTicketIdToWhereConditions(); |
|
113 | + $this->addRegistrationStatusToWhereConditions(); |
|
114 | + $this->addDateToWhereConditions(); |
|
115 | + $this->addSearchToWhereConditions(); |
|
116 | + return apply_filters( |
|
117 | + 'FHEE__Registrations_Admin_Page___get_where_conditions_for_registrations_query', |
|
118 | + $this->where_params, |
|
119 | + $this->request->requestParams() |
|
120 | + ); |
|
121 | + } |
|
122 | + |
|
123 | + |
|
124 | + /** |
|
125 | + * This will add ATT_ID to the provided $this->where_clause array for EE model query parameters. |
|
126 | + */ |
|
127 | + protected function addAttendeeIdToWhereConditions() |
|
128 | + { |
|
129 | + $ATT_ID = $this->request->getRequestParam('attendee_id'); |
|
130 | + $ATT_ID = $this->request->getRequestParam('ATT_ID', $ATT_ID); |
|
131 | + if ($ATT_ID) { |
|
132 | + $this->where_params['ATT_ID'] = absint($ATT_ID); |
|
133 | + } |
|
134 | + } |
|
135 | + |
|
136 | + |
|
137 | + /** |
|
138 | + * This will add EVT_ID to the provided $this->where_clause array for EE model query parameters. |
|
139 | + */ |
|
140 | + protected function addEventIdToWhereConditions() |
|
141 | + { |
|
142 | + $EVT_ID = $this->request->getRequestParam('event_id'); |
|
143 | + $EVT_ID = $this->request->getRequestParam('EVT_ID', $EVT_ID); |
|
144 | + if ($EVT_ID) { |
|
145 | + $this->where_params['EVT_ID'] = absint($EVT_ID); |
|
146 | + } |
|
147 | + } |
|
148 | + |
|
149 | + |
|
150 | + /** |
|
151 | + * Adds category ID if it exists in the request to the where conditions for the registrations query. |
|
152 | + */ |
|
153 | + protected function addCategoryIdToWhereConditions() |
|
154 | + { |
|
155 | + $EVT_CAT = (int) $this->request->getRequestParam('EVT_CAT'); |
|
156 | + if ($EVT_CAT > 0) { |
|
157 | + $this->where_params['Event.Term_Taxonomy.term_id'] = absint($EVT_CAT); |
|
158 | + } |
|
159 | + } |
|
160 | + |
|
161 | + |
|
162 | + /** |
|
163 | + * Adds the datetime ID if it exists in the request to the where conditions for the registrations query. |
|
164 | + */ |
|
165 | + protected function addDatetimeIdToWhereConditions() |
|
166 | + { |
|
167 | + // first look for 'datetime_id' then 'DTT_ID' using first result as fallback default value |
|
168 | + $DTT_ID = $this->request->getRequestParam('datetime_id'); |
|
169 | + $DTT_ID = $this->request->getRequestParam('DTT_ID', $DTT_ID); |
|
170 | + if ($DTT_ID) { |
|
171 | + $this->where_params['Ticket.Datetime.DTT_ID'] = absint($DTT_ID); |
|
172 | + } |
|
173 | + } |
|
174 | + |
|
175 | + |
|
176 | + /** |
|
177 | + * Adds the ticket ID if it exists in the request to the where conditions for the registrations query. |
|
178 | + */ |
|
179 | + protected function addTicketIdToWhereConditions() |
|
180 | + { |
|
181 | + // first look for 'ticket_id' then 'TKT_ID' using first result as fallback default value |
|
182 | + $TKT_ID = $this->request->getRequestParam('ticket_id'); |
|
183 | + $TKT_ID = $this->request->getRequestParam('TKT_ID', $TKT_ID); |
|
184 | + if ($TKT_ID) { |
|
185 | + $this->where_params['TKT_ID'] = absint($TKT_ID); |
|
186 | + } |
|
187 | + } |
|
188 | + |
|
189 | + |
|
190 | + /** |
|
191 | + * Adds the correct registration status to the where conditions for the registrations query. |
|
192 | + * If filtering by registration status, then we show registrations matching that status. |
|
193 | + * If not filtering by specified status, then we show all registrations excluding incomplete registrations |
|
194 | + * UNLESS viewing trashed registrations. |
|
195 | + */ |
|
196 | + protected function addRegistrationStatusToWhereConditions() |
|
197 | + { |
|
198 | + $registration_status = $this->request->getRequestParam('_reg_status'); |
|
199 | + if ($registration_status) { |
|
200 | + $this->where_params['STS_ID'] = sanitize_text_field($registration_status); |
|
201 | + return; |
|
202 | + } |
|
203 | + // make sure we exclude incomplete registrations, but only if not trashed. |
|
204 | + if ($this->view === 'trash') { |
|
205 | + $this->where_params['REG_deleted'] = true; |
|
206 | + return; |
|
207 | + } |
|
208 | + $this->where_params['STS_ID'] = $this->view === 'incomplete' |
|
209 | + ? EEM_Registration::status_id_incomplete |
|
210 | + : ['!=', EEM_Registration::status_id_incomplete]; |
|
211 | + } |
|
212 | + |
|
213 | + |
|
214 | + /** |
|
215 | + * Adds any provided date restraints to the where conditions for the registrations query. |
|
216 | + * |
|
217 | + * @throws EE_Error |
|
218 | + * @throws InvalidArgumentException |
|
219 | + * @throws InvalidDataTypeException |
|
220 | + * @throws InvalidInterfaceException |
|
221 | + */ |
|
222 | + protected function addDateToWhereConditions() |
|
223 | + { |
|
224 | + if ($this->view === 'today') { |
|
225 | + $now = date('Y-m-d', current_time('timestamp')); |
|
226 | + $this->where_params['REG_date'] = [ |
|
227 | + 'BETWEEN', |
|
228 | + [ |
|
229 | + $this->registration_model->convert_datetime_for_query( |
|
230 | + 'REG_date', |
|
231 | + $now . ' 00:00:00', |
|
232 | + 'Y-m-d H:i:s' |
|
233 | + ), |
|
234 | + $this->registration_model->convert_datetime_for_query( |
|
235 | + 'REG_date', |
|
236 | + $now . ' 23:59:59', |
|
237 | + 'Y-m-d H:i:s' |
|
238 | + ), |
|
239 | + ], |
|
240 | + ]; |
|
241 | + return; |
|
242 | + } |
|
243 | + if ($this->view === 'month') { |
|
244 | + $current_year_and_month = date('Y-m', current_time('timestamp')); |
|
245 | + $days_this_month = date('t', current_time('timestamp')); |
|
246 | + $this->where_params['REG_date'] = [ |
|
247 | + 'BETWEEN', |
|
248 | + [ |
|
249 | + $this->registration_model->convert_datetime_for_query( |
|
250 | + 'REG_date', |
|
251 | + $current_year_and_month . '-01 00:00:00', |
|
252 | + 'Y-m-d H:i:s' |
|
253 | + ), |
|
254 | + $this->registration_model->convert_datetime_for_query( |
|
255 | + 'REG_date', |
|
256 | + $current_year_and_month . '-' . $days_this_month . ' 23:59:59', |
|
257 | + 'Y-m-d H:i:s' |
|
258 | + ), |
|
259 | + ], |
|
260 | + ]; |
|
261 | + return; |
|
262 | + } |
|
263 | + $month_range = $this->request->getRequestParam('month_range'); |
|
264 | + if ($month_range) { |
|
265 | + $month_range = sanitize_text_field($month_range); |
|
266 | + $pieces = explode(' ', $month_range, 3); |
|
267 | + $month_requested = ! empty($pieces[0]) |
|
268 | + ? date('m', EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) |
|
269 | + : ''; |
|
270 | + $year_requested = ! empty($pieces[1]) |
|
271 | + ? $pieces[1] |
|
272 | + : ''; |
|
273 | + // if there is not a month or year then we can't go further |
|
274 | + if ($month_requested && $year_requested) { |
|
275 | + $days_in_month = date('t', strtotime($year_requested . '-' . $month_requested . '-' . '01')); |
|
276 | + $this->where_params['REG_date'] = [ |
|
277 | + 'BETWEEN', |
|
278 | + [ |
|
279 | + $this->registration_model->convert_datetime_for_query( |
|
280 | + 'REG_date', |
|
281 | + $year_requested . '-' . $month_requested . '-01 00:00:00', |
|
282 | + 'Y-m-d H:i:s' |
|
283 | + ), |
|
284 | + $this->registration_model->convert_datetime_for_query( |
|
285 | + 'REG_date', |
|
286 | + $year_requested . '-' . $month_requested . '-' . $days_in_month . ' 23:59:59', |
|
287 | + 'Y-m-d H:i:s' |
|
288 | + ), |
|
289 | + ], |
|
290 | + ]; |
|
291 | + } |
|
292 | + } |
|
293 | + } |
|
294 | + |
|
295 | + |
|
296 | + /** |
|
297 | + * Adds any provided search restraints to the where conditions for the registrations query |
|
298 | + */ |
|
299 | + protected function addSearchToWhereConditions() |
|
300 | + { |
|
301 | + $search = $this->request->getRequestParam('s'); |
|
302 | + if ($search) { |
|
303 | + $search_string = '%' . sanitize_text_field($search) . '%'; |
|
304 | + $this->where_params['OR*search_conditions'] = [ |
|
305 | + 'Event.EVT_name' => ['LIKE', $search_string], |
|
306 | + 'Event.EVT_desc' => ['LIKE', $search_string], |
|
307 | + 'Event.EVT_short_desc' => ['LIKE', $search_string], |
|
308 | + 'Attendee.ATT_full_name' => ['LIKE', $search_string], |
|
309 | + 'Attendee.ATT_fname' => ['LIKE', $search_string], |
|
310 | + 'Attendee.ATT_lname' => ['LIKE', $search_string], |
|
311 | + 'Attendee.ATT_short_bio' => ['LIKE', $search_string], |
|
312 | + 'Attendee.ATT_email' => ['LIKE', $search_string], |
|
313 | + 'Attendee.ATT_address' => ['LIKE', $search_string], |
|
314 | + 'Attendee.ATT_address2' => ['LIKE', $search_string], |
|
315 | + 'Attendee.ATT_city' => ['LIKE', $search_string], |
|
316 | + 'REG_final_price' => ['LIKE', $search_string], |
|
317 | + 'REG_code' => ['LIKE', $search_string], |
|
318 | + 'REG_count' => ['LIKE', $search_string], |
|
319 | + 'REG_group_size' => ['LIKE', $search_string], |
|
320 | + 'Ticket.TKT_name' => ['LIKE', $search_string], |
|
321 | + 'Ticket.TKT_description' => ['LIKE', $search_string], |
|
322 | + 'Transaction.Payment.PAY_txn_id_chq_nmbr' => ['LIKE', $search_string], |
|
323 | + ]; |
|
324 | + } |
|
325 | + } |
|
326 | + |
|
327 | + |
|
328 | + /** |
|
329 | + * Sets up the orderby for the registrations query. |
|
330 | + * |
|
331 | + * @return array |
|
332 | + */ |
|
333 | + protected function getOrderbyClause() |
|
334 | + { |
|
335 | + $orderby_field = $this->request->getRequestParam('orderby'); |
|
336 | + $orderby_field = $orderby_field ? sanitize_text_field($orderby_field) : '_REG_date'; |
|
337 | + switch ($orderby_field) { |
|
338 | + case '_REG_ID': |
|
339 | + $orderby = ['REG_ID']; |
|
340 | + break; |
|
341 | + case '_Reg_status': |
|
342 | + $orderby = ['STS_ID']; |
|
343 | + break; |
|
344 | + case 'ATT_fname': |
|
345 | + $orderby = ['Attendee.ATT_fname', 'Attendee.ATT_lname']; |
|
346 | + break; |
|
347 | + case 'ATT_lname': |
|
348 | + $orderby = ['Attendee.ATT_lname', 'Attendee.ATT_fname']; |
|
349 | + break; |
|
350 | + case 'event_name': |
|
351 | + $orderby = ['Event.EVT_name']; |
|
352 | + break; |
|
353 | + case 'DTT_EVT_start': |
|
354 | + $orderby = ['Event.Datetime.DTT_EVT_start']; |
|
355 | + break; |
|
356 | + case '_REG_date': |
|
357 | + $orderby = ['REG_date']; |
|
358 | + break; |
|
359 | + default: |
|
360 | + $orderby = [$orderby_field]; |
|
361 | + break; |
|
362 | + } |
|
363 | + $order = $this->request->getRequestParam('order'); |
|
364 | + $order = $order ? sanitize_text_field($order) : 'DESC'; |
|
365 | + |
|
366 | + $orderby = array_combine( |
|
367 | + $orderby, |
|
368 | + array_fill(0, count($orderby), $order) |
|
369 | + ); |
|
370 | + // because there are many registrations with the same date, define |
|
371 | + // a secondary way to order them, otherwise MySQL seems to be a bit random |
|
372 | + if (empty($orderby['REG_ID'])) { |
|
373 | + $orderby['REG_ID'] = $order; |
|
374 | + } |
|
375 | + |
|
376 | + $orderby = apply_filters( |
|
377 | + 'FHEE__Registrations_Admin_Page___get_orderby_for_registrations_query', |
|
378 | + $orderby, |
|
379 | + $this->request->requestParams() |
|
380 | + ); |
|
381 | + return ['order_by' => $orderby]; |
|
382 | + } |
|
383 | + |
|
384 | + |
|
385 | + /** |
|
386 | + * Sets up the limit for the registrations query. |
|
387 | + * |
|
388 | + * @param $per_page |
|
389 | + * @return array |
|
390 | + */ |
|
391 | + protected function getLimitClause($per_page) |
|
392 | + { |
|
393 | + $current_page = $this->request->getRequestParam('paged'); |
|
394 | + $current_page = $current_page ? absint($current_page) : 1; |
|
395 | + $per_page = (int) $this->request->getRequestParam('perpage', $per_page); |
|
396 | + // -1 means return all results so get out if that's set. |
|
397 | + if ($per_page === -1) { |
|
398 | + return []; |
|
399 | + } |
|
400 | + $per_page = absint($per_page); |
|
401 | + $offset = ($current_page - 1) * $per_page; |
|
402 | + return ['limit' => [$offset, $per_page]]; |
|
403 | + } |
|
404 | 404 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | 'caps' => EEM_Registration::caps_read_admin, |
83 | 83 | 'default_where_conditions' => 'this_model_only', |
84 | 84 | ]; |
85 | - if (! $count_query) { |
|
85 | + if ( ! $count_query) { |
|
86 | 86 | $query_params = array_merge( |
87 | 87 | $query_params, |
88 | 88 | $this->getOrderbyClause(), |
@@ -228,12 +228,12 @@ discard block |
||
228 | 228 | [ |
229 | 229 | $this->registration_model->convert_datetime_for_query( |
230 | 230 | 'REG_date', |
231 | - $now . ' 00:00:00', |
|
231 | + $now.' 00:00:00', |
|
232 | 232 | 'Y-m-d H:i:s' |
233 | 233 | ), |
234 | 234 | $this->registration_model->convert_datetime_for_query( |
235 | 235 | 'REG_date', |
236 | - $now . ' 23:59:59', |
|
236 | + $now.' 23:59:59', |
|
237 | 237 | 'Y-m-d H:i:s' |
238 | 238 | ), |
239 | 239 | ], |
@@ -248,12 +248,12 @@ discard block |
||
248 | 248 | [ |
249 | 249 | $this->registration_model->convert_datetime_for_query( |
250 | 250 | 'REG_date', |
251 | - $current_year_and_month . '-01 00:00:00', |
|
251 | + $current_year_and_month.'-01 00:00:00', |
|
252 | 252 | 'Y-m-d H:i:s' |
253 | 253 | ), |
254 | 254 | $this->registration_model->convert_datetime_for_query( |
255 | 255 | 'REG_date', |
256 | - $current_year_and_month . '-' . $days_this_month . ' 23:59:59', |
|
256 | + $current_year_and_month.'-'.$days_this_month.' 23:59:59', |
|
257 | 257 | 'Y-m-d H:i:s' |
258 | 258 | ), |
259 | 259 | ], |
@@ -272,18 +272,18 @@ discard block |
||
272 | 272 | : ''; |
273 | 273 | // if there is not a month or year then we can't go further |
274 | 274 | if ($month_requested && $year_requested) { |
275 | - $days_in_month = date('t', strtotime($year_requested . '-' . $month_requested . '-' . '01')); |
|
275 | + $days_in_month = date('t', strtotime($year_requested.'-'.$month_requested.'-'.'01')); |
|
276 | 276 | $this->where_params['REG_date'] = [ |
277 | 277 | 'BETWEEN', |
278 | 278 | [ |
279 | 279 | $this->registration_model->convert_datetime_for_query( |
280 | 280 | 'REG_date', |
281 | - $year_requested . '-' . $month_requested . '-01 00:00:00', |
|
281 | + $year_requested.'-'.$month_requested.'-01 00:00:00', |
|
282 | 282 | 'Y-m-d H:i:s' |
283 | 283 | ), |
284 | 284 | $this->registration_model->convert_datetime_for_query( |
285 | 285 | 'REG_date', |
286 | - $year_requested . '-' . $month_requested . '-' . $days_in_month . ' 23:59:59', |
|
286 | + $year_requested.'-'.$month_requested.'-'.$days_in_month.' 23:59:59', |
|
287 | 287 | 'Y-m-d H:i:s' |
288 | 288 | ), |
289 | 289 | ], |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | { |
301 | 301 | $search = $this->request->getRequestParam('s'); |
302 | 302 | if ($search) { |
303 | - $search_string = '%' . sanitize_text_field($search) . '%'; |
|
303 | + $search_string = '%'.sanitize_text_field($search).'%'; |
|
304 | 304 | $this->where_params['OR*search_conditions'] = [ |
305 | 305 | 'Event.EVT_name' => ['LIKE', $search_string], |
306 | 306 | 'Event.EVT_desc' => ['LIKE', $search_string], |
@@ -70,7 +70,7 @@ |
||
70 | 70 | $text .= '<span class="drk-grey-text">'; |
71 | 71 | $text .= '<span class="dashicons dashicons-calendar"></span>'; |
72 | 72 | $text .= $datetime->name(); |
73 | - $text .= ' ( ' . $datetime->start_date() . ' )'; |
|
73 | + $text .= ' ( '.$datetime->start_date().' )'; |
|
74 | 74 | $text .= '</span></h3>'; |
75 | 75 | } |
76 | 76 | } |
@@ -23,58 +23,58 @@ |
||
23 | 23 | class DateFilterHeader extends AdminPageHeaderDecorator |
24 | 24 | { |
25 | 25 | |
26 | - /** |
|
27 | - * @var EEM_Datetime $datetime_model |
|
28 | - */ |
|
29 | - private $datetime_model; |
|
26 | + /** |
|
27 | + * @var EEM_Datetime $datetime_model |
|
28 | + */ |
|
29 | + private $datetime_model; |
|
30 | 30 | |
31 | 31 | |
32 | - /** |
|
33 | - * DateFilterHeader constructor. |
|
34 | - * |
|
35 | - * @param RequestInterface $request |
|
36 | - * @param EEM_Datetime $datetime_model |
|
37 | - */ |
|
38 | - public function __construct(RequestInterface $request, EEM_Datetime $datetime_model) |
|
39 | - { |
|
40 | - parent::__construct($request); |
|
41 | - $this->datetime_model = $datetime_model; |
|
42 | - } |
|
32 | + /** |
|
33 | + * DateFilterHeader constructor. |
|
34 | + * |
|
35 | + * @param RequestInterface $request |
|
36 | + * @param EEM_Datetime $datetime_model |
|
37 | + */ |
|
38 | + public function __construct(RequestInterface $request, EEM_Datetime $datetime_model) |
|
39 | + { |
|
40 | + parent::__construct($request); |
|
41 | + $this->datetime_model = $datetime_model; |
|
42 | + } |
|
43 | 43 | |
44 | 44 | |
45 | - /** |
|
46 | - * @param string $text |
|
47 | - * @return string |
|
48 | - * @throws EE_Error |
|
49 | - * @throws InvalidDataTypeException |
|
50 | - * @throws InvalidInterfaceException |
|
51 | - * @throws InvalidArgumentException |
|
52 | - * @throws ReflectionException |
|
53 | - * @since $VID:$ |
|
54 | - */ |
|
55 | - public function getHeaderText($text = '') |
|
56 | - { |
|
57 | - $DTT_ID = $this->request->getRequestParam('DTT_ID'); |
|
58 | - $DTT_ID = $this->request->getRequestParam('datetime_id', $DTT_ID); |
|
59 | - $DTT_ID = absint($DTT_ID); |
|
60 | - if ($DTT_ID) { |
|
61 | - $datetime = $this->datetime_model->get_one_by_ID($DTT_ID); |
|
62 | - if ($datetime instanceof EE_Datetime && $text !== '') { |
|
63 | - // remove the closing h3 heading tag if it exists |
|
64 | - $text = str_replace( |
|
65 | - '</h3>', |
|
66 | - '', |
|
67 | - $text |
|
68 | - ); |
|
69 | - $text .= ' '; |
|
70 | - $text .= '<span class="drk-grey-text">'; |
|
71 | - $text .= '<span class="dashicons dashicons-calendar"></span>'; |
|
72 | - $text .= $datetime->name(); |
|
73 | - $text .= ' ( ' . $datetime->start_date() . ' )'; |
|
74 | - $text .= '</span></h3>'; |
|
75 | - } |
|
76 | - } |
|
45 | + /** |
|
46 | + * @param string $text |
|
47 | + * @return string |
|
48 | + * @throws EE_Error |
|
49 | + * @throws InvalidDataTypeException |
|
50 | + * @throws InvalidInterfaceException |
|
51 | + * @throws InvalidArgumentException |
|
52 | + * @throws ReflectionException |
|
53 | + * @since $VID:$ |
|
54 | + */ |
|
55 | + public function getHeaderText($text = '') |
|
56 | + { |
|
57 | + $DTT_ID = $this->request->getRequestParam('DTT_ID'); |
|
58 | + $DTT_ID = $this->request->getRequestParam('datetime_id', $DTT_ID); |
|
59 | + $DTT_ID = absint($DTT_ID); |
|
60 | + if ($DTT_ID) { |
|
61 | + $datetime = $this->datetime_model->get_one_by_ID($DTT_ID); |
|
62 | + if ($datetime instanceof EE_Datetime && $text !== '') { |
|
63 | + // remove the closing h3 heading tag if it exists |
|
64 | + $text = str_replace( |
|
65 | + '</h3>', |
|
66 | + '', |
|
67 | + $text |
|
68 | + ); |
|
69 | + $text .= ' '; |
|
70 | + $text .= '<span class="drk-grey-text">'; |
|
71 | + $text .= '<span class="dashicons dashicons-calendar"></span>'; |
|
72 | + $text .= $datetime->name(); |
|
73 | + $text .= ' ( ' . $datetime->start_date() . ' )'; |
|
74 | + $text .= '</span></h3>'; |
|
75 | + } |
|
76 | + } |
|
77 | 77 | |
78 | - return $text; |
|
79 | - } |
|
78 | + return $text; |
|
79 | + } |
|
80 | 80 | } |