@@ -12,9 +12,9 @@ discard block |
||
12 | 12 | <?php esc_html_e('This option will save all Event Espresso registration form data, and debugging information to a file in the /wp-content/uploads/espresso/logs directory on your server. This will occur each time a page is accessed on your site until this option is turned off.', 'event_espresso'); ?> |
13 | 13 | <br/> |
14 | 14 | <?php printf( |
15 | - esc_html__('Note that if you are accessing your filesystem over FTP or SSH, and logging writes to the filesystem on every request, you should put your credentials in your wp-config.php file, as described %1$shere.%2$s', 'event_espresso'), |
|
16 | - '<a href="https://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants" target="_blank" rel="noopener noreferrer">', |
|
17 | - '</a>' |
|
15 | + esc_html__('Note that if you are accessing your filesystem over FTP or SSH, and logging writes to the filesystem on every request, you should put your credentials in your wp-config.php file, as described %1$shere.%2$s', 'event_espresso'), |
|
16 | + '<a href="https://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants" target="_blank" rel="noopener noreferrer">', |
|
17 | + '</a>' |
|
18 | 18 | ); ?> |
19 | 19 | </li> |
20 | 20 | <li> |
@@ -42,12 +42,12 @@ discard block |
||
42 | 42 | <li> |
43 | 43 | <strong><?php esc_html_e('Event Espresso Affiliate ID', 'event_espresso'); ?></strong><br /> |
44 | 44 | <?php printf( |
45 | - esc_html__( |
|
46 | - 'You can also monetize this link by signing up to our %1$saffiliate program%2$s and adding in your affiliate ID here.', |
|
47 | - 'event_espresso' |
|
48 | - ), |
|
49 | - '<a href="https://eventespresso.com/affiliates/">', |
|
50 | - '</a>' |
|
45 | + esc_html__( |
|
46 | + 'You can also monetize this link by signing up to our %1$saffiliate program%2$s and adding in your affiliate ID here.', |
|
47 | + 'event_espresso' |
|
48 | + ), |
|
49 | + '<a href="https://eventespresso.com/affiliates/">', |
|
50 | + '</a>' |
|
51 | 51 | ); ?> |
52 | 52 | </li> |
53 | 53 | </ul> |
@@ -12,2671 +12,2671 @@ |
||
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'] = 'espresso_event_categories'; |
|
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 | - $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $this->_req_data); |
|
1840 | - $query_params = apply_filters( |
|
1841 | - 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1842 | - array( |
|
1843 | - $where, |
|
1844 | - 'limit' => $limit, |
|
1845 | - 'order_by' => $orderby, |
|
1846 | - 'order' => $order, |
|
1847 | - 'group_by' => 'EVT_ID', |
|
1848 | - ), |
|
1849 | - $this->_req_data |
|
1850 | - ); |
|
1851 | - // let's first check if we have special requests coming in. |
|
1852 | - if (isset($this->_req_data['active_status'])) { |
|
1853 | - switch ($this->_req_data['active_status']) { |
|
1854 | - case 'upcoming': |
|
1855 | - return $EEME->get_upcoming_events($query_params, $count); |
|
1856 | - break; |
|
1857 | - case 'expired': |
|
1858 | - return $EEME->get_expired_events($query_params, $count); |
|
1859 | - break; |
|
1860 | - case 'active': |
|
1861 | - return $EEME->get_active_events($query_params, $count); |
|
1862 | - break; |
|
1863 | - case 'inactive': |
|
1864 | - return $EEME->get_inactive_events($query_params, $count); |
|
1865 | - break; |
|
1866 | - } |
|
1867 | - } |
|
1868 | - $events = $count ? $EEME->count(array($where), 'EVT_ID', true) : $EEME->get_all($query_params); |
|
1869 | - return $events; |
|
1870 | - } |
|
1871 | - |
|
1872 | - |
|
1873 | - /** |
|
1874 | - * handling for WordPress CPT actions (trash, restore, delete) |
|
1875 | - * |
|
1876 | - * @param string $post_id |
|
1877 | - */ |
|
1878 | - public function trash_cpt_item($post_id) |
|
1879 | - { |
|
1880 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1881 | - $this->_trash_or_restore_event('trash', false); |
|
1882 | - } |
|
1883 | - |
|
1884 | - |
|
1885 | - /** |
|
1886 | - * @param string $post_id |
|
1887 | - */ |
|
1888 | - public function restore_cpt_item($post_id) |
|
1889 | - { |
|
1890 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1891 | - $this->_trash_or_restore_event('draft', false); |
|
1892 | - } |
|
1893 | - |
|
1894 | - |
|
1895 | - /** |
|
1896 | - * @param string $post_id |
|
1897 | - */ |
|
1898 | - public function delete_cpt_item($post_id) |
|
1899 | - { |
|
1900 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1901 | - $this->_delete_event(false); |
|
1902 | - } |
|
1903 | - |
|
1904 | - |
|
1905 | - /** |
|
1906 | - * _trash_or_restore_event |
|
1907 | - * |
|
1908 | - * @access protected |
|
1909 | - * @param string $event_status |
|
1910 | - * @param bool $redirect_after |
|
1911 | - */ |
|
1912 | - protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
1913 | - { |
|
1914 | - // determine the event id and set to array. |
|
1915 | - $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : false; |
|
1916 | - // loop thru events |
|
1917 | - if ($EVT_ID) { |
|
1918 | - // clean status |
|
1919 | - $event_status = sanitize_key($event_status); |
|
1920 | - // grab status |
|
1921 | - if (! empty($event_status)) { |
|
1922 | - $success = $this->_change_event_status($EVT_ID, $event_status); |
|
1923 | - } else { |
|
1924 | - $success = false; |
|
1925 | - $msg = esc_html__( |
|
1926 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1927 | - 'event_espresso' |
|
1928 | - ); |
|
1929 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1930 | - } |
|
1931 | - } else { |
|
1932 | - $success = false; |
|
1933 | - $msg = esc_html__( |
|
1934 | - 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
1935 | - 'event_espresso' |
|
1936 | - ); |
|
1937 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1938 | - } |
|
1939 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1940 | - if ($redirect_after) { |
|
1941 | - $this->_redirect_after_action($success, 'Event', $action, array('action' => 'default')); |
|
1942 | - } |
|
1943 | - } |
|
1944 | - |
|
1945 | - |
|
1946 | - /** |
|
1947 | - * _trash_or_restore_events |
|
1948 | - * |
|
1949 | - * @access protected |
|
1950 | - * @param string $event_status |
|
1951 | - * @return void |
|
1952 | - */ |
|
1953 | - protected function _trash_or_restore_events($event_status = 'trash') |
|
1954 | - { |
|
1955 | - // clean status |
|
1956 | - $event_status = sanitize_key($event_status); |
|
1957 | - // grab status |
|
1958 | - if (! empty($event_status)) { |
|
1959 | - $success = true; |
|
1960 | - // determine the event id and set to array. |
|
1961 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
1962 | - // loop thru events |
|
1963 | - foreach ($EVT_IDs as $EVT_ID) { |
|
1964 | - if ($EVT_ID = absint($EVT_ID)) { |
|
1965 | - $results = $this->_change_event_status($EVT_ID, $event_status); |
|
1966 | - $success = $results !== false ? $success : false; |
|
1967 | - } else { |
|
1968 | - $msg = sprintf( |
|
1969 | - esc_html__( |
|
1970 | - 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
1971 | - 'event_espresso' |
|
1972 | - ), |
|
1973 | - $EVT_ID |
|
1974 | - ); |
|
1975 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1976 | - $success = false; |
|
1977 | - } |
|
1978 | - } |
|
1979 | - } else { |
|
1980 | - $success = false; |
|
1981 | - $msg = esc_html__( |
|
1982 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1983 | - 'event_espresso' |
|
1984 | - ); |
|
1985 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1986 | - } |
|
1987 | - // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
1988 | - $success = $success ? 2 : false; |
|
1989 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1990 | - $this->_redirect_after_action($success, 'Events', $action, array('action' => 'default')); |
|
1991 | - } |
|
1992 | - |
|
1993 | - |
|
1994 | - /** |
|
1995 | - * _trash_or_restore_events |
|
1996 | - * |
|
1997 | - * @access private |
|
1998 | - * @param int $EVT_ID |
|
1999 | - * @param string $event_status |
|
2000 | - * @return bool |
|
2001 | - */ |
|
2002 | - private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2003 | - { |
|
2004 | - // grab event id |
|
2005 | - if (! $EVT_ID) { |
|
2006 | - $msg = esc_html__( |
|
2007 | - 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2008 | - 'event_espresso' |
|
2009 | - ); |
|
2010 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2011 | - return false; |
|
2012 | - } |
|
2013 | - $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2014 | - // clean status |
|
2015 | - $event_status = sanitize_key($event_status); |
|
2016 | - // grab status |
|
2017 | - if (empty($event_status)) { |
|
2018 | - $msg = esc_html__( |
|
2019 | - 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2020 | - 'event_espresso' |
|
2021 | - ); |
|
2022 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2023 | - return false; |
|
2024 | - } |
|
2025 | - // was event trashed or restored ? |
|
2026 | - switch ($event_status) { |
|
2027 | - case 'draft': |
|
2028 | - $action = 'restored from the trash'; |
|
2029 | - $hook = 'AHEE_event_restored_from_trash'; |
|
2030 | - break; |
|
2031 | - case 'trash': |
|
2032 | - $action = 'moved to the trash'; |
|
2033 | - $hook = 'AHEE_event_moved_to_trash'; |
|
2034 | - break; |
|
2035 | - default: |
|
2036 | - $action = 'updated'; |
|
2037 | - $hook = false; |
|
2038 | - } |
|
2039 | - // use class to change status |
|
2040 | - $this->_cpt_model_obj->set_status($event_status); |
|
2041 | - $success = $this->_cpt_model_obj->save(); |
|
2042 | - if ($success === false) { |
|
2043 | - $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2044 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2045 | - return false; |
|
2046 | - } |
|
2047 | - if ($hook) { |
|
2048 | - do_action($hook); |
|
2049 | - } |
|
2050 | - return true; |
|
2051 | - } |
|
2052 | - |
|
2053 | - |
|
2054 | - /** |
|
2055 | - * _delete_event |
|
2056 | - * |
|
2057 | - * @access protected |
|
2058 | - * @param bool $redirect_after |
|
2059 | - */ |
|
2060 | - protected function _delete_event($redirect_after = true) |
|
2061 | - { |
|
2062 | - // determine the event id and set to array. |
|
2063 | - $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : null; |
|
2064 | - $EVT_ID = isset($this->_req_data['post']) ? absint($this->_req_data['post']) : $EVT_ID; |
|
2065 | - // loop thru events |
|
2066 | - if ($EVT_ID) { |
|
2067 | - $success = $this->_permanently_delete_event($EVT_ID); |
|
2068 | - // get list of events with no prices |
|
2069 | - $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2070 | - // remove this event from the list of events with no prices |
|
2071 | - if (isset($espresso_no_ticket_prices[ $EVT_ID ])) { |
|
2072 | - unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2073 | - } |
|
2074 | - update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2075 | - } else { |
|
2076 | - $success = false; |
|
2077 | - $msg = esc_html__( |
|
2078 | - 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2079 | - 'event_espresso' |
|
2080 | - ); |
|
2081 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2082 | - } |
|
2083 | - if ($redirect_after) { |
|
2084 | - $this->_redirect_after_action( |
|
2085 | - $success, |
|
2086 | - 'Event', |
|
2087 | - 'deleted', |
|
2088 | - array('action' => 'default', 'status' => 'trash') |
|
2089 | - ); |
|
2090 | - } |
|
2091 | - } |
|
2092 | - |
|
2093 | - |
|
2094 | - /** |
|
2095 | - * _delete_events |
|
2096 | - * |
|
2097 | - * @access protected |
|
2098 | - * @return void |
|
2099 | - */ |
|
2100 | - protected function _delete_events() |
|
2101 | - { |
|
2102 | - $success = true; |
|
2103 | - // get list of events with no prices |
|
2104 | - $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2105 | - // determine the event id and set to array. |
|
2106 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
2107 | - // loop thru events |
|
2108 | - foreach ($EVT_IDs as $EVT_ID) { |
|
2109 | - $EVT_ID = absint($EVT_ID); |
|
2110 | - if ($EVT_ID) { |
|
2111 | - $results = $this->_permanently_delete_event($EVT_ID); |
|
2112 | - $success = $results !== false ? $success : false; |
|
2113 | - // remove this event from the list of events with no prices |
|
2114 | - unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2115 | - } else { |
|
2116 | - $success = false; |
|
2117 | - $msg = esc_html__( |
|
2118 | - 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2119 | - 'event_espresso' |
|
2120 | - ); |
|
2121 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2122 | - } |
|
2123 | - } |
|
2124 | - update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2125 | - // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2126 | - $success = $success ? 2 : false; |
|
2127 | - $this->_redirect_after_action($success, 'Events', 'deleted', array('action' => 'default')); |
|
2128 | - } |
|
2129 | - |
|
2130 | - |
|
2131 | - /** |
|
2132 | - * _permanently_delete_event |
|
2133 | - * |
|
2134 | - * @access private |
|
2135 | - * @param int $EVT_ID |
|
2136 | - * @return bool |
|
2137 | - */ |
|
2138 | - private function _permanently_delete_event($EVT_ID = 0) |
|
2139 | - { |
|
2140 | - // grab event id |
|
2141 | - if (! $EVT_ID) { |
|
2142 | - $msg = esc_html__( |
|
2143 | - 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2144 | - 'event_espresso' |
|
2145 | - ); |
|
2146 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2147 | - return false; |
|
2148 | - } |
|
2149 | - if (! $this->_cpt_model_obj instanceof EE_Event |
|
2150 | - || $this->_cpt_model_obj->ID() !== $EVT_ID |
|
2151 | - ) { |
|
2152 | - $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2153 | - } |
|
2154 | - if (! $this->_cpt_model_obj instanceof EE_Event) { |
|
2155 | - return false; |
|
2156 | - } |
|
2157 | - // need to delete related tickets and prices first. |
|
2158 | - $datetimes = $this->_cpt_model_obj->get_many_related('Datetime'); |
|
2159 | - foreach ($datetimes as $datetime) { |
|
2160 | - $this->_cpt_model_obj->_remove_relation_to($datetime, 'Datetime'); |
|
2161 | - $tickets = $datetime->get_many_related('Ticket'); |
|
2162 | - foreach ($tickets as $ticket) { |
|
2163 | - $ticket->_remove_relation_to($datetime, 'Datetime'); |
|
2164 | - $ticket->delete_related_permanently('Price'); |
|
2165 | - $ticket->delete_permanently(); |
|
2166 | - } |
|
2167 | - $datetime->delete(); |
|
2168 | - } |
|
2169 | - // what about related venues or terms? |
|
2170 | - $venues = $this->_cpt_model_obj->get_many_related('Venue'); |
|
2171 | - foreach ($venues as $venue) { |
|
2172 | - $this->_cpt_model_obj->_remove_relation_to($venue, 'Venue'); |
|
2173 | - } |
|
2174 | - // any attached question groups? |
|
2175 | - $question_groups = $this->_cpt_model_obj->get_many_related('Question_Group'); |
|
2176 | - if (! empty($question_groups)) { |
|
2177 | - foreach ($question_groups as $question_group) { |
|
2178 | - $this->_cpt_model_obj->_remove_relation_to($question_group, 'Question_Group'); |
|
2179 | - } |
|
2180 | - } |
|
2181 | - // Message Template Groups |
|
2182 | - $this->_cpt_model_obj->_remove_relations('Message_Template_Group'); |
|
2183 | - /** @type EE_Term_Taxonomy[] $term_taxonomies */ |
|
2184 | - $term_taxonomies = $this->_cpt_model_obj->term_taxonomies(); |
|
2185 | - foreach ($term_taxonomies as $term_taxonomy) { |
|
2186 | - $this->_cpt_model_obj->remove_relation_to_term_taxonomy($term_taxonomy); |
|
2187 | - } |
|
2188 | - $success = $this->_cpt_model_obj->delete_permanently(); |
|
2189 | - // did it all go as planned ? |
|
2190 | - if ($success) { |
|
2191 | - $msg = sprintf(esc_html__('Event ID # %d has been deleted.', 'event_espresso'), $EVT_ID); |
|
2192 | - EE_Error::add_success($msg); |
|
2193 | - } else { |
|
2194 | - $msg = sprintf( |
|
2195 | - esc_html__('An error occurred. Event ID # %d could not be deleted.', 'event_espresso'), |
|
2196 | - $EVT_ID |
|
2197 | - ); |
|
2198 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2199 | - return false; |
|
2200 | - } |
|
2201 | - do_action('AHEE__Events_Admin_Page___permanently_delete_event__after_event_deleted', $EVT_ID); |
|
2202 | - return true; |
|
2203 | - } |
|
2204 | - |
|
2205 | - |
|
2206 | - /** |
|
2207 | - * get total number of events |
|
2208 | - * |
|
2209 | - * @access public |
|
2210 | - * @return int |
|
2211 | - */ |
|
2212 | - public function total_events() |
|
2213 | - { |
|
2214 | - $count = EEM_Event::instance()->count(array('caps' => 'read_admin'), 'EVT_ID', true); |
|
2215 | - return $count; |
|
2216 | - } |
|
2217 | - |
|
2218 | - |
|
2219 | - /** |
|
2220 | - * get total number of draft events |
|
2221 | - * |
|
2222 | - * @access public |
|
2223 | - * @return int |
|
2224 | - */ |
|
2225 | - public function total_events_draft() |
|
2226 | - { |
|
2227 | - $where = array( |
|
2228 | - 'status' => array('IN', array('draft', 'auto-draft')), |
|
2229 | - ); |
|
2230 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2231 | - return $count; |
|
2232 | - } |
|
2233 | - |
|
2234 | - |
|
2235 | - /** |
|
2236 | - * get total number of trashed events |
|
2237 | - * |
|
2238 | - * @access public |
|
2239 | - * @return int |
|
2240 | - */ |
|
2241 | - public function total_trashed_events() |
|
2242 | - { |
|
2243 | - $where = array( |
|
2244 | - 'status' => 'trash', |
|
2245 | - ); |
|
2246 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2247 | - return $count; |
|
2248 | - } |
|
2249 | - |
|
2250 | - |
|
2251 | - /** |
|
2252 | - * _default_event_settings |
|
2253 | - * This generates the Default Settings Tab |
|
2254 | - * |
|
2255 | - * @return void |
|
2256 | - * @throws EE_Error |
|
2257 | - */ |
|
2258 | - protected function _default_event_settings() |
|
2259 | - { |
|
2260 | - $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2261 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2262 | - $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2263 | - $this->display_admin_page_with_sidebar(); |
|
2264 | - } |
|
2265 | - |
|
2266 | - |
|
2267 | - /** |
|
2268 | - * Return the form for event settings. |
|
2269 | - * |
|
2270 | - * @return EE_Form_Section_Proper |
|
2271 | - * @throws EE_Error |
|
2272 | - */ |
|
2273 | - protected function _default_event_settings_form() |
|
2274 | - { |
|
2275 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2276 | - $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2277 | - // exclude |
|
2278 | - array( |
|
2279 | - EEM_Registration::status_id_cancelled, |
|
2280 | - EEM_Registration::status_id_declined, |
|
2281 | - EEM_Registration::status_id_incomplete, |
|
2282 | - EEM_Registration::status_id_wait_list, |
|
2283 | - ), |
|
2284 | - true |
|
2285 | - ); |
|
2286 | - return new EE_Form_Section_Proper( |
|
2287 | - array( |
|
2288 | - 'name' => 'update_default_event_settings', |
|
2289 | - 'html_id' => 'update_default_event_settings', |
|
2290 | - 'html_class' => 'form-table', |
|
2291 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2292 | - 'subsections' => apply_filters( |
|
2293 | - 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2294 | - array( |
|
2295 | - 'default_reg_status' => new EE_Select_Input( |
|
2296 | - $registration_stati_for_selection, |
|
2297 | - array( |
|
2298 | - 'default' => isset($registration_config->default_STS_ID) |
|
2299 | - && array_key_exists( |
|
2300 | - $registration_config->default_STS_ID, |
|
2301 | - $registration_stati_for_selection |
|
2302 | - ) |
|
2303 | - ? sanitize_text_field($registration_config->default_STS_ID) |
|
2304 | - : EEM_Registration::status_id_pending_payment, |
|
2305 | - 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2306 | - . EEH_Template::get_help_tab_link( |
|
2307 | - 'default_settings_status_help_tab' |
|
2308 | - ), |
|
2309 | - 'html_help_text' => esc_html__( |
|
2310 | - '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.', |
|
2311 | - 'event_espresso' |
|
2312 | - ), |
|
2313 | - ) |
|
2314 | - ), |
|
2315 | - 'default_max_tickets' => new EE_Integer_Input( |
|
2316 | - array( |
|
2317 | - 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2318 | - ? $registration_config->default_maximum_number_of_tickets |
|
2319 | - : EEM_Event::get_default_additional_limit(), |
|
2320 | - 'html_label_text' => esc_html__( |
|
2321 | - 'Default Maximum Tickets Allowed Per Order:', |
|
2322 | - 'event_espresso' |
|
2323 | - ) |
|
2324 | - . EEH_Template::get_help_tab_link( |
|
2325 | - 'default_maximum_tickets_help_tab"' |
|
2326 | - ), |
|
2327 | - 'html_help_text' => esc_html__( |
|
2328 | - 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2329 | - 'event_espresso' |
|
2330 | - ), |
|
2331 | - ) |
|
2332 | - ), |
|
2333 | - ) |
|
2334 | - ), |
|
2335 | - ) |
|
2336 | - ); |
|
2337 | - } |
|
2338 | - |
|
2339 | - |
|
2340 | - /** |
|
2341 | - * _update_default_event_settings |
|
2342 | - * |
|
2343 | - * @access protected |
|
2344 | - * @return void |
|
2345 | - * @throws EE_Error |
|
2346 | - */ |
|
2347 | - protected function _update_default_event_settings() |
|
2348 | - { |
|
2349 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2350 | - $form = $this->_default_event_settings_form(); |
|
2351 | - if ($form->was_submitted()) { |
|
2352 | - $form->receive_form_submission(); |
|
2353 | - if ($form->is_valid()) { |
|
2354 | - $valid_data = $form->valid_data(); |
|
2355 | - if (isset($valid_data['default_reg_status'])) { |
|
2356 | - $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2357 | - } |
|
2358 | - if (isset($valid_data['default_max_tickets'])) { |
|
2359 | - $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2360 | - } |
|
2361 | - // update because data was valid! |
|
2362 | - EE_Registry::instance()->CFG->update_espresso_config(); |
|
2363 | - EE_Error::overwrite_success(); |
|
2364 | - EE_Error::add_success( |
|
2365 | - __('Default Event Settings were updated', 'event_espresso') |
|
2366 | - ); |
|
2367 | - } |
|
2368 | - } |
|
2369 | - $this->_redirect_after_action(0, '', '', array('action' => 'default_event_settings'), true); |
|
2370 | - } |
|
2371 | - |
|
2372 | - |
|
2373 | - /************* Templates *************/ |
|
2374 | - protected function _template_settings() |
|
2375 | - { |
|
2376 | - $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2377 | - $this->_template_args['preview_img'] = '<img src="' |
|
2378 | - . EVENTS_ASSETS_URL |
|
2379 | - . DS |
|
2380 | - . 'images' |
|
2381 | - . DS |
|
2382 | - . 'caffeinated_template_features.jpg" alt="' |
|
2383 | - . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2384 | - . '" />'; |
|
2385 | - $this->_template_args['preview_text'] = '<strong>' |
|
2386 | - . esc_html__( |
|
2387 | - '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.', |
|
2388 | - 'event_espresso' |
|
2389 | - ) . '</strong>'; |
|
2390 | - $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2391 | - } |
|
2392 | - |
|
2393 | - |
|
2394 | - /** Event Category Stuff **/ |
|
2395 | - /** |
|
2396 | - * set the _category property with the category object for the loaded page. |
|
2397 | - * |
|
2398 | - * @access private |
|
2399 | - * @return void |
|
2400 | - */ |
|
2401 | - private function _set_category_object() |
|
2402 | - { |
|
2403 | - if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2404 | - return; |
|
2405 | - } //already have the category object so get out. |
|
2406 | - // set default category object |
|
2407 | - $this->_set_empty_category_object(); |
|
2408 | - // only set if we've got an id |
|
2409 | - if (! isset($this->_req_data['EVT_CAT_ID'])) { |
|
2410 | - return; |
|
2411 | - } |
|
2412 | - $category_id = absint($this->_req_data['EVT_CAT_ID']); |
|
2413 | - $term = get_term($category_id, 'espresso_event_categories'); |
|
2414 | - if (! empty($term)) { |
|
2415 | - $this->_category->category_name = $term->name; |
|
2416 | - $this->_category->category_identifier = $term->slug; |
|
2417 | - $this->_category->category_desc = $term->description; |
|
2418 | - $this->_category->id = $term->term_id; |
|
2419 | - $this->_category->parent = $term->parent; |
|
2420 | - } |
|
2421 | - } |
|
2422 | - |
|
2423 | - |
|
2424 | - /** |
|
2425 | - * Clears out category properties. |
|
2426 | - */ |
|
2427 | - private function _set_empty_category_object() |
|
2428 | - { |
|
2429 | - $this->_category = new stdClass(); |
|
2430 | - $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2431 | - $this->_category->id = $this->_category->parent = 0; |
|
2432 | - } |
|
2433 | - |
|
2434 | - |
|
2435 | - /** |
|
2436 | - * @throws EE_Error |
|
2437 | - */ |
|
2438 | - protected function _category_list_table() |
|
2439 | - { |
|
2440 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2441 | - $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2442 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2443 | - 'add_category', |
|
2444 | - 'add_category', |
|
2445 | - array(), |
|
2446 | - 'add-new-h2' |
|
2447 | - ); |
|
2448 | - $this->display_admin_list_table_page_with_sidebar(); |
|
2449 | - } |
|
2450 | - |
|
2451 | - |
|
2452 | - /** |
|
2453 | - * Output category details view. |
|
2454 | - */ |
|
2455 | - protected function _category_details($view) |
|
2456 | - { |
|
2457 | - // load formatter helper |
|
2458 | - // load field generator helper |
|
2459 | - $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2460 | - $this->_set_add_edit_form_tags($route); |
|
2461 | - $this->_set_category_object(); |
|
2462 | - $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2463 | - $delete_action = 'delete_category'; |
|
2464 | - // custom redirect |
|
2465 | - $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2466 | - array('action' => 'category_list'), |
|
2467 | - $this->_admin_base_url |
|
2468 | - ); |
|
2469 | - $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2470 | - // take care of contents |
|
2471 | - $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2472 | - $this->display_admin_page_with_sidebar(); |
|
2473 | - } |
|
2474 | - |
|
2475 | - |
|
2476 | - /** |
|
2477 | - * Output category details content. |
|
2478 | - */ |
|
2479 | - protected function _category_details_content() |
|
2480 | - { |
|
2481 | - $editor_args['category_desc'] = array( |
|
2482 | - 'type' => 'wp_editor', |
|
2483 | - 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2484 | - 'class' => 'my_editor_custom', |
|
2485 | - 'wpeditor_args' => array('media_buttons' => false), |
|
2486 | - ); |
|
2487 | - $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2488 | - $all_terms = get_terms( |
|
2489 | - array('espresso_event_categories'), |
|
2490 | - array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
2491 | - ); |
|
2492 | - // setup category select for term parents. |
|
2493 | - $category_select_values[] = array( |
|
2494 | - 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2495 | - 'id' => 0, |
|
2496 | - ); |
|
2497 | - foreach ($all_terms as $term) { |
|
2498 | - $category_select_values[] = array( |
|
2499 | - 'text' => $term->name, |
|
2500 | - 'id' => $term->term_id, |
|
2501 | - ); |
|
2502 | - } |
|
2503 | - $category_select = EEH_Form_Fields::select_input( |
|
2504 | - 'category_parent', |
|
2505 | - $category_select_values, |
|
2506 | - $this->_category->parent |
|
2507 | - ); |
|
2508 | - $template_args = array( |
|
2509 | - 'category' => $this->_category, |
|
2510 | - 'category_select' => $category_select, |
|
2511 | - 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2512 | - 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2513 | - 'disable' => '', |
|
2514 | - 'disabled_message' => false, |
|
2515 | - ); |
|
2516 | - $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2517 | - return EEH_Template::display_template($template, $template_args, true); |
|
2518 | - } |
|
2519 | - |
|
2520 | - |
|
2521 | - /** |
|
2522 | - * Handles deleting categories. |
|
2523 | - */ |
|
2524 | - protected function _delete_categories() |
|
2525 | - { |
|
2526 | - $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array) $this->_req_data['EVT_CAT_ID'] |
|
2527 | - : (array) $this->_req_data['category_id']; |
|
2528 | - foreach ($cat_ids as $cat_id) { |
|
2529 | - $this->_delete_category($cat_id); |
|
2530 | - } |
|
2531 | - // doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2532 | - $query_args = array( |
|
2533 | - 'action' => 'category_list', |
|
2534 | - ); |
|
2535 | - $this->_redirect_after_action(0, '', '', $query_args); |
|
2536 | - } |
|
2537 | - |
|
2538 | - |
|
2539 | - /** |
|
2540 | - * Handles deleting specific category. |
|
2541 | - * |
|
2542 | - * @param int $cat_id |
|
2543 | - */ |
|
2544 | - protected function _delete_category($cat_id) |
|
2545 | - { |
|
2546 | - $cat_id = absint($cat_id); |
|
2547 | - wp_delete_term($cat_id, 'espresso_event_categories'); |
|
2548 | - } |
|
2549 | - |
|
2550 | - |
|
2551 | - /** |
|
2552 | - * Handles triggering the update or insertion of a new category. |
|
2553 | - * |
|
2554 | - * @param bool $new_category true means we're triggering the insert of a new category. |
|
2555 | - */ |
|
2556 | - protected function _insert_or_update_category($new_category) |
|
2557 | - { |
|
2558 | - $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2559 | - $success = 0; // we already have a success message so lets not send another. |
|
2560 | - if ($cat_id) { |
|
2561 | - $query_args = array( |
|
2562 | - 'action' => 'edit_category', |
|
2563 | - 'EVT_CAT_ID' => $cat_id, |
|
2564 | - ); |
|
2565 | - } else { |
|
2566 | - $query_args = array('action' => 'add_category'); |
|
2567 | - } |
|
2568 | - $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2569 | - } |
|
2570 | - |
|
2571 | - |
|
2572 | - /** |
|
2573 | - * Inserts or updates category |
|
2574 | - * |
|
2575 | - * @param bool $update (true indicates we're updating a category). |
|
2576 | - * @return bool|mixed|string |
|
2577 | - */ |
|
2578 | - private function _insert_category($update = false) |
|
2579 | - { |
|
2580 | - $cat_id = $update ? $this->_req_data['EVT_CAT_ID'] : ''; |
|
2581 | - $category_name = isset($this->_req_data['category_name']) ? $this->_req_data['category_name'] : ''; |
|
2582 | - $category_desc = isset($this->_req_data['category_desc']) ? $this->_req_data['category_desc'] : ''; |
|
2583 | - $category_parent = isset($this->_req_data['category_parent']) ? $this->_req_data['category_parent'] : 0; |
|
2584 | - if (empty($category_name)) { |
|
2585 | - $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2586 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2587 | - return false; |
|
2588 | - } |
|
2589 | - $term_args = array( |
|
2590 | - 'name' => $category_name, |
|
2591 | - 'description' => $category_desc, |
|
2592 | - 'parent' => $category_parent, |
|
2593 | - ); |
|
2594 | - // was the category_identifier input disabled? |
|
2595 | - if (isset($this->_req_data['category_identifier'])) { |
|
2596 | - $term_args['slug'] = $this->_req_data['category_identifier']; |
|
2597 | - } |
|
2598 | - $insert_ids = $update |
|
2599 | - ? wp_update_term($cat_id, 'espresso_event_categories', $term_args) |
|
2600 | - : wp_insert_term($category_name, 'espresso_event_categories', $term_args); |
|
2601 | - if (! is_array($insert_ids)) { |
|
2602 | - $msg = esc_html__( |
|
2603 | - 'An error occurred and the category has not been saved to the database.', |
|
2604 | - 'event_espresso' |
|
2605 | - ); |
|
2606 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2607 | - } else { |
|
2608 | - $cat_id = $insert_ids['term_id']; |
|
2609 | - $msg = sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2610 | - EE_Error::add_success($msg); |
|
2611 | - } |
|
2612 | - return $cat_id; |
|
2613 | - } |
|
2614 | - |
|
2615 | - |
|
2616 | - /** |
|
2617 | - * Gets categories or count of categories matching the arguments in the request. |
|
2618 | - * |
|
2619 | - * @param int $per_page |
|
2620 | - * @param int $current_page |
|
2621 | - * @param bool $count |
|
2622 | - * @return EE_Base_Class[]|EE_Term_Taxonomy[]|int |
|
2623 | - */ |
|
2624 | - public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2625 | - { |
|
2626 | - // testing term stuff |
|
2627 | - $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'Term.term_id'; |
|
2628 | - $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : 'DESC'; |
|
2629 | - $limit = ($current_page - 1) * $per_page; |
|
2630 | - $where = array('taxonomy' => 'espresso_event_categories'); |
|
2631 | - if (isset($this->_req_data['s'])) { |
|
2632 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2633 | - $where['OR'] = array( |
|
2634 | - 'Term.name' => array('LIKE', $sstr), |
|
2635 | - 'description' => array('LIKE', $sstr), |
|
2636 | - ); |
|
2637 | - } |
|
2638 | - $query_params = array( |
|
2639 | - $where, |
|
2640 | - 'order_by' => array($orderby => $order), |
|
2641 | - 'limit' => $limit . ',' . $per_page, |
|
2642 | - 'force_join' => array('Term'), |
|
2643 | - ); |
|
2644 | - $categories = $count |
|
2645 | - ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2646 | - : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2647 | - return $categories; |
|
2648 | - } |
|
2649 | - |
|
2650 | - /* end category stuff */ |
|
2651 | - /**************/ |
|
2652 | - |
|
2653 | - |
|
2654 | - /** |
|
2655 | - * Callback for the `ee_save_timezone_setting` ajax action. |
|
2656 | - * |
|
2657 | - * @throws EE_Error |
|
2658 | - */ |
|
2659 | - public function save_timezonestring_setting() |
|
2660 | - { |
|
2661 | - $timezone_string = isset($this->_req_data['timezone_selected']) |
|
2662 | - ? $this->_req_data['timezone_selected'] |
|
2663 | - : ''; |
|
2664 | - if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) { |
|
2665 | - EE_Error::add_error( |
|
2666 | - esc_html__('An invalid timezone string submitted.', 'event_espresso'), |
|
2667 | - __FILE__, |
|
2668 | - __FUNCTION__, |
|
2669 | - __LINE__ |
|
2670 | - ); |
|
2671 | - $this->_template_args['error'] = true; |
|
2672 | - $this->_return_json(); |
|
2673 | - } |
|
2674 | - |
|
2675 | - update_option('timezone_string', $timezone_string); |
|
2676 | - EE_Error::add_success( |
|
2677 | - esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2678 | - ); |
|
2679 | - $this->_template_args['success'] = true; |
|
2680 | - $this->_return_json(true, array('action' => 'create_new')); |
|
2681 | - } |
|
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'] = 'espresso_event_categories'; |
|
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 | + $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $this->_req_data); |
|
1840 | + $query_params = apply_filters( |
|
1841 | + 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1842 | + array( |
|
1843 | + $where, |
|
1844 | + 'limit' => $limit, |
|
1845 | + 'order_by' => $orderby, |
|
1846 | + 'order' => $order, |
|
1847 | + 'group_by' => 'EVT_ID', |
|
1848 | + ), |
|
1849 | + $this->_req_data |
|
1850 | + ); |
|
1851 | + // let's first check if we have special requests coming in. |
|
1852 | + if (isset($this->_req_data['active_status'])) { |
|
1853 | + switch ($this->_req_data['active_status']) { |
|
1854 | + case 'upcoming': |
|
1855 | + return $EEME->get_upcoming_events($query_params, $count); |
|
1856 | + break; |
|
1857 | + case 'expired': |
|
1858 | + return $EEME->get_expired_events($query_params, $count); |
|
1859 | + break; |
|
1860 | + case 'active': |
|
1861 | + return $EEME->get_active_events($query_params, $count); |
|
1862 | + break; |
|
1863 | + case 'inactive': |
|
1864 | + return $EEME->get_inactive_events($query_params, $count); |
|
1865 | + break; |
|
1866 | + } |
|
1867 | + } |
|
1868 | + $events = $count ? $EEME->count(array($where), 'EVT_ID', true) : $EEME->get_all($query_params); |
|
1869 | + return $events; |
|
1870 | + } |
|
1871 | + |
|
1872 | + |
|
1873 | + /** |
|
1874 | + * handling for WordPress CPT actions (trash, restore, delete) |
|
1875 | + * |
|
1876 | + * @param string $post_id |
|
1877 | + */ |
|
1878 | + public function trash_cpt_item($post_id) |
|
1879 | + { |
|
1880 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1881 | + $this->_trash_or_restore_event('trash', false); |
|
1882 | + } |
|
1883 | + |
|
1884 | + |
|
1885 | + /** |
|
1886 | + * @param string $post_id |
|
1887 | + */ |
|
1888 | + public function restore_cpt_item($post_id) |
|
1889 | + { |
|
1890 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1891 | + $this->_trash_or_restore_event('draft', false); |
|
1892 | + } |
|
1893 | + |
|
1894 | + |
|
1895 | + /** |
|
1896 | + * @param string $post_id |
|
1897 | + */ |
|
1898 | + public function delete_cpt_item($post_id) |
|
1899 | + { |
|
1900 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1901 | + $this->_delete_event(false); |
|
1902 | + } |
|
1903 | + |
|
1904 | + |
|
1905 | + /** |
|
1906 | + * _trash_or_restore_event |
|
1907 | + * |
|
1908 | + * @access protected |
|
1909 | + * @param string $event_status |
|
1910 | + * @param bool $redirect_after |
|
1911 | + */ |
|
1912 | + protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
1913 | + { |
|
1914 | + // determine the event id and set to array. |
|
1915 | + $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : false; |
|
1916 | + // loop thru events |
|
1917 | + if ($EVT_ID) { |
|
1918 | + // clean status |
|
1919 | + $event_status = sanitize_key($event_status); |
|
1920 | + // grab status |
|
1921 | + if (! empty($event_status)) { |
|
1922 | + $success = $this->_change_event_status($EVT_ID, $event_status); |
|
1923 | + } else { |
|
1924 | + $success = false; |
|
1925 | + $msg = esc_html__( |
|
1926 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1927 | + 'event_espresso' |
|
1928 | + ); |
|
1929 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1930 | + } |
|
1931 | + } else { |
|
1932 | + $success = false; |
|
1933 | + $msg = esc_html__( |
|
1934 | + 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
1935 | + 'event_espresso' |
|
1936 | + ); |
|
1937 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1938 | + } |
|
1939 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1940 | + if ($redirect_after) { |
|
1941 | + $this->_redirect_after_action($success, 'Event', $action, array('action' => 'default')); |
|
1942 | + } |
|
1943 | + } |
|
1944 | + |
|
1945 | + |
|
1946 | + /** |
|
1947 | + * _trash_or_restore_events |
|
1948 | + * |
|
1949 | + * @access protected |
|
1950 | + * @param string $event_status |
|
1951 | + * @return void |
|
1952 | + */ |
|
1953 | + protected function _trash_or_restore_events($event_status = 'trash') |
|
1954 | + { |
|
1955 | + // clean status |
|
1956 | + $event_status = sanitize_key($event_status); |
|
1957 | + // grab status |
|
1958 | + if (! empty($event_status)) { |
|
1959 | + $success = true; |
|
1960 | + // determine the event id and set to array. |
|
1961 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
1962 | + // loop thru events |
|
1963 | + foreach ($EVT_IDs as $EVT_ID) { |
|
1964 | + if ($EVT_ID = absint($EVT_ID)) { |
|
1965 | + $results = $this->_change_event_status($EVT_ID, $event_status); |
|
1966 | + $success = $results !== false ? $success : false; |
|
1967 | + } else { |
|
1968 | + $msg = sprintf( |
|
1969 | + esc_html__( |
|
1970 | + 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
1971 | + 'event_espresso' |
|
1972 | + ), |
|
1973 | + $EVT_ID |
|
1974 | + ); |
|
1975 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1976 | + $success = false; |
|
1977 | + } |
|
1978 | + } |
|
1979 | + } else { |
|
1980 | + $success = false; |
|
1981 | + $msg = esc_html__( |
|
1982 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1983 | + 'event_espresso' |
|
1984 | + ); |
|
1985 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1986 | + } |
|
1987 | + // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
1988 | + $success = $success ? 2 : false; |
|
1989 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1990 | + $this->_redirect_after_action($success, 'Events', $action, array('action' => 'default')); |
|
1991 | + } |
|
1992 | + |
|
1993 | + |
|
1994 | + /** |
|
1995 | + * _trash_or_restore_events |
|
1996 | + * |
|
1997 | + * @access private |
|
1998 | + * @param int $EVT_ID |
|
1999 | + * @param string $event_status |
|
2000 | + * @return bool |
|
2001 | + */ |
|
2002 | + private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2003 | + { |
|
2004 | + // grab event id |
|
2005 | + if (! $EVT_ID) { |
|
2006 | + $msg = esc_html__( |
|
2007 | + 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2008 | + 'event_espresso' |
|
2009 | + ); |
|
2010 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2011 | + return false; |
|
2012 | + } |
|
2013 | + $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2014 | + // clean status |
|
2015 | + $event_status = sanitize_key($event_status); |
|
2016 | + // grab status |
|
2017 | + if (empty($event_status)) { |
|
2018 | + $msg = esc_html__( |
|
2019 | + 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2020 | + 'event_espresso' |
|
2021 | + ); |
|
2022 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2023 | + return false; |
|
2024 | + } |
|
2025 | + // was event trashed or restored ? |
|
2026 | + switch ($event_status) { |
|
2027 | + case 'draft': |
|
2028 | + $action = 'restored from the trash'; |
|
2029 | + $hook = 'AHEE_event_restored_from_trash'; |
|
2030 | + break; |
|
2031 | + case 'trash': |
|
2032 | + $action = 'moved to the trash'; |
|
2033 | + $hook = 'AHEE_event_moved_to_trash'; |
|
2034 | + break; |
|
2035 | + default: |
|
2036 | + $action = 'updated'; |
|
2037 | + $hook = false; |
|
2038 | + } |
|
2039 | + // use class to change status |
|
2040 | + $this->_cpt_model_obj->set_status($event_status); |
|
2041 | + $success = $this->_cpt_model_obj->save(); |
|
2042 | + if ($success === false) { |
|
2043 | + $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2044 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2045 | + return false; |
|
2046 | + } |
|
2047 | + if ($hook) { |
|
2048 | + do_action($hook); |
|
2049 | + } |
|
2050 | + return true; |
|
2051 | + } |
|
2052 | + |
|
2053 | + |
|
2054 | + /** |
|
2055 | + * _delete_event |
|
2056 | + * |
|
2057 | + * @access protected |
|
2058 | + * @param bool $redirect_after |
|
2059 | + */ |
|
2060 | + protected function _delete_event($redirect_after = true) |
|
2061 | + { |
|
2062 | + // determine the event id and set to array. |
|
2063 | + $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : null; |
|
2064 | + $EVT_ID = isset($this->_req_data['post']) ? absint($this->_req_data['post']) : $EVT_ID; |
|
2065 | + // loop thru events |
|
2066 | + if ($EVT_ID) { |
|
2067 | + $success = $this->_permanently_delete_event($EVT_ID); |
|
2068 | + // get list of events with no prices |
|
2069 | + $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2070 | + // remove this event from the list of events with no prices |
|
2071 | + if (isset($espresso_no_ticket_prices[ $EVT_ID ])) { |
|
2072 | + unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2073 | + } |
|
2074 | + update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2075 | + } else { |
|
2076 | + $success = false; |
|
2077 | + $msg = esc_html__( |
|
2078 | + 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2079 | + 'event_espresso' |
|
2080 | + ); |
|
2081 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2082 | + } |
|
2083 | + if ($redirect_after) { |
|
2084 | + $this->_redirect_after_action( |
|
2085 | + $success, |
|
2086 | + 'Event', |
|
2087 | + 'deleted', |
|
2088 | + array('action' => 'default', 'status' => 'trash') |
|
2089 | + ); |
|
2090 | + } |
|
2091 | + } |
|
2092 | + |
|
2093 | + |
|
2094 | + /** |
|
2095 | + * _delete_events |
|
2096 | + * |
|
2097 | + * @access protected |
|
2098 | + * @return void |
|
2099 | + */ |
|
2100 | + protected function _delete_events() |
|
2101 | + { |
|
2102 | + $success = true; |
|
2103 | + // get list of events with no prices |
|
2104 | + $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2105 | + // determine the event id and set to array. |
|
2106 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
2107 | + // loop thru events |
|
2108 | + foreach ($EVT_IDs as $EVT_ID) { |
|
2109 | + $EVT_ID = absint($EVT_ID); |
|
2110 | + if ($EVT_ID) { |
|
2111 | + $results = $this->_permanently_delete_event($EVT_ID); |
|
2112 | + $success = $results !== false ? $success : false; |
|
2113 | + // remove this event from the list of events with no prices |
|
2114 | + unset($espresso_no_ticket_prices[ $EVT_ID ]); |
|
2115 | + } else { |
|
2116 | + $success = false; |
|
2117 | + $msg = esc_html__( |
|
2118 | + 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2119 | + 'event_espresso' |
|
2120 | + ); |
|
2121 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2122 | + } |
|
2123 | + } |
|
2124 | + update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2125 | + // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2126 | + $success = $success ? 2 : false; |
|
2127 | + $this->_redirect_after_action($success, 'Events', 'deleted', array('action' => 'default')); |
|
2128 | + } |
|
2129 | + |
|
2130 | + |
|
2131 | + /** |
|
2132 | + * _permanently_delete_event |
|
2133 | + * |
|
2134 | + * @access private |
|
2135 | + * @param int $EVT_ID |
|
2136 | + * @return bool |
|
2137 | + */ |
|
2138 | + private function _permanently_delete_event($EVT_ID = 0) |
|
2139 | + { |
|
2140 | + // grab event id |
|
2141 | + if (! $EVT_ID) { |
|
2142 | + $msg = esc_html__( |
|
2143 | + 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2144 | + 'event_espresso' |
|
2145 | + ); |
|
2146 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2147 | + return false; |
|
2148 | + } |
|
2149 | + if (! $this->_cpt_model_obj instanceof EE_Event |
|
2150 | + || $this->_cpt_model_obj->ID() !== $EVT_ID |
|
2151 | + ) { |
|
2152 | + $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2153 | + } |
|
2154 | + if (! $this->_cpt_model_obj instanceof EE_Event) { |
|
2155 | + return false; |
|
2156 | + } |
|
2157 | + // need to delete related tickets and prices first. |
|
2158 | + $datetimes = $this->_cpt_model_obj->get_many_related('Datetime'); |
|
2159 | + foreach ($datetimes as $datetime) { |
|
2160 | + $this->_cpt_model_obj->_remove_relation_to($datetime, 'Datetime'); |
|
2161 | + $tickets = $datetime->get_many_related('Ticket'); |
|
2162 | + foreach ($tickets as $ticket) { |
|
2163 | + $ticket->_remove_relation_to($datetime, 'Datetime'); |
|
2164 | + $ticket->delete_related_permanently('Price'); |
|
2165 | + $ticket->delete_permanently(); |
|
2166 | + } |
|
2167 | + $datetime->delete(); |
|
2168 | + } |
|
2169 | + // what about related venues or terms? |
|
2170 | + $venues = $this->_cpt_model_obj->get_many_related('Venue'); |
|
2171 | + foreach ($venues as $venue) { |
|
2172 | + $this->_cpt_model_obj->_remove_relation_to($venue, 'Venue'); |
|
2173 | + } |
|
2174 | + // any attached question groups? |
|
2175 | + $question_groups = $this->_cpt_model_obj->get_many_related('Question_Group'); |
|
2176 | + if (! empty($question_groups)) { |
|
2177 | + foreach ($question_groups as $question_group) { |
|
2178 | + $this->_cpt_model_obj->_remove_relation_to($question_group, 'Question_Group'); |
|
2179 | + } |
|
2180 | + } |
|
2181 | + // Message Template Groups |
|
2182 | + $this->_cpt_model_obj->_remove_relations('Message_Template_Group'); |
|
2183 | + /** @type EE_Term_Taxonomy[] $term_taxonomies */ |
|
2184 | + $term_taxonomies = $this->_cpt_model_obj->term_taxonomies(); |
|
2185 | + foreach ($term_taxonomies as $term_taxonomy) { |
|
2186 | + $this->_cpt_model_obj->remove_relation_to_term_taxonomy($term_taxonomy); |
|
2187 | + } |
|
2188 | + $success = $this->_cpt_model_obj->delete_permanently(); |
|
2189 | + // did it all go as planned ? |
|
2190 | + if ($success) { |
|
2191 | + $msg = sprintf(esc_html__('Event ID # %d has been deleted.', 'event_espresso'), $EVT_ID); |
|
2192 | + EE_Error::add_success($msg); |
|
2193 | + } else { |
|
2194 | + $msg = sprintf( |
|
2195 | + esc_html__('An error occurred. Event ID # %d could not be deleted.', 'event_espresso'), |
|
2196 | + $EVT_ID |
|
2197 | + ); |
|
2198 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2199 | + return false; |
|
2200 | + } |
|
2201 | + do_action('AHEE__Events_Admin_Page___permanently_delete_event__after_event_deleted', $EVT_ID); |
|
2202 | + return true; |
|
2203 | + } |
|
2204 | + |
|
2205 | + |
|
2206 | + /** |
|
2207 | + * get total number of events |
|
2208 | + * |
|
2209 | + * @access public |
|
2210 | + * @return int |
|
2211 | + */ |
|
2212 | + public function total_events() |
|
2213 | + { |
|
2214 | + $count = EEM_Event::instance()->count(array('caps' => 'read_admin'), 'EVT_ID', true); |
|
2215 | + return $count; |
|
2216 | + } |
|
2217 | + |
|
2218 | + |
|
2219 | + /** |
|
2220 | + * get total number of draft events |
|
2221 | + * |
|
2222 | + * @access public |
|
2223 | + * @return int |
|
2224 | + */ |
|
2225 | + public function total_events_draft() |
|
2226 | + { |
|
2227 | + $where = array( |
|
2228 | + 'status' => array('IN', array('draft', 'auto-draft')), |
|
2229 | + ); |
|
2230 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2231 | + return $count; |
|
2232 | + } |
|
2233 | + |
|
2234 | + |
|
2235 | + /** |
|
2236 | + * get total number of trashed events |
|
2237 | + * |
|
2238 | + * @access public |
|
2239 | + * @return int |
|
2240 | + */ |
|
2241 | + public function total_trashed_events() |
|
2242 | + { |
|
2243 | + $where = array( |
|
2244 | + 'status' => 'trash', |
|
2245 | + ); |
|
2246 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2247 | + return $count; |
|
2248 | + } |
|
2249 | + |
|
2250 | + |
|
2251 | + /** |
|
2252 | + * _default_event_settings |
|
2253 | + * This generates the Default Settings Tab |
|
2254 | + * |
|
2255 | + * @return void |
|
2256 | + * @throws EE_Error |
|
2257 | + */ |
|
2258 | + protected function _default_event_settings() |
|
2259 | + { |
|
2260 | + $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2261 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2262 | + $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2263 | + $this->display_admin_page_with_sidebar(); |
|
2264 | + } |
|
2265 | + |
|
2266 | + |
|
2267 | + /** |
|
2268 | + * Return the form for event settings. |
|
2269 | + * |
|
2270 | + * @return EE_Form_Section_Proper |
|
2271 | + * @throws EE_Error |
|
2272 | + */ |
|
2273 | + protected function _default_event_settings_form() |
|
2274 | + { |
|
2275 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2276 | + $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2277 | + // exclude |
|
2278 | + array( |
|
2279 | + EEM_Registration::status_id_cancelled, |
|
2280 | + EEM_Registration::status_id_declined, |
|
2281 | + EEM_Registration::status_id_incomplete, |
|
2282 | + EEM_Registration::status_id_wait_list, |
|
2283 | + ), |
|
2284 | + true |
|
2285 | + ); |
|
2286 | + return new EE_Form_Section_Proper( |
|
2287 | + array( |
|
2288 | + 'name' => 'update_default_event_settings', |
|
2289 | + 'html_id' => 'update_default_event_settings', |
|
2290 | + 'html_class' => 'form-table', |
|
2291 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2292 | + 'subsections' => apply_filters( |
|
2293 | + 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2294 | + array( |
|
2295 | + 'default_reg_status' => new EE_Select_Input( |
|
2296 | + $registration_stati_for_selection, |
|
2297 | + array( |
|
2298 | + 'default' => isset($registration_config->default_STS_ID) |
|
2299 | + && array_key_exists( |
|
2300 | + $registration_config->default_STS_ID, |
|
2301 | + $registration_stati_for_selection |
|
2302 | + ) |
|
2303 | + ? sanitize_text_field($registration_config->default_STS_ID) |
|
2304 | + : EEM_Registration::status_id_pending_payment, |
|
2305 | + 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2306 | + . EEH_Template::get_help_tab_link( |
|
2307 | + 'default_settings_status_help_tab' |
|
2308 | + ), |
|
2309 | + 'html_help_text' => esc_html__( |
|
2310 | + '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.', |
|
2311 | + 'event_espresso' |
|
2312 | + ), |
|
2313 | + ) |
|
2314 | + ), |
|
2315 | + 'default_max_tickets' => new EE_Integer_Input( |
|
2316 | + array( |
|
2317 | + 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2318 | + ? $registration_config->default_maximum_number_of_tickets |
|
2319 | + : EEM_Event::get_default_additional_limit(), |
|
2320 | + 'html_label_text' => esc_html__( |
|
2321 | + 'Default Maximum Tickets Allowed Per Order:', |
|
2322 | + 'event_espresso' |
|
2323 | + ) |
|
2324 | + . EEH_Template::get_help_tab_link( |
|
2325 | + 'default_maximum_tickets_help_tab"' |
|
2326 | + ), |
|
2327 | + 'html_help_text' => esc_html__( |
|
2328 | + 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2329 | + 'event_espresso' |
|
2330 | + ), |
|
2331 | + ) |
|
2332 | + ), |
|
2333 | + ) |
|
2334 | + ), |
|
2335 | + ) |
|
2336 | + ); |
|
2337 | + } |
|
2338 | + |
|
2339 | + |
|
2340 | + /** |
|
2341 | + * _update_default_event_settings |
|
2342 | + * |
|
2343 | + * @access protected |
|
2344 | + * @return void |
|
2345 | + * @throws EE_Error |
|
2346 | + */ |
|
2347 | + protected function _update_default_event_settings() |
|
2348 | + { |
|
2349 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2350 | + $form = $this->_default_event_settings_form(); |
|
2351 | + if ($form->was_submitted()) { |
|
2352 | + $form->receive_form_submission(); |
|
2353 | + if ($form->is_valid()) { |
|
2354 | + $valid_data = $form->valid_data(); |
|
2355 | + if (isset($valid_data['default_reg_status'])) { |
|
2356 | + $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2357 | + } |
|
2358 | + if (isset($valid_data['default_max_tickets'])) { |
|
2359 | + $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2360 | + } |
|
2361 | + // update because data was valid! |
|
2362 | + EE_Registry::instance()->CFG->update_espresso_config(); |
|
2363 | + EE_Error::overwrite_success(); |
|
2364 | + EE_Error::add_success( |
|
2365 | + __('Default Event Settings were updated', 'event_espresso') |
|
2366 | + ); |
|
2367 | + } |
|
2368 | + } |
|
2369 | + $this->_redirect_after_action(0, '', '', array('action' => 'default_event_settings'), true); |
|
2370 | + } |
|
2371 | + |
|
2372 | + |
|
2373 | + /************* Templates *************/ |
|
2374 | + protected function _template_settings() |
|
2375 | + { |
|
2376 | + $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2377 | + $this->_template_args['preview_img'] = '<img src="' |
|
2378 | + . EVENTS_ASSETS_URL |
|
2379 | + . DS |
|
2380 | + . 'images' |
|
2381 | + . DS |
|
2382 | + . 'caffeinated_template_features.jpg" alt="' |
|
2383 | + . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2384 | + . '" />'; |
|
2385 | + $this->_template_args['preview_text'] = '<strong>' |
|
2386 | + . esc_html__( |
|
2387 | + '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.', |
|
2388 | + 'event_espresso' |
|
2389 | + ) . '</strong>'; |
|
2390 | + $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2391 | + } |
|
2392 | + |
|
2393 | + |
|
2394 | + /** Event Category Stuff **/ |
|
2395 | + /** |
|
2396 | + * set the _category property with the category object for the loaded page. |
|
2397 | + * |
|
2398 | + * @access private |
|
2399 | + * @return void |
|
2400 | + */ |
|
2401 | + private function _set_category_object() |
|
2402 | + { |
|
2403 | + if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2404 | + return; |
|
2405 | + } //already have the category object so get out. |
|
2406 | + // set default category object |
|
2407 | + $this->_set_empty_category_object(); |
|
2408 | + // only set if we've got an id |
|
2409 | + if (! isset($this->_req_data['EVT_CAT_ID'])) { |
|
2410 | + return; |
|
2411 | + } |
|
2412 | + $category_id = absint($this->_req_data['EVT_CAT_ID']); |
|
2413 | + $term = get_term($category_id, 'espresso_event_categories'); |
|
2414 | + if (! empty($term)) { |
|
2415 | + $this->_category->category_name = $term->name; |
|
2416 | + $this->_category->category_identifier = $term->slug; |
|
2417 | + $this->_category->category_desc = $term->description; |
|
2418 | + $this->_category->id = $term->term_id; |
|
2419 | + $this->_category->parent = $term->parent; |
|
2420 | + } |
|
2421 | + } |
|
2422 | + |
|
2423 | + |
|
2424 | + /** |
|
2425 | + * Clears out category properties. |
|
2426 | + */ |
|
2427 | + private function _set_empty_category_object() |
|
2428 | + { |
|
2429 | + $this->_category = new stdClass(); |
|
2430 | + $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2431 | + $this->_category->id = $this->_category->parent = 0; |
|
2432 | + } |
|
2433 | + |
|
2434 | + |
|
2435 | + /** |
|
2436 | + * @throws EE_Error |
|
2437 | + */ |
|
2438 | + protected function _category_list_table() |
|
2439 | + { |
|
2440 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2441 | + $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2442 | + $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2443 | + 'add_category', |
|
2444 | + 'add_category', |
|
2445 | + array(), |
|
2446 | + 'add-new-h2' |
|
2447 | + ); |
|
2448 | + $this->display_admin_list_table_page_with_sidebar(); |
|
2449 | + } |
|
2450 | + |
|
2451 | + |
|
2452 | + /** |
|
2453 | + * Output category details view. |
|
2454 | + */ |
|
2455 | + protected function _category_details($view) |
|
2456 | + { |
|
2457 | + // load formatter helper |
|
2458 | + // load field generator helper |
|
2459 | + $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2460 | + $this->_set_add_edit_form_tags($route); |
|
2461 | + $this->_set_category_object(); |
|
2462 | + $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2463 | + $delete_action = 'delete_category'; |
|
2464 | + // custom redirect |
|
2465 | + $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2466 | + array('action' => 'category_list'), |
|
2467 | + $this->_admin_base_url |
|
2468 | + ); |
|
2469 | + $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2470 | + // take care of contents |
|
2471 | + $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2472 | + $this->display_admin_page_with_sidebar(); |
|
2473 | + } |
|
2474 | + |
|
2475 | + |
|
2476 | + /** |
|
2477 | + * Output category details content. |
|
2478 | + */ |
|
2479 | + protected function _category_details_content() |
|
2480 | + { |
|
2481 | + $editor_args['category_desc'] = array( |
|
2482 | + 'type' => 'wp_editor', |
|
2483 | + 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2484 | + 'class' => 'my_editor_custom', |
|
2485 | + 'wpeditor_args' => array('media_buttons' => false), |
|
2486 | + ); |
|
2487 | + $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2488 | + $all_terms = get_terms( |
|
2489 | + array('espresso_event_categories'), |
|
2490 | + array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
2491 | + ); |
|
2492 | + // setup category select for term parents. |
|
2493 | + $category_select_values[] = array( |
|
2494 | + 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2495 | + 'id' => 0, |
|
2496 | + ); |
|
2497 | + foreach ($all_terms as $term) { |
|
2498 | + $category_select_values[] = array( |
|
2499 | + 'text' => $term->name, |
|
2500 | + 'id' => $term->term_id, |
|
2501 | + ); |
|
2502 | + } |
|
2503 | + $category_select = EEH_Form_Fields::select_input( |
|
2504 | + 'category_parent', |
|
2505 | + $category_select_values, |
|
2506 | + $this->_category->parent |
|
2507 | + ); |
|
2508 | + $template_args = array( |
|
2509 | + 'category' => $this->_category, |
|
2510 | + 'category_select' => $category_select, |
|
2511 | + 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2512 | + 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2513 | + 'disable' => '', |
|
2514 | + 'disabled_message' => false, |
|
2515 | + ); |
|
2516 | + $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2517 | + return EEH_Template::display_template($template, $template_args, true); |
|
2518 | + } |
|
2519 | + |
|
2520 | + |
|
2521 | + /** |
|
2522 | + * Handles deleting categories. |
|
2523 | + */ |
|
2524 | + protected function _delete_categories() |
|
2525 | + { |
|
2526 | + $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array) $this->_req_data['EVT_CAT_ID'] |
|
2527 | + : (array) $this->_req_data['category_id']; |
|
2528 | + foreach ($cat_ids as $cat_id) { |
|
2529 | + $this->_delete_category($cat_id); |
|
2530 | + } |
|
2531 | + // doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2532 | + $query_args = array( |
|
2533 | + 'action' => 'category_list', |
|
2534 | + ); |
|
2535 | + $this->_redirect_after_action(0, '', '', $query_args); |
|
2536 | + } |
|
2537 | + |
|
2538 | + |
|
2539 | + /** |
|
2540 | + * Handles deleting specific category. |
|
2541 | + * |
|
2542 | + * @param int $cat_id |
|
2543 | + */ |
|
2544 | + protected function _delete_category($cat_id) |
|
2545 | + { |
|
2546 | + $cat_id = absint($cat_id); |
|
2547 | + wp_delete_term($cat_id, 'espresso_event_categories'); |
|
2548 | + } |
|
2549 | + |
|
2550 | + |
|
2551 | + /** |
|
2552 | + * Handles triggering the update or insertion of a new category. |
|
2553 | + * |
|
2554 | + * @param bool $new_category true means we're triggering the insert of a new category. |
|
2555 | + */ |
|
2556 | + protected function _insert_or_update_category($new_category) |
|
2557 | + { |
|
2558 | + $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2559 | + $success = 0; // we already have a success message so lets not send another. |
|
2560 | + if ($cat_id) { |
|
2561 | + $query_args = array( |
|
2562 | + 'action' => 'edit_category', |
|
2563 | + 'EVT_CAT_ID' => $cat_id, |
|
2564 | + ); |
|
2565 | + } else { |
|
2566 | + $query_args = array('action' => 'add_category'); |
|
2567 | + } |
|
2568 | + $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2569 | + } |
|
2570 | + |
|
2571 | + |
|
2572 | + /** |
|
2573 | + * Inserts or updates category |
|
2574 | + * |
|
2575 | + * @param bool $update (true indicates we're updating a category). |
|
2576 | + * @return bool|mixed|string |
|
2577 | + */ |
|
2578 | + private function _insert_category($update = false) |
|
2579 | + { |
|
2580 | + $cat_id = $update ? $this->_req_data['EVT_CAT_ID'] : ''; |
|
2581 | + $category_name = isset($this->_req_data['category_name']) ? $this->_req_data['category_name'] : ''; |
|
2582 | + $category_desc = isset($this->_req_data['category_desc']) ? $this->_req_data['category_desc'] : ''; |
|
2583 | + $category_parent = isset($this->_req_data['category_parent']) ? $this->_req_data['category_parent'] : 0; |
|
2584 | + if (empty($category_name)) { |
|
2585 | + $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2586 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2587 | + return false; |
|
2588 | + } |
|
2589 | + $term_args = array( |
|
2590 | + 'name' => $category_name, |
|
2591 | + 'description' => $category_desc, |
|
2592 | + 'parent' => $category_parent, |
|
2593 | + ); |
|
2594 | + // was the category_identifier input disabled? |
|
2595 | + if (isset($this->_req_data['category_identifier'])) { |
|
2596 | + $term_args['slug'] = $this->_req_data['category_identifier']; |
|
2597 | + } |
|
2598 | + $insert_ids = $update |
|
2599 | + ? wp_update_term($cat_id, 'espresso_event_categories', $term_args) |
|
2600 | + : wp_insert_term($category_name, 'espresso_event_categories', $term_args); |
|
2601 | + if (! is_array($insert_ids)) { |
|
2602 | + $msg = esc_html__( |
|
2603 | + 'An error occurred and the category has not been saved to the database.', |
|
2604 | + 'event_espresso' |
|
2605 | + ); |
|
2606 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2607 | + } else { |
|
2608 | + $cat_id = $insert_ids['term_id']; |
|
2609 | + $msg = sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2610 | + EE_Error::add_success($msg); |
|
2611 | + } |
|
2612 | + return $cat_id; |
|
2613 | + } |
|
2614 | + |
|
2615 | + |
|
2616 | + /** |
|
2617 | + * Gets categories or count of categories matching the arguments in the request. |
|
2618 | + * |
|
2619 | + * @param int $per_page |
|
2620 | + * @param int $current_page |
|
2621 | + * @param bool $count |
|
2622 | + * @return EE_Base_Class[]|EE_Term_Taxonomy[]|int |
|
2623 | + */ |
|
2624 | + public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2625 | + { |
|
2626 | + // testing term stuff |
|
2627 | + $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'Term.term_id'; |
|
2628 | + $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : 'DESC'; |
|
2629 | + $limit = ($current_page - 1) * $per_page; |
|
2630 | + $where = array('taxonomy' => 'espresso_event_categories'); |
|
2631 | + if (isset($this->_req_data['s'])) { |
|
2632 | + $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2633 | + $where['OR'] = array( |
|
2634 | + 'Term.name' => array('LIKE', $sstr), |
|
2635 | + 'description' => array('LIKE', $sstr), |
|
2636 | + ); |
|
2637 | + } |
|
2638 | + $query_params = array( |
|
2639 | + $where, |
|
2640 | + 'order_by' => array($orderby => $order), |
|
2641 | + 'limit' => $limit . ',' . $per_page, |
|
2642 | + 'force_join' => array('Term'), |
|
2643 | + ); |
|
2644 | + $categories = $count |
|
2645 | + ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2646 | + : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2647 | + return $categories; |
|
2648 | + } |
|
2649 | + |
|
2650 | + /* end category stuff */ |
|
2651 | + /**************/ |
|
2652 | + |
|
2653 | + |
|
2654 | + /** |
|
2655 | + * Callback for the `ee_save_timezone_setting` ajax action. |
|
2656 | + * |
|
2657 | + * @throws EE_Error |
|
2658 | + */ |
|
2659 | + public function save_timezonestring_setting() |
|
2660 | + { |
|
2661 | + $timezone_string = isset($this->_req_data['timezone_selected']) |
|
2662 | + ? $this->_req_data['timezone_selected'] |
|
2663 | + : ''; |
|
2664 | + if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) { |
|
2665 | + EE_Error::add_error( |
|
2666 | + esc_html__('An invalid timezone string submitted.', 'event_espresso'), |
|
2667 | + __FILE__, |
|
2668 | + __FUNCTION__, |
|
2669 | + __LINE__ |
|
2670 | + ); |
|
2671 | + $this->_template_args['error'] = true; |
|
2672 | + $this->_return_json(); |
|
2673 | + } |
|
2674 | + |
|
2675 | + update_option('timezone_string', $timezone_string); |
|
2676 | + EE_Error::add_success( |
|
2677 | + esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2678 | + ); |
|
2679 | + $this->_template_args['success'] = true; |
|
2680 | + $this->_return_json(true, array('action' => 'create_new')); |
|
2681 | + } |
|
2682 | 2682 | } |
@@ -17,880 +17,880 @@ |
||
17 | 17 | { |
18 | 18 | |
19 | 19 | |
20 | - /** |
|
21 | - * @var EE_Form_Section_Proper |
|
22 | - */ |
|
23 | - protected $datetime_fix_offset_form; |
|
24 | - |
|
25 | - |
|
26 | - protected function _init_page_props() |
|
27 | - { |
|
28 | - $this->page_slug = EE_MAINTENANCE_PG_SLUG; |
|
29 | - $this->page_label = EE_MAINTENANCE_LABEL; |
|
30 | - $this->_admin_base_url = EE_MAINTENANCE_ADMIN_URL; |
|
31 | - $this->_admin_base_path = EE_MAINTENANCE_ADMIN; |
|
32 | - } |
|
33 | - |
|
34 | - |
|
35 | - protected function _ajax_hooks() |
|
36 | - { |
|
37 | - add_action('wp_ajax_migration_step', array($this, 'migration_step')); |
|
38 | - add_action('wp_ajax_add_error_to_migrations_ran', array($this, 'add_error_to_migrations_ran')); |
|
39 | - } |
|
40 | - |
|
41 | - |
|
42 | - protected function _define_page_props() |
|
43 | - { |
|
44 | - $this->_admin_page_title = EE_MAINTENANCE_LABEL; |
|
45 | - $this->_labels = array( |
|
46 | - 'buttons' => array( |
|
47 | - 'reset_reservations' => esc_html__('Reset Ticket and Datetime Reserved Counts', 'event_espresso'), |
|
48 | - 'reset_capabilities' => esc_html__('Reset Event Espresso Capabilities', 'event_espresso'), |
|
49 | - ), |
|
50 | - ); |
|
51 | - } |
|
52 | - |
|
53 | - |
|
54 | - protected function _set_page_routes() |
|
55 | - { |
|
56 | - $this->_page_routes = array( |
|
57 | - 'default' => array( |
|
58 | - 'func' => '_maintenance', |
|
59 | - 'capability' => 'manage_options', |
|
60 | - ), |
|
61 | - 'change_maintenance_level' => array( |
|
62 | - 'func' => '_change_maintenance_level', |
|
63 | - 'capability' => 'manage_options', |
|
64 | - 'noheader' => true, |
|
65 | - ), |
|
66 | - 'system_status' => array( |
|
67 | - 'func' => '_system_status', |
|
68 | - 'capability' => 'manage_options', |
|
69 | - ), |
|
70 | - 'download_system_status' => array( |
|
71 | - 'func' => '_download_system_status', |
|
72 | - 'capability' => 'manage_options', |
|
73 | - 'noheader' => true, |
|
74 | - ), |
|
75 | - 'send_migration_crash_report' => array( |
|
76 | - 'func' => '_send_migration_crash_report', |
|
77 | - 'capability' => 'manage_options', |
|
78 | - 'noheader' => true, |
|
79 | - ), |
|
80 | - 'confirm_migration_crash_report_sent' => array( |
|
81 | - 'func' => '_confirm_migration_crash_report_sent', |
|
82 | - 'capability' => 'manage_options', |
|
83 | - ), |
|
84 | - 'data_reset' => array( |
|
85 | - 'func' => '_data_reset_and_delete', |
|
86 | - 'capability' => 'manage_options', |
|
87 | - ), |
|
88 | - 'reset_db' => array( |
|
89 | - 'func' => '_reset_db', |
|
90 | - 'capability' => 'manage_options', |
|
91 | - 'noheader' => true, |
|
92 | - 'args' => array('nuke_old_ee4_data' => true), |
|
93 | - ), |
|
94 | - 'start_with_fresh_ee4_db' => array( |
|
95 | - 'func' => '_reset_db', |
|
96 | - 'capability' => 'manage_options', |
|
97 | - 'noheader' => true, |
|
98 | - 'args' => array('nuke_old_ee4_data' => false), |
|
99 | - ), |
|
100 | - 'delete_db' => array( |
|
101 | - 'func' => '_delete_db', |
|
102 | - 'capability' => 'manage_options', |
|
103 | - 'noheader' => true, |
|
104 | - ), |
|
105 | - 'rerun_migration_from_ee3' => array( |
|
106 | - 'func' => '_rerun_migration_from_ee3', |
|
107 | - 'capability' => 'manage_options', |
|
108 | - 'noheader' => true, |
|
109 | - ), |
|
110 | - 'reset_reservations' => array( |
|
111 | - 'func' => '_reset_reservations', |
|
112 | - 'capability' => 'manage_options', |
|
113 | - 'noheader' => true, |
|
114 | - ), |
|
115 | - 'reset_capabilities' => array( |
|
116 | - 'func' => '_reset_capabilities', |
|
117 | - 'capability' => 'manage_options', |
|
118 | - 'noheader' => true, |
|
119 | - ), |
|
120 | - 'reattempt_migration' => array( |
|
121 | - 'func' => '_reattempt_migration', |
|
122 | - 'capability' => 'manage_options', |
|
123 | - 'noheader' => true, |
|
124 | - ), |
|
125 | - 'datetime_tools' => array( |
|
126 | - 'func' => '_datetime_tools', |
|
127 | - 'capability' => 'manage_options', |
|
128 | - ), |
|
129 | - 'run_datetime_offset_fix' => array( |
|
130 | - 'func' => '_apply_datetime_offset', |
|
131 | - 'noheader' => true, |
|
132 | - 'headers_sent_route' => 'datetime_tools', |
|
133 | - 'capability' => 'manage_options', |
|
134 | - ), |
|
135 | - ); |
|
136 | - } |
|
137 | - |
|
138 | - |
|
139 | - protected function _set_page_config() |
|
140 | - { |
|
141 | - $this->_page_config = array( |
|
142 | - 'default' => array( |
|
143 | - 'nav' => array( |
|
144 | - 'label' => esc_html__('Maintenance', 'event_espresso'), |
|
145 | - 'order' => 10, |
|
146 | - ), |
|
147 | - 'require_nonce' => false, |
|
148 | - ), |
|
149 | - 'data_reset' => array( |
|
150 | - 'nav' => array( |
|
151 | - 'label' => esc_html__('Reset/Delete Data', 'event_espresso'), |
|
152 | - 'order' => 20, |
|
153 | - ), |
|
154 | - 'require_nonce' => false, |
|
155 | - ), |
|
156 | - 'datetime_tools' => array( |
|
157 | - 'nav' => array( |
|
158 | - 'label' => esc_html__('Datetime Utilities', 'event_espresso'), |
|
159 | - 'order' => 25, |
|
160 | - ), |
|
161 | - 'require_nonce' => false, |
|
162 | - ), |
|
163 | - 'system_status' => array( |
|
164 | - 'nav' => array( |
|
165 | - 'label' => esc_html__("System Information", "event_espresso"), |
|
166 | - 'order' => 30, |
|
167 | - ), |
|
168 | - 'require_nonce' => false, |
|
169 | - ), |
|
170 | - ); |
|
171 | - } |
|
172 | - |
|
173 | - |
|
174 | - /** |
|
175 | - * default maintenance page. If we're in maintenance mode level 2, then we need to show |
|
176 | - * the migration scripts and all that UI. |
|
177 | - */ |
|
178 | - public function _maintenance() |
|
179 | - { |
|
180 | - // it all depends if we're in maintenance model level 1 (frontend-only) or |
|
181 | - // level 2 (everything except maintenance page) |
|
182 | - try { |
|
183 | - // get the current maintenance level and check if |
|
184 | - // we are removed |
|
185 | - $mm = EE_Maintenance_Mode::instance()->level(); |
|
186 | - $placed_in_mm = EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old(); |
|
187 | - if ($mm == EE_Maintenance_Mode::level_2_complete_maintenance && ! $placed_in_mm) { |
|
188 | - // we just took the site out of maintenance mode, so notify the user. |
|
189 | - // unfortunately this message appears to be echoed on the NEXT page load... |
|
190 | - // oh well, we should really be checking for this on addon deactivation anyways |
|
191 | - EE_Error::add_attention( |
|
192 | - __( |
|
193 | - 'Site taken out of maintenance mode because no data migration scripts are required', |
|
194 | - 'event_espresso' |
|
195 | - ) |
|
196 | - ); |
|
197 | - $this->_process_notices(array('page' => 'espresso_maintenance_settings'), false); |
|
198 | - } |
|
199 | - // in case an exception is thrown while trying to handle migrations |
|
200 | - switch (EE_Maintenance_Mode::instance()->level()) { |
|
201 | - case EE_Maintenance_Mode::level_0_not_in_maintenance: |
|
202 | - case EE_Maintenance_Mode::level_1_frontend_only_maintenance: |
|
203 | - $show_maintenance_switch = true; |
|
204 | - $show_backup_db_text = false; |
|
205 | - $show_migration_progress = false; |
|
206 | - $script_names = array(); |
|
207 | - $addons_should_be_upgraded_first = false; |
|
208 | - break; |
|
209 | - case EE_Maintenance_Mode::level_2_complete_maintenance: |
|
210 | - $show_maintenance_switch = false; |
|
211 | - $show_migration_progress = true; |
|
212 | - if (isset($this->_req_data['continue_migration'])) { |
|
213 | - $show_backup_db_text = false; |
|
214 | - } else { |
|
215 | - $show_backup_db_text = true; |
|
216 | - } |
|
217 | - $scripts_needing_to_run = EE_Data_Migration_Manager::instance() |
|
218 | - ->check_for_applicable_data_migration_scripts(); |
|
219 | - $addons_should_be_upgraded_first = EE_Data_Migration_Manager::instance()->addons_need_updating(); |
|
220 | - $script_names = array(); |
|
221 | - $current_script = null; |
|
222 | - foreach ($scripts_needing_to_run as $script) { |
|
223 | - if ($script instanceof EE_Data_Migration_Script_Base) { |
|
224 | - if (! $current_script) { |
|
225 | - $current_script = $script; |
|
226 | - $current_script->migration_page_hooks(); |
|
227 | - } |
|
228 | - $script_names[] = $script->pretty_name(); |
|
229 | - } |
|
230 | - } |
|
231 | - break; |
|
232 | - } |
|
233 | - $most_recent_migration = EE_Data_Migration_Manager::instance()->get_last_ran_script(true); |
|
234 | - $exception_thrown = false; |
|
235 | - } catch (EE_Error $e) { |
|
236 | - EE_Data_Migration_Manager::instance()->add_error_to_migrations_ran($e->getMessage()); |
|
237 | - // now, just so we can display the page correctly, make a error migration script stage object |
|
238 | - // and also put the error on it. It only persists for the duration of this request |
|
239 | - $most_recent_migration = new EE_DMS_Unknown_1_0_0(); |
|
240 | - $most_recent_migration->add_error($e->getMessage()); |
|
241 | - $exception_thrown = true; |
|
242 | - } |
|
243 | - $current_db_state = EE_Data_Migration_Manager::instance()->ensure_current_database_state_is_set(); |
|
244 | - $current_db_state = str_replace('.decaf', '', $current_db_state); |
|
245 | - if ($exception_thrown |
|
246 | - || ($most_recent_migration |
|
247 | - && $most_recent_migration instanceof EE_Data_Migration_Script_Base |
|
248 | - && $most_recent_migration->is_broken() |
|
249 | - ) |
|
250 | - ) { |
|
251 | - $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_migration_was_borked_page.template.php'; |
|
252 | - $this->_template_args['support_url'] = 'http://eventespresso.com/support/forums/'; |
|
253 | - $this->_template_args['next_url'] = EEH_URL::add_query_args_and_nonce( |
|
254 | - array( |
|
255 | - 'action' => 'confirm_migration_crash_report_sent', |
|
256 | - 'success' => '0', |
|
257 | - ), |
|
258 | - EE_MAINTENANCE_ADMIN_URL |
|
259 | - ); |
|
260 | - } elseif ($addons_should_be_upgraded_first) { |
|
261 | - $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_upgrade_addons_before_migrating.template.php'; |
|
262 | - } else { |
|
263 | - if ($most_recent_migration |
|
264 | - && $most_recent_migration instanceof EE_Data_Migration_Script_Base |
|
265 | - && $most_recent_migration->can_continue() |
|
266 | - ) { |
|
267 | - $show_backup_db_text = false; |
|
268 | - $show_continue_current_migration_script = true; |
|
269 | - $show_most_recent_migration = true; |
|
270 | - } elseif (isset($this->_req_data['continue_migration'])) { |
|
271 | - $show_most_recent_migration = true; |
|
272 | - $show_continue_current_migration_script = false; |
|
273 | - } else { |
|
274 | - $show_most_recent_migration = false; |
|
275 | - $show_continue_current_migration_script = false; |
|
276 | - } |
|
277 | - if (isset($current_script)) { |
|
278 | - $migrates_to = $current_script->migrates_to_version(); |
|
279 | - $plugin_slug = $migrates_to['slug']; |
|
280 | - $new_version = $migrates_to['version']; |
|
281 | - $this->_template_args = array_merge( |
|
282 | - $this->_template_args, |
|
283 | - array( |
|
284 | - 'current_db_state' => sprintf( |
|
285 | - __("EE%s (%s)", "event_espresso"), |
|
286 | - isset($current_db_state[ $plugin_slug ]) ? $current_db_state[ $plugin_slug ] : 3, |
|
287 | - $plugin_slug |
|
288 | - ), |
|
289 | - 'next_db_state' => isset($current_script) ? sprintf( |
|
290 | - __("EE%s (%s)", 'event_espresso'), |
|
291 | - $new_version, |
|
292 | - $plugin_slug |
|
293 | - ) : null, |
|
294 | - ) |
|
295 | - ); |
|
296 | - } else { |
|
297 | - $this->_template_args['current_db_state'] = null; |
|
298 | - $this->_template_args['next_db_state'] = null; |
|
299 | - } |
|
300 | - $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_migration_page.template.php'; |
|
301 | - $this->_template_args = array_merge( |
|
302 | - $this->_template_args, |
|
303 | - array( |
|
304 | - 'show_most_recent_migration' => $show_most_recent_migration, |
|
305 | - // flag for showing the most recent migration's status and/or errors |
|
306 | - 'show_migration_progress' => $show_migration_progress, |
|
307 | - // flag for showing the option to run migrations and see their progress |
|
308 | - 'show_backup_db_text' => $show_backup_db_text, |
|
309 | - // flag for showing text telling the user to backup their DB |
|
310 | - 'show_maintenance_switch' => $show_maintenance_switch, |
|
311 | - // flag for showing the option to change maintenance mode between levels 0 and 1 |
|
312 | - 'script_names' => $script_names, |
|
313 | - // array of names of scripts that have run |
|
314 | - 'show_continue_current_migration_script' => $show_continue_current_migration_script, |
|
315 | - // flag to change wording to indicating that we're only CONTINUING a migration script (somehow it got interrupted0 |
|
316 | - 'reset_db_page_link' => EE_Admin_Page::add_query_args_and_nonce( |
|
317 | - array('action' => 'reset_db'), |
|
318 | - EE_MAINTENANCE_ADMIN_URL |
|
319 | - ), |
|
320 | - 'data_reset_page' => EE_Admin_Page::add_query_args_and_nonce( |
|
321 | - array('action' => 'data_reset'), |
|
322 | - EE_MAINTENANCE_ADMIN_URL |
|
323 | - ), |
|
324 | - 'update_migration_script_page_link' => EE_Admin_Page::add_query_args_and_nonce( |
|
325 | - array('action' => 'change_maintenance_level'), |
|
326 | - EE_MAINTENANCE_ADMIN_URL |
|
327 | - ), |
|
328 | - 'ultimate_db_state' => sprintf( |
|
329 | - __("EE%s", 'event_espresso'), |
|
330 | - espresso_version() |
|
331 | - ), |
|
332 | - ) |
|
333 | - ); |
|
334 | - // make sure we have the form fields helper available. It usually is, but sometimes it isn't |
|
335 | - } |
|
336 | - $this->_template_args['most_recent_migration'] = $most_recent_migration;// the actual most recently ran migration |
|
337 | - // now render the migration options part, and put it in a variable |
|
338 | - $migration_options_template_file = apply_filters( |
|
339 | - 'FHEE__ee_migration_page__migration_options_template', |
|
340 | - EE_MAINTENANCE_TEMPLATE_PATH . 'migration_options_from_ee4.template.php' |
|
341 | - ); |
|
342 | - $migration_options_html = EEH_Template::display_template( |
|
343 | - $migration_options_template_file, |
|
344 | - $this->_template_args, |
|
345 | - true |
|
346 | - ); |
|
347 | - $this->_template_args['migration_options_html'] = $migration_options_html; |
|
348 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
349 | - $this->_template_path, |
|
350 | - $this->_template_args, |
|
351 | - true |
|
352 | - ); |
|
353 | - $this->display_admin_page_with_sidebar(); |
|
354 | - } |
|
355 | - |
|
356 | - |
|
357 | - /** |
|
358 | - * returns JSON and executes another step of the currently-executing data migration (called via ajax) |
|
359 | - */ |
|
360 | - public function migration_step() |
|
361 | - { |
|
362 | - $this->_template_args['data'] = EE_Data_Migration_Manager::instance()->response_to_migration_ajax_request(); |
|
363 | - $this->_return_json(); |
|
364 | - } |
|
365 | - |
|
366 | - |
|
367 | - /** |
|
368 | - * Can be used by js when it notices a response with HTML in it in order |
|
369 | - * to log the malformed response |
|
370 | - */ |
|
371 | - public function add_error_to_migrations_ran() |
|
372 | - { |
|
373 | - EE_Data_Migration_Manager::instance()->add_error_to_migrations_ran($this->_req_data['message']); |
|
374 | - $this->_template_args['data'] = array('ok' => true); |
|
375 | - $this->_return_json(); |
|
376 | - } |
|
377 | - |
|
378 | - |
|
379 | - /** |
|
380 | - * changes the maintenance level, provided there are still no migration scripts that should run |
|
381 | - */ |
|
382 | - public function _change_maintenance_level() |
|
383 | - { |
|
384 | - $new_level = absint($this->_req_data['maintenance_mode_level']); |
|
385 | - if (! EE_Data_Migration_Manager::instance()->check_for_applicable_data_migration_scripts()) { |
|
386 | - EE_Maintenance_Mode::instance()->set_maintenance_level($new_level); |
|
387 | - $success = true; |
|
388 | - } else { |
|
389 | - EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old(); |
|
390 | - $success = false; |
|
391 | - } |
|
392 | - $this->_redirect_after_action($success, 'Maintenance Mode', esc_html__("Updated", "event_espresso")); |
|
393 | - } |
|
394 | - |
|
395 | - |
|
396 | - /** |
|
397 | - * a tab with options for resetting and/or deleting EE data |
|
398 | - * |
|
399 | - * @throws \EE_Error |
|
400 | - * @throws \DomainException |
|
401 | - */ |
|
402 | - public function _data_reset_and_delete() |
|
403 | - { |
|
404 | - $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_data_reset_and_delete.template.php'; |
|
405 | - $this->_template_args['reset_reservations_button'] = $this->get_action_link_or_button( |
|
406 | - 'reset_reservations', |
|
407 | - 'reset_reservations', |
|
408 | - array(), |
|
409 | - 'button button-primary ee-confirm', |
|
410 | - '', |
|
411 | - false |
|
412 | - ); |
|
413 | - $this->_template_args['reset_capabilities_button'] = $this->get_action_link_or_button( |
|
414 | - 'reset_capabilities', |
|
415 | - 'reset_capabilities', |
|
416 | - array(), |
|
417 | - 'button button-primary ee-confirm', |
|
418 | - '', |
|
419 | - false |
|
420 | - ); |
|
421 | - $this->_template_args['delete_db_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
422 | - array('action' => 'delete_db'), |
|
423 | - EE_MAINTENANCE_ADMIN_URL |
|
424 | - ); |
|
425 | - $this->_template_args['reset_db_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
426 | - array('action' => 'reset_db'), |
|
427 | - EE_MAINTENANCE_ADMIN_URL |
|
428 | - ); |
|
429 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
430 | - $this->_template_path, |
|
431 | - $this->_template_args, |
|
432 | - true |
|
433 | - ); |
|
434 | - $this->display_admin_page_with_sidebar(); |
|
435 | - } |
|
436 | - |
|
437 | - |
|
438 | - protected function _reset_reservations() |
|
439 | - { |
|
440 | - if (\EED_Ticket_Sales_Monitor::reset_reservation_counts()) { |
|
441 | - EE_Error::add_success( |
|
442 | - __( |
|
443 | - 'Ticket and datetime reserved counts have been successfully reset.', |
|
444 | - 'event_espresso' |
|
445 | - ) |
|
446 | - ); |
|
447 | - } else { |
|
448 | - EE_Error::add_success( |
|
449 | - __( |
|
450 | - 'Ticket and datetime reserved counts were correct and did not need resetting.', |
|
451 | - 'event_espresso' |
|
452 | - ) |
|
453 | - ); |
|
454 | - } |
|
455 | - $this->_redirect_after_action(true, '', '', array('action' => 'data_reset'), true); |
|
456 | - } |
|
457 | - |
|
458 | - |
|
459 | - protected function _reset_capabilities() |
|
460 | - { |
|
461 | - EE_Registry::instance()->CAP->init_caps(true); |
|
462 | - EE_Error::add_success( |
|
463 | - __( |
|
464 | - 'Default Event Espresso capabilities have been restored for all current roles.', |
|
465 | - 'event_espresso' |
|
466 | - ) |
|
467 | - ); |
|
468 | - $this->_redirect_after_action(false, '', '', array('action' => 'data_reset'), true); |
|
469 | - } |
|
470 | - |
|
471 | - |
|
472 | - /** |
|
473 | - * resets the DMSs so we can attempt to continue migrating after a fatal error |
|
474 | - * (only a good idea when someone has somehow tried ot fix whatever caused |
|
475 | - * the fatal error in teh first place) |
|
476 | - */ |
|
477 | - protected function _reattempt_migration() |
|
478 | - { |
|
479 | - EE_Data_Migration_Manager::instance()->reattempt(); |
|
480 | - $this->_redirect_after_action(false, '', '', array('action' => 'default'), true); |
|
481 | - } |
|
482 | - |
|
483 | - |
|
484 | - /** |
|
485 | - * shows the big ol' System Information page |
|
486 | - */ |
|
487 | - public function _system_status() |
|
488 | - { |
|
489 | - $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_system_stati_page.template.php'; |
|
490 | - $this->_template_args['system_stati'] = EEM_System_Status::instance()->get_system_stati(); |
|
491 | - $this->_template_args['download_system_status_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
492 | - array( |
|
493 | - 'action' => 'download_system_status', |
|
494 | - ), |
|
495 | - EE_MAINTENANCE_ADMIN_URL |
|
496 | - ); |
|
497 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
498 | - $this->_template_path, |
|
499 | - $this->_template_args, |
|
500 | - true |
|
501 | - ); |
|
502 | - $this->display_admin_page_with_sidebar(); |
|
503 | - } |
|
504 | - |
|
505 | - /** |
|
506 | - * Downloads an HTML file of the system status that can be easily stored or emailed |
|
507 | - */ |
|
508 | - public function _download_system_status() |
|
509 | - { |
|
510 | - $status_info = EEM_System_Status::instance()->get_system_stati(); |
|
511 | - header('Content-Disposition: attachment'); |
|
512 | - header("Content-Disposition: attachment; filename=system_status_" . sanitize_key(site_url()) . ".html"); |
|
513 | - echo "<style>table{border:1px solid darkgrey;}td{vertical-align:top}</style>"; |
|
514 | - echo "<h1>System Information for " . site_url() . "</h1>"; |
|
515 | - echo EEH_Template::layout_array_as_table($status_info); |
|
516 | - die; |
|
517 | - } |
|
518 | - |
|
519 | - |
|
520 | - public function _send_migration_crash_report() |
|
521 | - { |
|
522 | - $from = $this->_req_data['from']; |
|
523 | - $from_name = $this->_req_data['from_name']; |
|
524 | - $body = $this->_req_data['body']; |
|
525 | - try { |
|
526 | - $success = wp_mail( |
|
527 | - EE_SUPPORT_EMAIL, |
|
528 | - 'Migration Crash Report', |
|
529 | - $body . "/r/n<br>" . print_r(EEM_System_Status::instance()->get_system_stati(), true), |
|
530 | - array( |
|
531 | - "from:$from_name<$from>", |
|
532 | - ) |
|
533 | - ); |
|
534 | - } catch (Exception $e) { |
|
535 | - $success = false; |
|
536 | - } |
|
537 | - $this->_redirect_after_action( |
|
538 | - $success, |
|
539 | - esc_html__("Migration Crash Report", "event_espresso"), |
|
540 | - esc_html__("sent", "event_espresso"), |
|
541 | - array('success' => $success, 'action' => 'confirm_migration_crash_report_sent') |
|
542 | - ); |
|
543 | - } |
|
544 | - |
|
545 | - |
|
546 | - public function _confirm_migration_crash_report_sent() |
|
547 | - { |
|
548 | - try { |
|
549 | - $most_recent_migration = EE_Data_Migration_Manager::instance()->get_last_ran_script(true); |
|
550 | - } catch (EE_Error $e) { |
|
551 | - EE_Data_Migration_Manager::instance()->add_error_to_migrations_ran($e->getMessage()); |
|
552 | - // now, just so we can display the page correctly, make a error migration script stage object |
|
553 | - // and also put the error on it. It only persists for the duration of this request |
|
554 | - $most_recent_migration = new EE_DMS_Unknown_1_0_0(); |
|
555 | - $most_recent_migration->add_error($e->getMessage()); |
|
556 | - } |
|
557 | - $success = $this->_req_data['success'] == '1' ? true : false; |
|
558 | - $this->_template_args['success'] = $success; |
|
559 | - $this->_template_args['most_recent_migration'] = $most_recent_migration; |
|
560 | - $this->_template_args['reset_db_action_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
561 | - array('action' => 'reset_db'), |
|
562 | - EE_MAINTENANCE_ADMIN_URL |
|
563 | - ); |
|
564 | - $this->_template_args['reset_db_page_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
565 | - array('action' => 'data_reset'), |
|
566 | - EE_MAINTENANCE_ADMIN_URL |
|
567 | - ); |
|
568 | - $this->_template_args['reattempt_action_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
569 | - array('action' => 'reattempt_migration'), |
|
570 | - EE_MAINTENANCE_ADMIN_URL |
|
571 | - ); |
|
572 | - $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_confirm_migration_crash_report_sent.template.php'; |
|
573 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
574 | - $this->_template_path, |
|
575 | - $this->_template_args, |
|
576 | - true |
|
577 | - ); |
|
578 | - $this->display_admin_page_with_sidebar(); |
|
579 | - } |
|
580 | - |
|
581 | - |
|
582 | - /** |
|
583 | - * Resets the entire EE4 database. |
|
584 | - * Currently basically only sets up ee4 database for a fresh install- doesn't |
|
585 | - * actually clean out the old wp options, or cpts (although does erase old ee table data) |
|
586 | - * |
|
587 | - * @param boolean $nuke_old_ee4_data controls whether or not we |
|
588 | - * destroy the old ee4 data, or just try initializing ee4 default data |
|
589 | - */ |
|
590 | - public function _reset_db($nuke_old_ee4_data = true) |
|
591 | - { |
|
592 | - EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_0_not_in_maintenance); |
|
593 | - if ($nuke_old_ee4_data) { |
|
594 | - EEH_Activation::delete_all_espresso_cpt_data(); |
|
595 | - EEH_Activation::delete_all_espresso_tables_and_data(false); |
|
596 | - EEH_Activation::remove_cron_tasks(); |
|
597 | - } |
|
598 | - // make sure when we reset the registry's config that it |
|
599 | - // switches to using the new singleton |
|
600 | - EE_Registry::instance()->CFG = EE_Registry::instance()->CFG->reset(true); |
|
601 | - EE_System::instance()->initialize_db_if_no_migrations_required(true); |
|
602 | - EE_System::instance()->redirect_to_about_ee(); |
|
603 | - } |
|
604 | - |
|
605 | - |
|
606 | - /** |
|
607 | - * Deletes ALL EE tables, Records, and Options from the database. |
|
608 | - */ |
|
609 | - public function _delete_db() |
|
610 | - { |
|
611 | - EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_0_not_in_maintenance); |
|
612 | - EEH_Activation::delete_all_espresso_cpt_data(); |
|
613 | - EEH_Activation::delete_all_espresso_tables_and_data(); |
|
614 | - EEH_Activation::remove_cron_tasks(); |
|
615 | - EEH_Activation::deactivate_event_espresso(); |
|
616 | - wp_safe_redirect(admin_url('plugins.php')); |
|
617 | - exit; |
|
618 | - } |
|
619 | - |
|
620 | - |
|
621 | - /** |
|
622 | - * sets up EE4 to rerun the migrations from ee3 to ee4 |
|
623 | - */ |
|
624 | - public function _rerun_migration_from_ee3() |
|
625 | - { |
|
626 | - EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_0_not_in_maintenance); |
|
627 | - EEH_Activation::delete_all_espresso_cpt_data(); |
|
628 | - EEH_Activation::delete_all_espresso_tables_and_data(false); |
|
629 | - // set the db state to something that will require migrations |
|
630 | - update_option(EE_Data_Migration_Manager::current_database_state, '3.1.36.0'); |
|
631 | - EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_2_complete_maintenance); |
|
632 | - $this->_redirect_after_action( |
|
633 | - true, |
|
634 | - esc_html__("Database", 'event_espresso'), |
|
635 | - esc_html__("reset", 'event_espresso') |
|
636 | - ); |
|
637 | - } |
|
638 | - |
|
639 | - |
|
640 | - // none of the below group are currently used for Gateway Settings |
|
641 | - protected function _add_screen_options() |
|
642 | - { |
|
643 | - } |
|
644 | - |
|
645 | - |
|
646 | - protected function _add_feature_pointers() |
|
647 | - { |
|
648 | - } |
|
649 | - |
|
650 | - |
|
651 | - public function admin_init() |
|
652 | - { |
|
653 | - } |
|
654 | - |
|
655 | - |
|
656 | - public function admin_notices() |
|
657 | - { |
|
658 | - } |
|
659 | - |
|
660 | - |
|
661 | - public function admin_footer_scripts() |
|
662 | - { |
|
663 | - } |
|
664 | - |
|
665 | - |
|
666 | - public function load_scripts_styles() |
|
667 | - { |
|
668 | - wp_enqueue_script('ee_admin_js'); |
|
669 | - wp_enqueue_script( |
|
670 | - 'ee-maintenance', |
|
671 | - EE_MAINTENANCE_ASSETS_URL . 'ee-maintenance.js', |
|
672 | - array('jquery'), |
|
673 | - EVENT_ESPRESSO_VERSION, |
|
674 | - true |
|
675 | - ); |
|
676 | - wp_register_style( |
|
677 | - 'espresso_maintenance', |
|
678 | - EE_MAINTENANCE_ASSETS_URL . 'ee-maintenance.css', |
|
679 | - array(), |
|
680 | - EVENT_ESPRESSO_VERSION |
|
681 | - ); |
|
682 | - wp_enqueue_style('espresso_maintenance'); |
|
683 | - // localize script stuff |
|
684 | - wp_localize_script( |
|
685 | - 'ee-maintenance', |
|
686 | - 'ee_maintenance', |
|
687 | - array( |
|
688 | - 'migrating' => esc_html__("Updating Database...", "event_espresso"), |
|
689 | - 'next' => esc_html__("Next", "event_espresso"), |
|
690 | - 'fatal_error' => esc_html__("A Fatal Error Has Occurred", "event_espresso"), |
|
691 | - 'click_next_when_ready' => esc_html__( |
|
692 | - "The current Database Update has ended. Click 'next' when ready to proceed", |
|
693 | - "event_espresso" |
|
694 | - ), |
|
695 | - 'status_no_more_migration_scripts' => EE_Data_Migration_Manager::status_no_more_migration_scripts, |
|
696 | - 'status_fatal_error' => EE_Data_Migration_Manager::status_fatal_error, |
|
697 | - 'status_completed' => EE_Data_Migration_Manager::status_completed, |
|
698 | - 'confirm' => esc_html__( |
|
699 | - 'Are you sure you want to do this? It CANNOT be undone!', |
|
700 | - 'event_espresso' |
|
701 | - ), |
|
702 | - 'confirm_skip_migration' => esc_html__( |
|
703 | - 'You have chosen to NOT migrate your existing data. Are you sure you want to continue?', |
|
704 | - 'event_espresso' |
|
705 | - ), |
|
706 | - ) |
|
707 | - ); |
|
708 | - } |
|
709 | - |
|
710 | - |
|
711 | - public function load_scripts_styles_default() |
|
712 | - { |
|
713 | - } |
|
714 | - |
|
715 | - |
|
716 | - /** |
|
717 | - * Enqueue scripts and styles for the datetime tools page. |
|
718 | - */ |
|
719 | - public function load_scripts_styles_datetime_tools() |
|
720 | - { |
|
721 | - EE_Datepicker_Input::enqueue_styles_and_scripts(); |
|
722 | - } |
|
723 | - |
|
724 | - |
|
725 | - protected function _datetime_tools() |
|
726 | - { |
|
727 | - $form_action = EE_Admin_Page::add_query_args_and_nonce( |
|
728 | - array( |
|
729 | - 'action' => 'run_datetime_offset_fix', |
|
730 | - 'return_action' => $this->_req_action, |
|
731 | - ), |
|
732 | - EE_MAINTENANCE_ADMIN_URL |
|
733 | - ); |
|
734 | - $form = $this->_get_datetime_offset_fix_form(); |
|
735 | - $this->_admin_page_title = esc_html__('Datetime Utilities', 'event_espresso'); |
|
736 | - $this->_template_args['admin_page_content'] = $form->form_open($form_action, 'post') |
|
737 | - . $form->get_html_and_js() |
|
738 | - . $form->form_close(); |
|
739 | - $this->display_admin_page_with_no_sidebar(); |
|
740 | - } |
|
741 | - |
|
742 | - |
|
743 | - protected function _get_datetime_offset_fix_form() |
|
744 | - { |
|
745 | - if (! $this->datetime_fix_offset_form instanceof EE_Form_Section_Proper) { |
|
746 | - $this->datetime_fix_offset_form = new EE_Form_Section_Proper( |
|
747 | - array( |
|
748 | - 'name' => 'datetime_offset_fix_option', |
|
749 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
750 | - 'subsections' => array( |
|
751 | - 'title' => new EE_Form_Section_HTML( |
|
752 | - EEH_HTML::h2( |
|
753 | - esc_html__('Datetime Offset Tool', 'event_espresso') |
|
754 | - ) |
|
755 | - ), |
|
756 | - 'explanation' => new EE_Form_Section_HTML( |
|
757 | - EEH_HTML::p( |
|
758 | - esc_html__( |
|
759 | - 'Use this tool to automatically apply the provided offset to all Event Espresso records in your database that involve dates and times.', |
|
760 | - 'event_espresso' |
|
761 | - ) |
|
762 | - ) |
|
763 | - . EEH_HTML::p( |
|
764 | - esc_html__( |
|
765 | - 'Note: If you enter 1.25, that will result in the offset of 1 hour 15 minutes being applied. Decimals represent the fraction of hours, not minutes.', |
|
766 | - 'event_espresso' |
|
767 | - ) |
|
768 | - ) |
|
769 | - ), |
|
770 | - 'offset_input' => new EE_Float_Input( |
|
771 | - array( |
|
772 | - 'html_name' => 'offset_for_datetimes', |
|
773 | - 'html_label_text' => esc_html__( |
|
774 | - 'Offset to apply (in hours):', |
|
775 | - 'event_espresso' |
|
776 | - ), |
|
777 | - 'min_value' => '-12', |
|
778 | - 'max_value' => '14', |
|
779 | - 'step_value' => '.25', |
|
780 | - 'default' => DatetimeOffsetFix::getOffset(), |
|
781 | - ) |
|
782 | - ), |
|
783 | - 'date_range_explanation' => new EE_Form_Section_HTML( |
|
784 | - EEH_HTML::p( |
|
785 | - esc_html__( |
|
786 | - 'Leave the following fields blank if you want the offset to be applied to all dates. If however, you want to just apply the offset to a specific range of dates you can restrict the offset application using these fields.', |
|
787 | - 'event_espresso' |
|
788 | - ) |
|
789 | - ) |
|
790 | - . EEH_HTML::p( |
|
791 | - EEH_HTML::strong( |
|
792 | - sprintf( |
|
793 | - esc_html__( |
|
794 | - 'Note: please enter the dates in UTC (You can use %1$sthis online tool%2$s to assist with conversions).', |
|
795 | - 'event_espresso' |
|
796 | - ), |
|
797 | - '<a href="https://www.timeanddate.com/worldclock/converter.html">', |
|
798 | - '</a>' |
|
799 | - ) |
|
800 | - ) |
|
801 | - ) |
|
802 | - ), |
|
803 | - 'date_range_start_date' => new EE_Datepicker_Input( |
|
804 | - array( |
|
805 | - 'html_name' => 'offset_date_start_range', |
|
806 | - 'html_label_text' => esc_html__( |
|
807 | - 'Start Date for dates the offset applied to:', |
|
808 | - 'event_espresso' |
|
809 | - ), |
|
810 | - ) |
|
811 | - ), |
|
812 | - 'date_range_end_date' => new EE_Datepicker_Input( |
|
813 | - array( |
|
814 | - 'html_name' => 'offset_date_end_range', |
|
815 | - 'html_label_text' => esc_html__( |
|
816 | - 'End Date for dates the offset is applied to:', |
|
817 | - 'event_espresso' |
|
818 | - ), |
|
819 | - ) |
|
820 | - ), |
|
821 | - 'submit' => new EE_Submit_Input( |
|
822 | - array( |
|
823 | - 'html_label_text' => '', |
|
824 | - 'default' => esc_html__('Apply Offset', 'event_espresso'), |
|
825 | - ) |
|
826 | - ), |
|
827 | - ), |
|
828 | - ) |
|
829 | - ); |
|
830 | - } |
|
831 | - return $this->datetime_fix_offset_form; |
|
832 | - } |
|
833 | - |
|
834 | - |
|
835 | - /** |
|
836 | - * Callback for the run_datetime_offset_fix route. |
|
837 | - * |
|
838 | - * @throws EE_Error |
|
839 | - */ |
|
840 | - protected function _apply_datetime_offset() |
|
841 | - { |
|
842 | - if ($_SERVER['REQUEST_METHOD'] === 'POST') { |
|
843 | - $form = $this->_get_datetime_offset_fix_form(); |
|
844 | - $form->receive_form_submission($this->_req_data); |
|
845 | - if ($form->is_valid()) { |
|
846 | - // save offset data so batch processor can get it. |
|
847 | - DatetimeOffsetFix::updateOffset($form->get_input_value('offset_input')); |
|
848 | - $utc_timezone = new DateTimeZone('UTC'); |
|
849 | - $date_range_start_date = DateTime::createFromFormat( |
|
850 | - 'm/d/Y H:i:s', |
|
851 | - $form->get_input_value('date_range_start_date') . ' 00:00:00', |
|
852 | - $utc_timezone |
|
853 | - ); |
|
854 | - $date_range_end_date = DateTime::createFromFormat( |
|
855 | - 'm/d/Y H:i:s', |
|
856 | - $form->get_input_value('date_range_end_date') . ' 23:59:59', |
|
857 | - $utc_timezone |
|
858 | - ); |
|
859 | - if ($date_range_start_date instanceof DateTime) { |
|
860 | - DatetimeOffsetFix::updateStartDateRange(DbSafeDateTime::createFromDateTime($date_range_start_date)); |
|
861 | - } |
|
862 | - if ($date_range_end_date instanceof DateTime) { |
|
863 | - DatetimeOffsetFix::updateEndDateRange(DbSafeDateTime::createFromDateTime($date_range_end_date)); |
|
864 | - } |
|
865 | - // redirect to batch tool |
|
866 | - wp_redirect( |
|
867 | - EE_Admin_Page::add_query_args_and_nonce( |
|
868 | - array( |
|
869 | - 'page' => 'espresso_batch', |
|
870 | - 'batch' => 'job', |
|
871 | - 'label' => esc_html__('Applying Offset', 'event_espresso'), |
|
872 | - 'job_handler' => urlencode('EventEspressoBatchRequest\JobHandlers\DatetimeOffsetFix'), |
|
873 | - 'return_url' => urlencode( |
|
874 | - add_query_arg( |
|
875 | - array( |
|
876 | - 'action' => 'datetime_tools', |
|
877 | - ), |
|
878 | - EEH_URL::current_url_without_query_paramaters( |
|
879 | - array( |
|
880 | - 'return_action', |
|
881 | - 'run_datetime_offset_fix_nonce', |
|
882 | - 'return', |
|
883 | - 'datetime_tools_nonce', |
|
884 | - ) |
|
885 | - ) |
|
886 | - ) |
|
887 | - ), |
|
888 | - ), |
|
889 | - admin_url() |
|
890 | - ) |
|
891 | - ); |
|
892 | - exit; |
|
893 | - } |
|
894 | - } |
|
895 | - } |
|
20 | + /** |
|
21 | + * @var EE_Form_Section_Proper |
|
22 | + */ |
|
23 | + protected $datetime_fix_offset_form; |
|
24 | + |
|
25 | + |
|
26 | + protected function _init_page_props() |
|
27 | + { |
|
28 | + $this->page_slug = EE_MAINTENANCE_PG_SLUG; |
|
29 | + $this->page_label = EE_MAINTENANCE_LABEL; |
|
30 | + $this->_admin_base_url = EE_MAINTENANCE_ADMIN_URL; |
|
31 | + $this->_admin_base_path = EE_MAINTENANCE_ADMIN; |
|
32 | + } |
|
33 | + |
|
34 | + |
|
35 | + protected function _ajax_hooks() |
|
36 | + { |
|
37 | + add_action('wp_ajax_migration_step', array($this, 'migration_step')); |
|
38 | + add_action('wp_ajax_add_error_to_migrations_ran', array($this, 'add_error_to_migrations_ran')); |
|
39 | + } |
|
40 | + |
|
41 | + |
|
42 | + protected function _define_page_props() |
|
43 | + { |
|
44 | + $this->_admin_page_title = EE_MAINTENANCE_LABEL; |
|
45 | + $this->_labels = array( |
|
46 | + 'buttons' => array( |
|
47 | + 'reset_reservations' => esc_html__('Reset Ticket and Datetime Reserved Counts', 'event_espresso'), |
|
48 | + 'reset_capabilities' => esc_html__('Reset Event Espresso Capabilities', 'event_espresso'), |
|
49 | + ), |
|
50 | + ); |
|
51 | + } |
|
52 | + |
|
53 | + |
|
54 | + protected function _set_page_routes() |
|
55 | + { |
|
56 | + $this->_page_routes = array( |
|
57 | + 'default' => array( |
|
58 | + 'func' => '_maintenance', |
|
59 | + 'capability' => 'manage_options', |
|
60 | + ), |
|
61 | + 'change_maintenance_level' => array( |
|
62 | + 'func' => '_change_maintenance_level', |
|
63 | + 'capability' => 'manage_options', |
|
64 | + 'noheader' => true, |
|
65 | + ), |
|
66 | + 'system_status' => array( |
|
67 | + 'func' => '_system_status', |
|
68 | + 'capability' => 'manage_options', |
|
69 | + ), |
|
70 | + 'download_system_status' => array( |
|
71 | + 'func' => '_download_system_status', |
|
72 | + 'capability' => 'manage_options', |
|
73 | + 'noheader' => true, |
|
74 | + ), |
|
75 | + 'send_migration_crash_report' => array( |
|
76 | + 'func' => '_send_migration_crash_report', |
|
77 | + 'capability' => 'manage_options', |
|
78 | + 'noheader' => true, |
|
79 | + ), |
|
80 | + 'confirm_migration_crash_report_sent' => array( |
|
81 | + 'func' => '_confirm_migration_crash_report_sent', |
|
82 | + 'capability' => 'manage_options', |
|
83 | + ), |
|
84 | + 'data_reset' => array( |
|
85 | + 'func' => '_data_reset_and_delete', |
|
86 | + 'capability' => 'manage_options', |
|
87 | + ), |
|
88 | + 'reset_db' => array( |
|
89 | + 'func' => '_reset_db', |
|
90 | + 'capability' => 'manage_options', |
|
91 | + 'noheader' => true, |
|
92 | + 'args' => array('nuke_old_ee4_data' => true), |
|
93 | + ), |
|
94 | + 'start_with_fresh_ee4_db' => array( |
|
95 | + 'func' => '_reset_db', |
|
96 | + 'capability' => 'manage_options', |
|
97 | + 'noheader' => true, |
|
98 | + 'args' => array('nuke_old_ee4_data' => false), |
|
99 | + ), |
|
100 | + 'delete_db' => array( |
|
101 | + 'func' => '_delete_db', |
|
102 | + 'capability' => 'manage_options', |
|
103 | + 'noheader' => true, |
|
104 | + ), |
|
105 | + 'rerun_migration_from_ee3' => array( |
|
106 | + 'func' => '_rerun_migration_from_ee3', |
|
107 | + 'capability' => 'manage_options', |
|
108 | + 'noheader' => true, |
|
109 | + ), |
|
110 | + 'reset_reservations' => array( |
|
111 | + 'func' => '_reset_reservations', |
|
112 | + 'capability' => 'manage_options', |
|
113 | + 'noheader' => true, |
|
114 | + ), |
|
115 | + 'reset_capabilities' => array( |
|
116 | + 'func' => '_reset_capabilities', |
|
117 | + 'capability' => 'manage_options', |
|
118 | + 'noheader' => true, |
|
119 | + ), |
|
120 | + 'reattempt_migration' => array( |
|
121 | + 'func' => '_reattempt_migration', |
|
122 | + 'capability' => 'manage_options', |
|
123 | + 'noheader' => true, |
|
124 | + ), |
|
125 | + 'datetime_tools' => array( |
|
126 | + 'func' => '_datetime_tools', |
|
127 | + 'capability' => 'manage_options', |
|
128 | + ), |
|
129 | + 'run_datetime_offset_fix' => array( |
|
130 | + 'func' => '_apply_datetime_offset', |
|
131 | + 'noheader' => true, |
|
132 | + 'headers_sent_route' => 'datetime_tools', |
|
133 | + 'capability' => 'manage_options', |
|
134 | + ), |
|
135 | + ); |
|
136 | + } |
|
137 | + |
|
138 | + |
|
139 | + protected function _set_page_config() |
|
140 | + { |
|
141 | + $this->_page_config = array( |
|
142 | + 'default' => array( |
|
143 | + 'nav' => array( |
|
144 | + 'label' => esc_html__('Maintenance', 'event_espresso'), |
|
145 | + 'order' => 10, |
|
146 | + ), |
|
147 | + 'require_nonce' => false, |
|
148 | + ), |
|
149 | + 'data_reset' => array( |
|
150 | + 'nav' => array( |
|
151 | + 'label' => esc_html__('Reset/Delete Data', 'event_espresso'), |
|
152 | + 'order' => 20, |
|
153 | + ), |
|
154 | + 'require_nonce' => false, |
|
155 | + ), |
|
156 | + 'datetime_tools' => array( |
|
157 | + 'nav' => array( |
|
158 | + 'label' => esc_html__('Datetime Utilities', 'event_espresso'), |
|
159 | + 'order' => 25, |
|
160 | + ), |
|
161 | + 'require_nonce' => false, |
|
162 | + ), |
|
163 | + 'system_status' => array( |
|
164 | + 'nav' => array( |
|
165 | + 'label' => esc_html__("System Information", "event_espresso"), |
|
166 | + 'order' => 30, |
|
167 | + ), |
|
168 | + 'require_nonce' => false, |
|
169 | + ), |
|
170 | + ); |
|
171 | + } |
|
172 | + |
|
173 | + |
|
174 | + /** |
|
175 | + * default maintenance page. If we're in maintenance mode level 2, then we need to show |
|
176 | + * the migration scripts and all that UI. |
|
177 | + */ |
|
178 | + public function _maintenance() |
|
179 | + { |
|
180 | + // it all depends if we're in maintenance model level 1 (frontend-only) or |
|
181 | + // level 2 (everything except maintenance page) |
|
182 | + try { |
|
183 | + // get the current maintenance level and check if |
|
184 | + // we are removed |
|
185 | + $mm = EE_Maintenance_Mode::instance()->level(); |
|
186 | + $placed_in_mm = EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old(); |
|
187 | + if ($mm == EE_Maintenance_Mode::level_2_complete_maintenance && ! $placed_in_mm) { |
|
188 | + // we just took the site out of maintenance mode, so notify the user. |
|
189 | + // unfortunately this message appears to be echoed on the NEXT page load... |
|
190 | + // oh well, we should really be checking for this on addon deactivation anyways |
|
191 | + EE_Error::add_attention( |
|
192 | + __( |
|
193 | + 'Site taken out of maintenance mode because no data migration scripts are required', |
|
194 | + 'event_espresso' |
|
195 | + ) |
|
196 | + ); |
|
197 | + $this->_process_notices(array('page' => 'espresso_maintenance_settings'), false); |
|
198 | + } |
|
199 | + // in case an exception is thrown while trying to handle migrations |
|
200 | + switch (EE_Maintenance_Mode::instance()->level()) { |
|
201 | + case EE_Maintenance_Mode::level_0_not_in_maintenance: |
|
202 | + case EE_Maintenance_Mode::level_1_frontend_only_maintenance: |
|
203 | + $show_maintenance_switch = true; |
|
204 | + $show_backup_db_text = false; |
|
205 | + $show_migration_progress = false; |
|
206 | + $script_names = array(); |
|
207 | + $addons_should_be_upgraded_first = false; |
|
208 | + break; |
|
209 | + case EE_Maintenance_Mode::level_2_complete_maintenance: |
|
210 | + $show_maintenance_switch = false; |
|
211 | + $show_migration_progress = true; |
|
212 | + if (isset($this->_req_data['continue_migration'])) { |
|
213 | + $show_backup_db_text = false; |
|
214 | + } else { |
|
215 | + $show_backup_db_text = true; |
|
216 | + } |
|
217 | + $scripts_needing_to_run = EE_Data_Migration_Manager::instance() |
|
218 | + ->check_for_applicable_data_migration_scripts(); |
|
219 | + $addons_should_be_upgraded_first = EE_Data_Migration_Manager::instance()->addons_need_updating(); |
|
220 | + $script_names = array(); |
|
221 | + $current_script = null; |
|
222 | + foreach ($scripts_needing_to_run as $script) { |
|
223 | + if ($script instanceof EE_Data_Migration_Script_Base) { |
|
224 | + if (! $current_script) { |
|
225 | + $current_script = $script; |
|
226 | + $current_script->migration_page_hooks(); |
|
227 | + } |
|
228 | + $script_names[] = $script->pretty_name(); |
|
229 | + } |
|
230 | + } |
|
231 | + break; |
|
232 | + } |
|
233 | + $most_recent_migration = EE_Data_Migration_Manager::instance()->get_last_ran_script(true); |
|
234 | + $exception_thrown = false; |
|
235 | + } catch (EE_Error $e) { |
|
236 | + EE_Data_Migration_Manager::instance()->add_error_to_migrations_ran($e->getMessage()); |
|
237 | + // now, just so we can display the page correctly, make a error migration script stage object |
|
238 | + // and also put the error on it. It only persists for the duration of this request |
|
239 | + $most_recent_migration = new EE_DMS_Unknown_1_0_0(); |
|
240 | + $most_recent_migration->add_error($e->getMessage()); |
|
241 | + $exception_thrown = true; |
|
242 | + } |
|
243 | + $current_db_state = EE_Data_Migration_Manager::instance()->ensure_current_database_state_is_set(); |
|
244 | + $current_db_state = str_replace('.decaf', '', $current_db_state); |
|
245 | + if ($exception_thrown |
|
246 | + || ($most_recent_migration |
|
247 | + && $most_recent_migration instanceof EE_Data_Migration_Script_Base |
|
248 | + && $most_recent_migration->is_broken() |
|
249 | + ) |
|
250 | + ) { |
|
251 | + $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_migration_was_borked_page.template.php'; |
|
252 | + $this->_template_args['support_url'] = 'http://eventespresso.com/support/forums/'; |
|
253 | + $this->_template_args['next_url'] = EEH_URL::add_query_args_and_nonce( |
|
254 | + array( |
|
255 | + 'action' => 'confirm_migration_crash_report_sent', |
|
256 | + 'success' => '0', |
|
257 | + ), |
|
258 | + EE_MAINTENANCE_ADMIN_URL |
|
259 | + ); |
|
260 | + } elseif ($addons_should_be_upgraded_first) { |
|
261 | + $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_upgrade_addons_before_migrating.template.php'; |
|
262 | + } else { |
|
263 | + if ($most_recent_migration |
|
264 | + && $most_recent_migration instanceof EE_Data_Migration_Script_Base |
|
265 | + && $most_recent_migration->can_continue() |
|
266 | + ) { |
|
267 | + $show_backup_db_text = false; |
|
268 | + $show_continue_current_migration_script = true; |
|
269 | + $show_most_recent_migration = true; |
|
270 | + } elseif (isset($this->_req_data['continue_migration'])) { |
|
271 | + $show_most_recent_migration = true; |
|
272 | + $show_continue_current_migration_script = false; |
|
273 | + } else { |
|
274 | + $show_most_recent_migration = false; |
|
275 | + $show_continue_current_migration_script = false; |
|
276 | + } |
|
277 | + if (isset($current_script)) { |
|
278 | + $migrates_to = $current_script->migrates_to_version(); |
|
279 | + $plugin_slug = $migrates_to['slug']; |
|
280 | + $new_version = $migrates_to['version']; |
|
281 | + $this->_template_args = array_merge( |
|
282 | + $this->_template_args, |
|
283 | + array( |
|
284 | + 'current_db_state' => sprintf( |
|
285 | + __("EE%s (%s)", "event_espresso"), |
|
286 | + isset($current_db_state[ $plugin_slug ]) ? $current_db_state[ $plugin_slug ] : 3, |
|
287 | + $plugin_slug |
|
288 | + ), |
|
289 | + 'next_db_state' => isset($current_script) ? sprintf( |
|
290 | + __("EE%s (%s)", 'event_espresso'), |
|
291 | + $new_version, |
|
292 | + $plugin_slug |
|
293 | + ) : null, |
|
294 | + ) |
|
295 | + ); |
|
296 | + } else { |
|
297 | + $this->_template_args['current_db_state'] = null; |
|
298 | + $this->_template_args['next_db_state'] = null; |
|
299 | + } |
|
300 | + $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_migration_page.template.php'; |
|
301 | + $this->_template_args = array_merge( |
|
302 | + $this->_template_args, |
|
303 | + array( |
|
304 | + 'show_most_recent_migration' => $show_most_recent_migration, |
|
305 | + // flag for showing the most recent migration's status and/or errors |
|
306 | + 'show_migration_progress' => $show_migration_progress, |
|
307 | + // flag for showing the option to run migrations and see their progress |
|
308 | + 'show_backup_db_text' => $show_backup_db_text, |
|
309 | + // flag for showing text telling the user to backup their DB |
|
310 | + 'show_maintenance_switch' => $show_maintenance_switch, |
|
311 | + // flag for showing the option to change maintenance mode between levels 0 and 1 |
|
312 | + 'script_names' => $script_names, |
|
313 | + // array of names of scripts that have run |
|
314 | + 'show_continue_current_migration_script' => $show_continue_current_migration_script, |
|
315 | + // flag to change wording to indicating that we're only CONTINUING a migration script (somehow it got interrupted0 |
|
316 | + 'reset_db_page_link' => EE_Admin_Page::add_query_args_and_nonce( |
|
317 | + array('action' => 'reset_db'), |
|
318 | + EE_MAINTENANCE_ADMIN_URL |
|
319 | + ), |
|
320 | + 'data_reset_page' => EE_Admin_Page::add_query_args_and_nonce( |
|
321 | + array('action' => 'data_reset'), |
|
322 | + EE_MAINTENANCE_ADMIN_URL |
|
323 | + ), |
|
324 | + 'update_migration_script_page_link' => EE_Admin_Page::add_query_args_and_nonce( |
|
325 | + array('action' => 'change_maintenance_level'), |
|
326 | + EE_MAINTENANCE_ADMIN_URL |
|
327 | + ), |
|
328 | + 'ultimate_db_state' => sprintf( |
|
329 | + __("EE%s", 'event_espresso'), |
|
330 | + espresso_version() |
|
331 | + ), |
|
332 | + ) |
|
333 | + ); |
|
334 | + // make sure we have the form fields helper available. It usually is, but sometimes it isn't |
|
335 | + } |
|
336 | + $this->_template_args['most_recent_migration'] = $most_recent_migration;// the actual most recently ran migration |
|
337 | + // now render the migration options part, and put it in a variable |
|
338 | + $migration_options_template_file = apply_filters( |
|
339 | + 'FHEE__ee_migration_page__migration_options_template', |
|
340 | + EE_MAINTENANCE_TEMPLATE_PATH . 'migration_options_from_ee4.template.php' |
|
341 | + ); |
|
342 | + $migration_options_html = EEH_Template::display_template( |
|
343 | + $migration_options_template_file, |
|
344 | + $this->_template_args, |
|
345 | + true |
|
346 | + ); |
|
347 | + $this->_template_args['migration_options_html'] = $migration_options_html; |
|
348 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
349 | + $this->_template_path, |
|
350 | + $this->_template_args, |
|
351 | + true |
|
352 | + ); |
|
353 | + $this->display_admin_page_with_sidebar(); |
|
354 | + } |
|
355 | + |
|
356 | + |
|
357 | + /** |
|
358 | + * returns JSON and executes another step of the currently-executing data migration (called via ajax) |
|
359 | + */ |
|
360 | + public function migration_step() |
|
361 | + { |
|
362 | + $this->_template_args['data'] = EE_Data_Migration_Manager::instance()->response_to_migration_ajax_request(); |
|
363 | + $this->_return_json(); |
|
364 | + } |
|
365 | + |
|
366 | + |
|
367 | + /** |
|
368 | + * Can be used by js when it notices a response with HTML in it in order |
|
369 | + * to log the malformed response |
|
370 | + */ |
|
371 | + public function add_error_to_migrations_ran() |
|
372 | + { |
|
373 | + EE_Data_Migration_Manager::instance()->add_error_to_migrations_ran($this->_req_data['message']); |
|
374 | + $this->_template_args['data'] = array('ok' => true); |
|
375 | + $this->_return_json(); |
|
376 | + } |
|
377 | + |
|
378 | + |
|
379 | + /** |
|
380 | + * changes the maintenance level, provided there are still no migration scripts that should run |
|
381 | + */ |
|
382 | + public function _change_maintenance_level() |
|
383 | + { |
|
384 | + $new_level = absint($this->_req_data['maintenance_mode_level']); |
|
385 | + if (! EE_Data_Migration_Manager::instance()->check_for_applicable_data_migration_scripts()) { |
|
386 | + EE_Maintenance_Mode::instance()->set_maintenance_level($new_level); |
|
387 | + $success = true; |
|
388 | + } else { |
|
389 | + EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old(); |
|
390 | + $success = false; |
|
391 | + } |
|
392 | + $this->_redirect_after_action($success, 'Maintenance Mode', esc_html__("Updated", "event_espresso")); |
|
393 | + } |
|
394 | + |
|
395 | + |
|
396 | + /** |
|
397 | + * a tab with options for resetting and/or deleting EE data |
|
398 | + * |
|
399 | + * @throws \EE_Error |
|
400 | + * @throws \DomainException |
|
401 | + */ |
|
402 | + public function _data_reset_and_delete() |
|
403 | + { |
|
404 | + $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_data_reset_and_delete.template.php'; |
|
405 | + $this->_template_args['reset_reservations_button'] = $this->get_action_link_or_button( |
|
406 | + 'reset_reservations', |
|
407 | + 'reset_reservations', |
|
408 | + array(), |
|
409 | + 'button button-primary ee-confirm', |
|
410 | + '', |
|
411 | + false |
|
412 | + ); |
|
413 | + $this->_template_args['reset_capabilities_button'] = $this->get_action_link_or_button( |
|
414 | + 'reset_capabilities', |
|
415 | + 'reset_capabilities', |
|
416 | + array(), |
|
417 | + 'button button-primary ee-confirm', |
|
418 | + '', |
|
419 | + false |
|
420 | + ); |
|
421 | + $this->_template_args['delete_db_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
422 | + array('action' => 'delete_db'), |
|
423 | + EE_MAINTENANCE_ADMIN_URL |
|
424 | + ); |
|
425 | + $this->_template_args['reset_db_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
426 | + array('action' => 'reset_db'), |
|
427 | + EE_MAINTENANCE_ADMIN_URL |
|
428 | + ); |
|
429 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
430 | + $this->_template_path, |
|
431 | + $this->_template_args, |
|
432 | + true |
|
433 | + ); |
|
434 | + $this->display_admin_page_with_sidebar(); |
|
435 | + } |
|
436 | + |
|
437 | + |
|
438 | + protected function _reset_reservations() |
|
439 | + { |
|
440 | + if (\EED_Ticket_Sales_Monitor::reset_reservation_counts()) { |
|
441 | + EE_Error::add_success( |
|
442 | + __( |
|
443 | + 'Ticket and datetime reserved counts have been successfully reset.', |
|
444 | + 'event_espresso' |
|
445 | + ) |
|
446 | + ); |
|
447 | + } else { |
|
448 | + EE_Error::add_success( |
|
449 | + __( |
|
450 | + 'Ticket and datetime reserved counts were correct and did not need resetting.', |
|
451 | + 'event_espresso' |
|
452 | + ) |
|
453 | + ); |
|
454 | + } |
|
455 | + $this->_redirect_after_action(true, '', '', array('action' => 'data_reset'), true); |
|
456 | + } |
|
457 | + |
|
458 | + |
|
459 | + protected function _reset_capabilities() |
|
460 | + { |
|
461 | + EE_Registry::instance()->CAP->init_caps(true); |
|
462 | + EE_Error::add_success( |
|
463 | + __( |
|
464 | + 'Default Event Espresso capabilities have been restored for all current roles.', |
|
465 | + 'event_espresso' |
|
466 | + ) |
|
467 | + ); |
|
468 | + $this->_redirect_after_action(false, '', '', array('action' => 'data_reset'), true); |
|
469 | + } |
|
470 | + |
|
471 | + |
|
472 | + /** |
|
473 | + * resets the DMSs so we can attempt to continue migrating after a fatal error |
|
474 | + * (only a good idea when someone has somehow tried ot fix whatever caused |
|
475 | + * the fatal error in teh first place) |
|
476 | + */ |
|
477 | + protected function _reattempt_migration() |
|
478 | + { |
|
479 | + EE_Data_Migration_Manager::instance()->reattempt(); |
|
480 | + $this->_redirect_after_action(false, '', '', array('action' => 'default'), true); |
|
481 | + } |
|
482 | + |
|
483 | + |
|
484 | + /** |
|
485 | + * shows the big ol' System Information page |
|
486 | + */ |
|
487 | + public function _system_status() |
|
488 | + { |
|
489 | + $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_system_stati_page.template.php'; |
|
490 | + $this->_template_args['system_stati'] = EEM_System_Status::instance()->get_system_stati(); |
|
491 | + $this->_template_args['download_system_status_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
492 | + array( |
|
493 | + 'action' => 'download_system_status', |
|
494 | + ), |
|
495 | + EE_MAINTENANCE_ADMIN_URL |
|
496 | + ); |
|
497 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
498 | + $this->_template_path, |
|
499 | + $this->_template_args, |
|
500 | + true |
|
501 | + ); |
|
502 | + $this->display_admin_page_with_sidebar(); |
|
503 | + } |
|
504 | + |
|
505 | + /** |
|
506 | + * Downloads an HTML file of the system status that can be easily stored or emailed |
|
507 | + */ |
|
508 | + public function _download_system_status() |
|
509 | + { |
|
510 | + $status_info = EEM_System_Status::instance()->get_system_stati(); |
|
511 | + header('Content-Disposition: attachment'); |
|
512 | + header("Content-Disposition: attachment; filename=system_status_" . sanitize_key(site_url()) . ".html"); |
|
513 | + echo "<style>table{border:1px solid darkgrey;}td{vertical-align:top}</style>"; |
|
514 | + echo "<h1>System Information for " . site_url() . "</h1>"; |
|
515 | + echo EEH_Template::layout_array_as_table($status_info); |
|
516 | + die; |
|
517 | + } |
|
518 | + |
|
519 | + |
|
520 | + public function _send_migration_crash_report() |
|
521 | + { |
|
522 | + $from = $this->_req_data['from']; |
|
523 | + $from_name = $this->_req_data['from_name']; |
|
524 | + $body = $this->_req_data['body']; |
|
525 | + try { |
|
526 | + $success = wp_mail( |
|
527 | + EE_SUPPORT_EMAIL, |
|
528 | + 'Migration Crash Report', |
|
529 | + $body . "/r/n<br>" . print_r(EEM_System_Status::instance()->get_system_stati(), true), |
|
530 | + array( |
|
531 | + "from:$from_name<$from>", |
|
532 | + ) |
|
533 | + ); |
|
534 | + } catch (Exception $e) { |
|
535 | + $success = false; |
|
536 | + } |
|
537 | + $this->_redirect_after_action( |
|
538 | + $success, |
|
539 | + esc_html__("Migration Crash Report", "event_espresso"), |
|
540 | + esc_html__("sent", "event_espresso"), |
|
541 | + array('success' => $success, 'action' => 'confirm_migration_crash_report_sent') |
|
542 | + ); |
|
543 | + } |
|
544 | + |
|
545 | + |
|
546 | + public function _confirm_migration_crash_report_sent() |
|
547 | + { |
|
548 | + try { |
|
549 | + $most_recent_migration = EE_Data_Migration_Manager::instance()->get_last_ran_script(true); |
|
550 | + } catch (EE_Error $e) { |
|
551 | + EE_Data_Migration_Manager::instance()->add_error_to_migrations_ran($e->getMessage()); |
|
552 | + // now, just so we can display the page correctly, make a error migration script stage object |
|
553 | + // and also put the error on it. It only persists for the duration of this request |
|
554 | + $most_recent_migration = new EE_DMS_Unknown_1_0_0(); |
|
555 | + $most_recent_migration->add_error($e->getMessage()); |
|
556 | + } |
|
557 | + $success = $this->_req_data['success'] == '1' ? true : false; |
|
558 | + $this->_template_args['success'] = $success; |
|
559 | + $this->_template_args['most_recent_migration'] = $most_recent_migration; |
|
560 | + $this->_template_args['reset_db_action_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
561 | + array('action' => 'reset_db'), |
|
562 | + EE_MAINTENANCE_ADMIN_URL |
|
563 | + ); |
|
564 | + $this->_template_args['reset_db_page_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
565 | + array('action' => 'data_reset'), |
|
566 | + EE_MAINTENANCE_ADMIN_URL |
|
567 | + ); |
|
568 | + $this->_template_args['reattempt_action_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
569 | + array('action' => 'reattempt_migration'), |
|
570 | + EE_MAINTENANCE_ADMIN_URL |
|
571 | + ); |
|
572 | + $this->_template_path = EE_MAINTENANCE_TEMPLATE_PATH . 'ee_confirm_migration_crash_report_sent.template.php'; |
|
573 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
574 | + $this->_template_path, |
|
575 | + $this->_template_args, |
|
576 | + true |
|
577 | + ); |
|
578 | + $this->display_admin_page_with_sidebar(); |
|
579 | + } |
|
580 | + |
|
581 | + |
|
582 | + /** |
|
583 | + * Resets the entire EE4 database. |
|
584 | + * Currently basically only sets up ee4 database for a fresh install- doesn't |
|
585 | + * actually clean out the old wp options, or cpts (although does erase old ee table data) |
|
586 | + * |
|
587 | + * @param boolean $nuke_old_ee4_data controls whether or not we |
|
588 | + * destroy the old ee4 data, or just try initializing ee4 default data |
|
589 | + */ |
|
590 | + public function _reset_db($nuke_old_ee4_data = true) |
|
591 | + { |
|
592 | + EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_0_not_in_maintenance); |
|
593 | + if ($nuke_old_ee4_data) { |
|
594 | + EEH_Activation::delete_all_espresso_cpt_data(); |
|
595 | + EEH_Activation::delete_all_espresso_tables_and_data(false); |
|
596 | + EEH_Activation::remove_cron_tasks(); |
|
597 | + } |
|
598 | + // make sure when we reset the registry's config that it |
|
599 | + // switches to using the new singleton |
|
600 | + EE_Registry::instance()->CFG = EE_Registry::instance()->CFG->reset(true); |
|
601 | + EE_System::instance()->initialize_db_if_no_migrations_required(true); |
|
602 | + EE_System::instance()->redirect_to_about_ee(); |
|
603 | + } |
|
604 | + |
|
605 | + |
|
606 | + /** |
|
607 | + * Deletes ALL EE tables, Records, and Options from the database. |
|
608 | + */ |
|
609 | + public function _delete_db() |
|
610 | + { |
|
611 | + EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_0_not_in_maintenance); |
|
612 | + EEH_Activation::delete_all_espresso_cpt_data(); |
|
613 | + EEH_Activation::delete_all_espresso_tables_and_data(); |
|
614 | + EEH_Activation::remove_cron_tasks(); |
|
615 | + EEH_Activation::deactivate_event_espresso(); |
|
616 | + wp_safe_redirect(admin_url('plugins.php')); |
|
617 | + exit; |
|
618 | + } |
|
619 | + |
|
620 | + |
|
621 | + /** |
|
622 | + * sets up EE4 to rerun the migrations from ee3 to ee4 |
|
623 | + */ |
|
624 | + public function _rerun_migration_from_ee3() |
|
625 | + { |
|
626 | + EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_0_not_in_maintenance); |
|
627 | + EEH_Activation::delete_all_espresso_cpt_data(); |
|
628 | + EEH_Activation::delete_all_espresso_tables_and_data(false); |
|
629 | + // set the db state to something that will require migrations |
|
630 | + update_option(EE_Data_Migration_Manager::current_database_state, '3.1.36.0'); |
|
631 | + EE_Maintenance_Mode::instance()->set_maintenance_level(EE_Maintenance_Mode::level_2_complete_maintenance); |
|
632 | + $this->_redirect_after_action( |
|
633 | + true, |
|
634 | + esc_html__("Database", 'event_espresso'), |
|
635 | + esc_html__("reset", 'event_espresso') |
|
636 | + ); |
|
637 | + } |
|
638 | + |
|
639 | + |
|
640 | + // none of the below group are currently used for Gateway Settings |
|
641 | + protected function _add_screen_options() |
|
642 | + { |
|
643 | + } |
|
644 | + |
|
645 | + |
|
646 | + protected function _add_feature_pointers() |
|
647 | + { |
|
648 | + } |
|
649 | + |
|
650 | + |
|
651 | + public function admin_init() |
|
652 | + { |
|
653 | + } |
|
654 | + |
|
655 | + |
|
656 | + public function admin_notices() |
|
657 | + { |
|
658 | + } |
|
659 | + |
|
660 | + |
|
661 | + public function admin_footer_scripts() |
|
662 | + { |
|
663 | + } |
|
664 | + |
|
665 | + |
|
666 | + public function load_scripts_styles() |
|
667 | + { |
|
668 | + wp_enqueue_script('ee_admin_js'); |
|
669 | + wp_enqueue_script( |
|
670 | + 'ee-maintenance', |
|
671 | + EE_MAINTENANCE_ASSETS_URL . 'ee-maintenance.js', |
|
672 | + array('jquery'), |
|
673 | + EVENT_ESPRESSO_VERSION, |
|
674 | + true |
|
675 | + ); |
|
676 | + wp_register_style( |
|
677 | + 'espresso_maintenance', |
|
678 | + EE_MAINTENANCE_ASSETS_URL . 'ee-maintenance.css', |
|
679 | + array(), |
|
680 | + EVENT_ESPRESSO_VERSION |
|
681 | + ); |
|
682 | + wp_enqueue_style('espresso_maintenance'); |
|
683 | + // localize script stuff |
|
684 | + wp_localize_script( |
|
685 | + 'ee-maintenance', |
|
686 | + 'ee_maintenance', |
|
687 | + array( |
|
688 | + 'migrating' => esc_html__("Updating Database...", "event_espresso"), |
|
689 | + 'next' => esc_html__("Next", "event_espresso"), |
|
690 | + 'fatal_error' => esc_html__("A Fatal Error Has Occurred", "event_espresso"), |
|
691 | + 'click_next_when_ready' => esc_html__( |
|
692 | + "The current Database Update has ended. Click 'next' when ready to proceed", |
|
693 | + "event_espresso" |
|
694 | + ), |
|
695 | + 'status_no_more_migration_scripts' => EE_Data_Migration_Manager::status_no_more_migration_scripts, |
|
696 | + 'status_fatal_error' => EE_Data_Migration_Manager::status_fatal_error, |
|
697 | + 'status_completed' => EE_Data_Migration_Manager::status_completed, |
|
698 | + 'confirm' => esc_html__( |
|
699 | + 'Are you sure you want to do this? It CANNOT be undone!', |
|
700 | + 'event_espresso' |
|
701 | + ), |
|
702 | + 'confirm_skip_migration' => esc_html__( |
|
703 | + 'You have chosen to NOT migrate your existing data. Are you sure you want to continue?', |
|
704 | + 'event_espresso' |
|
705 | + ), |
|
706 | + ) |
|
707 | + ); |
|
708 | + } |
|
709 | + |
|
710 | + |
|
711 | + public function load_scripts_styles_default() |
|
712 | + { |
|
713 | + } |
|
714 | + |
|
715 | + |
|
716 | + /** |
|
717 | + * Enqueue scripts and styles for the datetime tools page. |
|
718 | + */ |
|
719 | + public function load_scripts_styles_datetime_tools() |
|
720 | + { |
|
721 | + EE_Datepicker_Input::enqueue_styles_and_scripts(); |
|
722 | + } |
|
723 | + |
|
724 | + |
|
725 | + protected function _datetime_tools() |
|
726 | + { |
|
727 | + $form_action = EE_Admin_Page::add_query_args_and_nonce( |
|
728 | + array( |
|
729 | + 'action' => 'run_datetime_offset_fix', |
|
730 | + 'return_action' => $this->_req_action, |
|
731 | + ), |
|
732 | + EE_MAINTENANCE_ADMIN_URL |
|
733 | + ); |
|
734 | + $form = $this->_get_datetime_offset_fix_form(); |
|
735 | + $this->_admin_page_title = esc_html__('Datetime Utilities', 'event_espresso'); |
|
736 | + $this->_template_args['admin_page_content'] = $form->form_open($form_action, 'post') |
|
737 | + . $form->get_html_and_js() |
|
738 | + . $form->form_close(); |
|
739 | + $this->display_admin_page_with_no_sidebar(); |
|
740 | + } |
|
741 | + |
|
742 | + |
|
743 | + protected function _get_datetime_offset_fix_form() |
|
744 | + { |
|
745 | + if (! $this->datetime_fix_offset_form instanceof EE_Form_Section_Proper) { |
|
746 | + $this->datetime_fix_offset_form = new EE_Form_Section_Proper( |
|
747 | + array( |
|
748 | + 'name' => 'datetime_offset_fix_option', |
|
749 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
750 | + 'subsections' => array( |
|
751 | + 'title' => new EE_Form_Section_HTML( |
|
752 | + EEH_HTML::h2( |
|
753 | + esc_html__('Datetime Offset Tool', 'event_espresso') |
|
754 | + ) |
|
755 | + ), |
|
756 | + 'explanation' => new EE_Form_Section_HTML( |
|
757 | + EEH_HTML::p( |
|
758 | + esc_html__( |
|
759 | + 'Use this tool to automatically apply the provided offset to all Event Espresso records in your database that involve dates and times.', |
|
760 | + 'event_espresso' |
|
761 | + ) |
|
762 | + ) |
|
763 | + . EEH_HTML::p( |
|
764 | + esc_html__( |
|
765 | + 'Note: If you enter 1.25, that will result in the offset of 1 hour 15 minutes being applied. Decimals represent the fraction of hours, not minutes.', |
|
766 | + 'event_espresso' |
|
767 | + ) |
|
768 | + ) |
|
769 | + ), |
|
770 | + 'offset_input' => new EE_Float_Input( |
|
771 | + array( |
|
772 | + 'html_name' => 'offset_for_datetimes', |
|
773 | + 'html_label_text' => esc_html__( |
|
774 | + 'Offset to apply (in hours):', |
|
775 | + 'event_espresso' |
|
776 | + ), |
|
777 | + 'min_value' => '-12', |
|
778 | + 'max_value' => '14', |
|
779 | + 'step_value' => '.25', |
|
780 | + 'default' => DatetimeOffsetFix::getOffset(), |
|
781 | + ) |
|
782 | + ), |
|
783 | + 'date_range_explanation' => new EE_Form_Section_HTML( |
|
784 | + EEH_HTML::p( |
|
785 | + esc_html__( |
|
786 | + 'Leave the following fields blank if you want the offset to be applied to all dates. If however, you want to just apply the offset to a specific range of dates you can restrict the offset application using these fields.', |
|
787 | + 'event_espresso' |
|
788 | + ) |
|
789 | + ) |
|
790 | + . EEH_HTML::p( |
|
791 | + EEH_HTML::strong( |
|
792 | + sprintf( |
|
793 | + esc_html__( |
|
794 | + 'Note: please enter the dates in UTC (You can use %1$sthis online tool%2$s to assist with conversions).', |
|
795 | + 'event_espresso' |
|
796 | + ), |
|
797 | + '<a href="https://www.timeanddate.com/worldclock/converter.html">', |
|
798 | + '</a>' |
|
799 | + ) |
|
800 | + ) |
|
801 | + ) |
|
802 | + ), |
|
803 | + 'date_range_start_date' => new EE_Datepicker_Input( |
|
804 | + array( |
|
805 | + 'html_name' => 'offset_date_start_range', |
|
806 | + 'html_label_text' => esc_html__( |
|
807 | + 'Start Date for dates the offset applied to:', |
|
808 | + 'event_espresso' |
|
809 | + ), |
|
810 | + ) |
|
811 | + ), |
|
812 | + 'date_range_end_date' => new EE_Datepicker_Input( |
|
813 | + array( |
|
814 | + 'html_name' => 'offset_date_end_range', |
|
815 | + 'html_label_text' => esc_html__( |
|
816 | + 'End Date for dates the offset is applied to:', |
|
817 | + 'event_espresso' |
|
818 | + ), |
|
819 | + ) |
|
820 | + ), |
|
821 | + 'submit' => new EE_Submit_Input( |
|
822 | + array( |
|
823 | + 'html_label_text' => '', |
|
824 | + 'default' => esc_html__('Apply Offset', 'event_espresso'), |
|
825 | + ) |
|
826 | + ), |
|
827 | + ), |
|
828 | + ) |
|
829 | + ); |
|
830 | + } |
|
831 | + return $this->datetime_fix_offset_form; |
|
832 | + } |
|
833 | + |
|
834 | + |
|
835 | + /** |
|
836 | + * Callback for the run_datetime_offset_fix route. |
|
837 | + * |
|
838 | + * @throws EE_Error |
|
839 | + */ |
|
840 | + protected function _apply_datetime_offset() |
|
841 | + { |
|
842 | + if ($_SERVER['REQUEST_METHOD'] === 'POST') { |
|
843 | + $form = $this->_get_datetime_offset_fix_form(); |
|
844 | + $form->receive_form_submission($this->_req_data); |
|
845 | + if ($form->is_valid()) { |
|
846 | + // save offset data so batch processor can get it. |
|
847 | + DatetimeOffsetFix::updateOffset($form->get_input_value('offset_input')); |
|
848 | + $utc_timezone = new DateTimeZone('UTC'); |
|
849 | + $date_range_start_date = DateTime::createFromFormat( |
|
850 | + 'm/d/Y H:i:s', |
|
851 | + $form->get_input_value('date_range_start_date') . ' 00:00:00', |
|
852 | + $utc_timezone |
|
853 | + ); |
|
854 | + $date_range_end_date = DateTime::createFromFormat( |
|
855 | + 'm/d/Y H:i:s', |
|
856 | + $form->get_input_value('date_range_end_date') . ' 23:59:59', |
|
857 | + $utc_timezone |
|
858 | + ); |
|
859 | + if ($date_range_start_date instanceof DateTime) { |
|
860 | + DatetimeOffsetFix::updateStartDateRange(DbSafeDateTime::createFromDateTime($date_range_start_date)); |
|
861 | + } |
|
862 | + if ($date_range_end_date instanceof DateTime) { |
|
863 | + DatetimeOffsetFix::updateEndDateRange(DbSafeDateTime::createFromDateTime($date_range_end_date)); |
|
864 | + } |
|
865 | + // redirect to batch tool |
|
866 | + wp_redirect( |
|
867 | + EE_Admin_Page::add_query_args_and_nonce( |
|
868 | + array( |
|
869 | + 'page' => 'espresso_batch', |
|
870 | + 'batch' => 'job', |
|
871 | + 'label' => esc_html__('Applying Offset', 'event_espresso'), |
|
872 | + 'job_handler' => urlencode('EventEspressoBatchRequest\JobHandlers\DatetimeOffsetFix'), |
|
873 | + 'return_url' => urlencode( |
|
874 | + add_query_arg( |
|
875 | + array( |
|
876 | + 'action' => 'datetime_tools', |
|
877 | + ), |
|
878 | + EEH_URL::current_url_without_query_paramaters( |
|
879 | + array( |
|
880 | + 'return_action', |
|
881 | + 'run_datetime_offset_fix_nonce', |
|
882 | + 'return', |
|
883 | + 'datetime_tools_nonce', |
|
884 | + ) |
|
885 | + ) |
|
886 | + ) |
|
887 | + ), |
|
888 | + ), |
|
889 | + admin_url() |
|
890 | + ) |
|
891 | + ); |
|
892 | + exit; |
|
893 | + } |
|
894 | + } |
|
895 | + } |
|
896 | 896 | } |
@@ -24,108 +24,108 @@ |
||
24 | 24 | */ |
25 | 25 | class Registration extends RegistrationCalculationBase |
26 | 26 | { |
27 | - /** |
|
28 | - * @var EEM_Registration |
|
29 | - */ |
|
30 | - protected $registration_model; |
|
27 | + /** |
|
28 | + * @var EEM_Registration |
|
29 | + */ |
|
30 | + protected $registration_model; |
|
31 | 31 | |
32 | - /** |
|
33 | - * Registration constructor. |
|
34 | - * @param EEM_Registration $registration_model |
|
35 | - */ |
|
36 | - public function __construct(EEM_Registration $registration_model) |
|
37 | - { |
|
38 | - $this->registration_model = $registration_model; |
|
39 | - } |
|
32 | + /** |
|
33 | + * Registration constructor. |
|
34 | + * @param EEM_Registration $registration_model |
|
35 | + */ |
|
36 | + public function __construct(EEM_Registration $registration_model) |
|
37 | + { |
|
38 | + $this->registration_model = $registration_model; |
|
39 | + } |
|
40 | 40 | |
41 | - /** |
|
42 | - * Calculates the checkin status for each datetime this registration has access to |
|
43 | - * |
|
44 | - * @param array $wpdb_row |
|
45 | - * @param WP_REST_Request $request |
|
46 | - * @param RegistrationControllerBase $controller |
|
47 | - * @return array |
|
48 | - * @throws EE_Error |
|
49 | - * @throws InvalidDataTypeException |
|
50 | - * @throws InvalidInterfaceException |
|
51 | - * @throws InvalidArgumentException |
|
52 | - */ |
|
53 | - public function datetimeCheckinStati($wpdb_row, $request, $controller) |
|
54 | - { |
|
55 | - if (is_array($wpdb_row) && isset($wpdb_row['Registration.REG_ID'])) { |
|
56 | - $reg = $this->registration_model->get_one_by_ID($wpdb_row['Registration.REG_ID']); |
|
57 | - } else { |
|
58 | - $reg = null; |
|
59 | - } |
|
60 | - if (! $reg instanceof EE_Registration |
|
61 | - ) { |
|
62 | - throw new EE_Error( |
|
63 | - sprintf( |
|
64 | - __( |
|
65 | - // @codingStandardsIgnoreStart |
|
66 | - 'Cannot calculate datetime_checkin_stati because the registration with ID %1$s (from database row %2$s) was not found', |
|
67 | - // @codingStandardsIgnoreEnd |
|
68 | - 'event_espresso' |
|
69 | - ), |
|
70 | - $wpdb_row['Registration.REG_ID'], |
|
71 | - print_r($wpdb_row, true) |
|
72 | - ) |
|
73 | - ); |
|
74 | - } |
|
75 | - $datetime_ids = EEM_Datetime::instance()->get_col( |
|
76 | - [ |
|
77 | - [ |
|
78 | - 'Ticket.TKT_ID' => $reg->ticket_ID(), |
|
79 | - ], |
|
80 | - 'default_where_conditions' => EEM_Base::default_where_conditions_minimum_all, |
|
81 | - ] |
|
82 | - ); |
|
83 | - $checkin_stati = array(); |
|
84 | - foreach ($datetime_ids as $datetime_id) { |
|
85 | - $status = $reg->check_in_status_for_datetime($datetime_id); |
|
86 | - switch ($status) { |
|
87 | - case EE_Checkin::status_checked_out: |
|
88 | - $status_pretty = 'OUT'; |
|
89 | - break; |
|
90 | - case EE_Checkin::status_checked_in: |
|
91 | - $status_pretty = 'IN'; |
|
92 | - break; |
|
93 | - case EE_Checkin::status_checked_never: |
|
94 | - default: |
|
95 | - $status_pretty = 'NEVER'; |
|
96 | - break; |
|
97 | - } |
|
98 | - $checkin_stati[ $datetime_id ] = $status_pretty; |
|
99 | - } |
|
100 | - return $checkin_stati; |
|
101 | - } |
|
41 | + /** |
|
42 | + * Calculates the checkin status for each datetime this registration has access to |
|
43 | + * |
|
44 | + * @param array $wpdb_row |
|
45 | + * @param WP_REST_Request $request |
|
46 | + * @param RegistrationControllerBase $controller |
|
47 | + * @return array |
|
48 | + * @throws EE_Error |
|
49 | + * @throws InvalidDataTypeException |
|
50 | + * @throws InvalidInterfaceException |
|
51 | + * @throws InvalidArgumentException |
|
52 | + */ |
|
53 | + public function datetimeCheckinStati($wpdb_row, $request, $controller) |
|
54 | + { |
|
55 | + if (is_array($wpdb_row) && isset($wpdb_row['Registration.REG_ID'])) { |
|
56 | + $reg = $this->registration_model->get_one_by_ID($wpdb_row['Registration.REG_ID']); |
|
57 | + } else { |
|
58 | + $reg = null; |
|
59 | + } |
|
60 | + if (! $reg instanceof EE_Registration |
|
61 | + ) { |
|
62 | + throw new EE_Error( |
|
63 | + sprintf( |
|
64 | + __( |
|
65 | + // @codingStandardsIgnoreStart |
|
66 | + 'Cannot calculate datetime_checkin_stati because the registration with ID %1$s (from database row %2$s) was not found', |
|
67 | + // @codingStandardsIgnoreEnd |
|
68 | + 'event_espresso' |
|
69 | + ), |
|
70 | + $wpdb_row['Registration.REG_ID'], |
|
71 | + print_r($wpdb_row, true) |
|
72 | + ) |
|
73 | + ); |
|
74 | + } |
|
75 | + $datetime_ids = EEM_Datetime::instance()->get_col( |
|
76 | + [ |
|
77 | + [ |
|
78 | + 'Ticket.TKT_ID' => $reg->ticket_ID(), |
|
79 | + ], |
|
80 | + 'default_where_conditions' => EEM_Base::default_where_conditions_minimum_all, |
|
81 | + ] |
|
82 | + ); |
|
83 | + $checkin_stati = array(); |
|
84 | + foreach ($datetime_ids as $datetime_id) { |
|
85 | + $status = $reg->check_in_status_for_datetime($datetime_id); |
|
86 | + switch ($status) { |
|
87 | + case EE_Checkin::status_checked_out: |
|
88 | + $status_pretty = 'OUT'; |
|
89 | + break; |
|
90 | + case EE_Checkin::status_checked_in: |
|
91 | + $status_pretty = 'IN'; |
|
92 | + break; |
|
93 | + case EE_Checkin::status_checked_never: |
|
94 | + default: |
|
95 | + $status_pretty = 'NEVER'; |
|
96 | + break; |
|
97 | + } |
|
98 | + $checkin_stati[ $datetime_id ] = $status_pretty; |
|
99 | + } |
|
100 | + return $checkin_stati; |
|
101 | + } |
|
102 | 102 | |
103 | 103 | |
104 | - /** |
|
105 | - * Provides an array for all the calculations possible that outlines a json schema for those calculations. |
|
106 | - * Array is indexed by calculation (snake case) and value is the schema for that calculation. |
|
107 | - * |
|
108 | - * @since 4.9.68.p |
|
109 | - * @return array |
|
110 | - */ |
|
111 | - public function schemaForCalculations() |
|
112 | - { |
|
113 | - return array( |
|
114 | - 'datetime_checkin_stati' => array( |
|
115 | - 'description' => esc_html__( |
|
116 | - 'Returns the checkin status for each datetime this registration has access to.', |
|
117 | - 'event_espresso' |
|
118 | - ), |
|
119 | - 'type' => 'object', |
|
120 | - 'properties' => array(), |
|
121 | - 'additionalProperties' => array( |
|
122 | - 'description' => esc_html__( |
|
123 | - 'Keys are date-time ids and values are the check-in status', |
|
124 | - 'event_espresso' |
|
125 | - ), |
|
126 | - 'type' => 'string' |
|
127 | - ), |
|
128 | - ), |
|
129 | - ); |
|
130 | - } |
|
104 | + /** |
|
105 | + * Provides an array for all the calculations possible that outlines a json schema for those calculations. |
|
106 | + * Array is indexed by calculation (snake case) and value is the schema for that calculation. |
|
107 | + * |
|
108 | + * @since 4.9.68.p |
|
109 | + * @return array |
|
110 | + */ |
|
111 | + public function schemaForCalculations() |
|
112 | + { |
|
113 | + return array( |
|
114 | + 'datetime_checkin_stati' => array( |
|
115 | + 'description' => esc_html__( |
|
116 | + 'Returns the checkin status for each datetime this registration has access to.', |
|
117 | + 'event_espresso' |
|
118 | + ), |
|
119 | + 'type' => 'object', |
|
120 | + 'properties' => array(), |
|
121 | + 'additionalProperties' => array( |
|
122 | + 'description' => esc_html__( |
|
123 | + 'Keys are date-time ids and values are the check-in status', |
|
124 | + 'event_espresso' |
|
125 | + ), |
|
126 | + 'type' => 'string' |
|
127 | + ), |
|
128 | + ), |
|
129 | + ); |
|
130 | + } |
|
131 | 131 | } |
@@ -44,531 +44,531 @@ |
||
44 | 44 | class OrganizationSettings extends FormHandler |
45 | 45 | { |
46 | 46 | |
47 | - /** |
|
48 | - * @var EE_Organization_Config |
|
49 | - */ |
|
50 | - protected $organization_config; |
|
47 | + /** |
|
48 | + * @var EE_Organization_Config |
|
49 | + */ |
|
50 | + protected $organization_config; |
|
51 | 51 | |
52 | - /** |
|
53 | - * @var EE_Core_Config |
|
54 | - */ |
|
55 | - protected $core_config; |
|
52 | + /** |
|
53 | + * @var EE_Core_Config |
|
54 | + */ |
|
55 | + protected $core_config; |
|
56 | 56 | |
57 | 57 | |
58 | - /** |
|
59 | - * @var EE_Network_Core_Config |
|
60 | - */ |
|
61 | - protected $network_core_config; |
|
58 | + /** |
|
59 | + * @var EE_Network_Core_Config |
|
60 | + */ |
|
61 | + protected $network_core_config; |
|
62 | 62 | |
63 | - /** |
|
64 | - * @var CountrySubRegionDao $countrySubRegionDao |
|
65 | - */ |
|
66 | - protected $countrySubRegionDao; |
|
63 | + /** |
|
64 | + * @var CountrySubRegionDao $countrySubRegionDao |
|
65 | + */ |
|
66 | + protected $countrySubRegionDao; |
|
67 | 67 | |
68 | - /** |
|
69 | - * Form constructor. |
|
70 | - * |
|
71 | - * @param EE_Registry $registry |
|
72 | - * @param EE_Organization_Config $organization_config |
|
73 | - * @param EE_Core_Config $core_config |
|
74 | - * @param EE_Network_Core_Config $network_core_config |
|
75 | - * @param CountrySubRegionDao $countrySubRegionDao |
|
76 | - * @throws InvalidArgumentException |
|
77 | - * @throws InvalidDataTypeException |
|
78 | - * @throws DomainException |
|
79 | - */ |
|
80 | - public function __construct( |
|
81 | - EE_Registry $registry, |
|
82 | - EE_Organization_Config $organization_config, |
|
83 | - EE_Core_Config $core_config, |
|
84 | - EE_Network_Core_Config $network_core_config, |
|
85 | - CountrySubRegionDao $countrySubRegionDao |
|
86 | - ) { |
|
87 | - $this->organization_config = $organization_config; |
|
88 | - $this->core_config = $core_config; |
|
89 | - $this->network_core_config = $network_core_config; |
|
90 | - $this->countrySubRegionDao = $countrySubRegionDao; |
|
91 | - parent::__construct( |
|
92 | - esc_html__('Your Organization Settings', 'event_espresso'), |
|
93 | - esc_html__('Your Organization Settings', 'event_espresso'), |
|
94 | - 'organization_settings', |
|
95 | - '', |
|
96 | - FormHandler::DO_NOT_SETUP_FORM, |
|
97 | - $registry |
|
98 | - ); |
|
99 | - } |
|
68 | + /** |
|
69 | + * Form constructor. |
|
70 | + * |
|
71 | + * @param EE_Registry $registry |
|
72 | + * @param EE_Organization_Config $organization_config |
|
73 | + * @param EE_Core_Config $core_config |
|
74 | + * @param EE_Network_Core_Config $network_core_config |
|
75 | + * @param CountrySubRegionDao $countrySubRegionDao |
|
76 | + * @throws InvalidArgumentException |
|
77 | + * @throws InvalidDataTypeException |
|
78 | + * @throws DomainException |
|
79 | + */ |
|
80 | + public function __construct( |
|
81 | + EE_Registry $registry, |
|
82 | + EE_Organization_Config $organization_config, |
|
83 | + EE_Core_Config $core_config, |
|
84 | + EE_Network_Core_Config $network_core_config, |
|
85 | + CountrySubRegionDao $countrySubRegionDao |
|
86 | + ) { |
|
87 | + $this->organization_config = $organization_config; |
|
88 | + $this->core_config = $core_config; |
|
89 | + $this->network_core_config = $network_core_config; |
|
90 | + $this->countrySubRegionDao = $countrySubRegionDao; |
|
91 | + parent::__construct( |
|
92 | + esc_html__('Your Organization Settings', 'event_espresso'), |
|
93 | + esc_html__('Your Organization Settings', 'event_espresso'), |
|
94 | + 'organization_settings', |
|
95 | + '', |
|
96 | + FormHandler::DO_NOT_SETUP_FORM, |
|
97 | + $registry |
|
98 | + ); |
|
99 | + } |
|
100 | 100 | |
101 | 101 | |
102 | - /** |
|
103 | - * creates and returns the actual form |
|
104 | - * |
|
105 | - * @return EE_Form_Section_Proper |
|
106 | - * @throws EE_Error |
|
107 | - * @throws InvalidArgumentException |
|
108 | - * @throws InvalidDataTypeException |
|
109 | - * @throws InvalidInterfaceException |
|
110 | - * @throws ReflectionException |
|
111 | - */ |
|
112 | - public function generate() |
|
113 | - { |
|
114 | - $has_sub_regions = EEM_State::instance()->count( |
|
115 | - array(array('Country.CNT_ISO' => $this->organization_config->CNT_ISO)) |
|
116 | - ); |
|
117 | - $form = new EE_Form_Section_Proper( |
|
118 | - array( |
|
119 | - 'name' => 'organization_settings', |
|
120 | - 'html_id' => 'organization_settings', |
|
121 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
122 | - 'subsections' => array( |
|
123 | - 'contact_information_hdr' => new EE_Form_Section_HTML( |
|
124 | - EEH_HTML::h2( |
|
125 | - esc_html__('Contact Information', 'event_espresso') |
|
126 | - . ' ' |
|
127 | - . EEH_HTML::span(EEH_Template::get_help_tab_link('contact_info_info')), |
|
128 | - '', |
|
129 | - 'contact-information-hdr' |
|
130 | - ) |
|
131 | - ), |
|
132 | - 'organization_name' => new EE_Text_Input( |
|
133 | - array( |
|
134 | - 'html_name' => 'organization_name', |
|
135 | - 'html_label_text' => esc_html__('Organization Name', 'event_espresso'), |
|
136 | - 'html_help_text' => esc_html__( |
|
137 | - 'Displayed on all emails and invoices.', |
|
138 | - 'event_espresso' |
|
139 | - ), |
|
140 | - 'default' => $this->organization_config->get_pretty('name'), |
|
141 | - 'required' => false, |
|
142 | - ) |
|
143 | - ), |
|
144 | - 'organization_address_1' => new EE_Text_Input( |
|
145 | - array( |
|
146 | - 'html_name' => 'organization_address_1', |
|
147 | - 'html_label_text' => esc_html__('Street Address', 'event_espresso'), |
|
148 | - 'default' => $this->organization_config->get_pretty('address_1'), |
|
149 | - 'required' => false, |
|
150 | - ) |
|
151 | - ), |
|
152 | - 'organization_address_2' => new EE_Text_Input( |
|
153 | - array( |
|
154 | - 'html_name' => 'organization_address_2', |
|
155 | - 'html_label_text' => esc_html__('Street Address 2', 'event_espresso'), |
|
156 | - 'default' => $this->organization_config->get_pretty('address_2'), |
|
157 | - 'required' => false, |
|
158 | - ) |
|
159 | - ), |
|
160 | - 'organization_city' => new EE_Text_Input( |
|
161 | - array( |
|
162 | - 'html_name' => 'organization_city', |
|
163 | - 'html_label_text' => esc_html__('City', 'event_espresso'), |
|
164 | - 'default' => $this->organization_config->get_pretty('city'), |
|
165 | - 'required' => false, |
|
166 | - ) |
|
167 | - ), |
|
168 | - 'organization_country' => new EE_Country_Select_Input( |
|
169 | - null, |
|
170 | - array( |
|
171 | - EE_Country_Select_Input::OPTION_GET_KEY => EE_Country_Select_Input::OPTION_GET_ALL, |
|
172 | - 'html_name' => 'organization_country', |
|
173 | - 'html_label_text' => esc_html__('Country', 'event_espresso'), |
|
174 | - 'default' => $this->organization_config->CNT_ISO, |
|
175 | - 'required' => false, |
|
176 | - 'html_help_text' => sprintf( |
|
177 | - esc_html__( |
|
178 | - '%1$sThe Country set here will have the effect of setting the currency used for all ticket prices.%2$s', |
|
179 | - 'event_espresso' |
|
180 | - ), |
|
181 | - '<span class="reminder-spn">', |
|
182 | - '</span>' |
|
183 | - ), |
|
184 | - ) |
|
185 | - ), |
|
186 | - 'organization_state' => new EE_State_Select_Input( |
|
187 | - null, |
|
188 | - array( |
|
189 | - 'html_name' => 'organization_state', |
|
190 | - 'html_label_text' => esc_html__('State/Province', 'event_espresso'), |
|
191 | - 'default' => $this->organization_config->STA_ID, |
|
192 | - 'required' => false, |
|
193 | - 'html_help_text' => empty($this->organization_config->STA_ID) || ! $has_sub_regions |
|
194 | - ? sprintf( |
|
195 | - esc_html__( |
|
196 | - 'If the States/Provinces for the selected Country do not appear in this list, then click "Save".%3$sIf data exists, then the list will be populated when the page reloads and you will be able to make a selection at that time.%3$s%1$sMake sure you click "Save" again after selecting a State/Province that has just been loaded in order to keep that selection.%2$s', |
|
197 | - 'event_espresso' |
|
198 | - ), |
|
199 | - '<span class="reminder-spn">', |
|
200 | - '</span>', |
|
201 | - '<br />' |
|
202 | - ) |
|
203 | - : '', |
|
204 | - ) |
|
205 | - ), |
|
206 | - 'organization_zip' => new EE_Text_Input( |
|
207 | - array( |
|
208 | - 'html_name' => 'organization_zip', |
|
209 | - 'html_label_text' => esc_html__('Zip/Postal Code', 'event_espresso'), |
|
210 | - 'default' => $this->organization_config->get_pretty('zip'), |
|
211 | - 'required' => false, |
|
212 | - ) |
|
213 | - ), |
|
214 | - 'organization_email' => new EE_Text_Input( |
|
215 | - array( |
|
216 | - 'html_name' => 'organization_email', |
|
217 | - 'html_label_text' => esc_html__('Primary Contact Email', 'event_espresso'), |
|
218 | - 'html_help_text' => sprintf( |
|
219 | - esc_html__( |
|
220 | - 'This is where notifications go to when you use the %1$s and %2$s shortcodes in the message templates.', |
|
221 | - 'event_espresso' |
|
222 | - ), |
|
223 | - '<code>[CO_FORMATTED_EMAIL]</code>', |
|
224 | - '<code>[CO_EMAIL]</code>' |
|
225 | - ), |
|
226 | - 'default' => $this->organization_config->get_pretty('email'), |
|
227 | - 'required' => false, |
|
228 | - ) |
|
229 | - ), |
|
230 | - 'organization_phone' => new EE_Text_Input( |
|
231 | - array( |
|
232 | - 'html_name' => 'organization_phone', |
|
233 | - 'html_label_text' => esc_html__('Phone Number', 'event_espresso'), |
|
234 | - 'html_help_text' => esc_html__( |
|
235 | - 'The phone number for your organization.', |
|
236 | - 'event_espresso' |
|
237 | - ), |
|
238 | - 'default' => $this->organization_config->get_pretty('phone'), |
|
239 | - 'required' => false, |
|
240 | - ) |
|
241 | - ), |
|
242 | - 'organization_vat' => new EE_Text_Input( |
|
243 | - array( |
|
244 | - 'html_name' => 'organization_vat', |
|
245 | - 'html_label_text' => esc_html__('VAT/Tax Number', 'event_espresso'), |
|
246 | - 'html_help_text' => esc_html__( |
|
247 | - 'The VAT/Tax Number may be displayed on invoices and receipts.', |
|
248 | - 'event_espresso' |
|
249 | - ), |
|
250 | - 'default' => $this->organization_config->get_pretty('vat'), |
|
251 | - 'required' => false, |
|
252 | - ) |
|
253 | - ), |
|
254 | - 'company_logo_hdr' => new EE_Form_Section_HTML( |
|
255 | - EEH_HTML::h2( |
|
256 | - esc_html__('Company Logo', 'event_espresso') |
|
257 | - . ' ' |
|
258 | - . EEH_HTML::span(EEH_Template::get_help_tab_link('organization_logo_info')), |
|
259 | - '', |
|
260 | - 'company-logo-hdr' |
|
261 | - ) |
|
262 | - ), |
|
263 | - 'organization_logo_url' => new EE_Admin_File_Uploader_Input( |
|
264 | - array( |
|
265 | - 'html_name' => 'organization_logo_url', |
|
266 | - 'html_label_text' => esc_html__('Upload New Logo', 'event_espresso'), |
|
267 | - 'html_help_text' => esc_html__( |
|
268 | - 'Your logo will be used on custom invoices, tickets, certificates, and payment templates.', |
|
269 | - 'event_espresso' |
|
270 | - ), |
|
271 | - 'default' => $this->organization_config->get_pretty('logo_url'), |
|
272 | - 'required' => false, |
|
273 | - ) |
|
274 | - ), |
|
275 | - 'social_links_hdr' => new EE_Form_Section_HTML( |
|
276 | - EEH_HTML::h2( |
|
277 | - esc_html__('Social Links', 'event_espresso') |
|
278 | - . ' ' |
|
279 | - . EEH_HTML::span(EEH_Template::get_help_tab_link('social_links_info')) |
|
280 | - . EEH_HTML::br() |
|
281 | - . EEH_HTML::p( |
|
282 | - esc_html__( |
|
283 | - 'Enter any links to social accounts for your organization here', |
|
284 | - 'event_espresso' |
|
285 | - ), |
|
286 | - '', |
|
287 | - 'description' |
|
288 | - ), |
|
289 | - '', |
|
290 | - 'social-links-hdr' |
|
291 | - ) |
|
292 | - ), |
|
293 | - 'organization_facebook' => new EE_Text_Input( |
|
294 | - array( |
|
295 | - 'html_name' => 'organization_facebook', |
|
296 | - 'html_label_text' => esc_html__('Facebook', 'event_espresso'), |
|
297 | - 'other_html_attributes' => ' placeholder="facebook.com/profile.name"', |
|
298 | - 'default' => $this->organization_config->get_pretty('facebook'), |
|
299 | - 'required' => false, |
|
300 | - ) |
|
301 | - ), |
|
302 | - 'organization_twitter' => new EE_Text_Input( |
|
303 | - array( |
|
304 | - 'html_name' => 'organization_twitter', |
|
305 | - 'html_label_text' => esc_html__('Twitter', 'event_espresso'), |
|
306 | - 'other_html_attributes' => ' placeholder="twitter.com/twitterhandle"', |
|
307 | - 'default' => $this->organization_config->get_pretty('twitter'), |
|
308 | - 'required' => false, |
|
309 | - ) |
|
310 | - ), |
|
311 | - 'organization_linkedin' => new EE_Text_Input( |
|
312 | - array( |
|
313 | - 'html_name' => 'organization_linkedin', |
|
314 | - 'html_label_text' => esc_html__('LinkedIn', 'event_espresso'), |
|
315 | - 'other_html_attributes' => ' placeholder="linkedin.com/in/profilename"', |
|
316 | - 'default' => $this->organization_config->get_pretty('linkedin'), |
|
317 | - 'required' => false, |
|
318 | - ) |
|
319 | - ), |
|
320 | - 'organization_pinterest' => new EE_Text_Input( |
|
321 | - array( |
|
322 | - 'html_name' => 'organization_pinterest', |
|
323 | - 'html_label_text' => esc_html__('Pinterest', 'event_espresso'), |
|
324 | - 'other_html_attributes' => ' placeholder="pinterest.com/profilename"', |
|
325 | - 'default' => $this->organization_config->get_pretty('pinterest'), |
|
326 | - 'required' => false, |
|
327 | - ) |
|
328 | - ), |
|
329 | - 'organization_instagram' => new EE_Text_Input( |
|
330 | - array( |
|
331 | - 'html_name' => 'organization_instagram', |
|
332 | - 'html_label_text' => esc_html__('Instagram', 'event_espresso'), |
|
333 | - 'other_html_attributes' => ' placeholder="instagram.com/handle"', |
|
334 | - 'default' => $this->organization_config->get_pretty('instagram'), |
|
335 | - 'required' => false, |
|
336 | - ) |
|
337 | - ), |
|
338 | - ), |
|
339 | - ) |
|
340 | - ); |
|
341 | - if (is_main_site()) { |
|
342 | - $form->add_subsections( |
|
343 | - array( |
|
344 | - 'site_license_key_hdr' => new EE_Form_Section_HTML( |
|
345 | - EEH_HTML::h2( |
|
346 | - esc_html__('Your Event Espresso License Key', 'event_espresso') |
|
347 | - . ' ' |
|
348 | - . EEH_HTML::span( |
|
349 | - EEH_Template::get_help_tab_link('site_license_key_info'), |
|
350 | - 'help_tour_activation' |
|
351 | - ), |
|
352 | - '', |
|
353 | - 'site-license-key-hdr' |
|
354 | - ) |
|
355 | - ), |
|
356 | - 'site_license_key' => $this->getSiteLicenseKeyField() |
|
357 | - ) |
|
358 | - ); |
|
359 | - $form->add_subsections( |
|
360 | - array( |
|
361 | - 'uxip_optin_hdr' => new EE_Form_Section_HTML( |
|
362 | - $this->uxipOptinText() |
|
363 | - ), |
|
364 | - 'ueip_optin' => new EE_Checkbox_Multi_Input( |
|
365 | - array( |
|
366 | - true => __('Yes! I want to help improve Event Espresso!', 'event_espresso') |
|
367 | - ), |
|
368 | - array( |
|
369 | - 'html_name' => EE_Core_Config::OPTION_NAME_UXIP, |
|
370 | - 'html_label_text' => esc_html__( |
|
371 | - 'UXIP Opt In?', |
|
372 | - 'event_espresso' |
|
373 | - ), |
|
374 | - 'default' => isset($this->core_config->ee_ueip_optin) |
|
375 | - ? filter_var($this->core_config->ee_ueip_optin, FILTER_VALIDATE_BOOLEAN) |
|
376 | - : false, |
|
377 | - 'required' => false, |
|
378 | - ) |
|
379 | - ), |
|
380 | - ), |
|
381 | - 'organization_instagram', |
|
382 | - false |
|
383 | - ); |
|
384 | - } |
|
385 | - return $form; |
|
386 | - } |
|
102 | + /** |
|
103 | + * creates and returns the actual form |
|
104 | + * |
|
105 | + * @return EE_Form_Section_Proper |
|
106 | + * @throws EE_Error |
|
107 | + * @throws InvalidArgumentException |
|
108 | + * @throws InvalidDataTypeException |
|
109 | + * @throws InvalidInterfaceException |
|
110 | + * @throws ReflectionException |
|
111 | + */ |
|
112 | + public function generate() |
|
113 | + { |
|
114 | + $has_sub_regions = EEM_State::instance()->count( |
|
115 | + array(array('Country.CNT_ISO' => $this->organization_config->CNT_ISO)) |
|
116 | + ); |
|
117 | + $form = new EE_Form_Section_Proper( |
|
118 | + array( |
|
119 | + 'name' => 'organization_settings', |
|
120 | + 'html_id' => 'organization_settings', |
|
121 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
122 | + 'subsections' => array( |
|
123 | + 'contact_information_hdr' => new EE_Form_Section_HTML( |
|
124 | + EEH_HTML::h2( |
|
125 | + esc_html__('Contact Information', 'event_espresso') |
|
126 | + . ' ' |
|
127 | + . EEH_HTML::span(EEH_Template::get_help_tab_link('contact_info_info')), |
|
128 | + '', |
|
129 | + 'contact-information-hdr' |
|
130 | + ) |
|
131 | + ), |
|
132 | + 'organization_name' => new EE_Text_Input( |
|
133 | + array( |
|
134 | + 'html_name' => 'organization_name', |
|
135 | + 'html_label_text' => esc_html__('Organization Name', 'event_espresso'), |
|
136 | + 'html_help_text' => esc_html__( |
|
137 | + 'Displayed on all emails and invoices.', |
|
138 | + 'event_espresso' |
|
139 | + ), |
|
140 | + 'default' => $this->organization_config->get_pretty('name'), |
|
141 | + 'required' => false, |
|
142 | + ) |
|
143 | + ), |
|
144 | + 'organization_address_1' => new EE_Text_Input( |
|
145 | + array( |
|
146 | + 'html_name' => 'organization_address_1', |
|
147 | + 'html_label_text' => esc_html__('Street Address', 'event_espresso'), |
|
148 | + 'default' => $this->organization_config->get_pretty('address_1'), |
|
149 | + 'required' => false, |
|
150 | + ) |
|
151 | + ), |
|
152 | + 'organization_address_2' => new EE_Text_Input( |
|
153 | + array( |
|
154 | + 'html_name' => 'organization_address_2', |
|
155 | + 'html_label_text' => esc_html__('Street Address 2', 'event_espresso'), |
|
156 | + 'default' => $this->organization_config->get_pretty('address_2'), |
|
157 | + 'required' => false, |
|
158 | + ) |
|
159 | + ), |
|
160 | + 'organization_city' => new EE_Text_Input( |
|
161 | + array( |
|
162 | + 'html_name' => 'organization_city', |
|
163 | + 'html_label_text' => esc_html__('City', 'event_espresso'), |
|
164 | + 'default' => $this->organization_config->get_pretty('city'), |
|
165 | + 'required' => false, |
|
166 | + ) |
|
167 | + ), |
|
168 | + 'organization_country' => new EE_Country_Select_Input( |
|
169 | + null, |
|
170 | + array( |
|
171 | + EE_Country_Select_Input::OPTION_GET_KEY => EE_Country_Select_Input::OPTION_GET_ALL, |
|
172 | + 'html_name' => 'organization_country', |
|
173 | + 'html_label_text' => esc_html__('Country', 'event_espresso'), |
|
174 | + 'default' => $this->organization_config->CNT_ISO, |
|
175 | + 'required' => false, |
|
176 | + 'html_help_text' => sprintf( |
|
177 | + esc_html__( |
|
178 | + '%1$sThe Country set here will have the effect of setting the currency used for all ticket prices.%2$s', |
|
179 | + 'event_espresso' |
|
180 | + ), |
|
181 | + '<span class="reminder-spn">', |
|
182 | + '</span>' |
|
183 | + ), |
|
184 | + ) |
|
185 | + ), |
|
186 | + 'organization_state' => new EE_State_Select_Input( |
|
187 | + null, |
|
188 | + array( |
|
189 | + 'html_name' => 'organization_state', |
|
190 | + 'html_label_text' => esc_html__('State/Province', 'event_espresso'), |
|
191 | + 'default' => $this->organization_config->STA_ID, |
|
192 | + 'required' => false, |
|
193 | + 'html_help_text' => empty($this->organization_config->STA_ID) || ! $has_sub_regions |
|
194 | + ? sprintf( |
|
195 | + esc_html__( |
|
196 | + 'If the States/Provinces for the selected Country do not appear in this list, then click "Save".%3$sIf data exists, then the list will be populated when the page reloads and you will be able to make a selection at that time.%3$s%1$sMake sure you click "Save" again after selecting a State/Province that has just been loaded in order to keep that selection.%2$s', |
|
197 | + 'event_espresso' |
|
198 | + ), |
|
199 | + '<span class="reminder-spn">', |
|
200 | + '</span>', |
|
201 | + '<br />' |
|
202 | + ) |
|
203 | + : '', |
|
204 | + ) |
|
205 | + ), |
|
206 | + 'organization_zip' => new EE_Text_Input( |
|
207 | + array( |
|
208 | + 'html_name' => 'organization_zip', |
|
209 | + 'html_label_text' => esc_html__('Zip/Postal Code', 'event_espresso'), |
|
210 | + 'default' => $this->organization_config->get_pretty('zip'), |
|
211 | + 'required' => false, |
|
212 | + ) |
|
213 | + ), |
|
214 | + 'organization_email' => new EE_Text_Input( |
|
215 | + array( |
|
216 | + 'html_name' => 'organization_email', |
|
217 | + 'html_label_text' => esc_html__('Primary Contact Email', 'event_espresso'), |
|
218 | + 'html_help_text' => sprintf( |
|
219 | + esc_html__( |
|
220 | + 'This is where notifications go to when you use the %1$s and %2$s shortcodes in the message templates.', |
|
221 | + 'event_espresso' |
|
222 | + ), |
|
223 | + '<code>[CO_FORMATTED_EMAIL]</code>', |
|
224 | + '<code>[CO_EMAIL]</code>' |
|
225 | + ), |
|
226 | + 'default' => $this->organization_config->get_pretty('email'), |
|
227 | + 'required' => false, |
|
228 | + ) |
|
229 | + ), |
|
230 | + 'organization_phone' => new EE_Text_Input( |
|
231 | + array( |
|
232 | + 'html_name' => 'organization_phone', |
|
233 | + 'html_label_text' => esc_html__('Phone Number', 'event_espresso'), |
|
234 | + 'html_help_text' => esc_html__( |
|
235 | + 'The phone number for your organization.', |
|
236 | + 'event_espresso' |
|
237 | + ), |
|
238 | + 'default' => $this->organization_config->get_pretty('phone'), |
|
239 | + 'required' => false, |
|
240 | + ) |
|
241 | + ), |
|
242 | + 'organization_vat' => new EE_Text_Input( |
|
243 | + array( |
|
244 | + 'html_name' => 'organization_vat', |
|
245 | + 'html_label_text' => esc_html__('VAT/Tax Number', 'event_espresso'), |
|
246 | + 'html_help_text' => esc_html__( |
|
247 | + 'The VAT/Tax Number may be displayed on invoices and receipts.', |
|
248 | + 'event_espresso' |
|
249 | + ), |
|
250 | + 'default' => $this->organization_config->get_pretty('vat'), |
|
251 | + 'required' => false, |
|
252 | + ) |
|
253 | + ), |
|
254 | + 'company_logo_hdr' => new EE_Form_Section_HTML( |
|
255 | + EEH_HTML::h2( |
|
256 | + esc_html__('Company Logo', 'event_espresso') |
|
257 | + . ' ' |
|
258 | + . EEH_HTML::span(EEH_Template::get_help_tab_link('organization_logo_info')), |
|
259 | + '', |
|
260 | + 'company-logo-hdr' |
|
261 | + ) |
|
262 | + ), |
|
263 | + 'organization_logo_url' => new EE_Admin_File_Uploader_Input( |
|
264 | + array( |
|
265 | + 'html_name' => 'organization_logo_url', |
|
266 | + 'html_label_text' => esc_html__('Upload New Logo', 'event_espresso'), |
|
267 | + 'html_help_text' => esc_html__( |
|
268 | + 'Your logo will be used on custom invoices, tickets, certificates, and payment templates.', |
|
269 | + 'event_espresso' |
|
270 | + ), |
|
271 | + 'default' => $this->organization_config->get_pretty('logo_url'), |
|
272 | + 'required' => false, |
|
273 | + ) |
|
274 | + ), |
|
275 | + 'social_links_hdr' => new EE_Form_Section_HTML( |
|
276 | + EEH_HTML::h2( |
|
277 | + esc_html__('Social Links', 'event_espresso') |
|
278 | + . ' ' |
|
279 | + . EEH_HTML::span(EEH_Template::get_help_tab_link('social_links_info')) |
|
280 | + . EEH_HTML::br() |
|
281 | + . EEH_HTML::p( |
|
282 | + esc_html__( |
|
283 | + 'Enter any links to social accounts for your organization here', |
|
284 | + 'event_espresso' |
|
285 | + ), |
|
286 | + '', |
|
287 | + 'description' |
|
288 | + ), |
|
289 | + '', |
|
290 | + 'social-links-hdr' |
|
291 | + ) |
|
292 | + ), |
|
293 | + 'organization_facebook' => new EE_Text_Input( |
|
294 | + array( |
|
295 | + 'html_name' => 'organization_facebook', |
|
296 | + 'html_label_text' => esc_html__('Facebook', 'event_espresso'), |
|
297 | + 'other_html_attributes' => ' placeholder="facebook.com/profile.name"', |
|
298 | + 'default' => $this->organization_config->get_pretty('facebook'), |
|
299 | + 'required' => false, |
|
300 | + ) |
|
301 | + ), |
|
302 | + 'organization_twitter' => new EE_Text_Input( |
|
303 | + array( |
|
304 | + 'html_name' => 'organization_twitter', |
|
305 | + 'html_label_text' => esc_html__('Twitter', 'event_espresso'), |
|
306 | + 'other_html_attributes' => ' placeholder="twitter.com/twitterhandle"', |
|
307 | + 'default' => $this->organization_config->get_pretty('twitter'), |
|
308 | + 'required' => false, |
|
309 | + ) |
|
310 | + ), |
|
311 | + 'organization_linkedin' => new EE_Text_Input( |
|
312 | + array( |
|
313 | + 'html_name' => 'organization_linkedin', |
|
314 | + 'html_label_text' => esc_html__('LinkedIn', 'event_espresso'), |
|
315 | + 'other_html_attributes' => ' placeholder="linkedin.com/in/profilename"', |
|
316 | + 'default' => $this->organization_config->get_pretty('linkedin'), |
|
317 | + 'required' => false, |
|
318 | + ) |
|
319 | + ), |
|
320 | + 'organization_pinterest' => new EE_Text_Input( |
|
321 | + array( |
|
322 | + 'html_name' => 'organization_pinterest', |
|
323 | + 'html_label_text' => esc_html__('Pinterest', 'event_espresso'), |
|
324 | + 'other_html_attributes' => ' placeholder="pinterest.com/profilename"', |
|
325 | + 'default' => $this->organization_config->get_pretty('pinterest'), |
|
326 | + 'required' => false, |
|
327 | + ) |
|
328 | + ), |
|
329 | + 'organization_instagram' => new EE_Text_Input( |
|
330 | + array( |
|
331 | + 'html_name' => 'organization_instagram', |
|
332 | + 'html_label_text' => esc_html__('Instagram', 'event_espresso'), |
|
333 | + 'other_html_attributes' => ' placeholder="instagram.com/handle"', |
|
334 | + 'default' => $this->organization_config->get_pretty('instagram'), |
|
335 | + 'required' => false, |
|
336 | + ) |
|
337 | + ), |
|
338 | + ), |
|
339 | + ) |
|
340 | + ); |
|
341 | + if (is_main_site()) { |
|
342 | + $form->add_subsections( |
|
343 | + array( |
|
344 | + 'site_license_key_hdr' => new EE_Form_Section_HTML( |
|
345 | + EEH_HTML::h2( |
|
346 | + esc_html__('Your Event Espresso License Key', 'event_espresso') |
|
347 | + . ' ' |
|
348 | + . EEH_HTML::span( |
|
349 | + EEH_Template::get_help_tab_link('site_license_key_info'), |
|
350 | + 'help_tour_activation' |
|
351 | + ), |
|
352 | + '', |
|
353 | + 'site-license-key-hdr' |
|
354 | + ) |
|
355 | + ), |
|
356 | + 'site_license_key' => $this->getSiteLicenseKeyField() |
|
357 | + ) |
|
358 | + ); |
|
359 | + $form->add_subsections( |
|
360 | + array( |
|
361 | + 'uxip_optin_hdr' => new EE_Form_Section_HTML( |
|
362 | + $this->uxipOptinText() |
|
363 | + ), |
|
364 | + 'ueip_optin' => new EE_Checkbox_Multi_Input( |
|
365 | + array( |
|
366 | + true => __('Yes! I want to help improve Event Espresso!', 'event_espresso') |
|
367 | + ), |
|
368 | + array( |
|
369 | + 'html_name' => EE_Core_Config::OPTION_NAME_UXIP, |
|
370 | + 'html_label_text' => esc_html__( |
|
371 | + 'UXIP Opt In?', |
|
372 | + 'event_espresso' |
|
373 | + ), |
|
374 | + 'default' => isset($this->core_config->ee_ueip_optin) |
|
375 | + ? filter_var($this->core_config->ee_ueip_optin, FILTER_VALIDATE_BOOLEAN) |
|
376 | + : false, |
|
377 | + 'required' => false, |
|
378 | + ) |
|
379 | + ), |
|
380 | + ), |
|
381 | + 'organization_instagram', |
|
382 | + false |
|
383 | + ); |
|
384 | + } |
|
385 | + return $form; |
|
386 | + } |
|
387 | 387 | |
388 | 388 | |
389 | - /** |
|
390 | - * takes the generated form and displays it along with ony other non-form HTML that may be required |
|
391 | - * returns a string of HTML that can be directly echoed in a template |
|
392 | - * |
|
393 | - * @return string |
|
394 | - * @throws EE_Error |
|
395 | - * @throws InvalidArgumentException |
|
396 | - * @throws InvalidDataTypeException |
|
397 | - * @throws InvalidInterfaceException |
|
398 | - * @throws LogicException |
|
399 | - */ |
|
400 | - public function display() |
|
401 | - { |
|
402 | - $this->form()->enqueue_js(); |
|
403 | - return parent::display(); |
|
404 | - } |
|
389 | + /** |
|
390 | + * takes the generated form and displays it along with ony other non-form HTML that may be required |
|
391 | + * returns a string of HTML that can be directly echoed in a template |
|
392 | + * |
|
393 | + * @return string |
|
394 | + * @throws EE_Error |
|
395 | + * @throws InvalidArgumentException |
|
396 | + * @throws InvalidDataTypeException |
|
397 | + * @throws InvalidInterfaceException |
|
398 | + * @throws LogicException |
|
399 | + */ |
|
400 | + public function display() |
|
401 | + { |
|
402 | + $this->form()->enqueue_js(); |
|
403 | + return parent::display(); |
|
404 | + } |
|
405 | 405 | |
406 | 406 | |
407 | - /** |
|
408 | - * handles processing the form submission |
|
409 | - * returns true or false depending on whether the form was processed successfully or not |
|
410 | - * |
|
411 | - * @param array $form_data |
|
412 | - * @return bool |
|
413 | - * @throws InvalidFormSubmissionException |
|
414 | - * @throws EE_Error |
|
415 | - * @throws LogicException |
|
416 | - * @throws InvalidArgumentException |
|
417 | - * @throws InvalidDataTypeException |
|
418 | - * @throws ReflectionException |
|
419 | - */ |
|
420 | - public function process($form_data = array()) |
|
421 | - { |
|
422 | - // process form |
|
423 | - $valid_data = (array) parent::process($form_data); |
|
424 | - if (empty($valid_data)) { |
|
425 | - return false; |
|
426 | - } |
|
407 | + /** |
|
408 | + * handles processing the form submission |
|
409 | + * returns true or false depending on whether the form was processed successfully or not |
|
410 | + * |
|
411 | + * @param array $form_data |
|
412 | + * @return bool |
|
413 | + * @throws InvalidFormSubmissionException |
|
414 | + * @throws EE_Error |
|
415 | + * @throws LogicException |
|
416 | + * @throws InvalidArgumentException |
|
417 | + * @throws InvalidDataTypeException |
|
418 | + * @throws ReflectionException |
|
419 | + */ |
|
420 | + public function process($form_data = array()) |
|
421 | + { |
|
422 | + // process form |
|
423 | + $valid_data = (array) parent::process($form_data); |
|
424 | + if (empty($valid_data)) { |
|
425 | + return false; |
|
426 | + } |
|
427 | 427 | |
428 | - if (is_main_site()) { |
|
429 | - $this->network_core_config->site_license_key = isset($form_data['ee_site_license_key']) |
|
430 | - ? sanitize_text_field($form_data['ee_site_license_key']) |
|
431 | - : $this->network_core_config->site_license_key; |
|
432 | - } |
|
433 | - $this->organization_config->name = isset($form_data['organization_name']) |
|
434 | - ? sanitize_text_field($form_data['organization_name']) |
|
435 | - : $this->organization_config->name; |
|
436 | - $this->organization_config->address_1 = isset($form_data['organization_address_1']) |
|
437 | - ? sanitize_text_field($form_data['organization_address_1']) |
|
438 | - : $this->organization_config->address_1; |
|
439 | - $this->organization_config->address_2 = isset($form_data['organization_address_2']) |
|
440 | - ? sanitize_text_field($form_data['organization_address_2']) |
|
441 | - : $this->organization_config->address_2; |
|
442 | - $this->organization_config->city = isset($form_data['organization_city']) |
|
443 | - ? sanitize_text_field($form_data['organization_city']) |
|
444 | - : $this->organization_config->city; |
|
445 | - $this->organization_config->STA_ID = isset($form_data['organization_state']) |
|
446 | - ? absint($form_data['organization_state']) |
|
447 | - : $this->organization_config->STA_ID; |
|
448 | - $this->organization_config->CNT_ISO = isset($form_data['organization_country']) |
|
449 | - ? sanitize_text_field($form_data['organization_country']) |
|
450 | - : $this->organization_config->CNT_ISO; |
|
451 | - $this->organization_config->zip = isset($form_data['organization_zip']) |
|
452 | - ? sanitize_text_field($form_data['organization_zip']) |
|
453 | - : $this->organization_config->zip; |
|
454 | - $this->organization_config->email = isset($form_data['organization_email']) |
|
455 | - ? sanitize_email($form_data['organization_email']) |
|
456 | - : $this->organization_config->email; |
|
457 | - $this->organization_config->vat = isset($form_data['organization_vat']) |
|
458 | - ? sanitize_text_field($form_data['organization_vat']) |
|
459 | - : $this->organization_config->vat; |
|
460 | - $this->organization_config->phone = isset($form_data['organization_phone']) |
|
461 | - ? sanitize_text_field($form_data['organization_phone']) |
|
462 | - : $this->organization_config->phone; |
|
463 | - $this->organization_config->logo_url = isset($form_data['organization_logo_url']) |
|
464 | - ? esc_url_raw($form_data['organization_logo_url']) |
|
465 | - : $this->organization_config->logo_url; |
|
466 | - $this->organization_config->facebook = isset($form_data['organization_facebook']) |
|
467 | - ? esc_url_raw($form_data['organization_facebook']) |
|
468 | - : $this->organization_config->facebook; |
|
469 | - $this->organization_config->twitter = isset($form_data['organization_twitter']) |
|
470 | - ? esc_url_raw($form_data['organization_twitter']) |
|
471 | - : $this->organization_config->twitter; |
|
472 | - $this->organization_config->linkedin = isset($form_data['organization_linkedin']) |
|
473 | - ? esc_url_raw($form_data['organization_linkedin']) |
|
474 | - : $this->organization_config->linkedin; |
|
475 | - $this->organization_config->pinterest = isset($form_data['organization_pinterest']) |
|
476 | - ? esc_url_raw($form_data['organization_pinterest']) |
|
477 | - : $this->organization_config->pinterest; |
|
478 | - $this->organization_config->google = isset($form_data['organization_google']) |
|
479 | - ? esc_url_raw($form_data['organization_google']) |
|
480 | - : $this->organization_config->google; |
|
481 | - $this->organization_config->instagram = isset($form_data['organization_instagram']) |
|
482 | - ? esc_url_raw($form_data['organization_instagram']) |
|
483 | - : $this->organization_config->instagram; |
|
484 | - $this->core_config->ee_ueip_optin = isset($form_data[ EE_Core_Config::OPTION_NAME_UXIP ][0]) |
|
485 | - ? filter_var($form_data[ EE_Core_Config::OPTION_NAME_UXIP ][0], FILTER_VALIDATE_BOOLEAN) |
|
486 | - : false; |
|
487 | - $this->core_config->ee_ueip_has_notified = true; |
|
428 | + if (is_main_site()) { |
|
429 | + $this->network_core_config->site_license_key = isset($form_data['ee_site_license_key']) |
|
430 | + ? sanitize_text_field($form_data['ee_site_license_key']) |
|
431 | + : $this->network_core_config->site_license_key; |
|
432 | + } |
|
433 | + $this->organization_config->name = isset($form_data['organization_name']) |
|
434 | + ? sanitize_text_field($form_data['organization_name']) |
|
435 | + : $this->organization_config->name; |
|
436 | + $this->organization_config->address_1 = isset($form_data['organization_address_1']) |
|
437 | + ? sanitize_text_field($form_data['organization_address_1']) |
|
438 | + : $this->organization_config->address_1; |
|
439 | + $this->organization_config->address_2 = isset($form_data['organization_address_2']) |
|
440 | + ? sanitize_text_field($form_data['organization_address_2']) |
|
441 | + : $this->organization_config->address_2; |
|
442 | + $this->organization_config->city = isset($form_data['organization_city']) |
|
443 | + ? sanitize_text_field($form_data['organization_city']) |
|
444 | + : $this->organization_config->city; |
|
445 | + $this->organization_config->STA_ID = isset($form_data['organization_state']) |
|
446 | + ? absint($form_data['organization_state']) |
|
447 | + : $this->organization_config->STA_ID; |
|
448 | + $this->organization_config->CNT_ISO = isset($form_data['organization_country']) |
|
449 | + ? sanitize_text_field($form_data['organization_country']) |
|
450 | + : $this->organization_config->CNT_ISO; |
|
451 | + $this->organization_config->zip = isset($form_data['organization_zip']) |
|
452 | + ? sanitize_text_field($form_data['organization_zip']) |
|
453 | + : $this->organization_config->zip; |
|
454 | + $this->organization_config->email = isset($form_data['organization_email']) |
|
455 | + ? sanitize_email($form_data['organization_email']) |
|
456 | + : $this->organization_config->email; |
|
457 | + $this->organization_config->vat = isset($form_data['organization_vat']) |
|
458 | + ? sanitize_text_field($form_data['organization_vat']) |
|
459 | + : $this->organization_config->vat; |
|
460 | + $this->organization_config->phone = isset($form_data['organization_phone']) |
|
461 | + ? sanitize_text_field($form_data['organization_phone']) |
|
462 | + : $this->organization_config->phone; |
|
463 | + $this->organization_config->logo_url = isset($form_data['organization_logo_url']) |
|
464 | + ? esc_url_raw($form_data['organization_logo_url']) |
|
465 | + : $this->organization_config->logo_url; |
|
466 | + $this->organization_config->facebook = isset($form_data['organization_facebook']) |
|
467 | + ? esc_url_raw($form_data['organization_facebook']) |
|
468 | + : $this->organization_config->facebook; |
|
469 | + $this->organization_config->twitter = isset($form_data['organization_twitter']) |
|
470 | + ? esc_url_raw($form_data['organization_twitter']) |
|
471 | + : $this->organization_config->twitter; |
|
472 | + $this->organization_config->linkedin = isset($form_data['organization_linkedin']) |
|
473 | + ? esc_url_raw($form_data['organization_linkedin']) |
|
474 | + : $this->organization_config->linkedin; |
|
475 | + $this->organization_config->pinterest = isset($form_data['organization_pinterest']) |
|
476 | + ? esc_url_raw($form_data['organization_pinterest']) |
|
477 | + : $this->organization_config->pinterest; |
|
478 | + $this->organization_config->google = isset($form_data['organization_google']) |
|
479 | + ? esc_url_raw($form_data['organization_google']) |
|
480 | + : $this->organization_config->google; |
|
481 | + $this->organization_config->instagram = isset($form_data['organization_instagram']) |
|
482 | + ? esc_url_raw($form_data['organization_instagram']) |
|
483 | + : $this->organization_config->instagram; |
|
484 | + $this->core_config->ee_ueip_optin = isset($form_data[ EE_Core_Config::OPTION_NAME_UXIP ][0]) |
|
485 | + ? filter_var($form_data[ EE_Core_Config::OPTION_NAME_UXIP ][0], FILTER_VALIDATE_BOOLEAN) |
|
486 | + : false; |
|
487 | + $this->core_config->ee_ueip_has_notified = true; |
|
488 | 488 | |
489 | - $this->registry->CFG->currency = new EE_Currency_Config( |
|
490 | - $this->organization_config->CNT_ISO |
|
491 | - ); |
|
492 | - /** @var EE_Country $country */ |
|
493 | - $country = EEM_Country::instance()->get_one_by_ID($this->organization_config->CNT_ISO); |
|
494 | - if ($country instanceof EE_Country) { |
|
495 | - $country->set('CNT_active', 1); |
|
496 | - $country->save(); |
|
497 | - $this->countrySubRegionDao->saveCountrySubRegions($country); |
|
498 | - } |
|
499 | - return true; |
|
500 | - } |
|
489 | + $this->registry->CFG->currency = new EE_Currency_Config( |
|
490 | + $this->organization_config->CNT_ISO |
|
491 | + ); |
|
492 | + /** @var EE_Country $country */ |
|
493 | + $country = EEM_Country::instance()->get_one_by_ID($this->organization_config->CNT_ISO); |
|
494 | + if ($country instanceof EE_Country) { |
|
495 | + $country->set('CNT_active', 1); |
|
496 | + $country->save(); |
|
497 | + $this->countrySubRegionDao->saveCountrySubRegions($country); |
|
498 | + } |
|
499 | + return true; |
|
500 | + } |
|
501 | 501 | |
502 | 502 | |
503 | - /** |
|
504 | - * @return string |
|
505 | - */ |
|
506 | - private function uxipOptinText() |
|
507 | - { |
|
508 | - ob_start(); |
|
509 | - Stats::optinText(false); |
|
510 | - return ob_get_clean(); |
|
511 | - } |
|
503 | + /** |
|
504 | + * @return string |
|
505 | + */ |
|
506 | + private function uxipOptinText() |
|
507 | + { |
|
508 | + ob_start(); |
|
509 | + Stats::optinText(false); |
|
510 | + return ob_get_clean(); |
|
511 | + } |
|
512 | 512 | |
513 | 513 | |
514 | - /** |
|
515 | - * Return whether the site license key has been verified or not. |
|
516 | - * @return bool |
|
517 | - */ |
|
518 | - private function licenseKeyVerified() |
|
519 | - { |
|
520 | - if (empty($this->network_core_config->site_license_key)) { |
|
521 | - return false; |
|
522 | - } |
|
523 | - $ver_option_key = 'puvererr_' . basename(EE_PLUGIN_BASENAME); |
|
524 | - $verify_fail = get_option($ver_option_key, false); |
|
525 | - return $verify_fail === false |
|
526 | - || (! empty($this->network_core_config->site_license_key) |
|
527 | - && $verify_fail === false |
|
528 | - ); |
|
529 | - } |
|
514 | + /** |
|
515 | + * Return whether the site license key has been verified or not. |
|
516 | + * @return bool |
|
517 | + */ |
|
518 | + private function licenseKeyVerified() |
|
519 | + { |
|
520 | + if (empty($this->network_core_config->site_license_key)) { |
|
521 | + return false; |
|
522 | + } |
|
523 | + $ver_option_key = 'puvererr_' . basename(EE_PLUGIN_BASENAME); |
|
524 | + $verify_fail = get_option($ver_option_key, false); |
|
525 | + return $verify_fail === false |
|
526 | + || (! empty($this->network_core_config->site_license_key) |
|
527 | + && $verify_fail === false |
|
528 | + ); |
|
529 | + } |
|
530 | 530 | |
531 | 531 | |
532 | - /** |
|
533 | - * @return EE_Text_Input |
|
534 | - */ |
|
535 | - private function getSiteLicenseKeyField() |
|
536 | - { |
|
537 | - $text_input = new EE_Text_Input( |
|
538 | - array( |
|
539 | - 'html_name' => 'ee_site_license_key', |
|
540 | - 'html_id' => 'site_license_key', |
|
541 | - 'html_label_text' => esc_html__('Support License Key', 'event_espresso'), |
|
542 | - /** phpcs:disable WordPress.WP.I18n.UnorderedPlaceholdersText */ |
|
543 | - 'html_help_text' => sprintf( |
|
544 | - esc_html__( |
|
545 | - 'Adding a valid Support License Key will enable automatic update notifications and backend updates for Event Espresso Core and any installed add-ons. If this is a Development or Test site, %sDO NOT%s enter your Support License Key.', |
|
546 | - 'event_espresso' |
|
547 | - ), |
|
548 | - '<strong>', |
|
549 | - '</strong>' |
|
550 | - ), |
|
551 | - /** phpcs:enable */ |
|
552 | - 'default' => isset($this->network_core_config->site_license_key) |
|
553 | - ? $this->network_core_config->site_license_key |
|
554 | - : '', |
|
555 | - 'required' => false, |
|
556 | - 'form_html_filter' => new VsprintfFilter( |
|
557 | - '%2$s %1$s', |
|
558 | - array($this->getValidationIndicator()) |
|
559 | - ) |
|
560 | - ) |
|
561 | - ); |
|
562 | - return $text_input; |
|
563 | - } |
|
532 | + /** |
|
533 | + * @return EE_Text_Input |
|
534 | + */ |
|
535 | + private function getSiteLicenseKeyField() |
|
536 | + { |
|
537 | + $text_input = new EE_Text_Input( |
|
538 | + array( |
|
539 | + 'html_name' => 'ee_site_license_key', |
|
540 | + 'html_id' => 'site_license_key', |
|
541 | + 'html_label_text' => esc_html__('Support License Key', 'event_espresso'), |
|
542 | + /** phpcs:disable WordPress.WP.I18n.UnorderedPlaceholdersText */ |
|
543 | + 'html_help_text' => sprintf( |
|
544 | + esc_html__( |
|
545 | + 'Adding a valid Support License Key will enable automatic update notifications and backend updates for Event Espresso Core and any installed add-ons. If this is a Development or Test site, %sDO NOT%s enter your Support License Key.', |
|
546 | + 'event_espresso' |
|
547 | + ), |
|
548 | + '<strong>', |
|
549 | + '</strong>' |
|
550 | + ), |
|
551 | + /** phpcs:enable */ |
|
552 | + 'default' => isset($this->network_core_config->site_license_key) |
|
553 | + ? $this->network_core_config->site_license_key |
|
554 | + : '', |
|
555 | + 'required' => false, |
|
556 | + 'form_html_filter' => new VsprintfFilter( |
|
557 | + '%2$s %1$s', |
|
558 | + array($this->getValidationIndicator()) |
|
559 | + ) |
|
560 | + ) |
|
561 | + ); |
|
562 | + return $text_input; |
|
563 | + } |
|
564 | 564 | |
565 | 565 | |
566 | - /** |
|
567 | - * @return string |
|
568 | - */ |
|
569 | - private function getValidationIndicator() |
|
570 | - { |
|
571 | - $verified_class = $this->licenseKeyVerified() ? 'ee-icon-color-ee-green' : 'ee-icon-color-ee-red'; |
|
572 | - return '<span class="dashicons dashicons-admin-network ' . $verified_class . ' ee-icon-size-20"></span>'; |
|
573 | - } |
|
566 | + /** |
|
567 | + * @return string |
|
568 | + */ |
|
569 | + private function getValidationIndicator() |
|
570 | + { |
|
571 | + $verified_class = $this->licenseKeyVerified() ? 'ee-icon-color-ee-green' : 'ee-icon-color-ee-red'; |
|
572 | + return '<span class="dashicons dashicons-admin-network ' . $verified_class . ' ee-icon-size-20"></span>'; |
|
573 | + } |
|
574 | 574 | } |
@@ -71,7 +71,7 @@ |
||
71 | 71 | * given a valid namespace, will find all files that match the provided mask |
72 | 72 | * |
73 | 73 | * @access public |
74 | - * @param string|array $namespaces |
|
74 | + * @param string $namespaces |
|
75 | 75 | * @return array |
76 | 76 | * @throws InvalidClassException |
77 | 77 | * @throws InvalidDataTypeException |
@@ -18,146 +18,146 @@ |
||
18 | 18 | class FqcnLocator extends Locator |
19 | 19 | { |
20 | 20 | |
21 | - /** |
|
22 | - * @var array $FQCNs |
|
23 | - */ |
|
24 | - protected $FQCNs = array(); |
|
25 | - |
|
26 | - /** |
|
27 | - * @var array $namespaces |
|
28 | - */ |
|
29 | - protected $namespaces = array(); |
|
30 | - |
|
31 | - |
|
32 | - /** |
|
33 | - * @access protected |
|
34 | - * @param string $namespace |
|
35 | - * @param string $namespace_base_dir |
|
36 | - * @throws InvalidDataTypeException |
|
37 | - */ |
|
38 | - protected function setNamespace($namespace, $namespace_base_dir) |
|
39 | - { |
|
40 | - if (! is_string($namespace)) { |
|
41 | - throw new InvalidDataTypeException('$namespace', $namespace, 'string'); |
|
42 | - } |
|
43 | - if (! is_string($namespace_base_dir)) { |
|
44 | - throw new InvalidDataTypeException('$namespace_base_dir', $namespace_base_dir, 'string'); |
|
45 | - } |
|
46 | - $this->namespaces[ $namespace ] = $namespace_base_dir; |
|
47 | - } |
|
48 | - |
|
49 | - |
|
50 | - /** |
|
51 | - * @access public |
|
52 | - * @return array |
|
53 | - */ |
|
54 | - public function getFQCNs() |
|
55 | - { |
|
56 | - return $this->FQCNs; |
|
57 | - } |
|
58 | - |
|
59 | - |
|
60 | - /** |
|
61 | - * @access public |
|
62 | - * @return int |
|
63 | - */ |
|
64 | - public function count() |
|
65 | - { |
|
66 | - return count($this->FQCNs); |
|
67 | - } |
|
68 | - |
|
69 | - |
|
70 | - /** |
|
71 | - * given a valid namespace, will find all files that match the provided mask |
|
72 | - * |
|
73 | - * @access public |
|
74 | - * @param string|array $namespaces |
|
75 | - * @return array |
|
76 | - * @throws InvalidClassException |
|
77 | - * @throws InvalidDataTypeException |
|
78 | - */ |
|
79 | - public function locate($namespaces) |
|
80 | - { |
|
81 | - if (! (is_string($namespaces) || is_array($namespaces))) { |
|
82 | - throw new InvalidDataTypeException('$namespaces', $namespaces, 'string or array'); |
|
83 | - } |
|
84 | - foreach ((array) $namespaces as $namespace) { |
|
85 | - foreach ($this->findFQCNsByNamespace($namespace) as $key => $file) { |
|
86 | - $this->FQCNs[ $key ] = $file; |
|
87 | - } |
|
88 | - } |
|
89 | - return $this->FQCNs; |
|
90 | - } |
|
91 | - |
|
92 | - |
|
93 | - /** |
|
94 | - * given a partial namespace, will find all files in that folder |
|
95 | - * ** PLZ NOTE ** |
|
96 | - * This assumes that all files within the specified folder should be loaded |
|
97 | - * |
|
98 | - * @access protected |
|
99 | - * @param string $partial_namespace |
|
100 | - * @return array |
|
101 | - * @throws InvalidClassException |
|
102 | - * @throws InvalidDataTypeException |
|
103 | - */ |
|
104 | - protected function findFQCNsByNamespace($partial_namespace) |
|
105 | - { |
|
106 | - $iterator = new FilesystemIterator( |
|
107 | - $this->getDirectoryFromPartialNamespace($partial_namespace) |
|
108 | - ); |
|
109 | - $iterator->setFlags(FilesystemIterator::CURRENT_AS_FILEINFO); |
|
110 | - $iterator->setFlags(FilesystemIterator::UNIX_PATHS); |
|
111 | - if (iterator_count($iterator) === 0) { |
|
112 | - return array(); |
|
113 | - } |
|
114 | - foreach ($iterator as $file) { |
|
115 | - if ($file->isFile() && $file->getExtension() === 'php') { |
|
116 | - $file = $file->getPath() . DS . $file->getBasename('.php'); |
|
117 | - foreach ($this->namespaces as $namespace => $base_dir) { |
|
118 | - $namespace .= Psr4Autoloader::NS; |
|
119 | - if (strpos($file, $base_dir) === 0) { |
|
120 | - $this->FQCNs[] = Psr4Autoloader::NS . str_replace( |
|
121 | - array($base_dir, DS), |
|
122 | - array($namespace, Psr4Autoloader::NS), |
|
123 | - $file |
|
124 | - ); |
|
125 | - } |
|
126 | - } |
|
127 | - } |
|
128 | - } |
|
129 | - return $this->FQCNs; |
|
130 | - } |
|
131 | - |
|
132 | - |
|
133 | - /** |
|
134 | - * getDirectoryFromPartialNamespace |
|
135 | - * |
|
136 | - * @access protected |
|
137 | - * @param string $partial_namespace almost fully qualified class name ? |
|
138 | - * @return string |
|
139 | - * @throws InvalidDataTypeException |
|
140 | - * @throws InvalidClassException |
|
141 | - */ |
|
142 | - protected function getDirectoryFromPartialNamespace($partial_namespace) |
|
143 | - { |
|
144 | - if (empty($partial_namespace)) { |
|
145 | - throw new InvalidClassException($partial_namespace); |
|
146 | - } |
|
147 | - // load our PSR-4 Autoloader so we can get the list of registered namespaces from it |
|
148 | - $psr4_loader = EE_Psr4AutoloaderInit::psr4_loader(); |
|
149 | - // breakup the incoming namespace into segments then loop thru them |
|
150 | - $namespace_segments = explode(Psr4Autoloader::NS, trim($partial_namespace, Psr4Autoloader::NS)); |
|
151 | - // we're only interested in the first element, so pull that from the array |
|
152 | - $namespace = array_shift($namespace_segments); |
|
153 | - // check if there's a base directory registered for that namespace |
|
154 | - $prefix = $psr4_loader->prefixes($namespace . Psr4Autoloader::NS); |
|
155 | - // nope? then the incoming namespace is invalid |
|
156 | - if (empty($prefix) || empty($prefix[0])) { |
|
157 | - throw new InvalidClassException($partial_namespace); |
|
158 | - } |
|
159 | - $this->setNamespace($namespace, $prefix[0]); |
|
160 | - // but if it's good, add that base directory to the rest of the path, and return it |
|
161 | - return $prefix[0] . implode(DS, $namespace_segments) . DS; |
|
162 | - } |
|
21 | + /** |
|
22 | + * @var array $FQCNs |
|
23 | + */ |
|
24 | + protected $FQCNs = array(); |
|
25 | + |
|
26 | + /** |
|
27 | + * @var array $namespaces |
|
28 | + */ |
|
29 | + protected $namespaces = array(); |
|
30 | + |
|
31 | + |
|
32 | + /** |
|
33 | + * @access protected |
|
34 | + * @param string $namespace |
|
35 | + * @param string $namespace_base_dir |
|
36 | + * @throws InvalidDataTypeException |
|
37 | + */ |
|
38 | + protected function setNamespace($namespace, $namespace_base_dir) |
|
39 | + { |
|
40 | + if (! is_string($namespace)) { |
|
41 | + throw new InvalidDataTypeException('$namespace', $namespace, 'string'); |
|
42 | + } |
|
43 | + if (! is_string($namespace_base_dir)) { |
|
44 | + throw new InvalidDataTypeException('$namespace_base_dir', $namespace_base_dir, 'string'); |
|
45 | + } |
|
46 | + $this->namespaces[ $namespace ] = $namespace_base_dir; |
|
47 | + } |
|
48 | + |
|
49 | + |
|
50 | + /** |
|
51 | + * @access public |
|
52 | + * @return array |
|
53 | + */ |
|
54 | + public function getFQCNs() |
|
55 | + { |
|
56 | + return $this->FQCNs; |
|
57 | + } |
|
58 | + |
|
59 | + |
|
60 | + /** |
|
61 | + * @access public |
|
62 | + * @return int |
|
63 | + */ |
|
64 | + public function count() |
|
65 | + { |
|
66 | + return count($this->FQCNs); |
|
67 | + } |
|
68 | + |
|
69 | + |
|
70 | + /** |
|
71 | + * given a valid namespace, will find all files that match the provided mask |
|
72 | + * |
|
73 | + * @access public |
|
74 | + * @param string|array $namespaces |
|
75 | + * @return array |
|
76 | + * @throws InvalidClassException |
|
77 | + * @throws InvalidDataTypeException |
|
78 | + */ |
|
79 | + public function locate($namespaces) |
|
80 | + { |
|
81 | + if (! (is_string($namespaces) || is_array($namespaces))) { |
|
82 | + throw new InvalidDataTypeException('$namespaces', $namespaces, 'string or array'); |
|
83 | + } |
|
84 | + foreach ((array) $namespaces as $namespace) { |
|
85 | + foreach ($this->findFQCNsByNamespace($namespace) as $key => $file) { |
|
86 | + $this->FQCNs[ $key ] = $file; |
|
87 | + } |
|
88 | + } |
|
89 | + return $this->FQCNs; |
|
90 | + } |
|
91 | + |
|
92 | + |
|
93 | + /** |
|
94 | + * given a partial namespace, will find all files in that folder |
|
95 | + * ** PLZ NOTE ** |
|
96 | + * This assumes that all files within the specified folder should be loaded |
|
97 | + * |
|
98 | + * @access protected |
|
99 | + * @param string $partial_namespace |
|
100 | + * @return array |
|
101 | + * @throws InvalidClassException |
|
102 | + * @throws InvalidDataTypeException |
|
103 | + */ |
|
104 | + protected function findFQCNsByNamespace($partial_namespace) |
|
105 | + { |
|
106 | + $iterator = new FilesystemIterator( |
|
107 | + $this->getDirectoryFromPartialNamespace($partial_namespace) |
|
108 | + ); |
|
109 | + $iterator->setFlags(FilesystemIterator::CURRENT_AS_FILEINFO); |
|
110 | + $iterator->setFlags(FilesystemIterator::UNIX_PATHS); |
|
111 | + if (iterator_count($iterator) === 0) { |
|
112 | + return array(); |
|
113 | + } |
|
114 | + foreach ($iterator as $file) { |
|
115 | + if ($file->isFile() && $file->getExtension() === 'php') { |
|
116 | + $file = $file->getPath() . DS . $file->getBasename('.php'); |
|
117 | + foreach ($this->namespaces as $namespace => $base_dir) { |
|
118 | + $namespace .= Psr4Autoloader::NS; |
|
119 | + if (strpos($file, $base_dir) === 0) { |
|
120 | + $this->FQCNs[] = Psr4Autoloader::NS . str_replace( |
|
121 | + array($base_dir, DS), |
|
122 | + array($namespace, Psr4Autoloader::NS), |
|
123 | + $file |
|
124 | + ); |
|
125 | + } |
|
126 | + } |
|
127 | + } |
|
128 | + } |
|
129 | + return $this->FQCNs; |
|
130 | + } |
|
131 | + |
|
132 | + |
|
133 | + /** |
|
134 | + * getDirectoryFromPartialNamespace |
|
135 | + * |
|
136 | + * @access protected |
|
137 | + * @param string $partial_namespace almost fully qualified class name ? |
|
138 | + * @return string |
|
139 | + * @throws InvalidDataTypeException |
|
140 | + * @throws InvalidClassException |
|
141 | + */ |
|
142 | + protected function getDirectoryFromPartialNamespace($partial_namespace) |
|
143 | + { |
|
144 | + if (empty($partial_namespace)) { |
|
145 | + throw new InvalidClassException($partial_namespace); |
|
146 | + } |
|
147 | + // load our PSR-4 Autoloader so we can get the list of registered namespaces from it |
|
148 | + $psr4_loader = EE_Psr4AutoloaderInit::psr4_loader(); |
|
149 | + // breakup the incoming namespace into segments then loop thru them |
|
150 | + $namespace_segments = explode(Psr4Autoloader::NS, trim($partial_namespace, Psr4Autoloader::NS)); |
|
151 | + // we're only interested in the first element, so pull that from the array |
|
152 | + $namespace = array_shift($namespace_segments); |
|
153 | + // check if there's a base directory registered for that namespace |
|
154 | + $prefix = $psr4_loader->prefixes($namespace . Psr4Autoloader::NS); |
|
155 | + // nope? then the incoming namespace is invalid |
|
156 | + if (empty($prefix) || empty($prefix[0])) { |
|
157 | + throw new InvalidClassException($partial_namespace); |
|
158 | + } |
|
159 | + $this->setNamespace($namespace, $prefix[0]); |
|
160 | + // but if it's good, add that base directory to the rest of the path, and return it |
|
161 | + return $prefix[0] . implode(DS, $namespace_segments) . DS; |
|
162 | + } |
|
163 | 163 | } |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | */ |
38 | 38 | protected function setNamespace($namespace, $namespace_base_dir) |
39 | 39 | { |
40 | - if (! is_string($namespace)) { |
|
40 | + if ( ! is_string($namespace)) { |
|
41 | 41 | throw new InvalidDataTypeException('$namespace', $namespace, 'string'); |
42 | 42 | } |
43 | - if (! is_string($namespace_base_dir)) { |
|
43 | + if ( ! is_string($namespace_base_dir)) { |
|
44 | 44 | throw new InvalidDataTypeException('$namespace_base_dir', $namespace_base_dir, 'string'); |
45 | 45 | } |
46 | - $this->namespaces[ $namespace ] = $namespace_base_dir; |
|
46 | + $this->namespaces[$namespace] = $namespace_base_dir; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | |
@@ -78,12 +78,12 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function locate($namespaces) |
80 | 80 | { |
81 | - if (! (is_string($namespaces) || is_array($namespaces))) { |
|
81 | + if ( ! (is_string($namespaces) || is_array($namespaces))) { |
|
82 | 82 | throw new InvalidDataTypeException('$namespaces', $namespaces, 'string or array'); |
83 | 83 | } |
84 | 84 | foreach ((array) $namespaces as $namespace) { |
85 | 85 | foreach ($this->findFQCNsByNamespace($namespace) as $key => $file) { |
86 | - $this->FQCNs[ $key ] = $file; |
|
86 | + $this->FQCNs[$key] = $file; |
|
87 | 87 | } |
88 | 88 | } |
89 | 89 | return $this->FQCNs; |
@@ -113,11 +113,11 @@ discard block |
||
113 | 113 | } |
114 | 114 | foreach ($iterator as $file) { |
115 | 115 | if ($file->isFile() && $file->getExtension() === 'php') { |
116 | - $file = $file->getPath() . DS . $file->getBasename('.php'); |
|
116 | + $file = $file->getPath().DS.$file->getBasename('.php'); |
|
117 | 117 | foreach ($this->namespaces as $namespace => $base_dir) { |
118 | 118 | $namespace .= Psr4Autoloader::NS; |
119 | 119 | if (strpos($file, $base_dir) === 0) { |
120 | - $this->FQCNs[] = Psr4Autoloader::NS . str_replace( |
|
120 | + $this->FQCNs[] = Psr4Autoloader::NS.str_replace( |
|
121 | 121 | array($base_dir, DS), |
122 | 122 | array($namespace, Psr4Autoloader::NS), |
123 | 123 | $file |
@@ -151,13 +151,13 @@ discard block |
||
151 | 151 | // we're only interested in the first element, so pull that from the array |
152 | 152 | $namespace = array_shift($namespace_segments); |
153 | 153 | // check if there's a base directory registered for that namespace |
154 | - $prefix = $psr4_loader->prefixes($namespace . Psr4Autoloader::NS); |
|
154 | + $prefix = $psr4_loader->prefixes($namespace.Psr4Autoloader::NS); |
|
155 | 155 | // nope? then the incoming namespace is invalid |
156 | 156 | if (empty($prefix) || empty($prefix[0])) { |
157 | 157 | throw new InvalidClassException($partial_namespace); |
158 | 158 | } |
159 | 159 | $this->setNamespace($namespace, $prefix[0]); |
160 | 160 | // but if it's good, add that base directory to the rest of the path, and return it |
161 | - return $prefix[0] . implode(DS, $namespace_segments) . DS; |
|
161 | + return $prefix[0].implode(DS, $namespace_segments).DS; |
|
162 | 162 | } |
163 | 163 | } |
@@ -15,290 +15,290 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * instance of the EE_System object |
|
20 | - * |
|
21 | - * @var $_instance |
|
22 | - * @access private |
|
23 | - */ |
|
24 | - private static $_instance = null; |
|
25 | - |
|
26 | - /** |
|
27 | - * $_autoloaders |
|
28 | - * @var array $_autoloaders |
|
29 | - * @access private |
|
30 | - */ |
|
31 | - private static $_autoloaders; |
|
32 | - |
|
33 | - /** |
|
34 | - * set to "paths" to display autoloader class => path mappings |
|
35 | - * set to "times" to display autoloader loading times |
|
36 | - * set to "all" to display both |
|
37 | - * |
|
38 | - * @var string $debug |
|
39 | - * @access private |
|
40 | - */ |
|
41 | - public static $debug = false; |
|
42 | - |
|
43 | - |
|
44 | - |
|
45 | - /** |
|
46 | - * class constructor |
|
47 | - * |
|
48 | - * @access private |
|
49 | - * @return \EEH_Autoloader |
|
50 | - */ |
|
51 | - private function __construct() |
|
52 | - { |
|
53 | - if (self::$_autoloaders === null) { |
|
54 | - self::$_autoloaders = array(); |
|
55 | - $this->_register_custom_autoloaders(); |
|
56 | - spl_autoload_register(array( $this, 'espresso_autoloader' )); |
|
57 | - } |
|
58 | - } |
|
59 | - |
|
60 | - |
|
61 | - |
|
62 | - /** |
|
63 | - * @access public |
|
64 | - * @return EEH_Autoloader |
|
65 | - */ |
|
66 | - public static function instance() |
|
67 | - { |
|
68 | - // check if class object is instantiated |
|
69 | - if (! self::$_instance instanceof EEH_Autoloader) { |
|
70 | - self::$_instance = new self(); |
|
71 | - } |
|
72 | - return self::$_instance; |
|
73 | - } |
|
74 | - |
|
75 | - |
|
76 | - |
|
77 | - /** |
|
78 | - * espresso_autoloader |
|
79 | - * |
|
80 | - * @access public |
|
81 | - * @param $class_name |
|
82 | - * @internal param $className |
|
83 | - * @internal param string $class_name - simple class name ie: session |
|
84 | - * @return void |
|
85 | - */ |
|
86 | - public static function espresso_autoloader($class_name) |
|
87 | - { |
|
88 | - if (isset(self::$_autoloaders[ $class_name ])) { |
|
89 | - require_once(self::$_autoloaders[ $class_name ]); |
|
90 | - } |
|
91 | - } |
|
92 | - |
|
93 | - |
|
94 | - |
|
95 | - /** |
|
96 | - * register_autoloader |
|
97 | - * |
|
98 | - * @access public |
|
99 | - * @param array | string $class_paths - array of key => value pairings between class names and paths |
|
100 | - * @param bool $read_check true if we need to check whether the file is readable or not. |
|
101 | - * @param bool $debug **deprecated** |
|
102 | - * @throws \EE_Error |
|
103 | - */ |
|
104 | - public static function register_autoloader($class_paths, $read_check = true, $debug = false) |
|
105 | - { |
|
106 | - $class_paths = is_array($class_paths) ? $class_paths : array( $class_paths ); |
|
107 | - foreach ($class_paths as $class => $path) { |
|
108 | - // skip all files that are not PHP |
|
109 | - if (substr($path, strlen($path) - 3) !== 'php') { |
|
110 | - continue; |
|
111 | - } |
|
112 | - // don't give up! you gotta... |
|
113 | - // get some class |
|
114 | - if (empty($class)) { |
|
115 | - throw new EE_Error(sprintf(__('No Class name was specified while registering an autoloader for the following path: %s.', 'event_espresso'), $path)); |
|
116 | - } |
|
117 | - // one day you will find the path young grasshopper |
|
118 | - if (empty($path)) { |
|
119 | - throw new EE_Error(sprintf(__('No path was specified while registering an autoloader for the %s class.', 'event_espresso'), $class)); |
|
120 | - } |
|
121 | - // is file readable ? |
|
122 | - if ($read_check && ! is_readable($path)) { |
|
123 | - throw new EE_Error(sprintf(__('The file for the %s class could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', 'event_espresso'), $class, $path)); |
|
124 | - } |
|
125 | - if (! isset(self::$_autoloaders[ $class ])) { |
|
126 | - self::$_autoloaders[ $class ] = str_replace(array( '/', '\\' ), DS, $path); |
|
127 | - if (EE_DEBUG && ( EEH_Autoloader::$debug === 'paths' || EEH_Autoloader::$debug === 'all' || $debug )) { |
|
128 | - EEH_Debug_Tools::printr(self::$_autoloaders[ $class ], $class, __FILE__, __LINE__); |
|
129 | - } |
|
130 | - } |
|
131 | - } |
|
132 | - } |
|
133 | - |
|
134 | - |
|
135 | - |
|
136 | - |
|
137 | - /** |
|
138 | - * get_autoloaders |
|
139 | - * |
|
140 | - * @access public |
|
141 | - * @return array |
|
142 | - */ |
|
143 | - public static function get_autoloaders() |
|
144 | - { |
|
145 | - return self::$_autoloaders; |
|
146 | - } |
|
147 | - |
|
148 | - |
|
149 | - |
|
150 | - |
|
151 | - /** |
|
152 | - * register core, model and class 'autoloaders' |
|
153 | - * |
|
154 | - * @access private |
|
155 | - * @return void |
|
156 | - */ |
|
157 | - private function _register_custom_autoloaders() |
|
158 | - { |
|
159 | - EEH_Autoloader::$debug = ''; |
|
160 | - \EEH_Autoloader::register_helpers_autoloaders(); |
|
161 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'interfaces'); |
|
162 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE); |
|
163 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_INTERFACES, true); |
|
164 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_MODELS, true); |
|
165 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CLASSES); |
|
166 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_FORM_SECTIONS, true); |
|
167 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'messages'); |
|
168 | - if (EEH_Autoloader::$debug === 'times' || EEH_Autoloader::$debug === 'all') { |
|
169 | - EEH_Debug_Tools::instance()->show_times(); |
|
170 | - } |
|
171 | - } |
|
172 | - |
|
173 | - |
|
174 | - |
|
175 | - /** |
|
176 | - * register core, model and class 'autoloaders' |
|
177 | - * |
|
178 | - * @access public |
|
179 | - */ |
|
180 | - public static function register_helpers_autoloaders() |
|
181 | - { |
|
182 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_HELPERS); |
|
183 | - } |
|
184 | - |
|
185 | - |
|
186 | - |
|
187 | - |
|
188 | - /** |
|
189 | - * register core, model and class 'autoloaders' |
|
190 | - * |
|
191 | - * @access public |
|
192 | - * @return void |
|
193 | - */ |
|
194 | - public static function register_form_sections_autoloaders() |
|
195 | - { |
|
196 | - // EEH_Autoloader::register_autoloaders_for_each_file_in_folder( EE_FORM_SECTIONS, true ); |
|
197 | - } |
|
198 | - |
|
199 | - |
|
200 | - |
|
201 | - |
|
202 | - /** |
|
203 | - * register core, model and class 'autoloaders' |
|
204 | - * |
|
205 | - * @access public |
|
206 | - * @return void |
|
207 | - */ |
|
208 | - public static function register_line_item_display_autoloaders() |
|
209 | - { |
|
210 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'line_item_display', true); |
|
211 | - } |
|
212 | - |
|
213 | - |
|
214 | - |
|
215 | - |
|
216 | - /** |
|
217 | - * register core, model and class 'autoloaders' |
|
218 | - * |
|
219 | - * @access public |
|
220 | - * @return void |
|
221 | - */ |
|
222 | - public static function register_line_item_filter_autoloaders() |
|
223 | - { |
|
224 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'line_item_filters', true); |
|
225 | - } |
|
226 | - |
|
227 | - |
|
228 | - |
|
229 | - |
|
230 | - /** |
|
231 | - * register template part 'autoloaders' |
|
232 | - * |
|
233 | - * @access public |
|
234 | - * @return void |
|
235 | - */ |
|
236 | - public static function register_template_part_autoloaders() |
|
237 | - { |
|
238 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'template_parts', true); |
|
239 | - } |
|
240 | - |
|
241 | - |
|
242 | - |
|
243 | - /** |
|
244 | - * Assumes all the files in this folder have the normal naming scheme (namely that their classname |
|
245 | - * is the file's name, plus ".whatever.php".) and adds each of them to the autoloader list. |
|
246 | - * If that's not the case, you'll need to improve this function or just use EEH_File::get_classname_from_filepath_with_standard_filename() directly. |
|
247 | - * Yes this has to scan the directory for files, but it only does it once -- not on EACH |
|
248 | - * time the autoloader is used |
|
249 | - * |
|
250 | - * @param string $folder name, with or without trailing /, doesn't matter |
|
251 | - * @param bool $recursive |
|
252 | - * @param bool $debug **deprecated** |
|
253 | - * @throws \EE_Error |
|
254 | - */ |
|
255 | - public static function register_autoloaders_for_each_file_in_folder($folder, $recursive = false, $debug = false) |
|
256 | - { |
|
257 | - if (EEH_Autoloader::$debug === 'times' || EEH_Autoloader::$debug === 'all' || $debug) { |
|
258 | - EEH_Debug_Tools::instance()->start_timer(basename($folder)); |
|
259 | - } |
|
260 | - // make sure last char is a / |
|
261 | - $folder .= $folder[ strlen($folder)-1 ] !== DS ? DS : ''; |
|
262 | - $class_to_filepath_map = array(); |
|
263 | - $exclude = array( 'index' ); |
|
264 | - // get all the files in that folder that end in php |
|
265 | - $filepaths = glob($folder.'*'); |
|
266 | - |
|
267 | - if (empty($filepaths)) { |
|
268 | - return; |
|
269 | - } |
|
270 | - |
|
271 | - foreach ($filepaths as $filepath) { |
|
272 | - if (substr($filepath, -4, 4) === '.php') { |
|
273 | - $class_name = EEH_File::get_classname_from_filepath_with_standard_filename($filepath); |
|
274 | - if (! in_array($class_name, $exclude)) { |
|
275 | - $class_to_filepath_map [ $class_name ] = $filepath; |
|
276 | - } |
|
277 | - } elseif ($recursive) { |
|
278 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder($filepath, $recursive, $debug); |
|
279 | - } |
|
280 | - } |
|
281 | - // we remove the necessity to do a is_readable() check via the $read_check flag because glob by nature will not return non_readable files/directories. |
|
282 | - self::register_autoloader($class_to_filepath_map, false, $debug); |
|
283 | - if (EEH_Autoloader::$debug === 'times' || EEH_Autoloader::$debug === 'all') { |
|
284 | - EEH_Debug_Tools::instance()->stop_timer(basename($folder)); |
|
285 | - } |
|
286 | - } |
|
287 | - |
|
288 | - |
|
289 | - |
|
290 | - /** |
|
291 | - * add_alias |
|
292 | - * register additional autoloader based on variation of the classname for an existing autoloader |
|
293 | - * |
|
294 | - * @access public |
|
295 | - * @param string $class_name - simple class name ie: EE_Session |
|
296 | - * @param string $alias - variation on class name ie: EE_session, session, etc |
|
297 | - */ |
|
298 | - public static function add_alias($class_name, $alias) |
|
299 | - { |
|
300 | - if (isset(self::$_autoloaders[ $class_name ])) { |
|
301 | - self::$_autoloaders[ $alias ] = self::$_autoloaders[ $class_name ]; |
|
302 | - } |
|
303 | - } |
|
18 | + /** |
|
19 | + * instance of the EE_System object |
|
20 | + * |
|
21 | + * @var $_instance |
|
22 | + * @access private |
|
23 | + */ |
|
24 | + private static $_instance = null; |
|
25 | + |
|
26 | + /** |
|
27 | + * $_autoloaders |
|
28 | + * @var array $_autoloaders |
|
29 | + * @access private |
|
30 | + */ |
|
31 | + private static $_autoloaders; |
|
32 | + |
|
33 | + /** |
|
34 | + * set to "paths" to display autoloader class => path mappings |
|
35 | + * set to "times" to display autoloader loading times |
|
36 | + * set to "all" to display both |
|
37 | + * |
|
38 | + * @var string $debug |
|
39 | + * @access private |
|
40 | + */ |
|
41 | + public static $debug = false; |
|
42 | + |
|
43 | + |
|
44 | + |
|
45 | + /** |
|
46 | + * class constructor |
|
47 | + * |
|
48 | + * @access private |
|
49 | + * @return \EEH_Autoloader |
|
50 | + */ |
|
51 | + private function __construct() |
|
52 | + { |
|
53 | + if (self::$_autoloaders === null) { |
|
54 | + self::$_autoloaders = array(); |
|
55 | + $this->_register_custom_autoloaders(); |
|
56 | + spl_autoload_register(array( $this, 'espresso_autoloader' )); |
|
57 | + } |
|
58 | + } |
|
59 | + |
|
60 | + |
|
61 | + |
|
62 | + /** |
|
63 | + * @access public |
|
64 | + * @return EEH_Autoloader |
|
65 | + */ |
|
66 | + public static function instance() |
|
67 | + { |
|
68 | + // check if class object is instantiated |
|
69 | + if (! self::$_instance instanceof EEH_Autoloader) { |
|
70 | + self::$_instance = new self(); |
|
71 | + } |
|
72 | + return self::$_instance; |
|
73 | + } |
|
74 | + |
|
75 | + |
|
76 | + |
|
77 | + /** |
|
78 | + * espresso_autoloader |
|
79 | + * |
|
80 | + * @access public |
|
81 | + * @param $class_name |
|
82 | + * @internal param $className |
|
83 | + * @internal param string $class_name - simple class name ie: session |
|
84 | + * @return void |
|
85 | + */ |
|
86 | + public static function espresso_autoloader($class_name) |
|
87 | + { |
|
88 | + if (isset(self::$_autoloaders[ $class_name ])) { |
|
89 | + require_once(self::$_autoloaders[ $class_name ]); |
|
90 | + } |
|
91 | + } |
|
92 | + |
|
93 | + |
|
94 | + |
|
95 | + /** |
|
96 | + * register_autoloader |
|
97 | + * |
|
98 | + * @access public |
|
99 | + * @param array | string $class_paths - array of key => value pairings between class names and paths |
|
100 | + * @param bool $read_check true if we need to check whether the file is readable or not. |
|
101 | + * @param bool $debug **deprecated** |
|
102 | + * @throws \EE_Error |
|
103 | + */ |
|
104 | + public static function register_autoloader($class_paths, $read_check = true, $debug = false) |
|
105 | + { |
|
106 | + $class_paths = is_array($class_paths) ? $class_paths : array( $class_paths ); |
|
107 | + foreach ($class_paths as $class => $path) { |
|
108 | + // skip all files that are not PHP |
|
109 | + if (substr($path, strlen($path) - 3) !== 'php') { |
|
110 | + continue; |
|
111 | + } |
|
112 | + // don't give up! you gotta... |
|
113 | + // get some class |
|
114 | + if (empty($class)) { |
|
115 | + throw new EE_Error(sprintf(__('No Class name was specified while registering an autoloader for the following path: %s.', 'event_espresso'), $path)); |
|
116 | + } |
|
117 | + // one day you will find the path young grasshopper |
|
118 | + if (empty($path)) { |
|
119 | + throw new EE_Error(sprintf(__('No path was specified while registering an autoloader for the %s class.', 'event_espresso'), $class)); |
|
120 | + } |
|
121 | + // is file readable ? |
|
122 | + if ($read_check && ! is_readable($path)) { |
|
123 | + throw new EE_Error(sprintf(__('The file for the %s class could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', 'event_espresso'), $class, $path)); |
|
124 | + } |
|
125 | + if (! isset(self::$_autoloaders[ $class ])) { |
|
126 | + self::$_autoloaders[ $class ] = str_replace(array( '/', '\\' ), DS, $path); |
|
127 | + if (EE_DEBUG && ( EEH_Autoloader::$debug === 'paths' || EEH_Autoloader::$debug === 'all' || $debug )) { |
|
128 | + EEH_Debug_Tools::printr(self::$_autoloaders[ $class ], $class, __FILE__, __LINE__); |
|
129 | + } |
|
130 | + } |
|
131 | + } |
|
132 | + } |
|
133 | + |
|
134 | + |
|
135 | + |
|
136 | + |
|
137 | + /** |
|
138 | + * get_autoloaders |
|
139 | + * |
|
140 | + * @access public |
|
141 | + * @return array |
|
142 | + */ |
|
143 | + public static function get_autoloaders() |
|
144 | + { |
|
145 | + return self::$_autoloaders; |
|
146 | + } |
|
147 | + |
|
148 | + |
|
149 | + |
|
150 | + |
|
151 | + /** |
|
152 | + * register core, model and class 'autoloaders' |
|
153 | + * |
|
154 | + * @access private |
|
155 | + * @return void |
|
156 | + */ |
|
157 | + private function _register_custom_autoloaders() |
|
158 | + { |
|
159 | + EEH_Autoloader::$debug = ''; |
|
160 | + \EEH_Autoloader::register_helpers_autoloaders(); |
|
161 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'interfaces'); |
|
162 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE); |
|
163 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_INTERFACES, true); |
|
164 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_MODELS, true); |
|
165 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CLASSES); |
|
166 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_FORM_SECTIONS, true); |
|
167 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'messages'); |
|
168 | + if (EEH_Autoloader::$debug === 'times' || EEH_Autoloader::$debug === 'all') { |
|
169 | + EEH_Debug_Tools::instance()->show_times(); |
|
170 | + } |
|
171 | + } |
|
172 | + |
|
173 | + |
|
174 | + |
|
175 | + /** |
|
176 | + * register core, model and class 'autoloaders' |
|
177 | + * |
|
178 | + * @access public |
|
179 | + */ |
|
180 | + public static function register_helpers_autoloaders() |
|
181 | + { |
|
182 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_HELPERS); |
|
183 | + } |
|
184 | + |
|
185 | + |
|
186 | + |
|
187 | + |
|
188 | + /** |
|
189 | + * register core, model and class 'autoloaders' |
|
190 | + * |
|
191 | + * @access public |
|
192 | + * @return void |
|
193 | + */ |
|
194 | + public static function register_form_sections_autoloaders() |
|
195 | + { |
|
196 | + // EEH_Autoloader::register_autoloaders_for_each_file_in_folder( EE_FORM_SECTIONS, true ); |
|
197 | + } |
|
198 | + |
|
199 | + |
|
200 | + |
|
201 | + |
|
202 | + /** |
|
203 | + * register core, model and class 'autoloaders' |
|
204 | + * |
|
205 | + * @access public |
|
206 | + * @return void |
|
207 | + */ |
|
208 | + public static function register_line_item_display_autoloaders() |
|
209 | + { |
|
210 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'line_item_display', true); |
|
211 | + } |
|
212 | + |
|
213 | + |
|
214 | + |
|
215 | + |
|
216 | + /** |
|
217 | + * register core, model and class 'autoloaders' |
|
218 | + * |
|
219 | + * @access public |
|
220 | + * @return void |
|
221 | + */ |
|
222 | + public static function register_line_item_filter_autoloaders() |
|
223 | + { |
|
224 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'line_item_filters', true); |
|
225 | + } |
|
226 | + |
|
227 | + |
|
228 | + |
|
229 | + |
|
230 | + /** |
|
231 | + * register template part 'autoloaders' |
|
232 | + * |
|
233 | + * @access public |
|
234 | + * @return void |
|
235 | + */ |
|
236 | + public static function register_template_part_autoloaders() |
|
237 | + { |
|
238 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'template_parts', true); |
|
239 | + } |
|
240 | + |
|
241 | + |
|
242 | + |
|
243 | + /** |
|
244 | + * Assumes all the files in this folder have the normal naming scheme (namely that their classname |
|
245 | + * is the file's name, plus ".whatever.php".) and adds each of them to the autoloader list. |
|
246 | + * If that's not the case, you'll need to improve this function or just use EEH_File::get_classname_from_filepath_with_standard_filename() directly. |
|
247 | + * Yes this has to scan the directory for files, but it only does it once -- not on EACH |
|
248 | + * time the autoloader is used |
|
249 | + * |
|
250 | + * @param string $folder name, with or without trailing /, doesn't matter |
|
251 | + * @param bool $recursive |
|
252 | + * @param bool $debug **deprecated** |
|
253 | + * @throws \EE_Error |
|
254 | + */ |
|
255 | + public static function register_autoloaders_for_each_file_in_folder($folder, $recursive = false, $debug = false) |
|
256 | + { |
|
257 | + if (EEH_Autoloader::$debug === 'times' || EEH_Autoloader::$debug === 'all' || $debug) { |
|
258 | + EEH_Debug_Tools::instance()->start_timer(basename($folder)); |
|
259 | + } |
|
260 | + // make sure last char is a / |
|
261 | + $folder .= $folder[ strlen($folder)-1 ] !== DS ? DS : ''; |
|
262 | + $class_to_filepath_map = array(); |
|
263 | + $exclude = array( 'index' ); |
|
264 | + // get all the files in that folder that end in php |
|
265 | + $filepaths = glob($folder.'*'); |
|
266 | + |
|
267 | + if (empty($filepaths)) { |
|
268 | + return; |
|
269 | + } |
|
270 | + |
|
271 | + foreach ($filepaths as $filepath) { |
|
272 | + if (substr($filepath, -4, 4) === '.php') { |
|
273 | + $class_name = EEH_File::get_classname_from_filepath_with_standard_filename($filepath); |
|
274 | + if (! in_array($class_name, $exclude)) { |
|
275 | + $class_to_filepath_map [ $class_name ] = $filepath; |
|
276 | + } |
|
277 | + } elseif ($recursive) { |
|
278 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder($filepath, $recursive, $debug); |
|
279 | + } |
|
280 | + } |
|
281 | + // we remove the necessity to do a is_readable() check via the $read_check flag because glob by nature will not return non_readable files/directories. |
|
282 | + self::register_autoloader($class_to_filepath_map, false, $debug); |
|
283 | + if (EEH_Autoloader::$debug === 'times' || EEH_Autoloader::$debug === 'all') { |
|
284 | + EEH_Debug_Tools::instance()->stop_timer(basename($folder)); |
|
285 | + } |
|
286 | + } |
|
287 | + |
|
288 | + |
|
289 | + |
|
290 | + /** |
|
291 | + * add_alias |
|
292 | + * register additional autoloader based on variation of the classname for an existing autoloader |
|
293 | + * |
|
294 | + * @access public |
|
295 | + * @param string $class_name - simple class name ie: EE_Session |
|
296 | + * @param string $alias - variation on class name ie: EE_session, session, etc |
|
297 | + */ |
|
298 | + public static function add_alias($class_name, $alias) |
|
299 | + { |
|
300 | + if (isset(self::$_autoloaders[ $class_name ])) { |
|
301 | + self::$_autoloaders[ $alias ] = self::$_autoloaders[ $class_name ]; |
|
302 | + } |
|
303 | + } |
|
304 | 304 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | if (self::$_autoloaders === null) { |
54 | 54 | self::$_autoloaders = array(); |
55 | 55 | $this->_register_custom_autoloaders(); |
56 | - spl_autoload_register(array( $this, 'espresso_autoloader' )); |
|
56 | + spl_autoload_register(array($this, 'espresso_autoloader')); |
|
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public static function instance() |
67 | 67 | { |
68 | 68 | // check if class object is instantiated |
69 | - if (! self::$_instance instanceof EEH_Autoloader) { |
|
69 | + if ( ! self::$_instance instanceof EEH_Autoloader) { |
|
70 | 70 | self::$_instance = new self(); |
71 | 71 | } |
72 | 72 | return self::$_instance; |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | */ |
86 | 86 | public static function espresso_autoloader($class_name) |
87 | 87 | { |
88 | - if (isset(self::$_autoloaders[ $class_name ])) { |
|
89 | - require_once(self::$_autoloaders[ $class_name ]); |
|
88 | + if (isset(self::$_autoloaders[$class_name])) { |
|
89 | + require_once(self::$_autoloaders[$class_name]); |
|
90 | 90 | } |
91 | 91 | } |
92 | 92 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public static function register_autoloader($class_paths, $read_check = true, $debug = false) |
105 | 105 | { |
106 | - $class_paths = is_array($class_paths) ? $class_paths : array( $class_paths ); |
|
106 | + $class_paths = is_array($class_paths) ? $class_paths : array($class_paths); |
|
107 | 107 | foreach ($class_paths as $class => $path) { |
108 | 108 | // skip all files that are not PHP |
109 | 109 | if (substr($path, strlen($path) - 3) !== 'php') { |
@@ -122,10 +122,10 @@ discard block |
||
122 | 122 | if ($read_check && ! is_readable($path)) { |
123 | 123 | throw new EE_Error(sprintf(__('The file for the %s class could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', 'event_espresso'), $class, $path)); |
124 | 124 | } |
125 | - if (! isset(self::$_autoloaders[ $class ])) { |
|
126 | - self::$_autoloaders[ $class ] = str_replace(array( '/', '\\' ), DS, $path); |
|
127 | - if (EE_DEBUG && ( EEH_Autoloader::$debug === 'paths' || EEH_Autoloader::$debug === 'all' || $debug )) { |
|
128 | - EEH_Debug_Tools::printr(self::$_autoloaders[ $class ], $class, __FILE__, __LINE__); |
|
125 | + if ( ! isset(self::$_autoloaders[$class])) { |
|
126 | + self::$_autoloaders[$class] = str_replace(array('/', '\\'), DS, $path); |
|
127 | + if (EE_DEBUG && (EEH_Autoloader::$debug === 'paths' || EEH_Autoloader::$debug === 'all' || $debug)) { |
|
128 | + EEH_Debug_Tools::printr(self::$_autoloaders[$class], $class, __FILE__, __LINE__); |
|
129 | 129 | } |
130 | 130 | } |
131 | 131 | } |
@@ -158,13 +158,13 @@ discard block |
||
158 | 158 | { |
159 | 159 | EEH_Autoloader::$debug = ''; |
160 | 160 | \EEH_Autoloader::register_helpers_autoloaders(); |
161 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'interfaces'); |
|
161 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE.'interfaces'); |
|
162 | 162 | EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE); |
163 | 163 | EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_INTERFACES, true); |
164 | 164 | EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_MODELS, true); |
165 | 165 | EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CLASSES); |
166 | 166 | EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_FORM_SECTIONS, true); |
167 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'messages'); |
|
167 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES.'messages'); |
|
168 | 168 | if (EEH_Autoloader::$debug === 'times' || EEH_Autoloader::$debug === 'all') { |
169 | 169 | EEH_Debug_Tools::instance()->show_times(); |
170 | 170 | } |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | */ |
208 | 208 | public static function register_line_item_display_autoloaders() |
209 | 209 | { |
210 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'line_item_display', true); |
|
210 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES.'line_item_display', true); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | */ |
222 | 222 | public static function register_line_item_filter_autoloaders() |
223 | 223 | { |
224 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'line_item_filters', true); |
|
224 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES.'line_item_filters', true); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | */ |
236 | 236 | public static function register_template_part_autoloaders() |
237 | 237 | { |
238 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'template_parts', true); |
|
238 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_LIBRARIES.'template_parts', true); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | |
@@ -258,9 +258,9 @@ discard block |
||
258 | 258 | EEH_Debug_Tools::instance()->start_timer(basename($folder)); |
259 | 259 | } |
260 | 260 | // make sure last char is a / |
261 | - $folder .= $folder[ strlen($folder)-1 ] !== DS ? DS : ''; |
|
261 | + $folder .= $folder[strlen($folder) - 1] !== DS ? DS : ''; |
|
262 | 262 | $class_to_filepath_map = array(); |
263 | - $exclude = array( 'index' ); |
|
263 | + $exclude = array('index'); |
|
264 | 264 | // get all the files in that folder that end in php |
265 | 265 | $filepaths = glob($folder.'*'); |
266 | 266 | |
@@ -271,8 +271,8 @@ discard block |
||
271 | 271 | foreach ($filepaths as $filepath) { |
272 | 272 | if (substr($filepath, -4, 4) === '.php') { |
273 | 273 | $class_name = EEH_File::get_classname_from_filepath_with_standard_filename($filepath); |
274 | - if (! in_array($class_name, $exclude)) { |
|
275 | - $class_to_filepath_map [ $class_name ] = $filepath; |
|
274 | + if ( ! in_array($class_name, $exclude)) { |
|
275 | + $class_to_filepath_map [$class_name] = $filepath; |
|
276 | 276 | } |
277 | 277 | } elseif ($recursive) { |
278 | 278 | EEH_Autoloader::register_autoloaders_for_each_file_in_folder($filepath, $recursive, $debug); |
@@ -297,8 +297,8 @@ discard block |
||
297 | 297 | */ |
298 | 298 | public static function add_alias($class_name, $alias) |
299 | 299 | { |
300 | - if (isset(self::$_autoloaders[ $class_name ])) { |
|
301 | - self::$_autoloaders[ $alias ] = self::$_autoloaders[ $class_name ]; |
|
300 | + if (isset(self::$_autoloaders[$class_name])) { |
|
301 | + self::$_autoloaders[$alias] = self::$_autoloaders[$class_name]; |
|
302 | 302 | } |
303 | 303 | } |
304 | 304 | } |
@@ -12,121 +12,121 @@ |
||
12 | 12 | class EE_Register_Model_Extensions implements EEI_Plugin_API |
13 | 13 | { |
14 | 14 | |
15 | - protected static $_registry; |
|
16 | - protected static $_extensions = array(); |
|
15 | + protected static $_registry; |
|
16 | + protected static $_extensions = array(); |
|
17 | 17 | |
18 | - /** |
|
19 | - * register method for setting up model extensions |
|
20 | - * |
|
21 | - * @param string $model_id unique id for the extensions being setup |
|
22 | - * @param array $config { |
|
23 | - * @throws EE_Error |
|
24 | - * @type array $model_extension_paths array of folders containing DB model extensions, where each file follows |
|
25 | - * the models naming convention, which is: EEME_{your_plugin_slug}_model_name_extended}.model_ext.php. Where |
|
26 | - * your_plugin_slug} is really anything you want (but something having to do with your addon, like |
|
27 | - * 'Calendar' or '3D_View') and model_name_extended} is the model extended. The class contained in teh file |
|
28 | - * should extend EEME_Base_{model_name_extended}.model_ext.php. Where {your_plugin_slug} is really anything |
|
29 | - * you want (but something having to do with your addon, like 'Calendar' or '3D_View') and |
|
30 | - * {model_name_extended} is the model extended. The class contained in teh file should extend EEME_Base |
|
31 | - * @type array $class_extension_paths array of folders containing DB class extensions, where each file follows |
|
32 | - * the model class extension naming convention, which is: |
|
33 | - * EEE_{your_plugin_slug}_model_name_extended}.class_ext.php. Where your_plugin_slug} is something like |
|
34 | - * 'Calendar','MailChimp',etc, and model_name_extended} is the name of the model extended, eg |
|
35 | - * 'Attendee','Event',etc. The class contained in the file should extend |
|
36 | - * EEE_Base_Class._{model_name_extended}.class_ext.php. Where {your_plugin_slug} is something like |
|
37 | - * 'Calendar','MailChimp',etc, and {model_name_extended} is the name of the model extended, eg |
|
38 | - * 'Attendee','Event',etc. The class contained in the file should extend EEE_Base_Class. |
|
39 | - * } |
|
40 | - * |
|
41 | - * @return void |
|
42 | - */ |
|
43 | - public static function register($model_id = null, $config = array()) |
|
44 | - { |
|
45 | - // required fields MUST be present, so let's make sure they are. |
|
46 | - if (empty($model_id) |
|
47 | - || ! is_array($config) |
|
48 | - || (empty($config['model_extension_paths']) && empty($config['class_extension_paths'])) |
|
49 | - ) { |
|
50 | - throw new EE_Error( |
|
51 | - __( |
|
52 | - 'In order to register Model extensions with EE_Register_Model_Extensions::register(), you must include a "model_id" (a unique identifier for this set of models), and an array containing the following keys: "model_extension_paths" (an array of full server paths to folders that contain model extensions), and "class_extension_paths" (an array of full server paths to folders that contain class extensions)', |
|
53 | - 'event_espresso' |
|
54 | - ) |
|
55 | - ); |
|
56 | - } |
|
18 | + /** |
|
19 | + * register method for setting up model extensions |
|
20 | + * |
|
21 | + * @param string $model_id unique id for the extensions being setup |
|
22 | + * @param array $config { |
|
23 | + * @throws EE_Error |
|
24 | + * @type array $model_extension_paths array of folders containing DB model extensions, where each file follows |
|
25 | + * the models naming convention, which is: EEME_{your_plugin_slug}_model_name_extended}.model_ext.php. Where |
|
26 | + * your_plugin_slug} is really anything you want (but something having to do with your addon, like |
|
27 | + * 'Calendar' or '3D_View') and model_name_extended} is the model extended. The class contained in teh file |
|
28 | + * should extend EEME_Base_{model_name_extended}.model_ext.php. Where {your_plugin_slug} is really anything |
|
29 | + * you want (but something having to do with your addon, like 'Calendar' or '3D_View') and |
|
30 | + * {model_name_extended} is the model extended. The class contained in teh file should extend EEME_Base |
|
31 | + * @type array $class_extension_paths array of folders containing DB class extensions, where each file follows |
|
32 | + * the model class extension naming convention, which is: |
|
33 | + * EEE_{your_plugin_slug}_model_name_extended}.class_ext.php. Where your_plugin_slug} is something like |
|
34 | + * 'Calendar','MailChimp',etc, and model_name_extended} is the name of the model extended, eg |
|
35 | + * 'Attendee','Event',etc. The class contained in the file should extend |
|
36 | + * EEE_Base_Class._{model_name_extended}.class_ext.php. Where {your_plugin_slug} is something like |
|
37 | + * 'Calendar','MailChimp',etc, and {model_name_extended} is the name of the model extended, eg |
|
38 | + * 'Attendee','Event',etc. The class contained in the file should extend EEE_Base_Class. |
|
39 | + * } |
|
40 | + * |
|
41 | + * @return void |
|
42 | + */ |
|
43 | + public static function register($model_id = null, $config = array()) |
|
44 | + { |
|
45 | + // required fields MUST be present, so let's make sure they are. |
|
46 | + if (empty($model_id) |
|
47 | + || ! is_array($config) |
|
48 | + || (empty($config['model_extension_paths']) && empty($config['class_extension_paths'])) |
|
49 | + ) { |
|
50 | + throw new EE_Error( |
|
51 | + __( |
|
52 | + 'In order to register Model extensions with EE_Register_Model_Extensions::register(), you must include a "model_id" (a unique identifier for this set of models), and an array containing the following keys: "model_extension_paths" (an array of full server paths to folders that contain model extensions), and "class_extension_paths" (an array of full server paths to folders that contain class extensions)', |
|
53 | + 'event_espresso' |
|
54 | + ) |
|
55 | + ); |
|
56 | + } |
|
57 | 57 | |
58 | - // make sure we don't register twice |
|
59 | - if (isset(self::$_registry[ $model_id ])) { |
|
60 | - return; |
|
61 | - } |
|
62 | - // check correct loading |
|
63 | - if (! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_Admin__loaded')) { |
|
64 | - EE_Error::doing_it_wrong( |
|
65 | - __METHOD__, |
|
66 | - sprintf( |
|
67 | - __( |
|
68 | - 'An attempt was made to register "%1$s" as a Model extension has failed because it was not registered at the correct time. Please use the "AHEE__EE_System__load_espresso_addons" hook to register models.%2$s Hook Status: %2$s "AHEE__EE_System__load_espresso_addons" : %3$s %2$s "AHEE__EE_Admin__loaded" : %4$s%2$s', |
|
69 | - 'event_espresso' |
|
70 | - ), |
|
71 | - $model_id, |
|
72 | - '<br />', |
|
73 | - did_action('AHEE__EE_System__load_espresso_addons') ? 'action done' : 'action NOT done', |
|
74 | - did_action('AHEE__EE_Admin__loaded') ? 'action done' : 'action NOT done' |
|
75 | - ), |
|
76 | - '4.3' |
|
77 | - ); |
|
78 | - } |
|
58 | + // make sure we don't register twice |
|
59 | + if (isset(self::$_registry[ $model_id ])) { |
|
60 | + return; |
|
61 | + } |
|
62 | + // check correct loading |
|
63 | + if (! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_Admin__loaded')) { |
|
64 | + EE_Error::doing_it_wrong( |
|
65 | + __METHOD__, |
|
66 | + sprintf( |
|
67 | + __( |
|
68 | + 'An attempt was made to register "%1$s" as a Model extension has failed because it was not registered at the correct time. Please use the "AHEE__EE_System__load_espresso_addons" hook to register models.%2$s Hook Status: %2$s "AHEE__EE_System__load_espresso_addons" : %3$s %2$s "AHEE__EE_Admin__loaded" : %4$s%2$s', |
|
69 | + 'event_espresso' |
|
70 | + ), |
|
71 | + $model_id, |
|
72 | + '<br />', |
|
73 | + did_action('AHEE__EE_System__load_espresso_addons') ? 'action done' : 'action NOT done', |
|
74 | + did_action('AHEE__EE_Admin__loaded') ? 'action done' : 'action NOT done' |
|
75 | + ), |
|
76 | + '4.3' |
|
77 | + ); |
|
78 | + } |
|
79 | 79 | |
80 | - self::$_registry[ $model_id ] = $config; |
|
81 | - self::$_extensions[ $model_id ] = array(); |
|
80 | + self::$_registry[ $model_id ] = $config; |
|
81 | + self::$_extensions[ $model_id ] = array(); |
|
82 | 82 | |
83 | - if (isset($config['model_extension_paths'])) { |
|
84 | - require_once(EE_LIBRARIES . 'plugin_api/db/EEME_Base.lib.php'); |
|
85 | - $class_to_filepath_map = EEH_File::get_contents_of_folders($config['model_extension_paths']); |
|
86 | - // remove all files that are not PHP |
|
87 | - foreach ($class_to_filepath_map as $class => $path) { |
|
88 | - if (substr($path, strlen($path) - 3) !== 'php') { |
|
89 | - unset($class_to_filepath_map[ $class ]); |
|
90 | - continue; |
|
91 | - } |
|
92 | - } |
|
93 | - EEH_Autoloader::register_autoloader($class_to_filepath_map); |
|
94 | - foreach (array_keys($class_to_filepath_map) as $classname) { |
|
95 | - self::$_extensions[ $model_id ]['models'][ $classname ] = new $classname; |
|
96 | - } |
|
97 | - unset($config['model_extension_paths']); |
|
98 | - } |
|
99 | - if (isset($config['class_extension_paths'])) { |
|
100 | - require_once(EE_LIBRARIES . 'plugin_api/db/EEE_Base_Class.lib.php'); |
|
101 | - $class_to_filepath_map = EEH_File::get_contents_of_folders($config['class_extension_paths']); |
|
102 | - EEH_Autoloader::register_autoloader($class_to_filepath_map); |
|
103 | - foreach (array_keys($class_to_filepath_map) as $classname) { |
|
104 | - self::$_extensions[ $model_id ]['classes'][ $classname ] = new $classname; |
|
105 | - } |
|
106 | - unset($config['class_extension_paths']); |
|
107 | - } |
|
108 | - foreach ($config as $unknown_key => $unknown_config) { |
|
109 | - throw new EE_Error( |
|
110 | - sprintf(__("The key '%s' is not a known key for registering a model", "event_espresso"), $unknown_key) |
|
111 | - ); |
|
112 | - } |
|
113 | - } |
|
83 | + if (isset($config['model_extension_paths'])) { |
|
84 | + require_once(EE_LIBRARIES . 'plugin_api/db/EEME_Base.lib.php'); |
|
85 | + $class_to_filepath_map = EEH_File::get_contents_of_folders($config['model_extension_paths']); |
|
86 | + // remove all files that are not PHP |
|
87 | + foreach ($class_to_filepath_map as $class => $path) { |
|
88 | + if (substr($path, strlen($path) - 3) !== 'php') { |
|
89 | + unset($class_to_filepath_map[ $class ]); |
|
90 | + continue; |
|
91 | + } |
|
92 | + } |
|
93 | + EEH_Autoloader::register_autoloader($class_to_filepath_map); |
|
94 | + foreach (array_keys($class_to_filepath_map) as $classname) { |
|
95 | + self::$_extensions[ $model_id ]['models'][ $classname ] = new $classname; |
|
96 | + } |
|
97 | + unset($config['model_extension_paths']); |
|
98 | + } |
|
99 | + if (isset($config['class_extension_paths'])) { |
|
100 | + require_once(EE_LIBRARIES . 'plugin_api/db/EEE_Base_Class.lib.php'); |
|
101 | + $class_to_filepath_map = EEH_File::get_contents_of_folders($config['class_extension_paths']); |
|
102 | + EEH_Autoloader::register_autoloader($class_to_filepath_map); |
|
103 | + foreach (array_keys($class_to_filepath_map) as $classname) { |
|
104 | + self::$_extensions[ $model_id ]['classes'][ $classname ] = new $classname; |
|
105 | + } |
|
106 | + unset($config['class_extension_paths']); |
|
107 | + } |
|
108 | + foreach ($config as $unknown_key => $unknown_config) { |
|
109 | + throw new EE_Error( |
|
110 | + sprintf(__("The key '%s' is not a known key for registering a model", "event_espresso"), $unknown_key) |
|
111 | + ); |
|
112 | + } |
|
113 | + } |
|
114 | 114 | |
115 | 115 | |
116 | - /** |
|
117 | - * deregister |
|
118 | - * |
|
119 | - * @param string $model_id |
|
120 | - */ |
|
121 | - public static function deregister($model_id = null) |
|
122 | - { |
|
123 | - if (isset(self::$_registry[ $model_id ])) { |
|
124 | - unset(self::$_registry[ $model_id ]); |
|
125 | - foreach (self::$_extensions[ $model_id ] as $extension_of_type) { |
|
126 | - foreach ($extension_of_type as $extension) { |
|
127 | - $extension->deregister(); |
|
128 | - } |
|
129 | - } |
|
130 | - } |
|
131 | - } |
|
116 | + /** |
|
117 | + * deregister |
|
118 | + * |
|
119 | + * @param string $model_id |
|
120 | + */ |
|
121 | + public static function deregister($model_id = null) |
|
122 | + { |
|
123 | + if (isset(self::$_registry[ $model_id ])) { |
|
124 | + unset(self::$_registry[ $model_id ]); |
|
125 | + foreach (self::$_extensions[ $model_id ] as $extension_of_type) { |
|
126 | + foreach ($extension_of_type as $extension) { |
|
127 | + $extension->deregister(); |
|
128 | + } |
|
129 | + } |
|
130 | + } |
|
131 | + } |
|
132 | 132 | } |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | // make sure we don't register twice |
59 | - if (isset(self::$_registry[ $model_id ])) { |
|
59 | + if (isset(self::$_registry[$model_id])) { |
|
60 | 60 | return; |
61 | 61 | } |
62 | 62 | // check correct loading |
63 | - if (! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_Admin__loaded')) { |
|
63 | + if ( ! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_Admin__loaded')) { |
|
64 | 64 | EE_Error::doing_it_wrong( |
65 | 65 | __METHOD__, |
66 | 66 | sprintf( |
@@ -77,31 +77,31 @@ discard block |
||
77 | 77 | ); |
78 | 78 | } |
79 | 79 | |
80 | - self::$_registry[ $model_id ] = $config; |
|
81 | - self::$_extensions[ $model_id ] = array(); |
|
80 | + self::$_registry[$model_id] = $config; |
|
81 | + self::$_extensions[$model_id] = array(); |
|
82 | 82 | |
83 | 83 | if (isset($config['model_extension_paths'])) { |
84 | - require_once(EE_LIBRARIES . 'plugin_api/db/EEME_Base.lib.php'); |
|
84 | + require_once(EE_LIBRARIES.'plugin_api/db/EEME_Base.lib.php'); |
|
85 | 85 | $class_to_filepath_map = EEH_File::get_contents_of_folders($config['model_extension_paths']); |
86 | 86 | // remove all files that are not PHP |
87 | 87 | foreach ($class_to_filepath_map as $class => $path) { |
88 | 88 | if (substr($path, strlen($path) - 3) !== 'php') { |
89 | - unset($class_to_filepath_map[ $class ]); |
|
89 | + unset($class_to_filepath_map[$class]); |
|
90 | 90 | continue; |
91 | 91 | } |
92 | 92 | } |
93 | 93 | EEH_Autoloader::register_autoloader($class_to_filepath_map); |
94 | 94 | foreach (array_keys($class_to_filepath_map) as $classname) { |
95 | - self::$_extensions[ $model_id ]['models'][ $classname ] = new $classname; |
|
95 | + self::$_extensions[$model_id]['models'][$classname] = new $classname; |
|
96 | 96 | } |
97 | 97 | unset($config['model_extension_paths']); |
98 | 98 | } |
99 | 99 | if (isset($config['class_extension_paths'])) { |
100 | - require_once(EE_LIBRARIES . 'plugin_api/db/EEE_Base_Class.lib.php'); |
|
100 | + require_once(EE_LIBRARIES.'plugin_api/db/EEE_Base_Class.lib.php'); |
|
101 | 101 | $class_to_filepath_map = EEH_File::get_contents_of_folders($config['class_extension_paths']); |
102 | 102 | EEH_Autoloader::register_autoloader($class_to_filepath_map); |
103 | 103 | foreach (array_keys($class_to_filepath_map) as $classname) { |
104 | - self::$_extensions[ $model_id ]['classes'][ $classname ] = new $classname; |
|
104 | + self::$_extensions[$model_id]['classes'][$classname] = new $classname; |
|
105 | 105 | } |
106 | 106 | unset($config['class_extension_paths']); |
107 | 107 | } |
@@ -120,9 +120,9 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public static function deregister($model_id = null) |
122 | 122 | { |
123 | - if (isset(self::$_registry[ $model_id ])) { |
|
124 | - unset(self::$_registry[ $model_id ]); |
|
125 | - foreach (self::$_extensions[ $model_id ] as $extension_of_type) { |
|
123 | + if (isset(self::$_registry[$model_id])) { |
|
124 | + unset(self::$_registry[$model_id]); |
|
125 | + foreach (self::$_extensions[$model_id] as $extension_of_type) { |
|
126 | 126 | foreach ($extension_of_type as $extension) { |
127 | 127 | $extension->deregister(); |
128 | 128 | } |
@@ -17,189 +17,189 @@ |
||
17 | 17 | class EE_Select_Ajax_Model_Rest_Input extends EE_Form_Input_With_Options_Base |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * @var string $_model_name |
|
22 | - */ |
|
23 | - protected $_model_name; |
|
20 | + /** |
|
21 | + * @var string $_model_name |
|
22 | + */ |
|
23 | + protected $_model_name; |
|
24 | 24 | |
25 | - /** |
|
26 | - * @var string $_display_field_name |
|
27 | - */ |
|
28 | - protected $_display_field_name; |
|
25 | + /** |
|
26 | + * @var string $_display_field_name |
|
27 | + */ |
|
28 | + protected $_display_field_name; |
|
29 | 29 | |
30 | - /** |
|
31 | - * @var string $_value_field_name |
|
32 | - */ |
|
33 | - protected $_value_field_name; |
|
30 | + /** |
|
31 | + * @var string $_value_field_name |
|
32 | + */ |
|
33 | + protected $_value_field_name; |
|
34 | 34 | |
35 | - /** |
|
36 | - * @var array $_extra_select_columns |
|
37 | - */ |
|
38 | - protected $_extra_select_columns = array(); |
|
35 | + /** |
|
36 | + * @var array $_extra_select_columns |
|
37 | + */ |
|
38 | + protected $_extra_select_columns = array(); |
|
39 | 39 | |
40 | 40 | |
41 | - /** |
|
42 | - * @param array $input_settings { |
|
43 | - * @type string $model_name the name of model to be used for searching, both via the REST API and server-side model queries |
|
44 | - * @type array $query_params default query parameters which will apply to both REST API queries and server-side queries. This should be |
|
45 | - * in the exact format that will be used for server-side model usage (eg use index 0 for where conditions, not |
|
46 | - * the string "where") |
|
47 | - * @type string $value_field_name the name of the model field on this model to |
|
48 | - * be used for the HTML select's option's values |
|
49 | - * @type string $display_field_name the name of the model field on this model |
|
50 | - * to be used for the HTML select's option's display text |
|
51 | - * @type array $select2_args arguments to be passed directly into the select2's JS constructor |
|
52 | - * } |
|
53 | - * And the arguments accepted by EE_Form_Input_With_Options_Base |
|
54 | - * } |
|
55 | - * @throws EE_Error |
|
56 | - * @throws InvalidArgumentException |
|
57 | - * @throws InvalidDataTypeException |
|
58 | - * @throws InvalidInterfaceException |
|
59 | - */ |
|
60 | - public function __construct($input_settings = array()) |
|
61 | - { |
|
62 | - // needed input settings: |
|
63 | - // select2_args |
|
64 | - $this->_model_name = EEH_Array::is_set( |
|
65 | - $input_settings, |
|
66 | - 'model_name', |
|
67 | - null |
|
68 | - ); |
|
69 | - $model = $this->_get_model(); |
|
70 | - $query_params = EEH_Array::is_set( |
|
71 | - $input_settings, |
|
72 | - 'query_params', |
|
73 | - array() |
|
74 | - ); |
|
75 | - // make sure limit and caps are always set |
|
76 | - $query_params = array_merge( |
|
77 | - array( 'limit' => 10, 'caps' => EEM_Base::caps_read_admin ), |
|
78 | - $query_params |
|
79 | - ); |
|
80 | - $this->_value_field_name = EEH_Array::is_set( |
|
81 | - $input_settings, |
|
82 | - 'value_field_name', |
|
83 | - $model->primary_key_name() |
|
84 | - ); |
|
85 | - $this->_display_field_name = EEH_Array::is_set( |
|
86 | - $input_settings, |
|
87 | - 'display_field_name', |
|
88 | - $model->get_a_field_of_type('EE_Text_Field_Base')->get_name() |
|
89 | - ); |
|
90 | - $this->_extra_select_columns = EEH_Array::is_set( |
|
91 | - $input_settings, |
|
92 | - 'extra_select_columns', |
|
93 | - array() |
|
94 | - ); |
|
95 | - $this->_add_validation_strategy( |
|
96 | - new EE_Model_Matching_Query_Validation_Strategy( |
|
97 | - '', |
|
98 | - $this->_model_name, |
|
99 | - $query_params, |
|
100 | - $this->_value_field_name |
|
101 | - ) |
|
102 | - ); |
|
103 | - // get resource endpoint |
|
104 | - $rest_controller = LoaderFactory::getLoader()->getNew( |
|
105 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read' |
|
106 | - ); |
|
107 | - $rest_controller->setRequestedVersion(EED_Core_Rest_Api::latest_rest_api_version()); |
|
108 | - $default_select2_args = array( |
|
109 | - 'ajax' => array( |
|
110 | - 'url' => $rest_controller->getVersionedLinkTo( |
|
111 | - EEH_Inflector::pluralize_and_lower($this->_model_name) |
|
112 | - ), |
|
113 | - 'dataType' => 'json', |
|
114 | - 'delay' => '250', |
|
115 | - 'data_interface' => 'EE_Select2_REST_API_Interface', |
|
116 | - 'data_interface_args' => array( |
|
117 | - 'default_query_params' => (object) ModelDataTranslator::prepareQueryParamsForRestApi( |
|
118 | - $query_params, |
|
119 | - $model |
|
120 | - ), |
|
121 | - 'display_field' => $this->_display_field_name, |
|
122 | - 'value_field' => $this->_value_field_name, |
|
123 | - 'nonce' => wp_create_nonce('wp_rest'), |
|
124 | - 'locale' => str_replace('_', '-', strtolower(get_locale())) |
|
125 | - ), |
|
126 | - ), |
|
127 | - 'cache' => true, |
|
128 | - 'width' => 'resolve' |
|
129 | - ); |
|
130 | - $select2_args = array_replace_recursive( |
|
131 | - $default_select2_args, |
|
132 | - (array) EEH_Array::is_set($input_settings, 'select2_args', array()) |
|
133 | - ); |
|
134 | - $this->set_display_strategy(new EE_Select2_Display_Strategy($select2_args)); |
|
135 | - parent::__construct(array(), $input_settings); |
|
136 | - } |
|
41 | + /** |
|
42 | + * @param array $input_settings { |
|
43 | + * @type string $model_name the name of model to be used for searching, both via the REST API and server-side model queries |
|
44 | + * @type array $query_params default query parameters which will apply to both REST API queries and server-side queries. This should be |
|
45 | + * in the exact format that will be used for server-side model usage (eg use index 0 for where conditions, not |
|
46 | + * the string "where") |
|
47 | + * @type string $value_field_name the name of the model field on this model to |
|
48 | + * be used for the HTML select's option's values |
|
49 | + * @type string $display_field_name the name of the model field on this model |
|
50 | + * to be used for the HTML select's option's display text |
|
51 | + * @type array $select2_args arguments to be passed directly into the select2's JS constructor |
|
52 | + * } |
|
53 | + * And the arguments accepted by EE_Form_Input_With_Options_Base |
|
54 | + * } |
|
55 | + * @throws EE_Error |
|
56 | + * @throws InvalidArgumentException |
|
57 | + * @throws InvalidDataTypeException |
|
58 | + * @throws InvalidInterfaceException |
|
59 | + */ |
|
60 | + public function __construct($input_settings = array()) |
|
61 | + { |
|
62 | + // needed input settings: |
|
63 | + // select2_args |
|
64 | + $this->_model_name = EEH_Array::is_set( |
|
65 | + $input_settings, |
|
66 | + 'model_name', |
|
67 | + null |
|
68 | + ); |
|
69 | + $model = $this->_get_model(); |
|
70 | + $query_params = EEH_Array::is_set( |
|
71 | + $input_settings, |
|
72 | + 'query_params', |
|
73 | + array() |
|
74 | + ); |
|
75 | + // make sure limit and caps are always set |
|
76 | + $query_params = array_merge( |
|
77 | + array( 'limit' => 10, 'caps' => EEM_Base::caps_read_admin ), |
|
78 | + $query_params |
|
79 | + ); |
|
80 | + $this->_value_field_name = EEH_Array::is_set( |
|
81 | + $input_settings, |
|
82 | + 'value_field_name', |
|
83 | + $model->primary_key_name() |
|
84 | + ); |
|
85 | + $this->_display_field_name = EEH_Array::is_set( |
|
86 | + $input_settings, |
|
87 | + 'display_field_name', |
|
88 | + $model->get_a_field_of_type('EE_Text_Field_Base')->get_name() |
|
89 | + ); |
|
90 | + $this->_extra_select_columns = EEH_Array::is_set( |
|
91 | + $input_settings, |
|
92 | + 'extra_select_columns', |
|
93 | + array() |
|
94 | + ); |
|
95 | + $this->_add_validation_strategy( |
|
96 | + new EE_Model_Matching_Query_Validation_Strategy( |
|
97 | + '', |
|
98 | + $this->_model_name, |
|
99 | + $query_params, |
|
100 | + $this->_value_field_name |
|
101 | + ) |
|
102 | + ); |
|
103 | + // get resource endpoint |
|
104 | + $rest_controller = LoaderFactory::getLoader()->getNew( |
|
105 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read' |
|
106 | + ); |
|
107 | + $rest_controller->setRequestedVersion(EED_Core_Rest_Api::latest_rest_api_version()); |
|
108 | + $default_select2_args = array( |
|
109 | + 'ajax' => array( |
|
110 | + 'url' => $rest_controller->getVersionedLinkTo( |
|
111 | + EEH_Inflector::pluralize_and_lower($this->_model_name) |
|
112 | + ), |
|
113 | + 'dataType' => 'json', |
|
114 | + 'delay' => '250', |
|
115 | + 'data_interface' => 'EE_Select2_REST_API_Interface', |
|
116 | + 'data_interface_args' => array( |
|
117 | + 'default_query_params' => (object) ModelDataTranslator::prepareQueryParamsForRestApi( |
|
118 | + $query_params, |
|
119 | + $model |
|
120 | + ), |
|
121 | + 'display_field' => $this->_display_field_name, |
|
122 | + 'value_field' => $this->_value_field_name, |
|
123 | + 'nonce' => wp_create_nonce('wp_rest'), |
|
124 | + 'locale' => str_replace('_', '-', strtolower(get_locale())) |
|
125 | + ), |
|
126 | + ), |
|
127 | + 'cache' => true, |
|
128 | + 'width' => 'resolve' |
|
129 | + ); |
|
130 | + $select2_args = array_replace_recursive( |
|
131 | + $default_select2_args, |
|
132 | + (array) EEH_Array::is_set($input_settings, 'select2_args', array()) |
|
133 | + ); |
|
134 | + $this->set_display_strategy(new EE_Select2_Display_Strategy($select2_args)); |
|
135 | + parent::__construct(array(), $input_settings); |
|
136 | + } |
|
137 | 137 | |
138 | 138 | |
139 | 139 | |
140 | - /** |
|
141 | - * Before setting the raw value (usually because we're setting the default, |
|
142 | - * or we've received a form submission and this might be re-displayed to the user), |
|
143 | - * sets the options so that the current selections appear on initial display. |
|
144 | - * |
|
145 | - * Note: because this input uses EE_Model_Matching_Query_Validation_Strategy |
|
146 | - * for validation, this input's options only affect DISPLAY and NOT validation, |
|
147 | - * which is why its ok to just assume the provided $value to be in the list of acceptable values |
|
148 | - * |
|
149 | - * @param mixed $value |
|
150 | - * @return void |
|
151 | - * @throws \EE_Error |
|
152 | - */ |
|
153 | - public function _set_raw_value($value) |
|
154 | - { |
|
155 | - $values_for_options = (array) $value; |
|
156 | - $value_field = $this->_get_model()->field_settings_for($this->_value_field_name); |
|
157 | - $display_field = $this->_get_model()->field_settings_for($this->_display_field_name); |
|
158 | - $this->_extra_select_columns[] = $value_field->get_qualified_column() . ' AS ' . $this->_value_field_name; |
|
159 | - $this->_extra_select_columns[] = $display_field->get_qualified_column() . ' AS ' . $this->_display_field_name; |
|
160 | - $display_values = $this->_get_model()->get_all_wpdb_results( |
|
161 | - array( |
|
162 | - array( |
|
163 | - $this->_value_field_name => array( 'IN', $values_for_options ) |
|
164 | - ) |
|
165 | - ), |
|
166 | - ARRAY_A, |
|
167 | - implode(',', $this->_extra_select_columns) |
|
168 | - ); |
|
169 | - $select_options = array(); |
|
170 | - if (is_array($select_options)) { |
|
171 | - foreach ($display_values as $db_rows) { |
|
172 | - $db_rows = (array) $db_rows; |
|
173 | - $select_options[ $db_rows[ $this->_value_field_name ] ] = apply_filters( |
|
174 | - 'FHEE__EE_Select_Ajax_Model_Rest_Input___set_raw_value__select_option_value', |
|
175 | - $db_rows[ $this->_display_field_name ], |
|
176 | - $db_rows |
|
177 | - ); |
|
178 | - } |
|
179 | - } |
|
180 | - $this->set_select_options($select_options); |
|
181 | - parent::_set_raw_value($value); |
|
182 | - } |
|
140 | + /** |
|
141 | + * Before setting the raw value (usually because we're setting the default, |
|
142 | + * or we've received a form submission and this might be re-displayed to the user), |
|
143 | + * sets the options so that the current selections appear on initial display. |
|
144 | + * |
|
145 | + * Note: because this input uses EE_Model_Matching_Query_Validation_Strategy |
|
146 | + * for validation, this input's options only affect DISPLAY and NOT validation, |
|
147 | + * which is why its ok to just assume the provided $value to be in the list of acceptable values |
|
148 | + * |
|
149 | + * @param mixed $value |
|
150 | + * @return void |
|
151 | + * @throws \EE_Error |
|
152 | + */ |
|
153 | + public function _set_raw_value($value) |
|
154 | + { |
|
155 | + $values_for_options = (array) $value; |
|
156 | + $value_field = $this->_get_model()->field_settings_for($this->_value_field_name); |
|
157 | + $display_field = $this->_get_model()->field_settings_for($this->_display_field_name); |
|
158 | + $this->_extra_select_columns[] = $value_field->get_qualified_column() . ' AS ' . $this->_value_field_name; |
|
159 | + $this->_extra_select_columns[] = $display_field->get_qualified_column() . ' AS ' . $this->_display_field_name; |
|
160 | + $display_values = $this->_get_model()->get_all_wpdb_results( |
|
161 | + array( |
|
162 | + array( |
|
163 | + $this->_value_field_name => array( 'IN', $values_for_options ) |
|
164 | + ) |
|
165 | + ), |
|
166 | + ARRAY_A, |
|
167 | + implode(',', $this->_extra_select_columns) |
|
168 | + ); |
|
169 | + $select_options = array(); |
|
170 | + if (is_array($select_options)) { |
|
171 | + foreach ($display_values as $db_rows) { |
|
172 | + $db_rows = (array) $db_rows; |
|
173 | + $select_options[ $db_rows[ $this->_value_field_name ] ] = apply_filters( |
|
174 | + 'FHEE__EE_Select_Ajax_Model_Rest_Input___set_raw_value__select_option_value', |
|
175 | + $db_rows[ $this->_display_field_name ], |
|
176 | + $db_rows |
|
177 | + ); |
|
178 | + } |
|
179 | + } |
|
180 | + $this->set_select_options($select_options); |
|
181 | + parent::_set_raw_value($value); |
|
182 | + } |
|
183 | 183 | |
184 | - /** |
|
185 | - * Returns the model, or throws an exception if the model name provided in constructor doesn't exist |
|
186 | - * @return EEM_Base |
|
187 | - * @throws EE_Error |
|
188 | - */ |
|
189 | - protected function _get_model() |
|
190 | - { |
|
191 | - if (! EE_Registry::instance()->is_model_name($this->_model_name)) { |
|
192 | - throw new EE_Error( |
|
193 | - sprintf( |
|
194 | - __( |
|
195 | - '%1$s is not a proper model name. Please provide a model name in the "model_name" form input argument', |
|
196 | - 'event_espresso' |
|
197 | - ), |
|
198 | - $this->_model_name |
|
199 | - ) |
|
200 | - ); |
|
201 | - } else { |
|
202 | - return EE_Registry::instance()->load_model($this->_model_name); |
|
203 | - } |
|
204 | - } |
|
184 | + /** |
|
185 | + * Returns the model, or throws an exception if the model name provided in constructor doesn't exist |
|
186 | + * @return EEM_Base |
|
187 | + * @throws EE_Error |
|
188 | + */ |
|
189 | + protected function _get_model() |
|
190 | + { |
|
191 | + if (! EE_Registry::instance()->is_model_name($this->_model_name)) { |
|
192 | + throw new EE_Error( |
|
193 | + sprintf( |
|
194 | + __( |
|
195 | + '%1$s is not a proper model name. Please provide a model name in the "model_name" form input argument', |
|
196 | + 'event_espresso' |
|
197 | + ), |
|
198 | + $this->_model_name |
|
199 | + ) |
|
200 | + ); |
|
201 | + } else { |
|
202 | + return EE_Registry::instance()->load_model($this->_model_name); |
|
203 | + } |
|
204 | + } |
|
205 | 205 | } |