@@ -15,2677 +15,2677 @@ |
||
15 | 15 | class Events_Admin_Page extends EE_Admin_Page_CPT |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * This will hold the event object for event_details screen. |
|
20 | - * |
|
21 | - * @access protected |
|
22 | - * @var EE_Event $_event |
|
23 | - */ |
|
24 | - protected $_event; |
|
25 | - |
|
26 | - |
|
27 | - /** |
|
28 | - * This will hold the category object for category_details screen. |
|
29 | - * |
|
30 | - * @var stdClass $_category |
|
31 | - */ |
|
32 | - protected $_category; |
|
33 | - |
|
34 | - |
|
35 | - /** |
|
36 | - * This will hold the event model instance |
|
37 | - * |
|
38 | - * @var EEM_Event $_event_model |
|
39 | - */ |
|
40 | - protected $_event_model; |
|
41 | - |
|
42 | - |
|
43 | - |
|
44 | - /** |
|
45 | - * @var EE_Event |
|
46 | - */ |
|
47 | - protected $_cpt_model_obj = false; |
|
48 | - |
|
49 | - |
|
50 | - /** |
|
51 | - * Initialize page props for this admin page group. |
|
52 | - */ |
|
53 | - protected function _init_page_props() |
|
54 | - { |
|
55 | - $this->page_slug = EVENTS_PG_SLUG; |
|
56 | - $this->page_label = EVENTS_LABEL; |
|
57 | - $this->_admin_base_url = EVENTS_ADMIN_URL; |
|
58 | - $this->_admin_base_path = EVENTS_ADMIN; |
|
59 | - $this->_cpt_model_names = array( |
|
60 | - 'create_new' => 'EEM_Event', |
|
61 | - 'edit' => 'EEM_Event', |
|
62 | - ); |
|
63 | - $this->_cpt_edit_routes = array( |
|
64 | - 'espresso_events' => 'edit', |
|
65 | - ); |
|
66 | - add_action( |
|
67 | - 'AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object', |
|
68 | - array($this, 'verify_event_edit') |
|
69 | - ); |
|
70 | - } |
|
71 | - |
|
72 | - |
|
73 | - /** |
|
74 | - * Sets the ajax hooks used for this admin page group. |
|
75 | - */ |
|
76 | - protected function _ajax_hooks() |
|
77 | - { |
|
78 | - add_action('wp_ajax_ee_save_timezone_setting', array($this, 'save_timezonestring_setting')); |
|
79 | - } |
|
80 | - |
|
81 | - |
|
82 | - /** |
|
83 | - * Sets the page properties for this admin page group. |
|
84 | - */ |
|
85 | - protected function _define_page_props() |
|
86 | - { |
|
87 | - $this->_admin_page_title = EVENTS_LABEL; |
|
88 | - $this->_labels = array( |
|
89 | - 'buttons' => array( |
|
90 | - 'add' => esc_html__('Add New Event', 'event_espresso'), |
|
91 | - 'edit' => esc_html__('Edit Event', 'event_espresso'), |
|
92 | - 'delete' => esc_html__('Delete Event', 'event_espresso'), |
|
93 | - 'add_category' => esc_html__('Add New Category', 'event_espresso'), |
|
94 | - 'edit_category' => esc_html__('Edit Category', 'event_espresso'), |
|
95 | - 'delete_category' => esc_html__('Delete Category', 'event_espresso'), |
|
96 | - ), |
|
97 | - 'editor_title' => array( |
|
98 | - 'espresso_events' => esc_html__('Enter event title here', 'event_espresso'), |
|
99 | - ), |
|
100 | - 'publishbox' => array( |
|
101 | - 'create_new' => esc_html__('Save New Event', 'event_espresso'), |
|
102 | - 'edit' => esc_html__('Update Event', 'event_espresso'), |
|
103 | - 'add_category' => esc_html__('Save New Category', 'event_espresso'), |
|
104 | - 'edit_category' => esc_html__('Update Category', 'event_espresso'), |
|
105 | - 'template_settings' => esc_html__('Update Settings', 'event_espresso'), |
|
106 | - ), |
|
107 | - ); |
|
108 | - } |
|
109 | - |
|
110 | - |
|
111 | - /** |
|
112 | - * Sets the page routes property for this admin page group. |
|
113 | - */ |
|
114 | - protected function _set_page_routes() |
|
115 | - { |
|
116 | - //load formatter helper |
|
117 | - //load field generator helper |
|
118 | - //is there a evt_id in the request? |
|
119 | - $evt_id = ! empty($this->_req_data['EVT_ID']) && ! is_array($this->_req_data['EVT_ID']) |
|
120 | - ? $this->_req_data['EVT_ID'] |
|
121 | - : 0; |
|
122 | - $evt_id = ! empty($this->_req_data['post']) ? $this->_req_data['post'] : $evt_id; |
|
123 | - $this->_page_routes = array( |
|
124 | - 'default' => array( |
|
125 | - 'func' => '_events_overview_list_table', |
|
126 | - 'capability' => 'ee_read_events', |
|
127 | - ), |
|
128 | - 'create_new' => array( |
|
129 | - 'func' => '_create_new_cpt_item', |
|
130 | - 'capability' => 'ee_edit_events', |
|
131 | - ), |
|
132 | - 'edit' => array( |
|
133 | - 'func' => '_edit_cpt_item', |
|
134 | - 'capability' => 'ee_edit_event', |
|
135 | - 'obj_id' => $evt_id, |
|
136 | - ), |
|
137 | - 'copy_event' => array( |
|
138 | - 'func' => '_copy_events', |
|
139 | - 'capability' => 'ee_edit_event', |
|
140 | - 'obj_id' => $evt_id, |
|
141 | - 'noheader' => true, |
|
142 | - ), |
|
143 | - 'trash_event' => array( |
|
144 | - 'func' => '_trash_or_restore_event', |
|
145 | - 'args' => array('event_status' => 'trash'), |
|
146 | - 'capability' => 'ee_delete_event', |
|
147 | - 'obj_id' => $evt_id, |
|
148 | - 'noheader' => true, |
|
149 | - ), |
|
150 | - 'trash_events' => array( |
|
151 | - 'func' => '_trash_or_restore_events', |
|
152 | - 'args' => array('event_status' => 'trash'), |
|
153 | - 'capability' => 'ee_delete_events', |
|
154 | - 'noheader' => true, |
|
155 | - ), |
|
156 | - 'restore_event' => array( |
|
157 | - 'func' => '_trash_or_restore_event', |
|
158 | - 'args' => array('event_status' => 'draft'), |
|
159 | - 'capability' => 'ee_delete_event', |
|
160 | - 'obj_id' => $evt_id, |
|
161 | - 'noheader' => true, |
|
162 | - ), |
|
163 | - 'restore_events' => array( |
|
164 | - 'func' => '_trash_or_restore_events', |
|
165 | - 'args' => array('event_status' => 'draft'), |
|
166 | - 'capability' => 'ee_delete_events', |
|
167 | - 'noheader' => true, |
|
168 | - ), |
|
169 | - 'delete_event' => array( |
|
170 | - 'func' => '_delete_event', |
|
171 | - 'capability' => 'ee_delete_event', |
|
172 | - 'obj_id' => $evt_id, |
|
173 | - 'noheader' => true, |
|
174 | - ), |
|
175 | - 'delete_events' => array( |
|
176 | - 'func' => '_delete_events', |
|
177 | - 'capability' => 'ee_delete_events', |
|
178 | - 'noheader' => true, |
|
179 | - ), |
|
180 | - 'view_report' => array( |
|
181 | - 'func' => '_view_report', |
|
182 | - 'capablity' => 'ee_edit_events', |
|
183 | - ), |
|
184 | - 'default_event_settings' => array( |
|
185 | - 'func' => '_default_event_settings', |
|
186 | - 'capability' => 'manage_options', |
|
187 | - ), |
|
188 | - 'update_default_event_settings' => array( |
|
189 | - 'func' => '_update_default_event_settings', |
|
190 | - 'capability' => 'manage_options', |
|
191 | - 'noheader' => true, |
|
192 | - ), |
|
193 | - 'template_settings' => array( |
|
194 | - 'func' => '_template_settings', |
|
195 | - 'capability' => 'manage_options', |
|
196 | - ), |
|
197 | - //event category tab related |
|
198 | - 'add_category' => array( |
|
199 | - 'func' => '_category_details', |
|
200 | - 'capability' => 'ee_edit_event_category', |
|
201 | - 'args' => array('add'), |
|
202 | - ), |
|
203 | - 'edit_category' => array( |
|
204 | - 'func' => '_category_details', |
|
205 | - 'capability' => 'ee_edit_event_category', |
|
206 | - 'args' => array('edit'), |
|
207 | - ), |
|
208 | - 'delete_categories' => array( |
|
209 | - 'func' => '_delete_categories', |
|
210 | - 'capability' => 'ee_delete_event_category', |
|
211 | - 'noheader' => true, |
|
212 | - ), |
|
213 | - 'delete_category' => array( |
|
214 | - 'func' => '_delete_categories', |
|
215 | - 'capability' => 'ee_delete_event_category', |
|
216 | - 'noheader' => true, |
|
217 | - ), |
|
218 | - 'insert_category' => array( |
|
219 | - 'func' => '_insert_or_update_category', |
|
220 | - 'args' => array('new_category' => true), |
|
221 | - 'capability' => 'ee_edit_event_category', |
|
222 | - 'noheader' => true, |
|
223 | - ), |
|
224 | - 'update_category' => array( |
|
225 | - 'func' => '_insert_or_update_category', |
|
226 | - 'args' => array('new_category' => false), |
|
227 | - 'capability' => 'ee_edit_event_category', |
|
228 | - 'noheader' => true, |
|
229 | - ), |
|
230 | - 'category_list' => array( |
|
231 | - 'func' => '_category_list_table', |
|
232 | - 'capability' => 'ee_manage_event_categories', |
|
233 | - ), |
|
234 | - ); |
|
235 | - } |
|
236 | - |
|
237 | - |
|
238 | - /** |
|
239 | - * Set the _page_config property for this admin page group. |
|
240 | - */ |
|
241 | - protected function _set_page_config() |
|
242 | - { |
|
243 | - $this->_page_config = array( |
|
244 | - 'default' => array( |
|
245 | - 'nav' => array( |
|
246 | - 'label' => esc_html__('Overview', 'event_espresso'), |
|
247 | - 'order' => 10, |
|
248 | - ), |
|
249 | - 'list_table' => 'Events_Admin_List_Table', |
|
250 | - 'help_tabs' => array( |
|
251 | - 'events_overview_help_tab' => array( |
|
252 | - 'title' => esc_html__('Events Overview', 'event_espresso'), |
|
253 | - 'filename' => 'events_overview', |
|
254 | - ), |
|
255 | - 'events_overview_table_column_headings_help_tab' => array( |
|
256 | - 'title' => esc_html__('Events Overview Table Column Headings', 'event_espresso'), |
|
257 | - 'filename' => 'events_overview_table_column_headings', |
|
258 | - ), |
|
259 | - 'events_overview_filters_help_tab' => array( |
|
260 | - 'title' => esc_html__('Events Overview Filters', 'event_espresso'), |
|
261 | - 'filename' => 'events_overview_filters', |
|
262 | - ), |
|
263 | - 'events_overview_view_help_tab' => array( |
|
264 | - 'title' => esc_html__('Events Overview Views', 'event_espresso'), |
|
265 | - 'filename' => 'events_overview_views', |
|
266 | - ), |
|
267 | - 'events_overview_other_help_tab' => array( |
|
268 | - 'title' => esc_html__('Events Overview Other', 'event_espresso'), |
|
269 | - 'filename' => 'events_overview_other', |
|
270 | - ), |
|
271 | - ), |
|
272 | - 'help_tour' => array( |
|
273 | - 'Event_Overview_Help_Tour', |
|
274 | - //'New_Features_Test_Help_Tour' for testing multiple help tour |
|
275 | - ), |
|
276 | - 'qtips' => array( |
|
277 | - 'EE_Event_List_Table_Tips', |
|
278 | - ), |
|
279 | - 'require_nonce' => false, |
|
280 | - ), |
|
281 | - 'create_new' => array( |
|
282 | - 'nav' => array( |
|
283 | - 'label' => esc_html__('Add Event', 'event_espresso'), |
|
284 | - 'order' => 5, |
|
285 | - 'persistent' => false, |
|
286 | - ), |
|
287 | - 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
288 | - 'help_tabs' => array( |
|
289 | - 'event_editor_help_tab' => array( |
|
290 | - 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
291 | - 'filename' => 'event_editor', |
|
292 | - ), |
|
293 | - 'event_editor_title_richtexteditor_help_tab' => array( |
|
294 | - 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
295 | - 'filename' => 'event_editor_title_richtexteditor', |
|
296 | - ), |
|
297 | - 'event_editor_venue_details_help_tab' => array( |
|
298 | - 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
299 | - 'filename' => 'event_editor_venue_details', |
|
300 | - ), |
|
301 | - 'event_editor_event_datetimes_help_tab' => array( |
|
302 | - 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
303 | - 'filename' => 'event_editor_event_datetimes', |
|
304 | - ), |
|
305 | - 'event_editor_event_tickets_help_tab' => array( |
|
306 | - 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
307 | - 'filename' => 'event_editor_event_tickets', |
|
308 | - ), |
|
309 | - 'event_editor_event_registration_options_help_tab' => array( |
|
310 | - 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
311 | - 'filename' => 'event_editor_event_registration_options', |
|
312 | - ), |
|
313 | - 'event_editor_tags_categories_help_tab' => array( |
|
314 | - 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
315 | - 'filename' => 'event_editor_tags_categories', |
|
316 | - ), |
|
317 | - 'event_editor_questions_registrants_help_tab' => array( |
|
318 | - 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
319 | - 'filename' => 'event_editor_questions_registrants', |
|
320 | - ), |
|
321 | - 'event_editor_save_new_event_help_tab' => array( |
|
322 | - 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
323 | - 'filename' => 'event_editor_save_new_event', |
|
324 | - ), |
|
325 | - 'event_editor_other_help_tab' => array( |
|
326 | - 'title' => esc_html__('Event Other', 'event_espresso'), |
|
327 | - 'filename' => 'event_editor_other', |
|
328 | - ), |
|
329 | - ), |
|
330 | - 'help_tour' => array( |
|
331 | - 'Event_Editor_Help_Tour', |
|
332 | - ), |
|
333 | - 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
334 | - 'require_nonce' => false, |
|
335 | - ), |
|
336 | - 'edit' => array( |
|
337 | - 'nav' => array( |
|
338 | - 'label' => esc_html__('Edit Event', 'event_espresso'), |
|
339 | - 'order' => 5, |
|
340 | - 'persistent' => false, |
|
341 | - 'url' => isset($this->_req_data['post']) |
|
342 | - ? EE_Admin_Page::add_query_args_and_nonce( |
|
343 | - array('post' => $this->_req_data['post'], 'action' => 'edit'), |
|
344 | - $this->_current_page_view_url |
|
345 | - ) |
|
346 | - : $this->_admin_base_url, |
|
347 | - ), |
|
348 | - 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
349 | - 'help_tabs' => array( |
|
350 | - 'event_editor_help_tab' => array( |
|
351 | - 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
352 | - 'filename' => 'event_editor', |
|
353 | - ), |
|
354 | - 'event_editor_title_richtexteditor_help_tab' => array( |
|
355 | - 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
356 | - 'filename' => 'event_editor_title_richtexteditor', |
|
357 | - ), |
|
358 | - 'event_editor_venue_details_help_tab' => array( |
|
359 | - 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
360 | - 'filename' => 'event_editor_venue_details', |
|
361 | - ), |
|
362 | - 'event_editor_event_datetimes_help_tab' => array( |
|
363 | - 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
364 | - 'filename' => 'event_editor_event_datetimes', |
|
365 | - ), |
|
366 | - 'event_editor_event_tickets_help_tab' => array( |
|
367 | - 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
368 | - 'filename' => 'event_editor_event_tickets', |
|
369 | - ), |
|
370 | - 'event_editor_event_registration_options_help_tab' => array( |
|
371 | - 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
372 | - 'filename' => 'event_editor_event_registration_options', |
|
373 | - ), |
|
374 | - 'event_editor_tags_categories_help_tab' => array( |
|
375 | - 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
376 | - 'filename' => 'event_editor_tags_categories', |
|
377 | - ), |
|
378 | - 'event_editor_questions_registrants_help_tab' => array( |
|
379 | - 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
380 | - 'filename' => 'event_editor_questions_registrants', |
|
381 | - ), |
|
382 | - 'event_editor_save_new_event_help_tab' => array( |
|
383 | - 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
384 | - 'filename' => 'event_editor_save_new_event', |
|
385 | - ), |
|
386 | - 'event_editor_other_help_tab' => array( |
|
387 | - 'title' => esc_html__('Event Other', 'event_espresso'), |
|
388 | - 'filename' => 'event_editor_other', |
|
389 | - ), |
|
390 | - ), |
|
391 | - /*'help_tour' => array( |
|
18 | + /** |
|
19 | + * This will hold the event object for event_details screen. |
|
20 | + * |
|
21 | + * @access protected |
|
22 | + * @var EE_Event $_event |
|
23 | + */ |
|
24 | + protected $_event; |
|
25 | + |
|
26 | + |
|
27 | + /** |
|
28 | + * This will hold the category object for category_details screen. |
|
29 | + * |
|
30 | + * @var stdClass $_category |
|
31 | + */ |
|
32 | + protected $_category; |
|
33 | + |
|
34 | + |
|
35 | + /** |
|
36 | + * This will hold the event model instance |
|
37 | + * |
|
38 | + * @var EEM_Event $_event_model |
|
39 | + */ |
|
40 | + protected $_event_model; |
|
41 | + |
|
42 | + |
|
43 | + |
|
44 | + /** |
|
45 | + * @var EE_Event |
|
46 | + */ |
|
47 | + protected $_cpt_model_obj = false; |
|
48 | + |
|
49 | + |
|
50 | + /** |
|
51 | + * Initialize page props for this admin page group. |
|
52 | + */ |
|
53 | + protected function _init_page_props() |
|
54 | + { |
|
55 | + $this->page_slug = EVENTS_PG_SLUG; |
|
56 | + $this->page_label = EVENTS_LABEL; |
|
57 | + $this->_admin_base_url = EVENTS_ADMIN_URL; |
|
58 | + $this->_admin_base_path = EVENTS_ADMIN; |
|
59 | + $this->_cpt_model_names = array( |
|
60 | + 'create_new' => 'EEM_Event', |
|
61 | + 'edit' => 'EEM_Event', |
|
62 | + ); |
|
63 | + $this->_cpt_edit_routes = array( |
|
64 | + 'espresso_events' => 'edit', |
|
65 | + ); |
|
66 | + add_action( |
|
67 | + 'AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object', |
|
68 | + array($this, 'verify_event_edit') |
|
69 | + ); |
|
70 | + } |
|
71 | + |
|
72 | + |
|
73 | + /** |
|
74 | + * Sets the ajax hooks used for this admin page group. |
|
75 | + */ |
|
76 | + protected function _ajax_hooks() |
|
77 | + { |
|
78 | + add_action('wp_ajax_ee_save_timezone_setting', array($this, 'save_timezonestring_setting')); |
|
79 | + } |
|
80 | + |
|
81 | + |
|
82 | + /** |
|
83 | + * Sets the page properties for this admin page group. |
|
84 | + */ |
|
85 | + protected function _define_page_props() |
|
86 | + { |
|
87 | + $this->_admin_page_title = EVENTS_LABEL; |
|
88 | + $this->_labels = array( |
|
89 | + 'buttons' => array( |
|
90 | + 'add' => esc_html__('Add New Event', 'event_espresso'), |
|
91 | + 'edit' => esc_html__('Edit Event', 'event_espresso'), |
|
92 | + 'delete' => esc_html__('Delete Event', 'event_espresso'), |
|
93 | + 'add_category' => esc_html__('Add New Category', 'event_espresso'), |
|
94 | + 'edit_category' => esc_html__('Edit Category', 'event_espresso'), |
|
95 | + 'delete_category' => esc_html__('Delete Category', 'event_espresso'), |
|
96 | + ), |
|
97 | + 'editor_title' => array( |
|
98 | + 'espresso_events' => esc_html__('Enter event title here', 'event_espresso'), |
|
99 | + ), |
|
100 | + 'publishbox' => array( |
|
101 | + 'create_new' => esc_html__('Save New Event', 'event_espresso'), |
|
102 | + 'edit' => esc_html__('Update Event', 'event_espresso'), |
|
103 | + 'add_category' => esc_html__('Save New Category', 'event_espresso'), |
|
104 | + 'edit_category' => esc_html__('Update Category', 'event_espresso'), |
|
105 | + 'template_settings' => esc_html__('Update Settings', 'event_espresso'), |
|
106 | + ), |
|
107 | + ); |
|
108 | + } |
|
109 | + |
|
110 | + |
|
111 | + /** |
|
112 | + * Sets the page routes property for this admin page group. |
|
113 | + */ |
|
114 | + protected function _set_page_routes() |
|
115 | + { |
|
116 | + //load formatter helper |
|
117 | + //load field generator helper |
|
118 | + //is there a evt_id in the request? |
|
119 | + $evt_id = ! empty($this->_req_data['EVT_ID']) && ! is_array($this->_req_data['EVT_ID']) |
|
120 | + ? $this->_req_data['EVT_ID'] |
|
121 | + : 0; |
|
122 | + $evt_id = ! empty($this->_req_data['post']) ? $this->_req_data['post'] : $evt_id; |
|
123 | + $this->_page_routes = array( |
|
124 | + 'default' => array( |
|
125 | + 'func' => '_events_overview_list_table', |
|
126 | + 'capability' => 'ee_read_events', |
|
127 | + ), |
|
128 | + 'create_new' => array( |
|
129 | + 'func' => '_create_new_cpt_item', |
|
130 | + 'capability' => 'ee_edit_events', |
|
131 | + ), |
|
132 | + 'edit' => array( |
|
133 | + 'func' => '_edit_cpt_item', |
|
134 | + 'capability' => 'ee_edit_event', |
|
135 | + 'obj_id' => $evt_id, |
|
136 | + ), |
|
137 | + 'copy_event' => array( |
|
138 | + 'func' => '_copy_events', |
|
139 | + 'capability' => 'ee_edit_event', |
|
140 | + 'obj_id' => $evt_id, |
|
141 | + 'noheader' => true, |
|
142 | + ), |
|
143 | + 'trash_event' => array( |
|
144 | + 'func' => '_trash_or_restore_event', |
|
145 | + 'args' => array('event_status' => 'trash'), |
|
146 | + 'capability' => 'ee_delete_event', |
|
147 | + 'obj_id' => $evt_id, |
|
148 | + 'noheader' => true, |
|
149 | + ), |
|
150 | + 'trash_events' => array( |
|
151 | + 'func' => '_trash_or_restore_events', |
|
152 | + 'args' => array('event_status' => 'trash'), |
|
153 | + 'capability' => 'ee_delete_events', |
|
154 | + 'noheader' => true, |
|
155 | + ), |
|
156 | + 'restore_event' => array( |
|
157 | + 'func' => '_trash_or_restore_event', |
|
158 | + 'args' => array('event_status' => 'draft'), |
|
159 | + 'capability' => 'ee_delete_event', |
|
160 | + 'obj_id' => $evt_id, |
|
161 | + 'noheader' => true, |
|
162 | + ), |
|
163 | + 'restore_events' => array( |
|
164 | + 'func' => '_trash_or_restore_events', |
|
165 | + 'args' => array('event_status' => 'draft'), |
|
166 | + 'capability' => 'ee_delete_events', |
|
167 | + 'noheader' => true, |
|
168 | + ), |
|
169 | + 'delete_event' => array( |
|
170 | + 'func' => '_delete_event', |
|
171 | + 'capability' => 'ee_delete_event', |
|
172 | + 'obj_id' => $evt_id, |
|
173 | + 'noheader' => true, |
|
174 | + ), |
|
175 | + 'delete_events' => array( |
|
176 | + 'func' => '_delete_events', |
|
177 | + 'capability' => 'ee_delete_events', |
|
178 | + 'noheader' => true, |
|
179 | + ), |
|
180 | + 'view_report' => array( |
|
181 | + 'func' => '_view_report', |
|
182 | + 'capablity' => 'ee_edit_events', |
|
183 | + ), |
|
184 | + 'default_event_settings' => array( |
|
185 | + 'func' => '_default_event_settings', |
|
186 | + 'capability' => 'manage_options', |
|
187 | + ), |
|
188 | + 'update_default_event_settings' => array( |
|
189 | + 'func' => '_update_default_event_settings', |
|
190 | + 'capability' => 'manage_options', |
|
191 | + 'noheader' => true, |
|
192 | + ), |
|
193 | + 'template_settings' => array( |
|
194 | + 'func' => '_template_settings', |
|
195 | + 'capability' => 'manage_options', |
|
196 | + ), |
|
197 | + //event category tab related |
|
198 | + 'add_category' => array( |
|
199 | + 'func' => '_category_details', |
|
200 | + 'capability' => 'ee_edit_event_category', |
|
201 | + 'args' => array('add'), |
|
202 | + ), |
|
203 | + 'edit_category' => array( |
|
204 | + 'func' => '_category_details', |
|
205 | + 'capability' => 'ee_edit_event_category', |
|
206 | + 'args' => array('edit'), |
|
207 | + ), |
|
208 | + 'delete_categories' => array( |
|
209 | + 'func' => '_delete_categories', |
|
210 | + 'capability' => 'ee_delete_event_category', |
|
211 | + 'noheader' => true, |
|
212 | + ), |
|
213 | + 'delete_category' => array( |
|
214 | + 'func' => '_delete_categories', |
|
215 | + 'capability' => 'ee_delete_event_category', |
|
216 | + 'noheader' => true, |
|
217 | + ), |
|
218 | + 'insert_category' => array( |
|
219 | + 'func' => '_insert_or_update_category', |
|
220 | + 'args' => array('new_category' => true), |
|
221 | + 'capability' => 'ee_edit_event_category', |
|
222 | + 'noheader' => true, |
|
223 | + ), |
|
224 | + 'update_category' => array( |
|
225 | + 'func' => '_insert_or_update_category', |
|
226 | + 'args' => array('new_category' => false), |
|
227 | + 'capability' => 'ee_edit_event_category', |
|
228 | + 'noheader' => true, |
|
229 | + ), |
|
230 | + 'category_list' => array( |
|
231 | + 'func' => '_category_list_table', |
|
232 | + 'capability' => 'ee_manage_event_categories', |
|
233 | + ), |
|
234 | + ); |
|
235 | + } |
|
236 | + |
|
237 | + |
|
238 | + /** |
|
239 | + * Set the _page_config property for this admin page group. |
|
240 | + */ |
|
241 | + protected function _set_page_config() |
|
242 | + { |
|
243 | + $this->_page_config = array( |
|
244 | + 'default' => array( |
|
245 | + 'nav' => array( |
|
246 | + 'label' => esc_html__('Overview', 'event_espresso'), |
|
247 | + 'order' => 10, |
|
248 | + ), |
|
249 | + 'list_table' => 'Events_Admin_List_Table', |
|
250 | + 'help_tabs' => array( |
|
251 | + 'events_overview_help_tab' => array( |
|
252 | + 'title' => esc_html__('Events Overview', 'event_espresso'), |
|
253 | + 'filename' => 'events_overview', |
|
254 | + ), |
|
255 | + 'events_overview_table_column_headings_help_tab' => array( |
|
256 | + 'title' => esc_html__('Events Overview Table Column Headings', 'event_espresso'), |
|
257 | + 'filename' => 'events_overview_table_column_headings', |
|
258 | + ), |
|
259 | + 'events_overview_filters_help_tab' => array( |
|
260 | + 'title' => esc_html__('Events Overview Filters', 'event_espresso'), |
|
261 | + 'filename' => 'events_overview_filters', |
|
262 | + ), |
|
263 | + 'events_overview_view_help_tab' => array( |
|
264 | + 'title' => esc_html__('Events Overview Views', 'event_espresso'), |
|
265 | + 'filename' => 'events_overview_views', |
|
266 | + ), |
|
267 | + 'events_overview_other_help_tab' => array( |
|
268 | + 'title' => esc_html__('Events Overview Other', 'event_espresso'), |
|
269 | + 'filename' => 'events_overview_other', |
|
270 | + ), |
|
271 | + ), |
|
272 | + 'help_tour' => array( |
|
273 | + 'Event_Overview_Help_Tour', |
|
274 | + //'New_Features_Test_Help_Tour' for testing multiple help tour |
|
275 | + ), |
|
276 | + 'qtips' => array( |
|
277 | + 'EE_Event_List_Table_Tips', |
|
278 | + ), |
|
279 | + 'require_nonce' => false, |
|
280 | + ), |
|
281 | + 'create_new' => array( |
|
282 | + 'nav' => array( |
|
283 | + 'label' => esc_html__('Add Event', 'event_espresso'), |
|
284 | + 'order' => 5, |
|
285 | + 'persistent' => false, |
|
286 | + ), |
|
287 | + 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
288 | + 'help_tabs' => array( |
|
289 | + 'event_editor_help_tab' => array( |
|
290 | + 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
291 | + 'filename' => 'event_editor', |
|
292 | + ), |
|
293 | + 'event_editor_title_richtexteditor_help_tab' => array( |
|
294 | + 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
295 | + 'filename' => 'event_editor_title_richtexteditor', |
|
296 | + ), |
|
297 | + 'event_editor_venue_details_help_tab' => array( |
|
298 | + 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
299 | + 'filename' => 'event_editor_venue_details', |
|
300 | + ), |
|
301 | + 'event_editor_event_datetimes_help_tab' => array( |
|
302 | + 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
303 | + 'filename' => 'event_editor_event_datetimes', |
|
304 | + ), |
|
305 | + 'event_editor_event_tickets_help_tab' => array( |
|
306 | + 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
307 | + 'filename' => 'event_editor_event_tickets', |
|
308 | + ), |
|
309 | + 'event_editor_event_registration_options_help_tab' => array( |
|
310 | + 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
311 | + 'filename' => 'event_editor_event_registration_options', |
|
312 | + ), |
|
313 | + 'event_editor_tags_categories_help_tab' => array( |
|
314 | + 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
315 | + 'filename' => 'event_editor_tags_categories', |
|
316 | + ), |
|
317 | + 'event_editor_questions_registrants_help_tab' => array( |
|
318 | + 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
319 | + 'filename' => 'event_editor_questions_registrants', |
|
320 | + ), |
|
321 | + 'event_editor_save_new_event_help_tab' => array( |
|
322 | + 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
323 | + 'filename' => 'event_editor_save_new_event', |
|
324 | + ), |
|
325 | + 'event_editor_other_help_tab' => array( |
|
326 | + 'title' => esc_html__('Event Other', 'event_espresso'), |
|
327 | + 'filename' => 'event_editor_other', |
|
328 | + ), |
|
329 | + ), |
|
330 | + 'help_tour' => array( |
|
331 | + 'Event_Editor_Help_Tour', |
|
332 | + ), |
|
333 | + 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
334 | + 'require_nonce' => false, |
|
335 | + ), |
|
336 | + 'edit' => array( |
|
337 | + 'nav' => array( |
|
338 | + 'label' => esc_html__('Edit Event', 'event_espresso'), |
|
339 | + 'order' => 5, |
|
340 | + 'persistent' => false, |
|
341 | + 'url' => isset($this->_req_data['post']) |
|
342 | + ? EE_Admin_Page::add_query_args_and_nonce( |
|
343 | + array('post' => $this->_req_data['post'], 'action' => 'edit'), |
|
344 | + $this->_current_page_view_url |
|
345 | + ) |
|
346 | + : $this->_admin_base_url, |
|
347 | + ), |
|
348 | + 'metaboxes' => array('_register_event_editor_meta_boxes'), |
|
349 | + 'help_tabs' => array( |
|
350 | + 'event_editor_help_tab' => array( |
|
351 | + 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
352 | + 'filename' => 'event_editor', |
|
353 | + ), |
|
354 | + 'event_editor_title_richtexteditor_help_tab' => array( |
|
355 | + 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
356 | + 'filename' => 'event_editor_title_richtexteditor', |
|
357 | + ), |
|
358 | + 'event_editor_venue_details_help_tab' => array( |
|
359 | + 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
360 | + 'filename' => 'event_editor_venue_details', |
|
361 | + ), |
|
362 | + 'event_editor_event_datetimes_help_tab' => array( |
|
363 | + 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
364 | + 'filename' => 'event_editor_event_datetimes', |
|
365 | + ), |
|
366 | + 'event_editor_event_tickets_help_tab' => array( |
|
367 | + 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
368 | + 'filename' => 'event_editor_event_tickets', |
|
369 | + ), |
|
370 | + 'event_editor_event_registration_options_help_tab' => array( |
|
371 | + 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
372 | + 'filename' => 'event_editor_event_registration_options', |
|
373 | + ), |
|
374 | + 'event_editor_tags_categories_help_tab' => array( |
|
375 | + 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
376 | + 'filename' => 'event_editor_tags_categories', |
|
377 | + ), |
|
378 | + 'event_editor_questions_registrants_help_tab' => array( |
|
379 | + 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
380 | + 'filename' => 'event_editor_questions_registrants', |
|
381 | + ), |
|
382 | + 'event_editor_save_new_event_help_tab' => array( |
|
383 | + 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
384 | + 'filename' => 'event_editor_save_new_event', |
|
385 | + ), |
|
386 | + 'event_editor_other_help_tab' => array( |
|
387 | + 'title' => esc_html__('Event Other', 'event_espresso'), |
|
388 | + 'filename' => 'event_editor_other', |
|
389 | + ), |
|
390 | + ), |
|
391 | + /*'help_tour' => array( |
|
392 | 392 | 'Event_Edit_Help_Tour' |
393 | 393 | ),*/ |
394 | - 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
395 | - 'require_nonce' => false, |
|
396 | - ), |
|
397 | - 'default_event_settings' => array( |
|
398 | - 'nav' => array( |
|
399 | - 'label' => esc_html__('Default Settings', 'event_espresso'), |
|
400 | - 'order' => 40, |
|
401 | - ), |
|
402 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
403 | - 'labels' => array( |
|
404 | - 'publishbox' => esc_html__('Update Settings', 'event_espresso'), |
|
405 | - ), |
|
406 | - 'help_tabs' => array( |
|
407 | - 'default_settings_help_tab' => array( |
|
408 | - 'title' => esc_html__('Default Event Settings', 'event_espresso'), |
|
409 | - 'filename' => 'events_default_settings', |
|
410 | - ), |
|
411 | - 'default_settings_status_help_tab' => array( |
|
412 | - 'title' => esc_html__('Default Registration Status', 'event_espresso'), |
|
413 | - 'filename' => 'events_default_settings_status', |
|
414 | - ), |
|
415 | - 'default_maximum_tickets_help_tab' => array( |
|
416 | - 'title' => esc_html__('Default Maximum Tickets Per Order', 'event_espresso'), |
|
417 | - 'filename' => 'events_default_settings_max_tickets', |
|
418 | - ) |
|
419 | - ), |
|
420 | - 'help_tour' => array('Event_Default_Settings_Help_Tour'), |
|
421 | - 'require_nonce' => false, |
|
422 | - ), |
|
423 | - //template settings |
|
424 | - 'template_settings' => array( |
|
425 | - 'nav' => array( |
|
426 | - 'label' => esc_html__('Templates', 'event_espresso'), |
|
427 | - 'order' => 30, |
|
428 | - ), |
|
429 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
430 | - 'help_tabs' => array( |
|
431 | - 'general_settings_templates_help_tab' => array( |
|
432 | - 'title' => esc_html__('Templates', 'event_espresso'), |
|
433 | - 'filename' => 'general_settings_templates', |
|
434 | - ), |
|
435 | - ), |
|
436 | - 'help_tour' => array('Templates_Help_Tour'), |
|
437 | - 'require_nonce' => false, |
|
438 | - ), |
|
439 | - //event category stuff |
|
440 | - 'add_category' => array( |
|
441 | - 'nav' => array( |
|
442 | - 'label' => esc_html__('Add Category', 'event_espresso'), |
|
443 | - 'order' => 15, |
|
444 | - 'persistent' => false, |
|
445 | - ), |
|
446 | - 'help_tabs' => array( |
|
447 | - 'add_category_help_tab' => array( |
|
448 | - 'title' => esc_html__('Add New Event Category', 'event_espresso'), |
|
449 | - 'filename' => 'events_add_category', |
|
450 | - ), |
|
451 | - ), |
|
452 | - 'help_tour' => array('Event_Add_Category_Help_Tour'), |
|
453 | - 'metaboxes' => array('_publish_post_box'), |
|
454 | - 'require_nonce' => false, |
|
455 | - ), |
|
456 | - 'edit_category' => array( |
|
457 | - 'nav' => array( |
|
458 | - 'label' => esc_html__('Edit Category', 'event_espresso'), |
|
459 | - 'order' => 15, |
|
460 | - 'persistent' => false, |
|
461 | - 'url' => isset($this->_req_data['EVT_CAT_ID']) |
|
462 | - ? add_query_arg( |
|
463 | - array('EVT_CAT_ID' => $this->_req_data['EVT_CAT_ID']), |
|
464 | - $this->_current_page_view_url |
|
465 | - ) |
|
466 | - : $this->_admin_base_url, |
|
467 | - ), |
|
468 | - 'help_tabs' => array( |
|
469 | - 'edit_category_help_tab' => array( |
|
470 | - 'title' => esc_html__('Edit Event Category', 'event_espresso'), |
|
471 | - 'filename' => 'events_edit_category', |
|
472 | - ), |
|
473 | - ), |
|
474 | - /*'help_tour' => array('Event_Edit_Category_Help_Tour'),*/ |
|
475 | - 'metaboxes' => array('_publish_post_box'), |
|
476 | - 'require_nonce' => false, |
|
477 | - ), |
|
478 | - 'category_list' => array( |
|
479 | - 'nav' => array( |
|
480 | - 'label' => esc_html__('Categories', 'event_espresso'), |
|
481 | - 'order' => 20, |
|
482 | - ), |
|
483 | - 'list_table' => 'Event_Categories_Admin_List_Table', |
|
484 | - 'help_tabs' => array( |
|
485 | - 'events_categories_help_tab' => array( |
|
486 | - 'title' => esc_html__('Event Categories', 'event_espresso'), |
|
487 | - 'filename' => 'events_categories', |
|
488 | - ), |
|
489 | - 'events_categories_table_column_headings_help_tab' => array( |
|
490 | - 'title' => esc_html__('Event Categories Table Column Headings', 'event_espresso'), |
|
491 | - 'filename' => 'events_categories_table_column_headings', |
|
492 | - ), |
|
493 | - 'events_categories_view_help_tab' => array( |
|
494 | - 'title' => esc_html__('Event Categories Views', 'event_espresso'), |
|
495 | - 'filename' => 'events_categories_views', |
|
496 | - ), |
|
497 | - 'events_categories_other_help_tab' => array( |
|
498 | - 'title' => esc_html__('Event Categories Other', 'event_espresso'), |
|
499 | - 'filename' => 'events_categories_other', |
|
500 | - ), |
|
501 | - ), |
|
502 | - 'help_tour' => array( |
|
503 | - 'Event_Categories_Help_Tour', |
|
504 | - ), |
|
505 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
506 | - 'require_nonce' => false, |
|
507 | - ), |
|
508 | - ); |
|
509 | - } |
|
510 | - |
|
511 | - |
|
512 | - /** |
|
513 | - * Used to register any global screen options if necessary for every route in this admin page group. |
|
514 | - */ |
|
515 | - protected function _add_screen_options() |
|
516 | - { |
|
517 | - } |
|
518 | - |
|
519 | - |
|
520 | - /** |
|
521 | - * Implementing the screen options for the 'default' route. |
|
522 | - */ |
|
523 | - protected function _add_screen_options_default() |
|
524 | - { |
|
525 | - $this->_per_page_screen_option(); |
|
526 | - } |
|
527 | - |
|
528 | - |
|
529 | - /** |
|
530 | - * Implementing screen options for the category list route. |
|
531 | - */ |
|
532 | - protected function _add_screen_options_category_list() |
|
533 | - { |
|
534 | - $page_title = $this->_admin_page_title; |
|
535 | - $this->_admin_page_title = esc_html__('Categories', 'event_espresso'); |
|
536 | - $this->_per_page_screen_option(); |
|
537 | - $this->_admin_page_title = $page_title; |
|
538 | - } |
|
539 | - |
|
540 | - |
|
541 | - /** |
|
542 | - * Used to register any global feature pointers for the admin page group. |
|
543 | - */ |
|
544 | - protected function _add_feature_pointers() |
|
545 | - { |
|
546 | - } |
|
547 | - |
|
548 | - |
|
549 | - /** |
|
550 | - * Registers and enqueues any global scripts and styles for the entire admin page group. |
|
551 | - */ |
|
552 | - public function load_scripts_styles() |
|
553 | - { |
|
554 | - wp_register_style( |
|
555 | - 'events-admin-css', |
|
556 | - EVENTS_ASSETS_URL . 'events-admin-page.css', |
|
557 | - array(), |
|
558 | - EVENT_ESPRESSO_VERSION |
|
559 | - ); |
|
560 | - wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL . 'ee-cat-admin.css', array(), EVENT_ESPRESSO_VERSION); |
|
561 | - wp_enqueue_style('events-admin-css'); |
|
562 | - wp_enqueue_style('ee-cat-admin'); |
|
563 | - //todo note: we also need to load_scripts_styles per view (i.e. default/view_report/event_details |
|
564 | - //registers for all views |
|
565 | - //scripts |
|
566 | - wp_register_script( |
|
567 | - 'event_editor_js', |
|
568 | - EVENTS_ASSETS_URL . 'event_editor.js', |
|
569 | - array('ee_admin_js', 'jquery-ui-slider', 'jquery-ui-timepicker-addon'), |
|
570 | - EVENT_ESPRESSO_VERSION, |
|
571 | - true |
|
572 | - ); |
|
573 | - } |
|
574 | - |
|
575 | - |
|
576 | - |
|
577 | - /** |
|
578 | - * Enqueuing scripts and styles specific to this view |
|
579 | - */ |
|
580 | - public function load_scripts_styles_create_new() |
|
581 | - { |
|
582 | - $this->load_scripts_styles_edit(); |
|
583 | - } |
|
584 | - |
|
585 | - |
|
586 | - |
|
587 | - /** |
|
588 | - * Enqueuing scripts and styles specific to this view |
|
589 | - */ |
|
590 | - public function load_scripts_styles_edit() |
|
591 | - { |
|
592 | - //styles |
|
593 | - wp_enqueue_style('espresso-ui-theme'); |
|
594 | - wp_register_style( |
|
595 | - 'event-editor-css', |
|
596 | - EVENTS_ASSETS_URL . 'event-editor.css', |
|
597 | - array('ee-admin-css'), |
|
598 | - EVENT_ESPRESSO_VERSION |
|
599 | - ); |
|
600 | - wp_enqueue_style('event-editor-css'); |
|
601 | - //scripts |
|
602 | - wp_register_script( |
|
603 | - 'event-datetime-metabox', |
|
604 | - EVENTS_ASSETS_URL . 'event-datetime-metabox.js', |
|
605 | - array('event_editor_js', 'ee-datepicker'), |
|
606 | - EVENT_ESPRESSO_VERSION |
|
607 | - ); |
|
608 | - wp_enqueue_script('event-datetime-metabox'); |
|
609 | - } |
|
610 | - |
|
611 | - |
|
612 | - /** |
|
613 | - * Populating the _views property for the category list table view. |
|
614 | - */ |
|
615 | - protected function _set_list_table_views_category_list() |
|
616 | - { |
|
617 | - $this->_views = array( |
|
618 | - 'all' => array( |
|
619 | - 'slug' => 'all', |
|
620 | - 'label' => esc_html__('All', 'event_espresso'), |
|
621 | - 'count' => 0, |
|
622 | - 'bulk_action' => array( |
|
623 | - 'delete_categories' => esc_html__('Delete Permanently', 'event_espresso'), |
|
624 | - ), |
|
625 | - ), |
|
626 | - ); |
|
627 | - } |
|
628 | - |
|
629 | - |
|
630 | - /** |
|
631 | - * For adding anything that fires on the admin_init hook for any route within this admin page group. |
|
632 | - */ |
|
633 | - public function admin_init() |
|
634 | - { |
|
635 | - EE_Registry::$i18n_js_strings['image_confirm'] = esc_html__( |
|
636 | - 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
637 | - 'event_espresso' |
|
638 | - ); |
|
639 | - } |
|
640 | - |
|
641 | - |
|
642 | - /** |
|
643 | - * For adding anything that should be triggered on the admin_notices hook for any route within this admin page group. |
|
644 | - */ |
|
645 | - public function admin_notices() |
|
646 | - { |
|
647 | - } |
|
648 | - |
|
649 | - |
|
650 | - /** |
|
651 | - * For adding anything that should be triggered on the `admin_print_footer_scripts` hook for any route within |
|
652 | - * this admin page group. |
|
653 | - */ |
|
654 | - public function admin_footer_scripts() |
|
655 | - { |
|
656 | - } |
|
657 | - |
|
658 | - |
|
659 | - |
|
660 | - /** |
|
661 | - * Call this function to verify if an event is public and has tickets for sale. If it does, then we need to show a |
|
662 | - * warning (via EE_Error::add_error()); |
|
663 | - * |
|
664 | - * @param EE_Event $event Event object |
|
665 | - * @access public |
|
666 | - * @return void |
|
667 | - */ |
|
668 | - public function verify_event_edit($event = null) |
|
669 | - { |
|
670 | - // no event? |
|
671 | - if (empty($event)) { |
|
672 | - // set event |
|
673 | - $event = $this->_cpt_model_obj; |
|
674 | - } |
|
675 | - // STILL no event? |
|
676 | - if (! $event instanceof EE_Event) { |
|
677 | - return; |
|
678 | - } |
|
679 | - $orig_status = $event->status(); |
|
680 | - // first check if event is active. |
|
681 | - if ( |
|
682 | - $orig_status === EEM_Event::cancelled |
|
683 | - || $orig_status === EEM_Event::postponed |
|
684 | - || $event->is_expired() |
|
685 | - || $event->is_inactive() |
|
686 | - ) { |
|
687 | - return; |
|
688 | - } |
|
689 | - //made it here so it IS active... next check that any of the tickets are sold. |
|
690 | - if ($event->is_sold_out(true)) { |
|
691 | - if ($orig_status !== EEM_Event::sold_out && $event->status() !== $orig_status) { |
|
692 | - EE_Error::add_attention( |
|
693 | - sprintf( |
|
694 | - esc_html__( |
|
695 | - '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.', |
|
696 | - 'event_espresso' |
|
697 | - ), |
|
698 | - EEH_Template::pretty_status(EEM_Event::sold_out, false, 'sentence') |
|
699 | - ) |
|
700 | - ); |
|
701 | - } |
|
702 | - return; |
|
703 | - } else if ($orig_status === EEM_Event::sold_out) { |
|
704 | - EE_Error::add_attention( |
|
705 | - sprintf( |
|
706 | - esc_html__( |
|
707 | - '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.', |
|
708 | - 'event_espresso' |
|
709 | - ), |
|
710 | - EEH_Template::pretty_status($event->status(), false, 'sentence') |
|
711 | - ) |
|
712 | - ); |
|
713 | - } |
|
714 | - //now we need to determine if the event has any tickets on sale. If not then we dont' show the error |
|
715 | - if ( ! $event->tickets_on_sale()) { |
|
716 | - return; |
|
717 | - } |
|
718 | - //made it here so show warning |
|
719 | - $this->_edit_event_warning(); |
|
720 | - } |
|
721 | - |
|
722 | - |
|
723 | - |
|
724 | - /** |
|
725 | - * This is the text used for when an event is being edited that is public and has tickets for sale. |
|
726 | - * When needed, hook this into a EE_Error::add_error() notice. |
|
727 | - * |
|
728 | - * @access protected |
|
729 | - * @return void |
|
730 | - */ |
|
731 | - protected function _edit_event_warning() |
|
732 | - { |
|
733 | - // we don't want to add warnings during these requests |
|
734 | - if (isset($this->_req_data['action']) && $this->_req_data['action'] === 'editpost') { |
|
735 | - return; |
|
736 | - } |
|
737 | - EE_Error::add_attention( |
|
738 | - esc_html__( |
|
739 | - 'Please be advised that this event has been published and is open for registrations on your website. If you update any registration-related details (i.e. custom questions, messages, tickets, datetimes, etc.) while a registration is in process, the registration process could be interrupted and result in errors for the person registering and potentially incorrect registration or transaction data inside Event Espresso. We recommend editing events during a period of slow traffic, or even temporarily changing the status of an event to "Draft" until your edits are complete.', |
|
740 | - 'event_espresso' |
|
741 | - ) |
|
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 | - /** |
|
820 | - * Provides the legend item array for the default list table view. |
|
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 | - /** |
|
877 | - * @return EEM_Event |
|
878 | - */ |
|
879 | - private function _event_model() |
|
880 | - { |
|
881 | - if ( ! $this->_event_model instanceof EEM_Event) { |
|
882 | - $this->_event_model = EE_Registry::instance()->load_model('Event'); |
|
883 | - } |
|
884 | - return $this->_event_model; |
|
885 | - } |
|
886 | - |
|
887 | - |
|
888 | - |
|
889 | - /** |
|
890 | - * Adds extra buttons to the WP CPT permalink field row. |
|
891 | - * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter. |
|
892 | - * |
|
893 | - * @param string $return the current html |
|
894 | - * @param int $id the post id for the page |
|
895 | - * @param string $new_title What the title is |
|
896 | - * @param string $new_slug what the slug is |
|
897 | - * @return string The new html string for the permalink area |
|
898 | - */ |
|
899 | - public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
900 | - { |
|
901 | - //make sure this is only when editing |
|
902 | - if ( ! empty($id)) { |
|
903 | - $post = get_post($id); |
|
904 | - $return .= '<a class="button button-small" onclick="prompt(\'Shortcode:\', jQuery(\'#shortcode\').val()); return false;" href="#" tabindex="-1">' |
|
905 | - . esc_html__('Shortcode', 'event_espresso') |
|
906 | - . '</a> '; |
|
907 | - $return .= '<input id="shortcode" type="hidden" value="[ESPRESSO_TICKET_SELECTOR event_id=' |
|
908 | - . $post->ID |
|
909 | - . ']">'; |
|
910 | - } |
|
911 | - return $return; |
|
912 | - } |
|
913 | - |
|
914 | - |
|
915 | - |
|
916 | - /** |
|
917 | - * _events_overview_list_table |
|
918 | - * This contains the logic for showing the events_overview list |
|
919 | - * |
|
920 | - * @access protected |
|
921 | - * @return void |
|
922 | - * @throws \EE_Error |
|
923 | - */ |
|
924 | - protected function _events_overview_list_table() |
|
925 | - { |
|
926 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
927 | - $this->_template_args['after_list_table'] = ! empty($this->_template_args['after_list_table']) |
|
928 | - ? (array)$this->_template_args['after_list_table'] |
|
929 | - : array(); |
|
930 | - $this->_template_args['after_list_table']['view_event_list_button'] = EEH_HTML::br() |
|
931 | - . EEH_Template::get_button_or_link( |
|
932 | - get_post_type_archive_link('espresso_events'), |
|
933 | - esc_html__("View Event Archive Page", "event_espresso"), |
|
934 | - 'button' |
|
935 | - ); |
|
936 | - $this->_template_args['after_list_table']['legend'] = $this->_display_legend($this->_event_legend_items()); |
|
937 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
938 | - 'create_new', |
|
939 | - 'add', |
|
940 | - array(), |
|
941 | - 'add-new-h2' |
|
942 | - ); |
|
943 | - $this->display_admin_list_table_page_with_no_sidebar(); |
|
944 | - } |
|
945 | - |
|
946 | - |
|
947 | - |
|
948 | - /** |
|
949 | - * this allows for extra misc actions in the default WP publish box |
|
950 | - * |
|
951 | - * @return void |
|
952 | - */ |
|
953 | - public function extra_misc_actions_publish_box() |
|
954 | - { |
|
955 | - $this->_generate_publish_box_extra_content(); |
|
956 | - } |
|
957 | - |
|
958 | - |
|
959 | - |
|
960 | - /** |
|
961 | - * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been |
|
962 | - * saved. Child classes are required to declare this method. Typically you would use this to save any additional |
|
963 | - * data. |
|
964 | - * Keep in mind also that "save_post" runs on EVERY post update to the database. |
|
965 | - * ALSO very important. When a post transitions from scheduled to published, the save_post action is fired but you |
|
966 | - * will NOT have any _POST data containing any extra info you may have from other meta saves. So MAKE sure that |
|
967 | - * you handle this accordingly. |
|
968 | - * |
|
969 | - * @access protected |
|
970 | - * @abstract |
|
971 | - * @param string $post_id The ID of the cpt that was saved (so you can link relationally) |
|
972 | - * @param object $post The post object of the cpt that was saved. |
|
973 | - * @return void |
|
974 | - */ |
|
975 | - protected function _insert_update_cpt_item($post_id, $post) |
|
976 | - { |
|
977 | - if ($post instanceof WP_Post && $post->post_type !== 'espresso_events') { |
|
978 | - //get out we're not processing an event save. |
|
979 | - return; |
|
980 | - } |
|
981 | - $event_values = array( |
|
982 | - 'EVT_display_desc' => ! empty($this->_req_data['display_desc']) ? 1 : 0, |
|
983 | - 'EVT_display_ticket_selector' => ! empty($this->_req_data['display_ticket_selector']) ? 1 : 0, |
|
984 | - 'EVT_additional_limit' => min( |
|
985 | - apply_filters('FHEE__EE_Events_Admin__insert_update_cpt_item__EVT_additional_limit_max', 255), |
|
986 | - ! empty($this->_req_data['additional_limit']) ? $this->_req_data['additional_limit'] : null |
|
987 | - ), |
|
988 | - 'EVT_default_registration_status' => ! empty($this->_req_data['EVT_default_registration_status']) |
|
989 | - ? $this->_req_data['EVT_default_registration_status'] |
|
990 | - : EE_Registry::instance()->CFG->registration->default_STS_ID, |
|
991 | - 'EVT_member_only' => ! empty($this->_req_data['member_only']) ? 1 : 0, |
|
992 | - 'EVT_allow_overflow' => ! empty($this->_req_data['EVT_allow_overflow']) ? 1 : 0, |
|
993 | - 'EVT_timezone_string' => ! empty($this->_req_data['timezone_string']) |
|
994 | - ? $this->_req_data['timezone_string'] : null, |
|
995 | - 'EVT_external_URL' => ! empty($this->_req_data['externalURL']) |
|
996 | - ? $this->_req_data['externalURL'] : null, |
|
997 | - 'EVT_phone' => ! empty($this->_req_data['event_phone']) |
|
998 | - ? $this->_req_data['event_phone'] : null, |
|
999 | - ); |
|
1000 | - //update event |
|
1001 | - $success = $this->_event_model()->update_by_ID($event_values, $post_id); |
|
1002 | - //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! |
|
1003 | - $get_one_where = array($this->_event_model()->primary_key_name() => $post_id, 'status' => $post->post_status); |
|
1004 | - $event = $this->_event_model()->get_one(array($get_one_where)); |
|
1005 | - //the following are default callbacks for event attachment updates that can be overridden by caffeinated functionality and/or addons. |
|
1006 | - $event_update_callbacks = apply_filters( |
|
1007 | - 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
1008 | - array(array($this, '_default_venue_update'), array($this, '_default_tickets_update')) |
|
1009 | - ); |
|
1010 | - $att_success = true; |
|
1011 | - foreach ($event_update_callbacks as $e_callback) { |
|
1012 | - $_succ = call_user_func_array($e_callback, array($event, $this->_req_data)); |
|
1013 | - $att_success = ! $att_success ? $att_success |
|
1014 | - : $_succ; //if ANY of these updates fail then we want the appropriate global error message |
|
1015 | - } |
|
1016 | - //any errors? |
|
1017 | - if ($success && false === $att_success) { |
|
1018 | - EE_Error::add_error( |
|
1019 | - esc_html__( |
|
1020 | - 'Event Details saved successfully but something went wrong with saving attachments.', |
|
1021 | - 'event_espresso' |
|
1022 | - ), |
|
1023 | - __FILE__, |
|
1024 | - __FUNCTION__, |
|
1025 | - __LINE__ |
|
1026 | - ); |
|
1027 | - } else if ($success === false) { |
|
1028 | - EE_Error::add_error( |
|
1029 | - esc_html__('Event Details did not save successfully.', 'event_espresso'), |
|
1030 | - __FILE__, |
|
1031 | - __FUNCTION__, |
|
1032 | - __LINE__ |
|
1033 | - ); |
|
1034 | - } |
|
1035 | - } |
|
1036 | - |
|
1037 | - |
|
1038 | - |
|
1039 | - /** |
|
1040 | - * @see parent::restore_item() |
|
1041 | - * @param int $post_id |
|
1042 | - * @param int $revision_id |
|
1043 | - */ |
|
1044 | - protected function _restore_cpt_item($post_id, $revision_id) |
|
1045 | - { |
|
1046 | - //copy existing event meta to new post |
|
1047 | - $post_evt = $this->_event_model()->get_one_by_ID($post_id); |
|
1048 | - if ($post_evt instanceof EE_Event) { |
|
1049 | - //meta revision restore |
|
1050 | - $post_evt->restore_revision($revision_id); |
|
1051 | - //related objs restore |
|
1052 | - $post_evt->restore_revision($revision_id, array('Venue', 'Datetime', 'Price')); |
|
1053 | - } |
|
1054 | - } |
|
1055 | - |
|
1056 | - |
|
1057 | - |
|
1058 | - /** |
|
1059 | - * Attach the venue to the Event |
|
1060 | - * |
|
1061 | - * @param \EE_Event $evtobj Event Object to add the venue to |
|
1062 | - * @param array $data The request data from the form |
|
1063 | - * @return bool Success or fail. |
|
1064 | - */ |
|
1065 | - protected function _default_venue_update(\EE_Event $evtobj, $data) |
|
1066 | - { |
|
1067 | - require_once(EE_MODELS . 'EEM_Venue.model.php'); |
|
1068 | - $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1069 | - $rows_affected = null; |
|
1070 | - $venue_id = ! empty($data['venue_id']) ? $data['venue_id'] : null; |
|
1071 | - // very important. If we don't have a venue name... |
|
1072 | - // then we'll get out because not necessary to create empty venue |
|
1073 | - if (empty($data['venue_title'])) { |
|
1074 | - return false; |
|
1075 | - } |
|
1076 | - $venue_array = array( |
|
1077 | - 'VNU_wp_user' => $evtobj->get('EVT_wp_user'), |
|
1078 | - 'VNU_name' => ! empty($data['venue_title']) ? $data['venue_title'] : null, |
|
1079 | - 'VNU_desc' => ! empty($data['venue_description']) ? $data['venue_description'] : null, |
|
1080 | - 'VNU_identifier' => ! empty($data['venue_identifier']) ? $data['venue_identifier'] : null, |
|
1081 | - 'VNU_short_desc' => ! empty($data['venue_short_description']) ? $data['venue_short_description'] |
|
1082 | - : null, |
|
1083 | - 'VNU_address' => ! empty($data['address']) ? $data['address'] : null, |
|
1084 | - 'VNU_address2' => ! empty($data['address2']) ? $data['address2'] : null, |
|
1085 | - 'VNU_city' => ! empty($data['city']) ? $data['city'] : null, |
|
1086 | - 'STA_ID' => ! empty($data['state']) ? $data['state'] : null, |
|
1087 | - 'CNT_ISO' => ! empty($data['countries']) ? $data['countries'] : null, |
|
1088 | - 'VNU_zip' => ! empty($data['zip']) ? $data['zip'] : null, |
|
1089 | - 'VNU_phone' => ! empty($data['venue_phone']) ? $data['venue_phone'] : null, |
|
1090 | - 'VNU_capacity' => ! empty($data['venue_capacity']) ? $data['venue_capacity'] : null, |
|
1091 | - 'VNU_url' => ! empty($data['venue_url']) ? $data['venue_url'] : null, |
|
1092 | - 'VNU_virtual_phone' => ! empty($data['virtual_phone']) ? $data['virtual_phone'] : null, |
|
1093 | - 'VNU_virtual_url' => ! empty($data['virtual_url']) ? $data['virtual_url'] : null, |
|
1094 | - 'VNU_enable_for_gmap' => isset($data['enable_for_gmap']) ? 1 : 0, |
|
1095 | - 'status' => 'publish', |
|
1096 | - ); |
|
1097 | - //if we've got the venue_id then we're just updating the existing venue so let's do that and then get out. |
|
1098 | - if ( ! empty($venue_id)) { |
|
1099 | - $update_where = array($venue_model->primary_key_name() => $venue_id); |
|
1100 | - $rows_affected = $venue_model->update($venue_array, array($update_where)); |
|
1101 | - //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. |
|
1102 | - $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1103 | - return $rows_affected > 0 ? true : false; |
|
1104 | - } else { |
|
1105 | - //we insert the venue |
|
1106 | - $venue_id = $venue_model->insert($venue_array); |
|
1107 | - $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1108 | - return ! empty($venue_id) ? true : false; |
|
1109 | - } |
|
1110 | - //when we have the ancestor come in it's already been handled by the revision save. |
|
1111 | - } |
|
1112 | - |
|
1113 | - |
|
1114 | - |
|
1115 | - /** |
|
1116 | - * Handles saving everything related to Tickets (datetimes, tickets, prices) |
|
1117 | - * |
|
1118 | - * @param EE_Event $evtobj The Event object we're attaching data to |
|
1119 | - * @param array $data The request data from the form |
|
1120 | - * @return array |
|
1121 | - */ |
|
1122 | - protected function _default_tickets_update(EE_Event $evtobj, $data) |
|
1123 | - { |
|
1124 | - $success = true; |
|
1125 | - $saved_dtt = null; |
|
1126 | - $saved_tickets = array(); |
|
1127 | - $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1128 | - foreach ($data['edit_event_datetimes'] as $row => $dtt) { |
|
1129 | - //trim all values to ensure any excess whitespace is removed. |
|
1130 | - $dtt = array_map('trim', $dtt); |
|
1131 | - $dtt['DTT_EVT_end'] = isset($dtt['DTT_EVT_end']) && ! empty($dtt['DTT_EVT_end']) ? $dtt['DTT_EVT_end'] |
|
1132 | - : $dtt['DTT_EVT_start']; |
|
1133 | - $datetime_values = array( |
|
1134 | - 'DTT_ID' => ! empty($dtt['DTT_ID']) ? $dtt['DTT_ID'] : null, |
|
1135 | - 'DTT_EVT_start' => $dtt['DTT_EVT_start'], |
|
1136 | - 'DTT_EVT_end' => $dtt['DTT_EVT_end'], |
|
1137 | - 'DTT_reg_limit' => empty($dtt['DTT_reg_limit']) ? EE_INF : $dtt['DTT_reg_limit'], |
|
1138 | - 'DTT_order' => $row, |
|
1139 | - ); |
|
1140 | - //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. |
|
1141 | - if ( ! empty($dtt['DTT_ID'])) { |
|
1142 | - $DTM = EE_Registry::instance() |
|
1143 | - ->load_model('Datetime', array($evtobj->get_timezone())) |
|
1144 | - ->get_one_by_ID($dtt['DTT_ID']); |
|
1145 | - $DTM->set_date_format($incoming_date_formats[0]); |
|
1146 | - $DTM->set_time_format($incoming_date_formats[1]); |
|
1147 | - foreach ($datetime_values as $field => $value) { |
|
1148 | - $DTM->set($field, $value); |
|
1149 | - } |
|
1150 | - //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. |
|
1151 | - $saved_dtts[$DTM->ID()] = $DTM; |
|
1152 | - } else { |
|
1153 | - $DTM = EE_Registry::instance()->load_class( |
|
1154 | - 'Datetime', |
|
1155 | - array($datetime_values, $evtobj->get_timezone(), $incoming_date_formats), |
|
1156 | - false, |
|
1157 | - false |
|
1158 | - ); |
|
1159 | - foreach ($datetime_values as $field => $value) { |
|
1160 | - $DTM->set($field, $value); |
|
1161 | - } |
|
1162 | - } |
|
1163 | - $DTM->save(); |
|
1164 | - $DTT = $evtobj->_add_relation_to($DTM, 'Datetime'); |
|
1165 | - //load DTT helper |
|
1166 | - //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. |
|
1167 | - if ($DTT->get_raw('DTT_EVT_start') > $DTT->get_raw('DTT_EVT_end')) { |
|
1168 | - $DTT->set('DTT_EVT_end', $DTT->get('DTT_EVT_start')); |
|
1169 | - $DTT = EEH_DTT_Helper::date_time_add($DTT, 'DTT_EVT_end', 'days'); |
|
1170 | - $DTT->save(); |
|
1171 | - } |
|
1172 | - //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. |
|
1173 | - $saved_dtt = $DTT; |
|
1174 | - $success = ! $success ? $success : $DTT; |
|
1175 | - //if ANY of these updates fail then we want the appropriate global error message. |
|
1176 | - // //todo this is actually sucky we need a better error message but this is what it is for now. |
|
1177 | - } |
|
1178 | - //no dtts get deleted so we don't do any of that logic here. |
|
1179 | - //update tickets next |
|
1180 | - $old_tickets = isset($data['ticket_IDs']) ? explode(',', $data['ticket_IDs']) : array(); |
|
1181 | - foreach ($data['edit_tickets'] as $row => $tkt) { |
|
1182 | - $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1183 | - $update_prices = false; |
|
1184 | - $ticket_price = isset($data['edit_prices'][$row][1]['PRC_amount']) |
|
1185 | - ? $data['edit_prices'][$row][1]['PRC_amount'] : 0; |
|
1186 | - // trim inputs to ensure any excess whitespace is removed. |
|
1187 | - $tkt = array_map('trim', $tkt); |
|
1188 | - if (empty($tkt['TKT_start_date'])) { |
|
1189 | - //let's use now in the set timezone. |
|
1190 | - $now = new DateTime('now', new DateTimeZone($evtobj->get_timezone())); |
|
1191 | - $tkt['TKT_start_date'] = $now->format($incoming_date_formats[0] . ' ' . $incoming_date_formats[1]); |
|
1192 | - } |
|
1193 | - if (empty($tkt['TKT_end_date'])) { |
|
1194 | - //use the start date of the first datetime |
|
1195 | - $dtt = $evtobj->first_datetime(); |
|
1196 | - $tkt['TKT_end_date'] = $dtt->start_date_and_time( |
|
1197 | - $incoming_date_formats[0], |
|
1198 | - $incoming_date_formats[1] |
|
1199 | - ); |
|
1200 | - } |
|
1201 | - $TKT_values = array( |
|
1202 | - 'TKT_ID' => ! empty($tkt['TKT_ID']) ? $tkt['TKT_ID'] : null, |
|
1203 | - 'TTM_ID' => ! empty($tkt['TTM_ID']) ? $tkt['TTM_ID'] : 0, |
|
1204 | - 'TKT_name' => ! empty($tkt['TKT_name']) ? $tkt['TKT_name'] : '', |
|
1205 | - 'TKT_description' => ! empty($tkt['TKT_description']) ? $tkt['TKT_description'] : '', |
|
1206 | - 'TKT_start_date' => $tkt['TKT_start_date'], |
|
1207 | - 'TKT_end_date' => $tkt['TKT_end_date'], |
|
1208 | - 'TKT_qty' => ! isset($tkt['TKT_qty']) || $tkt['TKT_qty'] === '' ? EE_INF : $tkt['TKT_qty'], |
|
1209 | - 'TKT_uses' => ! isset($tkt['TKT_uses']) || $tkt['TKT_uses'] === '' ? EE_INF : $tkt['TKT_uses'], |
|
1210 | - 'TKT_min' => empty($tkt['TKT_min']) ? 0 : $tkt['TKT_min'], |
|
1211 | - 'TKT_max' => empty($tkt['TKT_max']) ? EE_INF : $tkt['TKT_max'], |
|
1212 | - 'TKT_row' => $row, |
|
1213 | - 'TKT_order' => isset($tkt['TKT_order']) ? $tkt['TKT_order'] : $row, |
|
1214 | - 'TKT_price' => $ticket_price, |
|
1215 | - ); |
|
1216 | - //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. |
|
1217 | - if (isset($tkt['TKT_is_default']) && $tkt['TKT_is_default']) { |
|
1218 | - $TKT_values['TKT_ID'] = 0; |
|
1219 | - $TKT_values['TKT_is_default'] = 0; |
|
1220 | - $TKT_values['TKT_price'] = $ticket_price; |
|
1221 | - $update_prices = true; |
|
1222 | - } |
|
1223 | - //if we have a TKT_ID then we need to get that existing TKT_obj and update it |
|
1224 | - //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. |
|
1225 | - //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. |
|
1226 | - if ( ! empty($tkt['TKT_ID'])) { |
|
1227 | - $TKT = EE_Registry::instance() |
|
1228 | - ->load_model('Ticket', array($evtobj->get_timezone())) |
|
1229 | - ->get_one_by_ID($tkt['TKT_ID']); |
|
1230 | - if ($TKT instanceof EE_Ticket) { |
|
1231 | - $ticket_sold = $TKT->count_related( |
|
1232 | - 'Registration', |
|
1233 | - array( |
|
1234 | - array( |
|
1235 | - 'STS_ID' => array( |
|
1236 | - 'NOT IN', |
|
1237 | - array(EEM_Registration::status_id_incomplete), |
|
1238 | - ), |
|
1239 | - ), |
|
1240 | - ) |
|
1241 | - ) > 0 ? true : false; |
|
1242 | - //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. |
|
1243 | - $create_new_TKT = $ticket_sold && $ticket_price != $TKT->get('TKT_price') |
|
1244 | - && ! $TKT->get( |
|
1245 | - 'TKT_deleted' |
|
1246 | - ) ? true : false; |
|
1247 | - $TKT->set_date_format($incoming_date_formats[0]); |
|
1248 | - $TKT->set_time_format($incoming_date_formats[1]); |
|
1249 | - //set new values |
|
1250 | - foreach ($TKT_values as $field => $value) { |
|
1251 | - if ($field == 'TKT_qty') { |
|
1252 | - $TKT->set_qty($value); |
|
1253 | - } else { |
|
1254 | - $TKT->set($field, $value); |
|
1255 | - } |
|
1256 | - } |
|
1257 | - //if $create_new_TKT is false then we can safely update the existing ticket. Otherwise we have to create a new ticket. |
|
1258 | - if ($create_new_TKT) { |
|
1259 | - //archive the old ticket first |
|
1260 | - $TKT->set('TKT_deleted', 1); |
|
1261 | - $TKT->save(); |
|
1262 | - //make sure this ticket is still recorded in our saved_tkts so we don't run it through the regular trash routine. |
|
1263 | - $saved_tickets[$TKT->ID()] = $TKT; |
|
1264 | - //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. |
|
1265 | - $TKT = clone $TKT; |
|
1266 | - $TKT->set('TKT_ID', 0); |
|
1267 | - $TKT->set('TKT_deleted', 0); |
|
1268 | - $TKT->set('TKT_price', $ticket_price); |
|
1269 | - $TKT->set('TKT_sold', 0); |
|
1270 | - //now we need to make sure that $new prices are created as well and attached to new ticket. |
|
1271 | - $update_prices = true; |
|
1272 | - } |
|
1273 | - //make sure price is set if it hasn't been already |
|
1274 | - $TKT->set('TKT_price', $ticket_price); |
|
1275 | - } |
|
1276 | - } else { |
|
1277 | - //no TKT_id so a new TKT |
|
1278 | - $TKT_values['TKT_price'] = $ticket_price; |
|
1279 | - $TKT = EE_Registry::instance()->load_class('Ticket', array($TKT_values), false, false); |
|
1280 | - if ($TKT instanceof EE_Ticket) { |
|
1281 | - //need to reset values to properly account for the date formats |
|
1282 | - $TKT->set_date_format($incoming_date_formats[0]); |
|
1283 | - $TKT->set_time_format($incoming_date_formats[1]); |
|
1284 | - $TKT->set_timezone($evtobj->get_timezone()); |
|
1285 | - //set new values |
|
1286 | - foreach ($TKT_values as $field => $value) { |
|
1287 | - if ($field == 'TKT_qty') { |
|
1288 | - $TKT->set_qty($value); |
|
1289 | - } else { |
|
1290 | - $TKT->set($field, $value); |
|
1291 | - } |
|
1292 | - } |
|
1293 | - $update_prices = true; |
|
1294 | - } |
|
1295 | - } |
|
1296 | - // cap ticket qty by datetime reg limits |
|
1297 | - $TKT->set_qty(min($TKT->qty(), $TKT->qty('reg_limit'))); |
|
1298 | - //update ticket. |
|
1299 | - $TKT->save(); |
|
1300 | - //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. |
|
1301 | - if ($TKT->get_raw('TKT_start_date') > $TKT->get_raw('TKT_end_date')) { |
|
1302 | - $TKT->set('TKT_end_date', $TKT->get('TKT_start_date')); |
|
1303 | - $TKT = EEH_DTT_Helper::date_time_add($TKT, 'TKT_end_date', 'days'); |
|
1304 | - $TKT->save(); |
|
1305 | - } |
|
1306 | - //initially let's add the ticket to the dtt |
|
1307 | - $saved_dtt->_add_relation_to($TKT, 'Ticket'); |
|
1308 | - $saved_tickets[$TKT->ID()] = $TKT; |
|
1309 | - //add prices to ticket |
|
1310 | - $this->_add_prices_to_ticket($data['edit_prices'][$row], $TKT, $update_prices); |
|
1311 | - } |
|
1312 | - //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. |
|
1313 | - $old_tickets = isset($old_tickets[0]) && $old_tickets[0] == '' ? array() : $old_tickets; |
|
1314 | - $tickets_removed = array_diff($old_tickets, array_keys($saved_tickets)); |
|
1315 | - foreach ($tickets_removed as $id) { |
|
1316 | - $id = absint($id); |
|
1317 | - //get the ticket for this id |
|
1318 | - $tkt_to_remove = EE_Registry::instance()->load_model('Ticket')->get_one_by_ID($id); |
|
1319 | - //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) |
|
1320 | - $dtts = $tkt_to_remove->get_many_related('Datetime'); |
|
1321 | - foreach ($dtts as $dtt) { |
|
1322 | - $tkt_to_remove->_remove_relation_to($dtt, 'Datetime'); |
|
1323 | - } |
|
1324 | - //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)) |
|
1325 | - $tkt_to_remove->delete_related_permanently('Price'); |
|
1326 | - //finally let's delete this ticket (which should not be blocked at this point b/c we've removed all our relationships) |
|
1327 | - $tkt_to_remove->delete_permanently(); |
|
1328 | - } |
|
1329 | - return array($saved_dtt, $saved_tickets); |
|
1330 | - } |
|
1331 | - |
|
1332 | - |
|
1333 | - |
|
1334 | - /** |
|
1335 | - * This attaches a list of given prices to a ticket. |
|
1336 | - * Note we dont' have to worry about ever removing relationships (or archiving prices) because if there is a change |
|
1337 | - * in price information on a ticket, a new ticket is created anyways so the archived ticket will retain the old |
|
1338 | - * price info and prices are automatically "archived" via the ticket. |
|
1339 | - * |
|
1340 | - * @access private |
|
1341 | - * @param array $prices Array of prices from the form. |
|
1342 | - * @param EE_Ticket $ticket EE_Ticket object that prices are being attached to. |
|
1343 | - * @param bool $new_prices Whether attach existing incoming prices or create new ones. |
|
1344 | - * @return void |
|
1345 | - */ |
|
1346 | - private function _add_prices_to_ticket($prices, EE_Ticket $ticket, $new_prices = false) |
|
1347 | - { |
|
1348 | - foreach ($prices as $row => $prc) { |
|
1349 | - $PRC_values = array( |
|
1350 | - 'PRC_ID' => ! empty($prc['PRC_ID']) ? $prc['PRC_ID'] : null, |
|
1351 | - 'PRT_ID' => ! empty($prc['PRT_ID']) ? $prc['PRT_ID'] : null, |
|
1352 | - 'PRC_amount' => ! empty($prc['PRC_amount']) ? $prc['PRC_amount'] : 0, |
|
1353 | - 'PRC_name' => ! empty($prc['PRC_name']) ? $prc['PRC_name'] : '', |
|
1354 | - 'PRC_desc' => ! empty($prc['PRC_desc']) ? $prc['PRC_desc'] : '', |
|
1355 | - 'PRC_is_default' => 0, //make sure prices are NOT set as default from this context |
|
1356 | - 'PRC_order' => $row, |
|
1357 | - ); |
|
1358 | - if ($new_prices || empty($PRC_values['PRC_ID'])) { |
|
1359 | - $PRC_values['PRC_ID'] = 0; |
|
1360 | - $PRC = EE_Registry::instance()->load_class('Price', array($PRC_values), false, false); |
|
1361 | - } else { |
|
1362 | - $PRC = EE_Registry::instance()->load_model('Price')->get_one_by_ID($prc['PRC_ID']); |
|
1363 | - //update this price with new values |
|
1364 | - foreach ($PRC_values as $field => $newprc) { |
|
1365 | - $PRC->set($field, $newprc); |
|
1366 | - } |
|
1367 | - $PRC->save(); |
|
1368 | - } |
|
1369 | - $ticket->_add_relation_to($PRC, 'Price'); |
|
1370 | - } |
|
1371 | - } |
|
1372 | - |
|
1373 | - |
|
1374 | - |
|
1375 | - /** |
|
1376 | - * Add in our autosave ajax handlers |
|
1377 | - * |
|
1378 | - */ |
|
1379 | - protected function _ee_autosave_create_new() |
|
1380 | - { |
|
1381 | - } |
|
1382 | - |
|
1383 | - |
|
1384 | - /** |
|
1385 | - * More autosave handlers. |
|
1386 | - */ |
|
1387 | - protected function _ee_autosave_edit() |
|
1388 | - { |
|
1389 | - return; //TEMPORARILY EXITING CAUSE THIS IS A TODO |
|
1390 | - } |
|
1391 | - |
|
1392 | - |
|
1393 | - |
|
1394 | - /** |
|
1395 | - * _generate_publish_box_extra_content |
|
1396 | - */ |
|
1397 | - private function _generate_publish_box_extra_content() |
|
1398 | - { |
|
1399 | - //load formatter helper |
|
1400 | - //args for getting related registrations |
|
1401 | - $approved_query_args = array( |
|
1402 | - array( |
|
1403 | - 'REG_deleted' => 0, |
|
1404 | - 'STS_ID' => EEM_Registration::status_id_approved, |
|
1405 | - ), |
|
1406 | - ); |
|
1407 | - $not_approved_query_args = array( |
|
1408 | - array( |
|
1409 | - 'REG_deleted' => 0, |
|
1410 | - 'STS_ID' => EEM_Registration::status_id_not_approved, |
|
1411 | - ), |
|
1412 | - ); |
|
1413 | - $pending_payment_query_args = array( |
|
1414 | - array( |
|
1415 | - 'REG_deleted' => 0, |
|
1416 | - 'STS_ID' => EEM_Registration::status_id_pending_payment, |
|
1417 | - ), |
|
1418 | - ); |
|
1419 | - // publish box |
|
1420 | - $publish_box_extra_args = array( |
|
1421 | - 'view_approved_reg_url' => add_query_arg( |
|
1422 | - array( |
|
1423 | - 'action' => 'default', |
|
1424 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1425 | - '_reg_status' => EEM_Registration::status_id_approved, |
|
1426 | - ), |
|
1427 | - REG_ADMIN_URL |
|
1428 | - ), |
|
1429 | - 'view_not_approved_reg_url' => add_query_arg( |
|
1430 | - array( |
|
1431 | - 'action' => 'default', |
|
1432 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1433 | - '_reg_status' => EEM_Registration::status_id_not_approved, |
|
1434 | - ), |
|
1435 | - REG_ADMIN_URL |
|
1436 | - ), |
|
1437 | - 'view_pending_payment_reg_url' => add_query_arg( |
|
1438 | - array( |
|
1439 | - 'action' => 'default', |
|
1440 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1441 | - '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
1442 | - ), |
|
1443 | - REG_ADMIN_URL |
|
1444 | - ), |
|
1445 | - 'approved_regs' => $this->_cpt_model_obj->count_related( |
|
1446 | - 'Registration', |
|
1447 | - $approved_query_args |
|
1448 | - ), |
|
1449 | - 'not_approved_regs' => $this->_cpt_model_obj->count_related( |
|
1450 | - 'Registration', |
|
1451 | - $not_approved_query_args |
|
1452 | - ), |
|
1453 | - 'pending_payment_regs' => $this->_cpt_model_obj->count_related( |
|
1454 | - 'Registration', |
|
1455 | - $pending_payment_query_args |
|
1456 | - ), |
|
1457 | - 'misc_pub_section_class' => apply_filters( |
|
1458 | - 'FHEE_Events_Admin_Page___generate_publish_box_extra_content__misc_pub_section_class', |
|
1459 | - 'misc-pub-section' |
|
1460 | - ), |
|
1461 | - ); |
|
1462 | - ob_start(); |
|
1463 | - do_action( |
|
1464 | - 'AHEE__Events_Admin_Page___generate_publish_box_extra_content__event_editor_overview_add', |
|
1465 | - $this->_cpt_model_obj |
|
1466 | - ); |
|
1467 | - $publish_box_extra_args['event_editor_overview_add'] = ob_get_clean(); |
|
1468 | - // load template |
|
1469 | - EEH_Template::display_template( |
|
1470 | - EVENTS_TEMPLATE_PATH . 'event_publish_box_extras.template.php', |
|
1471 | - $publish_box_extra_args |
|
1472 | - ); |
|
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 | - /** |
|
1605 | - * Setup an individual ticket form for the decaf event editor page |
|
1606 | - * |
|
1607 | - * @access private |
|
1608 | - * @param EE_Ticket $ticket the ticket object |
|
1609 | - * @param boolean $skeleton whether we're generating a skeleton for js manipulation |
|
1610 | - * @param int $row |
|
1611 | - * @return string generated html for the ticket row. |
|
1612 | - */ |
|
1613 | - private function _get_ticket_row($ticket, $skeleton = false, $row = 0) |
|
1614 | - { |
|
1615 | - $template_args = array( |
|
1616 | - 'tkt_status_class' => ' tkt-status-' . $ticket->ticket_status(), |
|
1617 | - 'tkt_archive_class' => $ticket->ticket_status() === EE_Ticket::archived && ! $skeleton ? ' tkt-archived' |
|
1618 | - : '', |
|
1619 | - 'ticketrow' => $skeleton ? 'TICKETNUM' : $row, |
|
1620 | - 'TKT_ID' => $ticket->get('TKT_ID'), |
|
1621 | - 'TKT_name' => $ticket->get('TKT_name'), |
|
1622 | - 'TKT_start_date' => $skeleton ? '' : $ticket->get_date('TKT_start_date', 'Y-m-d h:i a'), |
|
1623 | - 'TKT_end_date' => $skeleton ? '' : $ticket->get_date('TKT_end_date', 'Y-m-d h:i a'), |
|
1624 | - 'TKT_is_default' => $ticket->get('TKT_is_default'), |
|
1625 | - 'TKT_qty' => $ticket->get_pretty('TKT_qty', 'input'), |
|
1626 | - 'edit_ticketrow_name' => $skeleton ? 'TICKETNAMEATTR' : 'edit_tickets', |
|
1627 | - 'TKT_sold' => $skeleton ? 0 : $ticket->get('TKT_sold'), |
|
1628 | - 'trash_icon' => ($skeleton || ( ! empty($ticket) && ! $ticket->get('TKT_deleted'))) |
|
1629 | - && ( ! empty($ticket) && $ticket->get('TKT_sold') === 0) |
|
1630 | - ? 'trash-icon dashicons dashicons-post-trash clickable' : 'ee-lock-icon', |
|
1631 | - 'disabled' => $skeleton || ( ! empty($ticket) && ! $ticket->get('TKT_deleted')) ? '' |
|
1632 | - : ' disabled=disabled', |
|
1633 | - ); |
|
1634 | - $price = $ticket->ID() !== 0 |
|
1635 | - ? $ticket->get_first_related('Price', array('default_where_conditions' => 'none')) |
|
1636 | - : EE_Registry::instance()->load_model('Price')->create_default_object(); |
|
1637 | - $price_args = array( |
|
1638 | - 'price_currency_symbol' => EE_Registry::instance()->CFG->currency->sign, |
|
1639 | - 'PRC_amount' => $price->get('PRC_amount'), |
|
1640 | - 'PRT_ID' => $price->get('PRT_ID'), |
|
1641 | - 'PRC_ID' => $price->get('PRC_ID'), |
|
1642 | - 'PRC_is_default' => $price->get('PRC_is_default'), |
|
1643 | - ); |
|
1644 | - //make sure we have default start and end dates if skeleton |
|
1645 | - //handle rows that should NOT be empty |
|
1646 | - if (empty($template_args['TKT_start_date'])) { |
|
1647 | - //if empty then the start date will be now. |
|
1648 | - $template_args['TKT_start_date'] = date('Y-m-d h:i a', current_time('timestamp')); |
|
1649 | - } |
|
1650 | - if (empty($template_args['TKT_end_date'])) { |
|
1651 | - //get the earliest datetime (if present); |
|
1652 | - $earliest_dtt = $this->_cpt_model_obj->ID() > 0 |
|
1653 | - ? $this->_cpt_model_obj->get_first_related( |
|
1654 | - 'Datetime', |
|
1655 | - array('order_by' => array('DTT_EVT_start' => 'ASC')) |
|
1656 | - ) |
|
1657 | - : null; |
|
1658 | - if ( ! empty($earliest_dtt)) { |
|
1659 | - $template_args['TKT_end_date'] = $earliest_dtt->get_datetime('DTT_EVT_start', 'Y-m-d', 'h:i a'); |
|
1660 | - } else { |
|
1661 | - $template_args['TKT_end_date'] = date( |
|
1662 | - 'Y-m-d h:i a', |
|
1663 | - mktime(0, 0, 0, date("m"), date("d") + 7, date("Y")) |
|
1664 | - ); |
|
1665 | - } |
|
1666 | - } |
|
1667 | - $template_args = array_merge($template_args, $price_args); |
|
1668 | - $template = apply_filters( |
|
1669 | - 'FHEE__Events_Admin_Page__get_ticket_row__template', |
|
1670 | - EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_ticket_row.template.php', |
|
1671 | - $ticket |
|
1672 | - ); |
|
1673 | - return EEH_Template::display_template($template, $template_args, true); |
|
1674 | - } |
|
1675 | - |
|
1676 | - |
|
1677 | - /** |
|
1678 | - * @throws DomainException |
|
1679 | - */ |
|
1680 | - public function registration_options_meta_box() |
|
1681 | - { |
|
1682 | - $yes_no_values = array( |
|
1683 | - array('id' => true, 'text' => esc_html__('Yes', 'event_espresso')), |
|
1684 | - array('id' => false, 'text' => esc_html__('No', 'event_espresso')), |
|
1685 | - ); |
|
1686 | - $default_reg_status_values = EEM_Registration::reg_status_array( |
|
1687 | - array( |
|
1688 | - EEM_Registration::status_id_cancelled, |
|
1689 | - EEM_Registration::status_id_declined, |
|
1690 | - EEM_Registration::status_id_incomplete, |
|
1691 | - ), |
|
1692 | - true |
|
1693 | - ); |
|
1694 | - //$template_args['is_active_select'] = EEH_Form_Fields::select_input('is_active', $yes_no_values, $this->_cpt_model_obj->is_active()); |
|
1695 | - $template_args['_event'] = $this->_cpt_model_obj; |
|
1696 | - $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
1697 | - $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
1698 | - $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
1699 | - 'default_reg_status', |
|
1700 | - $default_reg_status_values, |
|
1701 | - $this->_cpt_model_obj->default_registration_status() |
|
1702 | - ); |
|
1703 | - $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
1704 | - 'display_desc', |
|
1705 | - $yes_no_values, |
|
1706 | - $this->_cpt_model_obj->display_description() |
|
1707 | - ); |
|
1708 | - $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
1709 | - 'display_ticket_selector', |
|
1710 | - $yes_no_values, |
|
1711 | - $this->_cpt_model_obj->display_ticket_selector(), |
|
1712 | - '', |
|
1713 | - '', |
|
1714 | - false |
|
1715 | - ); |
|
1716 | - $template_args['additional_registration_options'] = apply_filters( |
|
1717 | - 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
1718 | - '', |
|
1719 | - $template_args, |
|
1720 | - $yes_no_values, |
|
1721 | - $default_reg_status_values |
|
1722 | - ); |
|
1723 | - EEH_Template::display_template( |
|
1724 | - EVENTS_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
1725 | - $template_args |
|
1726 | - ); |
|
1727 | - } |
|
1728 | - |
|
1729 | - |
|
1730 | - |
|
1731 | - /** |
|
1732 | - * _get_events() |
|
1733 | - * This method simply returns all the events (for the given _view and paging) |
|
1734 | - * |
|
1735 | - * @access public |
|
1736 | - * @param int $per_page count of items per page (20 default); |
|
1737 | - * @param int $current_page what is the current page being viewed. |
|
1738 | - * @param bool $count if TRUE then we just return a count of ALL events matching the given _view. |
|
1739 | - * If FALSE then we return an array of event objects |
|
1740 | - * that match the given _view and paging parameters. |
|
1741 | - * @return array an array of event objects. |
|
1742 | - */ |
|
1743 | - public function get_events($per_page = 10, $current_page = 1, $count = false) |
|
1744 | - { |
|
1745 | - $EEME = $this->_event_model(); |
|
1746 | - $offset = ($current_page - 1) * $per_page; |
|
1747 | - $limit = $count ? null : $offset . ',' . $per_page; |
|
1748 | - $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'EVT_ID'; |
|
1749 | - $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : "DESC"; |
|
1750 | - if (isset($this->_req_data['month_range'])) { |
|
1751 | - $pieces = explode(' ', $this->_req_data['month_range'], 3); |
|
1752 | - //simulate the FIRST day of the month, that fixes issues for months like February |
|
1753 | - //where PHP doesn't know what to assume for date. |
|
1754 | - //@see https://events.codebasehq.com/projects/event-espresso/tickets/10437 |
|
1755 | - $month_r = ! empty($pieces[0]) ? date('m', \EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) : ''; |
|
1756 | - $year_r = ! empty($pieces[1]) ? $pieces[1] : ''; |
|
1757 | - } |
|
1758 | - $where = array(); |
|
1759 | - $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
1760 | - //determine what post_status our condition will have for the query. |
|
1761 | - switch ($status) { |
|
1762 | - case 'month' : |
|
1763 | - case 'today' : |
|
1764 | - case null : |
|
1765 | - case 'all' : |
|
1766 | - break; |
|
1767 | - case 'draft' : |
|
1768 | - $where['status'] = array('IN', array('draft', 'auto-draft')); |
|
1769 | - break; |
|
1770 | - default : |
|
1771 | - $where['status'] = $status; |
|
1772 | - } |
|
1773 | - //categories? |
|
1774 | - $category = isset($this->_req_data['EVT_CAT']) && $this->_req_data['EVT_CAT'] > 0 |
|
1775 | - ? $this->_req_data['EVT_CAT'] : null; |
|
1776 | - if ( ! empty ($category)) { |
|
1777 | - $where['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
1778 | - $where['Term_Taxonomy.term_id'] = $category; |
|
1779 | - } |
|
1780 | - //date where conditions |
|
1781 | - $start_formats = EEM_Datetime::instance()->get_formats_for('DTT_EVT_start'); |
|
1782 | - if (isset($this->_req_data['month_range']) && $this->_req_data['month_range'] != '') { |
|
1783 | - $DateTime = new DateTime( |
|
1784 | - $year_r . '-' . $month_r . '-01 00:00:00', |
|
1785 | - new DateTimeZone(EEM_Datetime::instance()->get_timezone()) |
|
1786 | - ); |
|
1787 | - $start = $DateTime->format(implode(' ', $start_formats)); |
|
1788 | - $end = $DateTime->setDate($year_r, $month_r, $DateTime |
|
1789 | - ->format('t'))->setTime(23, 59, 59) |
|
1790 | - ->format(implode(' ', $start_formats)); |
|
1791 | - $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1792 | - } else if (isset($this->_req_data['status']) && $this->_req_data['status'] == 'today') { |
|
1793 | - $DateTime = new DateTime('now', new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1794 | - $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1795 | - $end = $DateTime->setTime(23, 59, 59)->format(implode(' ', $start_formats)); |
|
1796 | - $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1797 | - } else if (isset($this->_req_data['status']) && $this->_req_data['status'] == 'month') { |
|
1798 | - $now = date('Y-m-01'); |
|
1799 | - $DateTime = new DateTime($now, new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1800 | - $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1801 | - $end = $DateTime->setDate(date('Y'), date('m'), $DateTime->format('t')) |
|
1802 | - ->setTime(23, 59, 59) |
|
1803 | - ->format(implode(' ', $start_formats)); |
|
1804 | - $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1805 | - } |
|
1806 | - if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events')) { |
|
1807 | - $where['EVT_wp_user'] = get_current_user_id(); |
|
1808 | - } else { |
|
1809 | - if ( ! isset($where['status'])) { |
|
1810 | - if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_private_events', 'get_events')) { |
|
1811 | - $where['OR'] = array( |
|
1812 | - 'status*restrict_private' => array('!=', 'private'), |
|
1813 | - 'AND' => array( |
|
1814 | - 'status*inclusive' => array('=', 'private'), |
|
1815 | - 'EVT_wp_user' => get_current_user_id(), |
|
1816 | - ), |
|
1817 | - ); |
|
1818 | - } |
|
1819 | - } |
|
1820 | - } |
|
1821 | - if (isset($this->_req_data['EVT_wp_user'])) { |
|
1822 | - if ($this->_req_data['EVT_wp_user'] != get_current_user_id() |
|
1823 | - && EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events') |
|
1824 | - ) { |
|
1825 | - $where['EVT_wp_user'] = $this->_req_data['EVT_wp_user']; |
|
1826 | - } |
|
1827 | - } |
|
1828 | - //search query handling |
|
1829 | - if (isset($this->_req_data['s'])) { |
|
1830 | - $search_string = '%' . $this->_req_data['s'] . '%'; |
|
1831 | - $where['OR'] = array( |
|
1832 | - 'EVT_name' => array('LIKE', $search_string), |
|
1833 | - 'EVT_desc' => array('LIKE', $search_string), |
|
1834 | - 'EVT_short_desc' => array('LIKE', $search_string), |
|
1835 | - ); |
|
1836 | - } |
|
1837 | - $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $this->_req_data); |
|
1838 | - $query_params = apply_filters( |
|
1839 | - 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1840 | - array( |
|
1841 | - $where, |
|
1842 | - 'limit' => $limit, |
|
1843 | - 'order_by' => $orderby, |
|
1844 | - 'order' => $order, |
|
1845 | - 'group_by' => 'EVT_ID', |
|
1846 | - ), |
|
1847 | - $this->_req_data |
|
1848 | - ); |
|
1849 | - //let's first check if we have special requests coming in. |
|
1850 | - if (isset($this->_req_data['active_status'])) { |
|
1851 | - switch ($this->_req_data['active_status']) { |
|
1852 | - case 'upcoming' : |
|
1853 | - return $EEME->get_upcoming_events($query_params, $count); |
|
1854 | - break; |
|
1855 | - case 'expired' : |
|
1856 | - return $EEME->get_expired_events($query_params, $count); |
|
1857 | - break; |
|
1858 | - case 'active' : |
|
1859 | - return $EEME->get_active_events($query_params, $count); |
|
1860 | - break; |
|
1861 | - case 'inactive' : |
|
1862 | - return $EEME->get_inactive_events($query_params, $count); |
|
1863 | - break; |
|
1864 | - } |
|
1865 | - } |
|
1866 | - $events = $count ? $EEME->count(array($where), 'EVT_ID', true) : $EEME->get_all($query_params); |
|
1867 | - return $events; |
|
1868 | - } |
|
1869 | - |
|
1870 | - |
|
1871 | - |
|
1872 | - /** |
|
1873 | - * handling for WordPress CPT actions (trash, restore, delete) |
|
1874 | - * |
|
1875 | - * @param string $post_id |
|
1876 | - */ |
|
1877 | - public function trash_cpt_item($post_id) |
|
1878 | - { |
|
1879 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1880 | - $this->_trash_or_restore_event('trash', false); |
|
1881 | - } |
|
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 | - /** |
|
1897 | - * @param string $post_id |
|
1898 | - */ |
|
1899 | - public function delete_cpt_item($post_id) |
|
1900 | - { |
|
1901 | - $this->_req_data['EVT_ID'] = $post_id; |
|
1902 | - $this->_delete_event(false); |
|
1903 | - } |
|
1904 | - |
|
1905 | - |
|
1906 | - |
|
1907 | - /** |
|
1908 | - * _trash_or_restore_event |
|
1909 | - * |
|
1910 | - * @access protected |
|
1911 | - * @param string $event_status |
|
1912 | - * @param bool $redirect_after |
|
1913 | - */ |
|
1914 | - protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
1915 | - { |
|
1916 | - //determine the event id and set to array. |
|
1917 | - $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : false; |
|
1918 | - // loop thru events |
|
1919 | - if ($EVT_ID) { |
|
1920 | - // clean status |
|
1921 | - $event_status = sanitize_key($event_status); |
|
1922 | - // grab status |
|
1923 | - if ( ! empty($event_status)) { |
|
1924 | - $success = $this->_change_event_status($EVT_ID, $event_status); |
|
1925 | - } else { |
|
1926 | - $success = false; |
|
1927 | - $msg = esc_html__( |
|
1928 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1929 | - 'event_espresso' |
|
1930 | - ); |
|
1931 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1932 | - } |
|
1933 | - } else { |
|
1934 | - $success = false; |
|
1935 | - $msg = esc_html__( |
|
1936 | - 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
1937 | - 'event_espresso' |
|
1938 | - ); |
|
1939 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1940 | - } |
|
1941 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1942 | - if ($redirect_after) { |
|
1943 | - $this->_redirect_after_action($success, 'Event', $action, array('action' => 'default')); |
|
1944 | - } |
|
1945 | - } |
|
1946 | - |
|
1947 | - |
|
1948 | - |
|
1949 | - /** |
|
1950 | - * _trash_or_restore_events |
|
1951 | - * |
|
1952 | - * @access protected |
|
1953 | - * @param string $event_status |
|
1954 | - * @return void |
|
1955 | - */ |
|
1956 | - protected function _trash_or_restore_events($event_status = 'trash') |
|
1957 | - { |
|
1958 | - // clean status |
|
1959 | - $event_status = sanitize_key($event_status); |
|
1960 | - // grab status |
|
1961 | - if ( ! empty($event_status)) { |
|
1962 | - $success = true; |
|
1963 | - //determine the event id and set to array. |
|
1964 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array)$this->_req_data['EVT_IDs'] : array(); |
|
1965 | - // loop thru events |
|
1966 | - foreach ($EVT_IDs as $EVT_ID) { |
|
1967 | - if ($EVT_ID = absint($EVT_ID)) { |
|
1968 | - $results = $this->_change_event_status($EVT_ID, $event_status); |
|
1969 | - $success = $results !== false ? $success : false; |
|
1970 | - } else { |
|
1971 | - $msg = sprintf( |
|
1972 | - esc_html__( |
|
1973 | - 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
1974 | - 'event_espresso' |
|
1975 | - ), |
|
1976 | - $EVT_ID |
|
1977 | - ); |
|
1978 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1979 | - $success = false; |
|
1980 | - } |
|
1981 | - } |
|
1982 | - } else { |
|
1983 | - $success = false; |
|
1984 | - $msg = esc_html__( |
|
1985 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1986 | - 'event_espresso' |
|
1987 | - ); |
|
1988 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1989 | - } |
|
1990 | - // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
1991 | - $success = $success ? 2 : false; |
|
1992 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1993 | - $this->_redirect_after_action($success, 'Events', $action, array('action' => 'default')); |
|
1994 | - } |
|
1995 | - |
|
1996 | - |
|
1997 | - |
|
1998 | - /** |
|
1999 | - * _trash_or_restore_events |
|
2000 | - * |
|
2001 | - * @access private |
|
2002 | - * @param int $EVT_ID |
|
2003 | - * @param string $event_status |
|
2004 | - * @return bool |
|
2005 | - */ |
|
2006 | - private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2007 | - { |
|
2008 | - // grab event id |
|
2009 | - if ( ! $EVT_ID) { |
|
2010 | - $msg = esc_html__( |
|
2011 | - 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2012 | - 'event_espresso' |
|
2013 | - ); |
|
2014 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2015 | - return false; |
|
2016 | - } |
|
2017 | - $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2018 | - // clean status |
|
2019 | - $event_status = sanitize_key($event_status); |
|
2020 | - // grab status |
|
2021 | - if (empty($event_status)) { |
|
2022 | - $msg = esc_html__( |
|
2023 | - 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2024 | - 'event_espresso' |
|
2025 | - ); |
|
2026 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2027 | - return false; |
|
2028 | - } |
|
2029 | - // was event trashed or restored ? |
|
2030 | - switch ($event_status) { |
|
2031 | - case 'draft' : |
|
2032 | - $action = 'restored from the trash'; |
|
2033 | - $hook = 'AHEE_event_restored_from_trash'; |
|
2034 | - break; |
|
2035 | - case 'trash' : |
|
2036 | - $action = 'moved to the trash'; |
|
2037 | - $hook = 'AHEE_event_moved_to_trash'; |
|
2038 | - break; |
|
2039 | - default : |
|
2040 | - $action = 'updated'; |
|
2041 | - $hook = false; |
|
2042 | - } |
|
2043 | - //use class to change status |
|
2044 | - $this->_cpt_model_obj->set_status($event_status); |
|
2045 | - $success = $this->_cpt_model_obj->save(); |
|
2046 | - if ($success === false) { |
|
2047 | - $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2048 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2049 | - return false; |
|
2050 | - } |
|
2051 | - if ($hook) { |
|
2052 | - do_action($hook); |
|
2053 | - } |
|
2054 | - return true; |
|
2055 | - } |
|
2056 | - |
|
2057 | - |
|
2058 | - |
|
2059 | - /** |
|
2060 | - * _delete_event |
|
2061 | - * |
|
2062 | - * @access protected |
|
2063 | - * @param bool $redirect_after |
|
2064 | - */ |
|
2065 | - protected function _delete_event($redirect_after = true) |
|
2066 | - { |
|
2067 | - //determine the event id and set to array. |
|
2068 | - $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : null; |
|
2069 | - $EVT_ID = isset($this->_req_data['post']) ? absint($this->_req_data['post']) : $EVT_ID; |
|
2070 | - // loop thru events |
|
2071 | - if ($EVT_ID) { |
|
2072 | - $success = $this->_permanently_delete_event($EVT_ID); |
|
2073 | - // get list of events with no prices |
|
2074 | - $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2075 | - // remove this event from the list of events with no prices |
|
2076 | - if (isset($espresso_no_ticket_prices[$EVT_ID])) { |
|
2077 | - unset($espresso_no_ticket_prices[$EVT_ID]); |
|
2078 | - } |
|
2079 | - update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2080 | - } else { |
|
2081 | - $success = false; |
|
2082 | - $msg = esc_html__( |
|
2083 | - 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2084 | - 'event_espresso' |
|
2085 | - ); |
|
2086 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2087 | - } |
|
2088 | - if ($redirect_after) { |
|
2089 | - $this->_redirect_after_action( |
|
2090 | - $success, |
|
2091 | - 'Event', |
|
2092 | - 'deleted', |
|
2093 | - array('action' => 'default', 'status' => 'trash') |
|
2094 | - ); |
|
2095 | - } |
|
2096 | - } |
|
2097 | - |
|
2098 | - |
|
2099 | - |
|
2100 | - /** |
|
2101 | - * _delete_events |
|
2102 | - * |
|
2103 | - * @access protected |
|
2104 | - * @return void |
|
2105 | - */ |
|
2106 | - protected function _delete_events() |
|
2107 | - { |
|
2108 | - $success = true; |
|
2109 | - // get list of events with no prices |
|
2110 | - $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2111 | - //determine the event id and set to array. |
|
2112 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array)$this->_req_data['EVT_IDs'] : array(); |
|
2113 | - // loop thru events |
|
2114 | - foreach ($EVT_IDs as $EVT_ID) { |
|
2115 | - $EVT_ID = absint($EVT_ID); |
|
2116 | - if ($EVT_ID) { |
|
2117 | - $results = $this->_permanently_delete_event($EVT_ID); |
|
2118 | - $success = $results !== false ? $success : false; |
|
2119 | - // remove this event from the list of events with no prices |
|
2120 | - unset($espresso_no_ticket_prices[$EVT_ID]); |
|
2121 | - } else { |
|
2122 | - $success = false; |
|
2123 | - $msg = esc_html__( |
|
2124 | - 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2125 | - 'event_espresso' |
|
2126 | - ); |
|
2127 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2128 | - } |
|
2129 | - } |
|
2130 | - update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2131 | - // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2132 | - $success = $success ? 2 : false; |
|
2133 | - $this->_redirect_after_action($success, 'Events', 'deleted', array('action' => 'default')); |
|
2134 | - } |
|
2135 | - |
|
2136 | - |
|
2137 | - |
|
2138 | - /** |
|
2139 | - * _permanently_delete_event |
|
2140 | - * |
|
2141 | - * @access private |
|
2142 | - * @param int $EVT_ID |
|
2143 | - * @return bool |
|
2144 | - */ |
|
2145 | - private function _permanently_delete_event($EVT_ID = 0) |
|
2146 | - { |
|
2147 | - // grab event id |
|
2148 | - if ( ! $EVT_ID) { |
|
2149 | - $msg = esc_html__( |
|
2150 | - 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2151 | - 'event_espresso' |
|
2152 | - ); |
|
2153 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2154 | - return false; |
|
2155 | - } |
|
2156 | - if ( |
|
2157 | - ! $this->_cpt_model_obj instanceof EE_Event |
|
2158 | - || $this->_cpt_model_obj->ID() !== $EVT_ID |
|
2159 | - ) { |
|
2160 | - $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2161 | - } |
|
2162 | - if ( ! $this->_cpt_model_obj instanceof EE_Event) { |
|
2163 | - return false; |
|
2164 | - } |
|
2165 | - //need to delete related tickets and prices first. |
|
2166 | - $datetimes = $this->_cpt_model_obj->get_many_related('Datetime'); |
|
2167 | - foreach ($datetimes as $datetime) { |
|
2168 | - $this->_cpt_model_obj->_remove_relation_to($datetime, 'Datetime'); |
|
2169 | - $tickets = $datetime->get_many_related('Ticket'); |
|
2170 | - foreach ($tickets as $ticket) { |
|
2171 | - $ticket->_remove_relation_to($datetime, 'Datetime'); |
|
2172 | - $ticket->delete_related_permanently('Price'); |
|
2173 | - $ticket->delete_permanently(); |
|
2174 | - } |
|
2175 | - $datetime->delete(); |
|
2176 | - } |
|
2177 | - //what about related venues or terms? |
|
2178 | - $venues = $this->_cpt_model_obj->get_many_related('Venue'); |
|
2179 | - foreach ($venues as $venue) { |
|
2180 | - $this->_cpt_model_obj->_remove_relation_to($venue, 'Venue'); |
|
2181 | - } |
|
2182 | - //any attached question groups? |
|
2183 | - $question_groups = $this->_cpt_model_obj->get_many_related('Question_Group'); |
|
2184 | - if ( ! empty($question_groups)) { |
|
2185 | - foreach ($question_groups as $question_group) { |
|
2186 | - $this->_cpt_model_obj->_remove_relation_to($question_group, 'Question_Group'); |
|
2187 | - } |
|
2188 | - } |
|
2189 | - //Message Template Groups |
|
2190 | - $this->_cpt_model_obj->_remove_relations('Message_Template_Group'); |
|
2191 | - /** @type EE_Term_Taxonomy[] $term_taxonomies */ |
|
2192 | - $term_taxonomies = $this->_cpt_model_obj->term_taxonomies(); |
|
2193 | - foreach ($term_taxonomies as $term_taxonomy) { |
|
2194 | - $this->_cpt_model_obj->remove_relation_to_term_taxonomy($term_taxonomy); |
|
2195 | - } |
|
2196 | - $success = $this->_cpt_model_obj->delete_permanently(); |
|
2197 | - // did it all go as planned ? |
|
2198 | - if ($success) { |
|
2199 | - $msg = sprintf(esc_html__('Event ID # %d has been deleted.', 'event_espresso'), $EVT_ID); |
|
2200 | - EE_Error::add_success($msg); |
|
2201 | - } else { |
|
2202 | - $msg = sprintf( |
|
2203 | - esc_html__('An error occurred. Event ID # %d could not be deleted.', 'event_espresso'), |
|
2204 | - $EVT_ID |
|
2205 | - ); |
|
2206 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2207 | - return false; |
|
2208 | - } |
|
2209 | - do_action('AHEE__Events_Admin_Page___permanently_delete_event__after_event_deleted', $EVT_ID); |
|
2210 | - return true; |
|
2211 | - } |
|
2212 | - |
|
2213 | - |
|
2214 | - |
|
2215 | - /** |
|
2216 | - * get total number of events |
|
2217 | - * |
|
2218 | - * @access public |
|
2219 | - * @return int |
|
2220 | - */ |
|
2221 | - public function total_events() |
|
2222 | - { |
|
2223 | - $count = EEM_Event::instance()->count(array('caps' => 'read_admin'), 'EVT_ID', true); |
|
2224 | - return $count; |
|
2225 | - } |
|
2226 | - |
|
2227 | - |
|
2228 | - |
|
2229 | - /** |
|
2230 | - * get total number of draft events |
|
2231 | - * |
|
2232 | - * @access public |
|
2233 | - * @return int |
|
2234 | - */ |
|
2235 | - public function total_events_draft() |
|
2236 | - { |
|
2237 | - $where = array( |
|
2238 | - 'status' => array('IN', array('draft', 'auto-draft')), |
|
2239 | - ); |
|
2240 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2241 | - return $count; |
|
2242 | - } |
|
2243 | - |
|
2244 | - |
|
2245 | - |
|
2246 | - /** |
|
2247 | - * get total number of trashed events |
|
2248 | - * |
|
2249 | - * @access public |
|
2250 | - * @return int |
|
2251 | - */ |
|
2252 | - public function total_trashed_events() |
|
2253 | - { |
|
2254 | - $where = array( |
|
2255 | - 'status' => 'trash', |
|
2256 | - ); |
|
2257 | - $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2258 | - return $count; |
|
2259 | - } |
|
2260 | - |
|
2261 | - |
|
2262 | - /** |
|
2263 | - * _default_event_settings |
|
2264 | - * This generates the Default Settings Tab |
|
2265 | - * |
|
2266 | - * @return void |
|
2267 | - * @throws EE_Error |
|
2268 | - */ |
|
2269 | - protected function _default_event_settings() |
|
2270 | - { |
|
2271 | - $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2272 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2273 | - $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2274 | - $this->display_admin_page_with_sidebar(); |
|
2275 | - } |
|
2276 | - |
|
2277 | - |
|
2278 | - /** |
|
2279 | - * Return the form for event settings. |
|
2280 | - * @return EE_Form_Section_Proper |
|
2281 | - */ |
|
2282 | - protected function _default_event_settings_form() |
|
2283 | - { |
|
2284 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2285 | - $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2286 | - //exclude |
|
2287 | - array( |
|
2288 | - EEM_Registration::status_id_cancelled, |
|
2289 | - EEM_Registration::status_id_declined, |
|
2290 | - EEM_Registration::status_id_incomplete, |
|
2291 | - EEM_Registration::status_id_wait_list, |
|
2292 | - ), |
|
2293 | - true |
|
2294 | - ); |
|
2295 | - return new EE_Form_Section_Proper( |
|
2296 | - array( |
|
2297 | - 'name' => 'update_default_event_settings', |
|
2298 | - 'html_id' => 'update_default_event_settings', |
|
2299 | - 'html_class' => 'form-table', |
|
2300 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2301 | - 'subsections' => apply_filters( |
|
2302 | - 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2303 | - array( |
|
2304 | - 'default_reg_status' => new EE_Select_Input( |
|
2305 | - $registration_stati_for_selection, |
|
2306 | - array( |
|
2307 | - 'default' => isset($registration_config->default_STS_ID) |
|
2308 | - && array_key_exists( |
|
2309 | - $registration_config->default_STS_ID, |
|
2310 | - $registration_stati_for_selection |
|
2311 | - ) |
|
2312 | - ? sanitize_text_field($registration_config->default_STS_ID) |
|
2313 | - : EEM_Registration::status_id_pending_payment, |
|
2314 | - 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2315 | - . EEH_Template::get_help_tab_link( |
|
2316 | - 'default_settings_status_help_tab' |
|
2317 | - ), |
|
2318 | - 'html_help_text' => esc_html__( |
|
2319 | - '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.', |
|
2320 | - 'event_espresso' |
|
2321 | - ) |
|
2322 | - ) |
|
2323 | - ), |
|
2324 | - 'default_max_tickets' => new EE_Integer_Input( |
|
2325 | - array( |
|
2326 | - 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2327 | - ? $registration_config->default_maximum_number_of_tickets |
|
2328 | - : EEM_Event::get_default_additional_limit(), |
|
2329 | - 'html_label_text' => esc_html__( |
|
2330 | - 'Default Maximum Tickets Allowed Per Order:', |
|
2331 | - 'event_espresso' |
|
2332 | - ) . EEH_Template::get_help_tab_link( |
|
2333 | - 'default_maximum_tickets_help_tab"' |
|
2334 | - ), |
|
2335 | - 'html_help_text' => esc_html__( |
|
2336 | - 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2337 | - 'event_espresso' |
|
2338 | - ) |
|
2339 | - ) |
|
2340 | - ) |
|
2341 | - ) |
|
2342 | - ) |
|
2343 | - ) |
|
2344 | - ); |
|
2345 | - } |
|
2346 | - |
|
2347 | - |
|
2348 | - /** |
|
2349 | - * _update_default_event_settings |
|
2350 | - * |
|
2351 | - * @access protected |
|
2352 | - * @return void |
|
2353 | - * @throws EE_Error |
|
2354 | - */ |
|
2355 | - protected function _update_default_event_settings() |
|
2356 | - { |
|
2357 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2358 | - $form = $this->_default_event_settings_form(); |
|
2359 | - if ($form->was_submitted()) { |
|
2360 | - $form->receive_form_submission(); |
|
2361 | - if ($form->is_valid()) { |
|
2362 | - $valid_data = $form->valid_data(); |
|
2363 | - if (isset($valid_data['default_reg_status'])) { |
|
2364 | - $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2365 | - } |
|
2366 | - if (isset($valid_data['default_max_tickets'])) { |
|
2367 | - $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2368 | - } |
|
2369 | - //update because data was valid! |
|
2370 | - EE_Registry::instance()->CFG->update_espresso_config(); |
|
2371 | - EE_Error::overwrite_success(); |
|
2372 | - EE_Error::add_success( |
|
2373 | - __('Default Event Settings were updated', 'event_espresso') |
|
2374 | - ); |
|
2375 | - } |
|
2376 | - } |
|
2377 | - $this->_redirect_after_action(0, '', '', array('action' => 'default_event_settings'), true); |
|
2378 | - } |
|
2379 | - |
|
2380 | - |
|
2381 | - |
|
2382 | - /************* Templates *************/ |
|
2383 | - protected function _template_settings() |
|
2384 | - { |
|
2385 | - $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2386 | - $this->_template_args['preview_img'] = '<img src="' |
|
2387 | - . EVENTS_ASSETS_URL |
|
2388 | - . DS |
|
2389 | - . 'images' |
|
2390 | - . DS |
|
2391 | - . 'caffeinated_template_features.jpg" alt="' |
|
2392 | - . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2393 | - . '" />'; |
|
2394 | - $this->_template_args['preview_text'] = '<strong>' . esc_html__( |
|
2395 | - '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.', |
|
2396 | - 'event_espresso' |
|
2397 | - ) . '</strong>'; |
|
2398 | - $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2399 | - } |
|
2400 | - |
|
2401 | - |
|
2402 | - /** Event Category Stuff **/ |
|
2403 | - /** |
|
2404 | - * set the _category property with the category object for the loaded page. |
|
2405 | - * |
|
2406 | - * @access private |
|
2407 | - * @return void |
|
2408 | - */ |
|
2409 | - private function _set_category_object() |
|
2410 | - { |
|
2411 | - if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2412 | - return; |
|
2413 | - } //already have the category object so get out. |
|
2414 | - //set default category object |
|
2415 | - $this->_set_empty_category_object(); |
|
2416 | - //only set if we've got an id |
|
2417 | - if ( ! isset($this->_req_data['EVT_CAT_ID'])) { |
|
2418 | - return; |
|
2419 | - } |
|
2420 | - $category_id = absint($this->_req_data['EVT_CAT_ID']); |
|
2421 | - $term = get_term($category_id, 'espresso_event_categories'); |
|
2422 | - if ( ! empty($term)) { |
|
2423 | - $this->_category->category_name = $term->name; |
|
2424 | - $this->_category->category_identifier = $term->slug; |
|
2425 | - $this->_category->category_desc = $term->description; |
|
2426 | - $this->_category->id = $term->term_id; |
|
2427 | - $this->_category->parent = $term->parent; |
|
2428 | - } |
|
2429 | - } |
|
2430 | - |
|
2431 | - |
|
2432 | - /** |
|
2433 | - * Clears out category properties. |
|
2434 | - */ |
|
2435 | - private function _set_empty_category_object() |
|
2436 | - { |
|
2437 | - $this->_category = new stdClass(); |
|
2438 | - $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2439 | - $this->_category->id = $this->_category->parent = 0; |
|
2440 | - } |
|
2441 | - |
|
2442 | - |
|
2443 | - /** |
|
2444 | - * @throws EE_Error |
|
2445 | - */ |
|
2446 | - protected function _category_list_table() |
|
2447 | - { |
|
2448 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2449 | - $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2450 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2451 | - 'add_category', |
|
2452 | - 'add_category', |
|
2453 | - array(), |
|
2454 | - 'add-new-h2' |
|
2455 | - ); |
|
2456 | - $this->display_admin_list_table_page_with_sidebar(); |
|
2457 | - } |
|
2458 | - |
|
2459 | - |
|
2460 | - |
|
2461 | - /** |
|
2462 | - * Output category details view. |
|
2463 | - */ |
|
2464 | - protected function _category_details($view) |
|
2465 | - { |
|
2466 | - //load formatter helper |
|
2467 | - //load field generator helper |
|
2468 | - $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2469 | - $this->_set_add_edit_form_tags($route); |
|
2470 | - $this->_set_category_object(); |
|
2471 | - $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2472 | - $delete_action = 'delete_category'; |
|
2473 | - //custom redirect |
|
2474 | - $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2475 | - array('action' => 'category_list'), |
|
2476 | - $this->_admin_base_url |
|
2477 | - ); |
|
2478 | - $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2479 | - //take care of contents |
|
2480 | - $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2481 | - $this->display_admin_page_with_sidebar(); |
|
2482 | - } |
|
2483 | - |
|
2484 | - |
|
2485 | - |
|
2486 | - /** |
|
2487 | - * Output category details content. |
|
2488 | - */ |
|
2489 | - protected function _category_details_content() |
|
2490 | - { |
|
2491 | - $editor_args['category_desc'] = array( |
|
2492 | - 'type' => 'wp_editor', |
|
2493 | - 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2494 | - 'class' => 'my_editor_custom', |
|
2495 | - 'wpeditor_args' => array('media_buttons' => false), |
|
2496 | - ); |
|
2497 | - $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2498 | - $all_terms = get_terms( |
|
2499 | - array('espresso_event_categories'), |
|
2500 | - array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
2501 | - ); |
|
2502 | - //setup category select for term parents. |
|
2503 | - $category_select_values[] = array( |
|
2504 | - 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2505 | - 'id' => 0, |
|
2506 | - ); |
|
2507 | - foreach ($all_terms as $term) { |
|
2508 | - $category_select_values[] = array( |
|
2509 | - 'text' => $term->name, |
|
2510 | - 'id' => $term->term_id, |
|
2511 | - ); |
|
2512 | - } |
|
2513 | - $category_select = EEH_Form_Fields::select_input( |
|
2514 | - 'category_parent', |
|
2515 | - $category_select_values, |
|
2516 | - $this->_category->parent |
|
2517 | - ); |
|
2518 | - $template_args = array( |
|
2519 | - 'category' => $this->_category, |
|
2520 | - 'category_select' => $category_select, |
|
2521 | - 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2522 | - 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2523 | - 'disable' => '', |
|
2524 | - 'disabled_message' => false, |
|
2525 | - ); |
|
2526 | - $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2527 | - return EEH_Template::display_template($template, $template_args, true); |
|
2528 | - } |
|
2529 | - |
|
2530 | - |
|
2531 | - /** |
|
2532 | - * Handles deleting categories. |
|
2533 | - */ |
|
2534 | - protected function _delete_categories() |
|
2535 | - { |
|
2536 | - $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array)$this->_req_data['EVT_CAT_ID'] |
|
2537 | - : (array)$this->_req_data['category_id']; |
|
2538 | - foreach ($cat_ids as $cat_id) { |
|
2539 | - $this->_delete_category($cat_id); |
|
2540 | - } |
|
2541 | - //doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2542 | - $query_args = array( |
|
2543 | - 'action' => 'category_list', |
|
2544 | - ); |
|
2545 | - $this->_redirect_after_action(0, '', '', $query_args); |
|
2546 | - } |
|
2547 | - |
|
2548 | - |
|
2549 | - |
|
2550 | - /** |
|
2551 | - * Handles deleting specific category. |
|
2552 | - * @param int $cat_id |
|
2553 | - */ |
|
2554 | - protected function _delete_category($cat_id) |
|
2555 | - { |
|
2556 | - $cat_id = absint($cat_id); |
|
2557 | - wp_delete_term($cat_id, 'espresso_event_categories'); |
|
2558 | - } |
|
2559 | - |
|
2560 | - |
|
2561 | - |
|
2562 | - /** |
|
2563 | - * Handles triggering the update or insertion of a new category. |
|
2564 | - * @param bool $new_category true means we're triggering the insert of a new category. |
|
2565 | - */ |
|
2566 | - protected function _insert_or_update_category($new_category) |
|
2567 | - { |
|
2568 | - $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2569 | - $success = 0; //we already have a success message so lets not send another. |
|
2570 | - if ($cat_id) { |
|
2571 | - $query_args = array( |
|
2572 | - 'action' => 'edit_category', |
|
2573 | - 'EVT_CAT_ID' => $cat_id, |
|
2574 | - ); |
|
2575 | - } else { |
|
2576 | - $query_args = array('action' => 'add_category'); |
|
2577 | - } |
|
2578 | - $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2579 | - } |
|
2580 | - |
|
2581 | - |
|
2582 | - |
|
2583 | - /** |
|
2584 | - * Inserts or updates category |
|
2585 | - * @param bool $update (true indicates we're updating a category). |
|
2586 | - * @return bool|mixed|string |
|
2587 | - */ |
|
2588 | - private function _insert_category($update = false) |
|
2589 | - { |
|
2590 | - $cat_id = $update ? $this->_req_data['EVT_CAT_ID'] : ''; |
|
2591 | - $category_name = isset($this->_req_data['category_name']) ? $this->_req_data['category_name'] : ''; |
|
2592 | - $category_desc = isset($this->_req_data['category_desc']) ? $this->_req_data['category_desc'] : ''; |
|
2593 | - $category_parent = isset($this->_req_data['category_parent']) ? $this->_req_data['category_parent'] : 0; |
|
2594 | - if (empty($category_name)) { |
|
2595 | - $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2596 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2597 | - return false; |
|
2598 | - } |
|
2599 | - $term_args = array( |
|
2600 | - 'name' => $category_name, |
|
2601 | - 'description' => $category_desc, |
|
2602 | - 'parent' => $category_parent, |
|
2603 | - ); |
|
2604 | - //was the category_identifier input disabled? |
|
2605 | - if (isset($this->_req_data['category_identifier'])) { |
|
2606 | - $term_args['slug'] = $this->_req_data['category_identifier']; |
|
2607 | - } |
|
2608 | - $insert_ids = $update |
|
2609 | - ? wp_update_term($cat_id, 'espresso_event_categories', $term_args) |
|
2610 | - : wp_insert_term($category_name, 'espresso_event_categories', $term_args); |
|
2611 | - if ( ! is_array($insert_ids)) { |
|
2612 | - $msg = esc_html__( |
|
2613 | - 'An error occurred and the category has not been saved to the database.', |
|
2614 | - 'event_espresso' |
|
2615 | - ); |
|
2616 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2617 | - } else { |
|
2618 | - $cat_id = $insert_ids['term_id']; |
|
2619 | - $msg = sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2620 | - EE_Error::add_success($msg); |
|
2621 | - } |
|
2622 | - return $cat_id; |
|
2623 | - } |
|
2624 | - |
|
2625 | - |
|
2626 | - |
|
2627 | - /** |
|
2628 | - * Gets categories or count of categories matching the arguments in the request. |
|
2629 | - * @param int $per_page |
|
2630 | - * @param int $current_page |
|
2631 | - * @param bool $count |
|
2632 | - * @return EE_Base_Class[]|EE_Term_Taxonomy[]|int |
|
2633 | - */ |
|
2634 | - public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2635 | - { |
|
2636 | - //testing term stuff |
|
2637 | - $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'Term.term_id'; |
|
2638 | - $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : 'DESC'; |
|
2639 | - $limit = ($current_page - 1) * $per_page; |
|
2640 | - $where = array('taxonomy' => 'espresso_event_categories'); |
|
2641 | - if (isset($this->_req_data['s'])) { |
|
2642 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2643 | - $where['OR'] = array( |
|
2644 | - 'Term.name' => array('LIKE', $sstr), |
|
2645 | - 'description' => array('LIKE', $sstr), |
|
2646 | - ); |
|
2647 | - } |
|
2648 | - $query_params = array( |
|
2649 | - $where, |
|
2650 | - 'order_by' => array($orderby => $order), |
|
2651 | - 'limit' => $limit . ',' . $per_page, |
|
2652 | - 'force_join' => array('Term'), |
|
2653 | - ); |
|
2654 | - $categories = $count |
|
2655 | - ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2656 | - : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2657 | - return $categories; |
|
2658 | - } |
|
2659 | - |
|
2660 | - /* end category stuff */ |
|
2661 | - /**************/ |
|
2662 | - |
|
2663 | - |
|
2664 | - /** |
|
2665 | - * Callback for the `ee_save_timezone_setting` ajax action. |
|
2666 | - * @throws EE_Error |
|
2667 | - */ |
|
2668 | - public function save_timezonestring_setting() |
|
2669 | - { |
|
2670 | - $timezone_string = isset($this->_req_data['timezone_selected']) |
|
2671 | - ? $this->_req_data['timezone_selected'] |
|
2672 | - : ''; |
|
2673 | - if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) |
|
2674 | - { |
|
2675 | - EE_Error::add_error( |
|
2676 | - esc_html('An invalid timezone string submitted.', 'event_espresso'), |
|
2677 | - __FILE__, __FUNCTION__, __LINE__ |
|
2678 | - ); |
|
2679 | - $this->_template_args['error'] = true; |
|
2680 | - $this->_return_json(); |
|
2681 | - } |
|
2682 | - |
|
2683 | - update_option('timezone_string', $timezone_string); |
|
2684 | - EE_Error::add_success( |
|
2685 | - esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2686 | - ); |
|
2687 | - $this->_template_args['success'] = true; |
|
2688 | - $this->_return_json(true, array('action' => 'create_new')); |
|
2689 | - } |
|
394 | + 'qtips' => array('EE_Event_Editor_Decaf_Tips'), |
|
395 | + 'require_nonce' => false, |
|
396 | + ), |
|
397 | + 'default_event_settings' => array( |
|
398 | + 'nav' => array( |
|
399 | + 'label' => esc_html__('Default Settings', 'event_espresso'), |
|
400 | + 'order' => 40, |
|
401 | + ), |
|
402 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
403 | + 'labels' => array( |
|
404 | + 'publishbox' => esc_html__('Update Settings', 'event_espresso'), |
|
405 | + ), |
|
406 | + 'help_tabs' => array( |
|
407 | + 'default_settings_help_tab' => array( |
|
408 | + 'title' => esc_html__('Default Event Settings', 'event_espresso'), |
|
409 | + 'filename' => 'events_default_settings', |
|
410 | + ), |
|
411 | + 'default_settings_status_help_tab' => array( |
|
412 | + 'title' => esc_html__('Default Registration Status', 'event_espresso'), |
|
413 | + 'filename' => 'events_default_settings_status', |
|
414 | + ), |
|
415 | + 'default_maximum_tickets_help_tab' => array( |
|
416 | + 'title' => esc_html__('Default Maximum Tickets Per Order', 'event_espresso'), |
|
417 | + 'filename' => 'events_default_settings_max_tickets', |
|
418 | + ) |
|
419 | + ), |
|
420 | + 'help_tour' => array('Event_Default_Settings_Help_Tour'), |
|
421 | + 'require_nonce' => false, |
|
422 | + ), |
|
423 | + //template settings |
|
424 | + 'template_settings' => array( |
|
425 | + 'nav' => array( |
|
426 | + 'label' => esc_html__('Templates', 'event_espresso'), |
|
427 | + 'order' => 30, |
|
428 | + ), |
|
429 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
430 | + 'help_tabs' => array( |
|
431 | + 'general_settings_templates_help_tab' => array( |
|
432 | + 'title' => esc_html__('Templates', 'event_espresso'), |
|
433 | + 'filename' => 'general_settings_templates', |
|
434 | + ), |
|
435 | + ), |
|
436 | + 'help_tour' => array('Templates_Help_Tour'), |
|
437 | + 'require_nonce' => false, |
|
438 | + ), |
|
439 | + //event category stuff |
|
440 | + 'add_category' => array( |
|
441 | + 'nav' => array( |
|
442 | + 'label' => esc_html__('Add Category', 'event_espresso'), |
|
443 | + 'order' => 15, |
|
444 | + 'persistent' => false, |
|
445 | + ), |
|
446 | + 'help_tabs' => array( |
|
447 | + 'add_category_help_tab' => array( |
|
448 | + 'title' => esc_html__('Add New Event Category', 'event_espresso'), |
|
449 | + 'filename' => 'events_add_category', |
|
450 | + ), |
|
451 | + ), |
|
452 | + 'help_tour' => array('Event_Add_Category_Help_Tour'), |
|
453 | + 'metaboxes' => array('_publish_post_box'), |
|
454 | + 'require_nonce' => false, |
|
455 | + ), |
|
456 | + 'edit_category' => array( |
|
457 | + 'nav' => array( |
|
458 | + 'label' => esc_html__('Edit Category', 'event_espresso'), |
|
459 | + 'order' => 15, |
|
460 | + 'persistent' => false, |
|
461 | + 'url' => isset($this->_req_data['EVT_CAT_ID']) |
|
462 | + ? add_query_arg( |
|
463 | + array('EVT_CAT_ID' => $this->_req_data['EVT_CAT_ID']), |
|
464 | + $this->_current_page_view_url |
|
465 | + ) |
|
466 | + : $this->_admin_base_url, |
|
467 | + ), |
|
468 | + 'help_tabs' => array( |
|
469 | + 'edit_category_help_tab' => array( |
|
470 | + 'title' => esc_html__('Edit Event Category', 'event_espresso'), |
|
471 | + 'filename' => 'events_edit_category', |
|
472 | + ), |
|
473 | + ), |
|
474 | + /*'help_tour' => array('Event_Edit_Category_Help_Tour'),*/ |
|
475 | + 'metaboxes' => array('_publish_post_box'), |
|
476 | + 'require_nonce' => false, |
|
477 | + ), |
|
478 | + 'category_list' => array( |
|
479 | + 'nav' => array( |
|
480 | + 'label' => esc_html__('Categories', 'event_espresso'), |
|
481 | + 'order' => 20, |
|
482 | + ), |
|
483 | + 'list_table' => 'Event_Categories_Admin_List_Table', |
|
484 | + 'help_tabs' => array( |
|
485 | + 'events_categories_help_tab' => array( |
|
486 | + 'title' => esc_html__('Event Categories', 'event_espresso'), |
|
487 | + 'filename' => 'events_categories', |
|
488 | + ), |
|
489 | + 'events_categories_table_column_headings_help_tab' => array( |
|
490 | + 'title' => esc_html__('Event Categories Table Column Headings', 'event_espresso'), |
|
491 | + 'filename' => 'events_categories_table_column_headings', |
|
492 | + ), |
|
493 | + 'events_categories_view_help_tab' => array( |
|
494 | + 'title' => esc_html__('Event Categories Views', 'event_espresso'), |
|
495 | + 'filename' => 'events_categories_views', |
|
496 | + ), |
|
497 | + 'events_categories_other_help_tab' => array( |
|
498 | + 'title' => esc_html__('Event Categories Other', 'event_espresso'), |
|
499 | + 'filename' => 'events_categories_other', |
|
500 | + ), |
|
501 | + ), |
|
502 | + 'help_tour' => array( |
|
503 | + 'Event_Categories_Help_Tour', |
|
504 | + ), |
|
505 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
506 | + 'require_nonce' => false, |
|
507 | + ), |
|
508 | + ); |
|
509 | + } |
|
510 | + |
|
511 | + |
|
512 | + /** |
|
513 | + * Used to register any global screen options if necessary for every route in this admin page group. |
|
514 | + */ |
|
515 | + protected function _add_screen_options() |
|
516 | + { |
|
517 | + } |
|
518 | + |
|
519 | + |
|
520 | + /** |
|
521 | + * Implementing the screen options for the 'default' route. |
|
522 | + */ |
|
523 | + protected function _add_screen_options_default() |
|
524 | + { |
|
525 | + $this->_per_page_screen_option(); |
|
526 | + } |
|
527 | + |
|
528 | + |
|
529 | + /** |
|
530 | + * Implementing screen options for the category list route. |
|
531 | + */ |
|
532 | + protected function _add_screen_options_category_list() |
|
533 | + { |
|
534 | + $page_title = $this->_admin_page_title; |
|
535 | + $this->_admin_page_title = esc_html__('Categories', 'event_espresso'); |
|
536 | + $this->_per_page_screen_option(); |
|
537 | + $this->_admin_page_title = $page_title; |
|
538 | + } |
|
539 | + |
|
540 | + |
|
541 | + /** |
|
542 | + * Used to register any global feature pointers for the admin page group. |
|
543 | + */ |
|
544 | + protected function _add_feature_pointers() |
|
545 | + { |
|
546 | + } |
|
547 | + |
|
548 | + |
|
549 | + /** |
|
550 | + * Registers and enqueues any global scripts and styles for the entire admin page group. |
|
551 | + */ |
|
552 | + public function load_scripts_styles() |
|
553 | + { |
|
554 | + wp_register_style( |
|
555 | + 'events-admin-css', |
|
556 | + EVENTS_ASSETS_URL . 'events-admin-page.css', |
|
557 | + array(), |
|
558 | + EVENT_ESPRESSO_VERSION |
|
559 | + ); |
|
560 | + wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL . 'ee-cat-admin.css', array(), EVENT_ESPRESSO_VERSION); |
|
561 | + wp_enqueue_style('events-admin-css'); |
|
562 | + wp_enqueue_style('ee-cat-admin'); |
|
563 | + //todo note: we also need to load_scripts_styles per view (i.e. default/view_report/event_details |
|
564 | + //registers for all views |
|
565 | + //scripts |
|
566 | + wp_register_script( |
|
567 | + 'event_editor_js', |
|
568 | + EVENTS_ASSETS_URL . 'event_editor.js', |
|
569 | + array('ee_admin_js', 'jquery-ui-slider', 'jquery-ui-timepicker-addon'), |
|
570 | + EVENT_ESPRESSO_VERSION, |
|
571 | + true |
|
572 | + ); |
|
573 | + } |
|
574 | + |
|
575 | + |
|
576 | + |
|
577 | + /** |
|
578 | + * Enqueuing scripts and styles specific to this view |
|
579 | + */ |
|
580 | + public function load_scripts_styles_create_new() |
|
581 | + { |
|
582 | + $this->load_scripts_styles_edit(); |
|
583 | + } |
|
584 | + |
|
585 | + |
|
586 | + |
|
587 | + /** |
|
588 | + * Enqueuing scripts and styles specific to this view |
|
589 | + */ |
|
590 | + public function load_scripts_styles_edit() |
|
591 | + { |
|
592 | + //styles |
|
593 | + wp_enqueue_style('espresso-ui-theme'); |
|
594 | + wp_register_style( |
|
595 | + 'event-editor-css', |
|
596 | + EVENTS_ASSETS_URL . 'event-editor.css', |
|
597 | + array('ee-admin-css'), |
|
598 | + EVENT_ESPRESSO_VERSION |
|
599 | + ); |
|
600 | + wp_enqueue_style('event-editor-css'); |
|
601 | + //scripts |
|
602 | + wp_register_script( |
|
603 | + 'event-datetime-metabox', |
|
604 | + EVENTS_ASSETS_URL . 'event-datetime-metabox.js', |
|
605 | + array('event_editor_js', 'ee-datepicker'), |
|
606 | + EVENT_ESPRESSO_VERSION |
|
607 | + ); |
|
608 | + wp_enqueue_script('event-datetime-metabox'); |
|
609 | + } |
|
610 | + |
|
611 | + |
|
612 | + /** |
|
613 | + * Populating the _views property for the category list table view. |
|
614 | + */ |
|
615 | + protected function _set_list_table_views_category_list() |
|
616 | + { |
|
617 | + $this->_views = array( |
|
618 | + 'all' => array( |
|
619 | + 'slug' => 'all', |
|
620 | + 'label' => esc_html__('All', 'event_espresso'), |
|
621 | + 'count' => 0, |
|
622 | + 'bulk_action' => array( |
|
623 | + 'delete_categories' => esc_html__('Delete Permanently', 'event_espresso'), |
|
624 | + ), |
|
625 | + ), |
|
626 | + ); |
|
627 | + } |
|
628 | + |
|
629 | + |
|
630 | + /** |
|
631 | + * For adding anything that fires on the admin_init hook for any route within this admin page group. |
|
632 | + */ |
|
633 | + public function admin_init() |
|
634 | + { |
|
635 | + EE_Registry::$i18n_js_strings['image_confirm'] = esc_html__( |
|
636 | + 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
637 | + 'event_espresso' |
|
638 | + ); |
|
639 | + } |
|
640 | + |
|
641 | + |
|
642 | + /** |
|
643 | + * For adding anything that should be triggered on the admin_notices hook for any route within this admin page group. |
|
644 | + */ |
|
645 | + public function admin_notices() |
|
646 | + { |
|
647 | + } |
|
648 | + |
|
649 | + |
|
650 | + /** |
|
651 | + * For adding anything that should be triggered on the `admin_print_footer_scripts` hook for any route within |
|
652 | + * this admin page group. |
|
653 | + */ |
|
654 | + public function admin_footer_scripts() |
|
655 | + { |
|
656 | + } |
|
657 | + |
|
658 | + |
|
659 | + |
|
660 | + /** |
|
661 | + * Call this function to verify if an event is public and has tickets for sale. If it does, then we need to show a |
|
662 | + * warning (via EE_Error::add_error()); |
|
663 | + * |
|
664 | + * @param EE_Event $event Event object |
|
665 | + * @access public |
|
666 | + * @return void |
|
667 | + */ |
|
668 | + public function verify_event_edit($event = null) |
|
669 | + { |
|
670 | + // no event? |
|
671 | + if (empty($event)) { |
|
672 | + // set event |
|
673 | + $event = $this->_cpt_model_obj; |
|
674 | + } |
|
675 | + // STILL no event? |
|
676 | + if (! $event instanceof EE_Event) { |
|
677 | + return; |
|
678 | + } |
|
679 | + $orig_status = $event->status(); |
|
680 | + // first check if event is active. |
|
681 | + if ( |
|
682 | + $orig_status === EEM_Event::cancelled |
|
683 | + || $orig_status === EEM_Event::postponed |
|
684 | + || $event->is_expired() |
|
685 | + || $event->is_inactive() |
|
686 | + ) { |
|
687 | + return; |
|
688 | + } |
|
689 | + //made it here so it IS active... next check that any of the tickets are sold. |
|
690 | + if ($event->is_sold_out(true)) { |
|
691 | + if ($orig_status !== EEM_Event::sold_out && $event->status() !== $orig_status) { |
|
692 | + EE_Error::add_attention( |
|
693 | + sprintf( |
|
694 | + esc_html__( |
|
695 | + '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.', |
|
696 | + 'event_espresso' |
|
697 | + ), |
|
698 | + EEH_Template::pretty_status(EEM_Event::sold_out, false, 'sentence') |
|
699 | + ) |
|
700 | + ); |
|
701 | + } |
|
702 | + return; |
|
703 | + } else if ($orig_status === EEM_Event::sold_out) { |
|
704 | + EE_Error::add_attention( |
|
705 | + sprintf( |
|
706 | + esc_html__( |
|
707 | + '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.', |
|
708 | + 'event_espresso' |
|
709 | + ), |
|
710 | + EEH_Template::pretty_status($event->status(), false, 'sentence') |
|
711 | + ) |
|
712 | + ); |
|
713 | + } |
|
714 | + //now we need to determine if the event has any tickets on sale. If not then we dont' show the error |
|
715 | + if ( ! $event->tickets_on_sale()) { |
|
716 | + return; |
|
717 | + } |
|
718 | + //made it here so show warning |
|
719 | + $this->_edit_event_warning(); |
|
720 | + } |
|
721 | + |
|
722 | + |
|
723 | + |
|
724 | + /** |
|
725 | + * This is the text used for when an event is being edited that is public and has tickets for sale. |
|
726 | + * When needed, hook this into a EE_Error::add_error() notice. |
|
727 | + * |
|
728 | + * @access protected |
|
729 | + * @return void |
|
730 | + */ |
|
731 | + protected function _edit_event_warning() |
|
732 | + { |
|
733 | + // we don't want to add warnings during these requests |
|
734 | + if (isset($this->_req_data['action']) && $this->_req_data['action'] === 'editpost') { |
|
735 | + return; |
|
736 | + } |
|
737 | + EE_Error::add_attention( |
|
738 | + esc_html__( |
|
739 | + 'Please be advised that this event has been published and is open for registrations on your website. If you update any registration-related details (i.e. custom questions, messages, tickets, datetimes, etc.) while a registration is in process, the registration process could be interrupted and result in errors for the person registering and potentially incorrect registration or transaction data inside Event Espresso. We recommend editing events during a period of slow traffic, or even temporarily changing the status of an event to "Draft" until your edits are complete.', |
|
740 | + 'event_espresso' |
|
741 | + ) |
|
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 | + /** |
|
820 | + * Provides the legend item array for the default list table view. |
|
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 | + /** |
|
877 | + * @return EEM_Event |
|
878 | + */ |
|
879 | + private function _event_model() |
|
880 | + { |
|
881 | + if ( ! $this->_event_model instanceof EEM_Event) { |
|
882 | + $this->_event_model = EE_Registry::instance()->load_model('Event'); |
|
883 | + } |
|
884 | + return $this->_event_model; |
|
885 | + } |
|
886 | + |
|
887 | + |
|
888 | + |
|
889 | + /** |
|
890 | + * Adds extra buttons to the WP CPT permalink field row. |
|
891 | + * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter. |
|
892 | + * |
|
893 | + * @param string $return the current html |
|
894 | + * @param int $id the post id for the page |
|
895 | + * @param string $new_title What the title is |
|
896 | + * @param string $new_slug what the slug is |
|
897 | + * @return string The new html string for the permalink area |
|
898 | + */ |
|
899 | + public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
900 | + { |
|
901 | + //make sure this is only when editing |
|
902 | + if ( ! empty($id)) { |
|
903 | + $post = get_post($id); |
|
904 | + $return .= '<a class="button button-small" onclick="prompt(\'Shortcode:\', jQuery(\'#shortcode\').val()); return false;" href="#" tabindex="-1">' |
|
905 | + . esc_html__('Shortcode', 'event_espresso') |
|
906 | + . '</a> '; |
|
907 | + $return .= '<input id="shortcode" type="hidden" value="[ESPRESSO_TICKET_SELECTOR event_id=' |
|
908 | + . $post->ID |
|
909 | + . ']">'; |
|
910 | + } |
|
911 | + return $return; |
|
912 | + } |
|
913 | + |
|
914 | + |
|
915 | + |
|
916 | + /** |
|
917 | + * _events_overview_list_table |
|
918 | + * This contains the logic for showing the events_overview list |
|
919 | + * |
|
920 | + * @access protected |
|
921 | + * @return void |
|
922 | + * @throws \EE_Error |
|
923 | + */ |
|
924 | + protected function _events_overview_list_table() |
|
925 | + { |
|
926 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
927 | + $this->_template_args['after_list_table'] = ! empty($this->_template_args['after_list_table']) |
|
928 | + ? (array)$this->_template_args['after_list_table'] |
|
929 | + : array(); |
|
930 | + $this->_template_args['after_list_table']['view_event_list_button'] = EEH_HTML::br() |
|
931 | + . EEH_Template::get_button_or_link( |
|
932 | + get_post_type_archive_link('espresso_events'), |
|
933 | + esc_html__("View Event Archive Page", "event_espresso"), |
|
934 | + 'button' |
|
935 | + ); |
|
936 | + $this->_template_args['after_list_table']['legend'] = $this->_display_legend($this->_event_legend_items()); |
|
937 | + $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
938 | + 'create_new', |
|
939 | + 'add', |
|
940 | + array(), |
|
941 | + 'add-new-h2' |
|
942 | + ); |
|
943 | + $this->display_admin_list_table_page_with_no_sidebar(); |
|
944 | + } |
|
945 | + |
|
946 | + |
|
947 | + |
|
948 | + /** |
|
949 | + * this allows for extra misc actions in the default WP publish box |
|
950 | + * |
|
951 | + * @return void |
|
952 | + */ |
|
953 | + public function extra_misc_actions_publish_box() |
|
954 | + { |
|
955 | + $this->_generate_publish_box_extra_content(); |
|
956 | + } |
|
957 | + |
|
958 | + |
|
959 | + |
|
960 | + /** |
|
961 | + * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been |
|
962 | + * saved. Child classes are required to declare this method. Typically you would use this to save any additional |
|
963 | + * data. |
|
964 | + * Keep in mind also that "save_post" runs on EVERY post update to the database. |
|
965 | + * ALSO very important. When a post transitions from scheduled to published, the save_post action is fired but you |
|
966 | + * will NOT have any _POST data containing any extra info you may have from other meta saves. So MAKE sure that |
|
967 | + * you handle this accordingly. |
|
968 | + * |
|
969 | + * @access protected |
|
970 | + * @abstract |
|
971 | + * @param string $post_id The ID of the cpt that was saved (so you can link relationally) |
|
972 | + * @param object $post The post object of the cpt that was saved. |
|
973 | + * @return void |
|
974 | + */ |
|
975 | + protected function _insert_update_cpt_item($post_id, $post) |
|
976 | + { |
|
977 | + if ($post instanceof WP_Post && $post->post_type !== 'espresso_events') { |
|
978 | + //get out we're not processing an event save. |
|
979 | + return; |
|
980 | + } |
|
981 | + $event_values = array( |
|
982 | + 'EVT_display_desc' => ! empty($this->_req_data['display_desc']) ? 1 : 0, |
|
983 | + 'EVT_display_ticket_selector' => ! empty($this->_req_data['display_ticket_selector']) ? 1 : 0, |
|
984 | + 'EVT_additional_limit' => min( |
|
985 | + apply_filters('FHEE__EE_Events_Admin__insert_update_cpt_item__EVT_additional_limit_max', 255), |
|
986 | + ! empty($this->_req_data['additional_limit']) ? $this->_req_data['additional_limit'] : null |
|
987 | + ), |
|
988 | + 'EVT_default_registration_status' => ! empty($this->_req_data['EVT_default_registration_status']) |
|
989 | + ? $this->_req_data['EVT_default_registration_status'] |
|
990 | + : EE_Registry::instance()->CFG->registration->default_STS_ID, |
|
991 | + 'EVT_member_only' => ! empty($this->_req_data['member_only']) ? 1 : 0, |
|
992 | + 'EVT_allow_overflow' => ! empty($this->_req_data['EVT_allow_overflow']) ? 1 : 0, |
|
993 | + 'EVT_timezone_string' => ! empty($this->_req_data['timezone_string']) |
|
994 | + ? $this->_req_data['timezone_string'] : null, |
|
995 | + 'EVT_external_URL' => ! empty($this->_req_data['externalURL']) |
|
996 | + ? $this->_req_data['externalURL'] : null, |
|
997 | + 'EVT_phone' => ! empty($this->_req_data['event_phone']) |
|
998 | + ? $this->_req_data['event_phone'] : null, |
|
999 | + ); |
|
1000 | + //update event |
|
1001 | + $success = $this->_event_model()->update_by_ID($event_values, $post_id); |
|
1002 | + //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! |
|
1003 | + $get_one_where = array($this->_event_model()->primary_key_name() => $post_id, 'status' => $post->post_status); |
|
1004 | + $event = $this->_event_model()->get_one(array($get_one_where)); |
|
1005 | + //the following are default callbacks for event attachment updates that can be overridden by caffeinated functionality and/or addons. |
|
1006 | + $event_update_callbacks = apply_filters( |
|
1007 | + 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
1008 | + array(array($this, '_default_venue_update'), array($this, '_default_tickets_update')) |
|
1009 | + ); |
|
1010 | + $att_success = true; |
|
1011 | + foreach ($event_update_callbacks as $e_callback) { |
|
1012 | + $_succ = call_user_func_array($e_callback, array($event, $this->_req_data)); |
|
1013 | + $att_success = ! $att_success ? $att_success |
|
1014 | + : $_succ; //if ANY of these updates fail then we want the appropriate global error message |
|
1015 | + } |
|
1016 | + //any errors? |
|
1017 | + if ($success && false === $att_success) { |
|
1018 | + EE_Error::add_error( |
|
1019 | + esc_html__( |
|
1020 | + 'Event Details saved successfully but something went wrong with saving attachments.', |
|
1021 | + 'event_espresso' |
|
1022 | + ), |
|
1023 | + __FILE__, |
|
1024 | + __FUNCTION__, |
|
1025 | + __LINE__ |
|
1026 | + ); |
|
1027 | + } else if ($success === false) { |
|
1028 | + EE_Error::add_error( |
|
1029 | + esc_html__('Event Details did not save successfully.', 'event_espresso'), |
|
1030 | + __FILE__, |
|
1031 | + __FUNCTION__, |
|
1032 | + __LINE__ |
|
1033 | + ); |
|
1034 | + } |
|
1035 | + } |
|
1036 | + |
|
1037 | + |
|
1038 | + |
|
1039 | + /** |
|
1040 | + * @see parent::restore_item() |
|
1041 | + * @param int $post_id |
|
1042 | + * @param int $revision_id |
|
1043 | + */ |
|
1044 | + protected function _restore_cpt_item($post_id, $revision_id) |
|
1045 | + { |
|
1046 | + //copy existing event meta to new post |
|
1047 | + $post_evt = $this->_event_model()->get_one_by_ID($post_id); |
|
1048 | + if ($post_evt instanceof EE_Event) { |
|
1049 | + //meta revision restore |
|
1050 | + $post_evt->restore_revision($revision_id); |
|
1051 | + //related objs restore |
|
1052 | + $post_evt->restore_revision($revision_id, array('Venue', 'Datetime', 'Price')); |
|
1053 | + } |
|
1054 | + } |
|
1055 | + |
|
1056 | + |
|
1057 | + |
|
1058 | + /** |
|
1059 | + * Attach the venue to the Event |
|
1060 | + * |
|
1061 | + * @param \EE_Event $evtobj Event Object to add the venue to |
|
1062 | + * @param array $data The request data from the form |
|
1063 | + * @return bool Success or fail. |
|
1064 | + */ |
|
1065 | + protected function _default_venue_update(\EE_Event $evtobj, $data) |
|
1066 | + { |
|
1067 | + require_once(EE_MODELS . 'EEM_Venue.model.php'); |
|
1068 | + $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1069 | + $rows_affected = null; |
|
1070 | + $venue_id = ! empty($data['venue_id']) ? $data['venue_id'] : null; |
|
1071 | + // very important. If we don't have a venue name... |
|
1072 | + // then we'll get out because not necessary to create empty venue |
|
1073 | + if (empty($data['venue_title'])) { |
|
1074 | + return false; |
|
1075 | + } |
|
1076 | + $venue_array = array( |
|
1077 | + 'VNU_wp_user' => $evtobj->get('EVT_wp_user'), |
|
1078 | + 'VNU_name' => ! empty($data['venue_title']) ? $data['venue_title'] : null, |
|
1079 | + 'VNU_desc' => ! empty($data['venue_description']) ? $data['venue_description'] : null, |
|
1080 | + 'VNU_identifier' => ! empty($data['venue_identifier']) ? $data['venue_identifier'] : null, |
|
1081 | + 'VNU_short_desc' => ! empty($data['venue_short_description']) ? $data['venue_short_description'] |
|
1082 | + : null, |
|
1083 | + 'VNU_address' => ! empty($data['address']) ? $data['address'] : null, |
|
1084 | + 'VNU_address2' => ! empty($data['address2']) ? $data['address2'] : null, |
|
1085 | + 'VNU_city' => ! empty($data['city']) ? $data['city'] : null, |
|
1086 | + 'STA_ID' => ! empty($data['state']) ? $data['state'] : null, |
|
1087 | + 'CNT_ISO' => ! empty($data['countries']) ? $data['countries'] : null, |
|
1088 | + 'VNU_zip' => ! empty($data['zip']) ? $data['zip'] : null, |
|
1089 | + 'VNU_phone' => ! empty($data['venue_phone']) ? $data['venue_phone'] : null, |
|
1090 | + 'VNU_capacity' => ! empty($data['venue_capacity']) ? $data['venue_capacity'] : null, |
|
1091 | + 'VNU_url' => ! empty($data['venue_url']) ? $data['venue_url'] : null, |
|
1092 | + 'VNU_virtual_phone' => ! empty($data['virtual_phone']) ? $data['virtual_phone'] : null, |
|
1093 | + 'VNU_virtual_url' => ! empty($data['virtual_url']) ? $data['virtual_url'] : null, |
|
1094 | + 'VNU_enable_for_gmap' => isset($data['enable_for_gmap']) ? 1 : 0, |
|
1095 | + 'status' => 'publish', |
|
1096 | + ); |
|
1097 | + //if we've got the venue_id then we're just updating the existing venue so let's do that and then get out. |
|
1098 | + if ( ! empty($venue_id)) { |
|
1099 | + $update_where = array($venue_model->primary_key_name() => $venue_id); |
|
1100 | + $rows_affected = $venue_model->update($venue_array, array($update_where)); |
|
1101 | + //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. |
|
1102 | + $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1103 | + return $rows_affected > 0 ? true : false; |
|
1104 | + } else { |
|
1105 | + //we insert the venue |
|
1106 | + $venue_id = $venue_model->insert($venue_array); |
|
1107 | + $evtobj->_add_relation_to($venue_id, 'Venue'); |
|
1108 | + return ! empty($venue_id) ? true : false; |
|
1109 | + } |
|
1110 | + //when we have the ancestor come in it's already been handled by the revision save. |
|
1111 | + } |
|
1112 | + |
|
1113 | + |
|
1114 | + |
|
1115 | + /** |
|
1116 | + * Handles saving everything related to Tickets (datetimes, tickets, prices) |
|
1117 | + * |
|
1118 | + * @param EE_Event $evtobj The Event object we're attaching data to |
|
1119 | + * @param array $data The request data from the form |
|
1120 | + * @return array |
|
1121 | + */ |
|
1122 | + protected function _default_tickets_update(EE_Event $evtobj, $data) |
|
1123 | + { |
|
1124 | + $success = true; |
|
1125 | + $saved_dtt = null; |
|
1126 | + $saved_tickets = array(); |
|
1127 | + $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1128 | + foreach ($data['edit_event_datetimes'] as $row => $dtt) { |
|
1129 | + //trim all values to ensure any excess whitespace is removed. |
|
1130 | + $dtt = array_map('trim', $dtt); |
|
1131 | + $dtt['DTT_EVT_end'] = isset($dtt['DTT_EVT_end']) && ! empty($dtt['DTT_EVT_end']) ? $dtt['DTT_EVT_end'] |
|
1132 | + : $dtt['DTT_EVT_start']; |
|
1133 | + $datetime_values = array( |
|
1134 | + 'DTT_ID' => ! empty($dtt['DTT_ID']) ? $dtt['DTT_ID'] : null, |
|
1135 | + 'DTT_EVT_start' => $dtt['DTT_EVT_start'], |
|
1136 | + 'DTT_EVT_end' => $dtt['DTT_EVT_end'], |
|
1137 | + 'DTT_reg_limit' => empty($dtt['DTT_reg_limit']) ? EE_INF : $dtt['DTT_reg_limit'], |
|
1138 | + 'DTT_order' => $row, |
|
1139 | + ); |
|
1140 | + //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. |
|
1141 | + if ( ! empty($dtt['DTT_ID'])) { |
|
1142 | + $DTM = EE_Registry::instance() |
|
1143 | + ->load_model('Datetime', array($evtobj->get_timezone())) |
|
1144 | + ->get_one_by_ID($dtt['DTT_ID']); |
|
1145 | + $DTM->set_date_format($incoming_date_formats[0]); |
|
1146 | + $DTM->set_time_format($incoming_date_formats[1]); |
|
1147 | + foreach ($datetime_values as $field => $value) { |
|
1148 | + $DTM->set($field, $value); |
|
1149 | + } |
|
1150 | + //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. |
|
1151 | + $saved_dtts[$DTM->ID()] = $DTM; |
|
1152 | + } else { |
|
1153 | + $DTM = EE_Registry::instance()->load_class( |
|
1154 | + 'Datetime', |
|
1155 | + array($datetime_values, $evtobj->get_timezone(), $incoming_date_formats), |
|
1156 | + false, |
|
1157 | + false |
|
1158 | + ); |
|
1159 | + foreach ($datetime_values as $field => $value) { |
|
1160 | + $DTM->set($field, $value); |
|
1161 | + } |
|
1162 | + } |
|
1163 | + $DTM->save(); |
|
1164 | + $DTT = $evtobj->_add_relation_to($DTM, 'Datetime'); |
|
1165 | + //load DTT helper |
|
1166 | + //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. |
|
1167 | + if ($DTT->get_raw('DTT_EVT_start') > $DTT->get_raw('DTT_EVT_end')) { |
|
1168 | + $DTT->set('DTT_EVT_end', $DTT->get('DTT_EVT_start')); |
|
1169 | + $DTT = EEH_DTT_Helper::date_time_add($DTT, 'DTT_EVT_end', 'days'); |
|
1170 | + $DTT->save(); |
|
1171 | + } |
|
1172 | + //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. |
|
1173 | + $saved_dtt = $DTT; |
|
1174 | + $success = ! $success ? $success : $DTT; |
|
1175 | + //if ANY of these updates fail then we want the appropriate global error message. |
|
1176 | + // //todo this is actually sucky we need a better error message but this is what it is for now. |
|
1177 | + } |
|
1178 | + //no dtts get deleted so we don't do any of that logic here. |
|
1179 | + //update tickets next |
|
1180 | + $old_tickets = isset($data['ticket_IDs']) ? explode(',', $data['ticket_IDs']) : array(); |
|
1181 | + foreach ($data['edit_tickets'] as $row => $tkt) { |
|
1182 | + $incoming_date_formats = array('Y-m-d', 'h:i a'); |
|
1183 | + $update_prices = false; |
|
1184 | + $ticket_price = isset($data['edit_prices'][$row][1]['PRC_amount']) |
|
1185 | + ? $data['edit_prices'][$row][1]['PRC_amount'] : 0; |
|
1186 | + // trim inputs to ensure any excess whitespace is removed. |
|
1187 | + $tkt = array_map('trim', $tkt); |
|
1188 | + if (empty($tkt['TKT_start_date'])) { |
|
1189 | + //let's use now in the set timezone. |
|
1190 | + $now = new DateTime('now', new DateTimeZone($evtobj->get_timezone())); |
|
1191 | + $tkt['TKT_start_date'] = $now->format($incoming_date_formats[0] . ' ' . $incoming_date_formats[1]); |
|
1192 | + } |
|
1193 | + if (empty($tkt['TKT_end_date'])) { |
|
1194 | + //use the start date of the first datetime |
|
1195 | + $dtt = $evtobj->first_datetime(); |
|
1196 | + $tkt['TKT_end_date'] = $dtt->start_date_and_time( |
|
1197 | + $incoming_date_formats[0], |
|
1198 | + $incoming_date_formats[1] |
|
1199 | + ); |
|
1200 | + } |
|
1201 | + $TKT_values = array( |
|
1202 | + 'TKT_ID' => ! empty($tkt['TKT_ID']) ? $tkt['TKT_ID'] : null, |
|
1203 | + 'TTM_ID' => ! empty($tkt['TTM_ID']) ? $tkt['TTM_ID'] : 0, |
|
1204 | + 'TKT_name' => ! empty($tkt['TKT_name']) ? $tkt['TKT_name'] : '', |
|
1205 | + 'TKT_description' => ! empty($tkt['TKT_description']) ? $tkt['TKT_description'] : '', |
|
1206 | + 'TKT_start_date' => $tkt['TKT_start_date'], |
|
1207 | + 'TKT_end_date' => $tkt['TKT_end_date'], |
|
1208 | + 'TKT_qty' => ! isset($tkt['TKT_qty']) || $tkt['TKT_qty'] === '' ? EE_INF : $tkt['TKT_qty'], |
|
1209 | + 'TKT_uses' => ! isset($tkt['TKT_uses']) || $tkt['TKT_uses'] === '' ? EE_INF : $tkt['TKT_uses'], |
|
1210 | + 'TKT_min' => empty($tkt['TKT_min']) ? 0 : $tkt['TKT_min'], |
|
1211 | + 'TKT_max' => empty($tkt['TKT_max']) ? EE_INF : $tkt['TKT_max'], |
|
1212 | + 'TKT_row' => $row, |
|
1213 | + 'TKT_order' => isset($tkt['TKT_order']) ? $tkt['TKT_order'] : $row, |
|
1214 | + 'TKT_price' => $ticket_price, |
|
1215 | + ); |
|
1216 | + //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. |
|
1217 | + if (isset($tkt['TKT_is_default']) && $tkt['TKT_is_default']) { |
|
1218 | + $TKT_values['TKT_ID'] = 0; |
|
1219 | + $TKT_values['TKT_is_default'] = 0; |
|
1220 | + $TKT_values['TKT_price'] = $ticket_price; |
|
1221 | + $update_prices = true; |
|
1222 | + } |
|
1223 | + //if we have a TKT_ID then we need to get that existing TKT_obj and update it |
|
1224 | + //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. |
|
1225 | + //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. |
|
1226 | + if ( ! empty($tkt['TKT_ID'])) { |
|
1227 | + $TKT = EE_Registry::instance() |
|
1228 | + ->load_model('Ticket', array($evtobj->get_timezone())) |
|
1229 | + ->get_one_by_ID($tkt['TKT_ID']); |
|
1230 | + if ($TKT instanceof EE_Ticket) { |
|
1231 | + $ticket_sold = $TKT->count_related( |
|
1232 | + 'Registration', |
|
1233 | + array( |
|
1234 | + array( |
|
1235 | + 'STS_ID' => array( |
|
1236 | + 'NOT IN', |
|
1237 | + array(EEM_Registration::status_id_incomplete), |
|
1238 | + ), |
|
1239 | + ), |
|
1240 | + ) |
|
1241 | + ) > 0 ? true : false; |
|
1242 | + //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. |
|
1243 | + $create_new_TKT = $ticket_sold && $ticket_price != $TKT->get('TKT_price') |
|
1244 | + && ! $TKT->get( |
|
1245 | + 'TKT_deleted' |
|
1246 | + ) ? true : false; |
|
1247 | + $TKT->set_date_format($incoming_date_formats[0]); |
|
1248 | + $TKT->set_time_format($incoming_date_formats[1]); |
|
1249 | + //set new values |
|
1250 | + foreach ($TKT_values as $field => $value) { |
|
1251 | + if ($field == 'TKT_qty') { |
|
1252 | + $TKT->set_qty($value); |
|
1253 | + } else { |
|
1254 | + $TKT->set($field, $value); |
|
1255 | + } |
|
1256 | + } |
|
1257 | + //if $create_new_TKT is false then we can safely update the existing ticket. Otherwise we have to create a new ticket. |
|
1258 | + if ($create_new_TKT) { |
|
1259 | + //archive the old ticket first |
|
1260 | + $TKT->set('TKT_deleted', 1); |
|
1261 | + $TKT->save(); |
|
1262 | + //make sure this ticket is still recorded in our saved_tkts so we don't run it through the regular trash routine. |
|
1263 | + $saved_tickets[$TKT->ID()] = $TKT; |
|
1264 | + //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. |
|
1265 | + $TKT = clone $TKT; |
|
1266 | + $TKT->set('TKT_ID', 0); |
|
1267 | + $TKT->set('TKT_deleted', 0); |
|
1268 | + $TKT->set('TKT_price', $ticket_price); |
|
1269 | + $TKT->set('TKT_sold', 0); |
|
1270 | + //now we need to make sure that $new prices are created as well and attached to new ticket. |
|
1271 | + $update_prices = true; |
|
1272 | + } |
|
1273 | + //make sure price is set if it hasn't been already |
|
1274 | + $TKT->set('TKT_price', $ticket_price); |
|
1275 | + } |
|
1276 | + } else { |
|
1277 | + //no TKT_id so a new TKT |
|
1278 | + $TKT_values['TKT_price'] = $ticket_price; |
|
1279 | + $TKT = EE_Registry::instance()->load_class('Ticket', array($TKT_values), false, false); |
|
1280 | + if ($TKT instanceof EE_Ticket) { |
|
1281 | + //need to reset values to properly account for the date formats |
|
1282 | + $TKT->set_date_format($incoming_date_formats[0]); |
|
1283 | + $TKT->set_time_format($incoming_date_formats[1]); |
|
1284 | + $TKT->set_timezone($evtobj->get_timezone()); |
|
1285 | + //set new values |
|
1286 | + foreach ($TKT_values as $field => $value) { |
|
1287 | + if ($field == 'TKT_qty') { |
|
1288 | + $TKT->set_qty($value); |
|
1289 | + } else { |
|
1290 | + $TKT->set($field, $value); |
|
1291 | + } |
|
1292 | + } |
|
1293 | + $update_prices = true; |
|
1294 | + } |
|
1295 | + } |
|
1296 | + // cap ticket qty by datetime reg limits |
|
1297 | + $TKT->set_qty(min($TKT->qty(), $TKT->qty('reg_limit'))); |
|
1298 | + //update ticket. |
|
1299 | + $TKT->save(); |
|
1300 | + //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. |
|
1301 | + if ($TKT->get_raw('TKT_start_date') > $TKT->get_raw('TKT_end_date')) { |
|
1302 | + $TKT->set('TKT_end_date', $TKT->get('TKT_start_date')); |
|
1303 | + $TKT = EEH_DTT_Helper::date_time_add($TKT, 'TKT_end_date', 'days'); |
|
1304 | + $TKT->save(); |
|
1305 | + } |
|
1306 | + //initially let's add the ticket to the dtt |
|
1307 | + $saved_dtt->_add_relation_to($TKT, 'Ticket'); |
|
1308 | + $saved_tickets[$TKT->ID()] = $TKT; |
|
1309 | + //add prices to ticket |
|
1310 | + $this->_add_prices_to_ticket($data['edit_prices'][$row], $TKT, $update_prices); |
|
1311 | + } |
|
1312 | + //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. |
|
1313 | + $old_tickets = isset($old_tickets[0]) && $old_tickets[0] == '' ? array() : $old_tickets; |
|
1314 | + $tickets_removed = array_diff($old_tickets, array_keys($saved_tickets)); |
|
1315 | + foreach ($tickets_removed as $id) { |
|
1316 | + $id = absint($id); |
|
1317 | + //get the ticket for this id |
|
1318 | + $tkt_to_remove = EE_Registry::instance()->load_model('Ticket')->get_one_by_ID($id); |
|
1319 | + //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) |
|
1320 | + $dtts = $tkt_to_remove->get_many_related('Datetime'); |
|
1321 | + foreach ($dtts as $dtt) { |
|
1322 | + $tkt_to_remove->_remove_relation_to($dtt, 'Datetime'); |
|
1323 | + } |
|
1324 | + //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)) |
|
1325 | + $tkt_to_remove->delete_related_permanently('Price'); |
|
1326 | + //finally let's delete this ticket (which should not be blocked at this point b/c we've removed all our relationships) |
|
1327 | + $tkt_to_remove->delete_permanently(); |
|
1328 | + } |
|
1329 | + return array($saved_dtt, $saved_tickets); |
|
1330 | + } |
|
1331 | + |
|
1332 | + |
|
1333 | + |
|
1334 | + /** |
|
1335 | + * This attaches a list of given prices to a ticket. |
|
1336 | + * Note we dont' have to worry about ever removing relationships (or archiving prices) because if there is a change |
|
1337 | + * in price information on a ticket, a new ticket is created anyways so the archived ticket will retain the old |
|
1338 | + * price info and prices are automatically "archived" via the ticket. |
|
1339 | + * |
|
1340 | + * @access private |
|
1341 | + * @param array $prices Array of prices from the form. |
|
1342 | + * @param EE_Ticket $ticket EE_Ticket object that prices are being attached to. |
|
1343 | + * @param bool $new_prices Whether attach existing incoming prices or create new ones. |
|
1344 | + * @return void |
|
1345 | + */ |
|
1346 | + private function _add_prices_to_ticket($prices, EE_Ticket $ticket, $new_prices = false) |
|
1347 | + { |
|
1348 | + foreach ($prices as $row => $prc) { |
|
1349 | + $PRC_values = array( |
|
1350 | + 'PRC_ID' => ! empty($prc['PRC_ID']) ? $prc['PRC_ID'] : null, |
|
1351 | + 'PRT_ID' => ! empty($prc['PRT_ID']) ? $prc['PRT_ID'] : null, |
|
1352 | + 'PRC_amount' => ! empty($prc['PRC_amount']) ? $prc['PRC_amount'] : 0, |
|
1353 | + 'PRC_name' => ! empty($prc['PRC_name']) ? $prc['PRC_name'] : '', |
|
1354 | + 'PRC_desc' => ! empty($prc['PRC_desc']) ? $prc['PRC_desc'] : '', |
|
1355 | + 'PRC_is_default' => 0, //make sure prices are NOT set as default from this context |
|
1356 | + 'PRC_order' => $row, |
|
1357 | + ); |
|
1358 | + if ($new_prices || empty($PRC_values['PRC_ID'])) { |
|
1359 | + $PRC_values['PRC_ID'] = 0; |
|
1360 | + $PRC = EE_Registry::instance()->load_class('Price', array($PRC_values), false, false); |
|
1361 | + } else { |
|
1362 | + $PRC = EE_Registry::instance()->load_model('Price')->get_one_by_ID($prc['PRC_ID']); |
|
1363 | + //update this price with new values |
|
1364 | + foreach ($PRC_values as $field => $newprc) { |
|
1365 | + $PRC->set($field, $newprc); |
|
1366 | + } |
|
1367 | + $PRC->save(); |
|
1368 | + } |
|
1369 | + $ticket->_add_relation_to($PRC, 'Price'); |
|
1370 | + } |
|
1371 | + } |
|
1372 | + |
|
1373 | + |
|
1374 | + |
|
1375 | + /** |
|
1376 | + * Add in our autosave ajax handlers |
|
1377 | + * |
|
1378 | + */ |
|
1379 | + protected function _ee_autosave_create_new() |
|
1380 | + { |
|
1381 | + } |
|
1382 | + |
|
1383 | + |
|
1384 | + /** |
|
1385 | + * More autosave handlers. |
|
1386 | + */ |
|
1387 | + protected function _ee_autosave_edit() |
|
1388 | + { |
|
1389 | + return; //TEMPORARILY EXITING CAUSE THIS IS A TODO |
|
1390 | + } |
|
1391 | + |
|
1392 | + |
|
1393 | + |
|
1394 | + /** |
|
1395 | + * _generate_publish_box_extra_content |
|
1396 | + */ |
|
1397 | + private function _generate_publish_box_extra_content() |
|
1398 | + { |
|
1399 | + //load formatter helper |
|
1400 | + //args for getting related registrations |
|
1401 | + $approved_query_args = array( |
|
1402 | + array( |
|
1403 | + 'REG_deleted' => 0, |
|
1404 | + 'STS_ID' => EEM_Registration::status_id_approved, |
|
1405 | + ), |
|
1406 | + ); |
|
1407 | + $not_approved_query_args = array( |
|
1408 | + array( |
|
1409 | + 'REG_deleted' => 0, |
|
1410 | + 'STS_ID' => EEM_Registration::status_id_not_approved, |
|
1411 | + ), |
|
1412 | + ); |
|
1413 | + $pending_payment_query_args = array( |
|
1414 | + array( |
|
1415 | + 'REG_deleted' => 0, |
|
1416 | + 'STS_ID' => EEM_Registration::status_id_pending_payment, |
|
1417 | + ), |
|
1418 | + ); |
|
1419 | + // publish box |
|
1420 | + $publish_box_extra_args = array( |
|
1421 | + 'view_approved_reg_url' => add_query_arg( |
|
1422 | + array( |
|
1423 | + 'action' => 'default', |
|
1424 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1425 | + '_reg_status' => EEM_Registration::status_id_approved, |
|
1426 | + ), |
|
1427 | + REG_ADMIN_URL |
|
1428 | + ), |
|
1429 | + 'view_not_approved_reg_url' => add_query_arg( |
|
1430 | + array( |
|
1431 | + 'action' => 'default', |
|
1432 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1433 | + '_reg_status' => EEM_Registration::status_id_not_approved, |
|
1434 | + ), |
|
1435 | + REG_ADMIN_URL |
|
1436 | + ), |
|
1437 | + 'view_pending_payment_reg_url' => add_query_arg( |
|
1438 | + array( |
|
1439 | + 'action' => 'default', |
|
1440 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1441 | + '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
1442 | + ), |
|
1443 | + REG_ADMIN_URL |
|
1444 | + ), |
|
1445 | + 'approved_regs' => $this->_cpt_model_obj->count_related( |
|
1446 | + 'Registration', |
|
1447 | + $approved_query_args |
|
1448 | + ), |
|
1449 | + 'not_approved_regs' => $this->_cpt_model_obj->count_related( |
|
1450 | + 'Registration', |
|
1451 | + $not_approved_query_args |
|
1452 | + ), |
|
1453 | + 'pending_payment_regs' => $this->_cpt_model_obj->count_related( |
|
1454 | + 'Registration', |
|
1455 | + $pending_payment_query_args |
|
1456 | + ), |
|
1457 | + 'misc_pub_section_class' => apply_filters( |
|
1458 | + 'FHEE_Events_Admin_Page___generate_publish_box_extra_content__misc_pub_section_class', |
|
1459 | + 'misc-pub-section' |
|
1460 | + ), |
|
1461 | + ); |
|
1462 | + ob_start(); |
|
1463 | + do_action( |
|
1464 | + 'AHEE__Events_Admin_Page___generate_publish_box_extra_content__event_editor_overview_add', |
|
1465 | + $this->_cpt_model_obj |
|
1466 | + ); |
|
1467 | + $publish_box_extra_args['event_editor_overview_add'] = ob_get_clean(); |
|
1468 | + // load template |
|
1469 | + EEH_Template::display_template( |
|
1470 | + EVENTS_TEMPLATE_PATH . 'event_publish_box_extras.template.php', |
|
1471 | + $publish_box_extra_args |
|
1472 | + ); |
|
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 | + /** |
|
1605 | + * Setup an individual ticket form for the decaf event editor page |
|
1606 | + * |
|
1607 | + * @access private |
|
1608 | + * @param EE_Ticket $ticket the ticket object |
|
1609 | + * @param boolean $skeleton whether we're generating a skeleton for js manipulation |
|
1610 | + * @param int $row |
|
1611 | + * @return string generated html for the ticket row. |
|
1612 | + */ |
|
1613 | + private function _get_ticket_row($ticket, $skeleton = false, $row = 0) |
|
1614 | + { |
|
1615 | + $template_args = array( |
|
1616 | + 'tkt_status_class' => ' tkt-status-' . $ticket->ticket_status(), |
|
1617 | + 'tkt_archive_class' => $ticket->ticket_status() === EE_Ticket::archived && ! $skeleton ? ' tkt-archived' |
|
1618 | + : '', |
|
1619 | + 'ticketrow' => $skeleton ? 'TICKETNUM' : $row, |
|
1620 | + 'TKT_ID' => $ticket->get('TKT_ID'), |
|
1621 | + 'TKT_name' => $ticket->get('TKT_name'), |
|
1622 | + 'TKT_start_date' => $skeleton ? '' : $ticket->get_date('TKT_start_date', 'Y-m-d h:i a'), |
|
1623 | + 'TKT_end_date' => $skeleton ? '' : $ticket->get_date('TKT_end_date', 'Y-m-d h:i a'), |
|
1624 | + 'TKT_is_default' => $ticket->get('TKT_is_default'), |
|
1625 | + 'TKT_qty' => $ticket->get_pretty('TKT_qty', 'input'), |
|
1626 | + 'edit_ticketrow_name' => $skeleton ? 'TICKETNAMEATTR' : 'edit_tickets', |
|
1627 | + 'TKT_sold' => $skeleton ? 0 : $ticket->get('TKT_sold'), |
|
1628 | + 'trash_icon' => ($skeleton || ( ! empty($ticket) && ! $ticket->get('TKT_deleted'))) |
|
1629 | + && ( ! empty($ticket) && $ticket->get('TKT_sold') === 0) |
|
1630 | + ? 'trash-icon dashicons dashicons-post-trash clickable' : 'ee-lock-icon', |
|
1631 | + 'disabled' => $skeleton || ( ! empty($ticket) && ! $ticket->get('TKT_deleted')) ? '' |
|
1632 | + : ' disabled=disabled', |
|
1633 | + ); |
|
1634 | + $price = $ticket->ID() !== 0 |
|
1635 | + ? $ticket->get_first_related('Price', array('default_where_conditions' => 'none')) |
|
1636 | + : EE_Registry::instance()->load_model('Price')->create_default_object(); |
|
1637 | + $price_args = array( |
|
1638 | + 'price_currency_symbol' => EE_Registry::instance()->CFG->currency->sign, |
|
1639 | + 'PRC_amount' => $price->get('PRC_amount'), |
|
1640 | + 'PRT_ID' => $price->get('PRT_ID'), |
|
1641 | + 'PRC_ID' => $price->get('PRC_ID'), |
|
1642 | + 'PRC_is_default' => $price->get('PRC_is_default'), |
|
1643 | + ); |
|
1644 | + //make sure we have default start and end dates if skeleton |
|
1645 | + //handle rows that should NOT be empty |
|
1646 | + if (empty($template_args['TKT_start_date'])) { |
|
1647 | + //if empty then the start date will be now. |
|
1648 | + $template_args['TKT_start_date'] = date('Y-m-d h:i a', current_time('timestamp')); |
|
1649 | + } |
|
1650 | + if (empty($template_args['TKT_end_date'])) { |
|
1651 | + //get the earliest datetime (if present); |
|
1652 | + $earliest_dtt = $this->_cpt_model_obj->ID() > 0 |
|
1653 | + ? $this->_cpt_model_obj->get_first_related( |
|
1654 | + 'Datetime', |
|
1655 | + array('order_by' => array('DTT_EVT_start' => 'ASC')) |
|
1656 | + ) |
|
1657 | + : null; |
|
1658 | + if ( ! empty($earliest_dtt)) { |
|
1659 | + $template_args['TKT_end_date'] = $earliest_dtt->get_datetime('DTT_EVT_start', 'Y-m-d', 'h:i a'); |
|
1660 | + } else { |
|
1661 | + $template_args['TKT_end_date'] = date( |
|
1662 | + 'Y-m-d h:i a', |
|
1663 | + mktime(0, 0, 0, date("m"), date("d") + 7, date("Y")) |
|
1664 | + ); |
|
1665 | + } |
|
1666 | + } |
|
1667 | + $template_args = array_merge($template_args, $price_args); |
|
1668 | + $template = apply_filters( |
|
1669 | + 'FHEE__Events_Admin_Page__get_ticket_row__template', |
|
1670 | + EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_ticket_row.template.php', |
|
1671 | + $ticket |
|
1672 | + ); |
|
1673 | + return EEH_Template::display_template($template, $template_args, true); |
|
1674 | + } |
|
1675 | + |
|
1676 | + |
|
1677 | + /** |
|
1678 | + * @throws DomainException |
|
1679 | + */ |
|
1680 | + public function registration_options_meta_box() |
|
1681 | + { |
|
1682 | + $yes_no_values = array( |
|
1683 | + array('id' => true, 'text' => esc_html__('Yes', 'event_espresso')), |
|
1684 | + array('id' => false, 'text' => esc_html__('No', 'event_espresso')), |
|
1685 | + ); |
|
1686 | + $default_reg_status_values = EEM_Registration::reg_status_array( |
|
1687 | + array( |
|
1688 | + EEM_Registration::status_id_cancelled, |
|
1689 | + EEM_Registration::status_id_declined, |
|
1690 | + EEM_Registration::status_id_incomplete, |
|
1691 | + ), |
|
1692 | + true |
|
1693 | + ); |
|
1694 | + //$template_args['is_active_select'] = EEH_Form_Fields::select_input('is_active', $yes_no_values, $this->_cpt_model_obj->is_active()); |
|
1695 | + $template_args['_event'] = $this->_cpt_model_obj; |
|
1696 | + $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
1697 | + $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
1698 | + $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
1699 | + 'default_reg_status', |
|
1700 | + $default_reg_status_values, |
|
1701 | + $this->_cpt_model_obj->default_registration_status() |
|
1702 | + ); |
|
1703 | + $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
1704 | + 'display_desc', |
|
1705 | + $yes_no_values, |
|
1706 | + $this->_cpt_model_obj->display_description() |
|
1707 | + ); |
|
1708 | + $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
1709 | + 'display_ticket_selector', |
|
1710 | + $yes_no_values, |
|
1711 | + $this->_cpt_model_obj->display_ticket_selector(), |
|
1712 | + '', |
|
1713 | + '', |
|
1714 | + false |
|
1715 | + ); |
|
1716 | + $template_args['additional_registration_options'] = apply_filters( |
|
1717 | + 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
1718 | + '', |
|
1719 | + $template_args, |
|
1720 | + $yes_no_values, |
|
1721 | + $default_reg_status_values |
|
1722 | + ); |
|
1723 | + EEH_Template::display_template( |
|
1724 | + EVENTS_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
1725 | + $template_args |
|
1726 | + ); |
|
1727 | + } |
|
1728 | + |
|
1729 | + |
|
1730 | + |
|
1731 | + /** |
|
1732 | + * _get_events() |
|
1733 | + * This method simply returns all the events (for the given _view and paging) |
|
1734 | + * |
|
1735 | + * @access public |
|
1736 | + * @param int $per_page count of items per page (20 default); |
|
1737 | + * @param int $current_page what is the current page being viewed. |
|
1738 | + * @param bool $count if TRUE then we just return a count of ALL events matching the given _view. |
|
1739 | + * If FALSE then we return an array of event objects |
|
1740 | + * that match the given _view and paging parameters. |
|
1741 | + * @return array an array of event objects. |
|
1742 | + */ |
|
1743 | + public function get_events($per_page = 10, $current_page = 1, $count = false) |
|
1744 | + { |
|
1745 | + $EEME = $this->_event_model(); |
|
1746 | + $offset = ($current_page - 1) * $per_page; |
|
1747 | + $limit = $count ? null : $offset . ',' . $per_page; |
|
1748 | + $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'EVT_ID'; |
|
1749 | + $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : "DESC"; |
|
1750 | + if (isset($this->_req_data['month_range'])) { |
|
1751 | + $pieces = explode(' ', $this->_req_data['month_range'], 3); |
|
1752 | + //simulate the FIRST day of the month, that fixes issues for months like February |
|
1753 | + //where PHP doesn't know what to assume for date. |
|
1754 | + //@see https://events.codebasehq.com/projects/event-espresso/tickets/10437 |
|
1755 | + $month_r = ! empty($pieces[0]) ? date('m', \EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) : ''; |
|
1756 | + $year_r = ! empty($pieces[1]) ? $pieces[1] : ''; |
|
1757 | + } |
|
1758 | + $where = array(); |
|
1759 | + $status = isset($this->_req_data['status']) ? $this->_req_data['status'] : null; |
|
1760 | + //determine what post_status our condition will have for the query. |
|
1761 | + switch ($status) { |
|
1762 | + case 'month' : |
|
1763 | + case 'today' : |
|
1764 | + case null : |
|
1765 | + case 'all' : |
|
1766 | + break; |
|
1767 | + case 'draft' : |
|
1768 | + $where['status'] = array('IN', array('draft', 'auto-draft')); |
|
1769 | + break; |
|
1770 | + default : |
|
1771 | + $where['status'] = $status; |
|
1772 | + } |
|
1773 | + //categories? |
|
1774 | + $category = isset($this->_req_data['EVT_CAT']) && $this->_req_data['EVT_CAT'] > 0 |
|
1775 | + ? $this->_req_data['EVT_CAT'] : null; |
|
1776 | + if ( ! empty ($category)) { |
|
1777 | + $where['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
1778 | + $where['Term_Taxonomy.term_id'] = $category; |
|
1779 | + } |
|
1780 | + //date where conditions |
|
1781 | + $start_formats = EEM_Datetime::instance()->get_formats_for('DTT_EVT_start'); |
|
1782 | + if (isset($this->_req_data['month_range']) && $this->_req_data['month_range'] != '') { |
|
1783 | + $DateTime = new DateTime( |
|
1784 | + $year_r . '-' . $month_r . '-01 00:00:00', |
|
1785 | + new DateTimeZone(EEM_Datetime::instance()->get_timezone()) |
|
1786 | + ); |
|
1787 | + $start = $DateTime->format(implode(' ', $start_formats)); |
|
1788 | + $end = $DateTime->setDate($year_r, $month_r, $DateTime |
|
1789 | + ->format('t'))->setTime(23, 59, 59) |
|
1790 | + ->format(implode(' ', $start_formats)); |
|
1791 | + $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1792 | + } else if (isset($this->_req_data['status']) && $this->_req_data['status'] == 'today') { |
|
1793 | + $DateTime = new DateTime('now', new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1794 | + $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1795 | + $end = $DateTime->setTime(23, 59, 59)->format(implode(' ', $start_formats)); |
|
1796 | + $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1797 | + } else if (isset($this->_req_data['status']) && $this->_req_data['status'] == 'month') { |
|
1798 | + $now = date('Y-m-01'); |
|
1799 | + $DateTime = new DateTime($now, new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1800 | + $start = $DateTime->setTime(0, 0, 0)->format(implode(' ', $start_formats)); |
|
1801 | + $end = $DateTime->setDate(date('Y'), date('m'), $DateTime->format('t')) |
|
1802 | + ->setTime(23, 59, 59) |
|
1803 | + ->format(implode(' ', $start_formats)); |
|
1804 | + $where['Datetime.DTT_EVT_start'] = array('BETWEEN', array($start, $end)); |
|
1805 | + } |
|
1806 | + if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events')) { |
|
1807 | + $where['EVT_wp_user'] = get_current_user_id(); |
|
1808 | + } else { |
|
1809 | + if ( ! isset($where['status'])) { |
|
1810 | + if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_private_events', 'get_events')) { |
|
1811 | + $where['OR'] = array( |
|
1812 | + 'status*restrict_private' => array('!=', 'private'), |
|
1813 | + 'AND' => array( |
|
1814 | + 'status*inclusive' => array('=', 'private'), |
|
1815 | + 'EVT_wp_user' => get_current_user_id(), |
|
1816 | + ), |
|
1817 | + ); |
|
1818 | + } |
|
1819 | + } |
|
1820 | + } |
|
1821 | + if (isset($this->_req_data['EVT_wp_user'])) { |
|
1822 | + if ($this->_req_data['EVT_wp_user'] != get_current_user_id() |
|
1823 | + && EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events') |
|
1824 | + ) { |
|
1825 | + $where['EVT_wp_user'] = $this->_req_data['EVT_wp_user']; |
|
1826 | + } |
|
1827 | + } |
|
1828 | + //search query handling |
|
1829 | + if (isset($this->_req_data['s'])) { |
|
1830 | + $search_string = '%' . $this->_req_data['s'] . '%'; |
|
1831 | + $where['OR'] = array( |
|
1832 | + 'EVT_name' => array('LIKE', $search_string), |
|
1833 | + 'EVT_desc' => array('LIKE', $search_string), |
|
1834 | + 'EVT_short_desc' => array('LIKE', $search_string), |
|
1835 | + ); |
|
1836 | + } |
|
1837 | + $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $this->_req_data); |
|
1838 | + $query_params = apply_filters( |
|
1839 | + 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1840 | + array( |
|
1841 | + $where, |
|
1842 | + 'limit' => $limit, |
|
1843 | + 'order_by' => $orderby, |
|
1844 | + 'order' => $order, |
|
1845 | + 'group_by' => 'EVT_ID', |
|
1846 | + ), |
|
1847 | + $this->_req_data |
|
1848 | + ); |
|
1849 | + //let's first check if we have special requests coming in. |
|
1850 | + if (isset($this->_req_data['active_status'])) { |
|
1851 | + switch ($this->_req_data['active_status']) { |
|
1852 | + case 'upcoming' : |
|
1853 | + return $EEME->get_upcoming_events($query_params, $count); |
|
1854 | + break; |
|
1855 | + case 'expired' : |
|
1856 | + return $EEME->get_expired_events($query_params, $count); |
|
1857 | + break; |
|
1858 | + case 'active' : |
|
1859 | + return $EEME->get_active_events($query_params, $count); |
|
1860 | + break; |
|
1861 | + case 'inactive' : |
|
1862 | + return $EEME->get_inactive_events($query_params, $count); |
|
1863 | + break; |
|
1864 | + } |
|
1865 | + } |
|
1866 | + $events = $count ? $EEME->count(array($where), 'EVT_ID', true) : $EEME->get_all($query_params); |
|
1867 | + return $events; |
|
1868 | + } |
|
1869 | + |
|
1870 | + |
|
1871 | + |
|
1872 | + /** |
|
1873 | + * handling for WordPress CPT actions (trash, restore, delete) |
|
1874 | + * |
|
1875 | + * @param string $post_id |
|
1876 | + */ |
|
1877 | + public function trash_cpt_item($post_id) |
|
1878 | + { |
|
1879 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1880 | + $this->_trash_or_restore_event('trash', false); |
|
1881 | + } |
|
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 | + /** |
|
1897 | + * @param string $post_id |
|
1898 | + */ |
|
1899 | + public function delete_cpt_item($post_id) |
|
1900 | + { |
|
1901 | + $this->_req_data['EVT_ID'] = $post_id; |
|
1902 | + $this->_delete_event(false); |
|
1903 | + } |
|
1904 | + |
|
1905 | + |
|
1906 | + |
|
1907 | + /** |
|
1908 | + * _trash_or_restore_event |
|
1909 | + * |
|
1910 | + * @access protected |
|
1911 | + * @param string $event_status |
|
1912 | + * @param bool $redirect_after |
|
1913 | + */ |
|
1914 | + protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
1915 | + { |
|
1916 | + //determine the event id and set to array. |
|
1917 | + $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : false; |
|
1918 | + // loop thru events |
|
1919 | + if ($EVT_ID) { |
|
1920 | + // clean status |
|
1921 | + $event_status = sanitize_key($event_status); |
|
1922 | + // grab status |
|
1923 | + if ( ! empty($event_status)) { |
|
1924 | + $success = $this->_change_event_status($EVT_ID, $event_status); |
|
1925 | + } else { |
|
1926 | + $success = false; |
|
1927 | + $msg = esc_html__( |
|
1928 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1929 | + 'event_espresso' |
|
1930 | + ); |
|
1931 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1932 | + } |
|
1933 | + } else { |
|
1934 | + $success = false; |
|
1935 | + $msg = esc_html__( |
|
1936 | + 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
1937 | + 'event_espresso' |
|
1938 | + ); |
|
1939 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1940 | + } |
|
1941 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1942 | + if ($redirect_after) { |
|
1943 | + $this->_redirect_after_action($success, 'Event', $action, array('action' => 'default')); |
|
1944 | + } |
|
1945 | + } |
|
1946 | + |
|
1947 | + |
|
1948 | + |
|
1949 | + /** |
|
1950 | + * _trash_or_restore_events |
|
1951 | + * |
|
1952 | + * @access protected |
|
1953 | + * @param string $event_status |
|
1954 | + * @return void |
|
1955 | + */ |
|
1956 | + protected function _trash_or_restore_events($event_status = 'trash') |
|
1957 | + { |
|
1958 | + // clean status |
|
1959 | + $event_status = sanitize_key($event_status); |
|
1960 | + // grab status |
|
1961 | + if ( ! empty($event_status)) { |
|
1962 | + $success = true; |
|
1963 | + //determine the event id and set to array. |
|
1964 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array)$this->_req_data['EVT_IDs'] : array(); |
|
1965 | + // loop thru events |
|
1966 | + foreach ($EVT_IDs as $EVT_ID) { |
|
1967 | + if ($EVT_ID = absint($EVT_ID)) { |
|
1968 | + $results = $this->_change_event_status($EVT_ID, $event_status); |
|
1969 | + $success = $results !== false ? $success : false; |
|
1970 | + } else { |
|
1971 | + $msg = sprintf( |
|
1972 | + esc_html__( |
|
1973 | + 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
1974 | + 'event_espresso' |
|
1975 | + ), |
|
1976 | + $EVT_ID |
|
1977 | + ); |
|
1978 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1979 | + $success = false; |
|
1980 | + } |
|
1981 | + } |
|
1982 | + } else { |
|
1983 | + $success = false; |
|
1984 | + $msg = esc_html__( |
|
1985 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
1986 | + 'event_espresso' |
|
1987 | + ); |
|
1988 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1989 | + } |
|
1990 | + // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
1991 | + $success = $success ? 2 : false; |
|
1992 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
1993 | + $this->_redirect_after_action($success, 'Events', $action, array('action' => 'default')); |
|
1994 | + } |
|
1995 | + |
|
1996 | + |
|
1997 | + |
|
1998 | + /** |
|
1999 | + * _trash_or_restore_events |
|
2000 | + * |
|
2001 | + * @access private |
|
2002 | + * @param int $EVT_ID |
|
2003 | + * @param string $event_status |
|
2004 | + * @return bool |
|
2005 | + */ |
|
2006 | + private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2007 | + { |
|
2008 | + // grab event id |
|
2009 | + if ( ! $EVT_ID) { |
|
2010 | + $msg = esc_html__( |
|
2011 | + 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2012 | + 'event_espresso' |
|
2013 | + ); |
|
2014 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2015 | + return false; |
|
2016 | + } |
|
2017 | + $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2018 | + // clean status |
|
2019 | + $event_status = sanitize_key($event_status); |
|
2020 | + // grab status |
|
2021 | + if (empty($event_status)) { |
|
2022 | + $msg = esc_html__( |
|
2023 | + 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2024 | + 'event_espresso' |
|
2025 | + ); |
|
2026 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2027 | + return false; |
|
2028 | + } |
|
2029 | + // was event trashed or restored ? |
|
2030 | + switch ($event_status) { |
|
2031 | + case 'draft' : |
|
2032 | + $action = 'restored from the trash'; |
|
2033 | + $hook = 'AHEE_event_restored_from_trash'; |
|
2034 | + break; |
|
2035 | + case 'trash' : |
|
2036 | + $action = 'moved to the trash'; |
|
2037 | + $hook = 'AHEE_event_moved_to_trash'; |
|
2038 | + break; |
|
2039 | + default : |
|
2040 | + $action = 'updated'; |
|
2041 | + $hook = false; |
|
2042 | + } |
|
2043 | + //use class to change status |
|
2044 | + $this->_cpt_model_obj->set_status($event_status); |
|
2045 | + $success = $this->_cpt_model_obj->save(); |
|
2046 | + if ($success === false) { |
|
2047 | + $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2048 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2049 | + return false; |
|
2050 | + } |
|
2051 | + if ($hook) { |
|
2052 | + do_action($hook); |
|
2053 | + } |
|
2054 | + return true; |
|
2055 | + } |
|
2056 | + |
|
2057 | + |
|
2058 | + |
|
2059 | + /** |
|
2060 | + * _delete_event |
|
2061 | + * |
|
2062 | + * @access protected |
|
2063 | + * @param bool $redirect_after |
|
2064 | + */ |
|
2065 | + protected function _delete_event($redirect_after = true) |
|
2066 | + { |
|
2067 | + //determine the event id and set to array. |
|
2068 | + $EVT_ID = isset($this->_req_data['EVT_ID']) ? absint($this->_req_data['EVT_ID']) : null; |
|
2069 | + $EVT_ID = isset($this->_req_data['post']) ? absint($this->_req_data['post']) : $EVT_ID; |
|
2070 | + // loop thru events |
|
2071 | + if ($EVT_ID) { |
|
2072 | + $success = $this->_permanently_delete_event($EVT_ID); |
|
2073 | + // get list of events with no prices |
|
2074 | + $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2075 | + // remove this event from the list of events with no prices |
|
2076 | + if (isset($espresso_no_ticket_prices[$EVT_ID])) { |
|
2077 | + unset($espresso_no_ticket_prices[$EVT_ID]); |
|
2078 | + } |
|
2079 | + update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2080 | + } else { |
|
2081 | + $success = false; |
|
2082 | + $msg = esc_html__( |
|
2083 | + 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2084 | + 'event_espresso' |
|
2085 | + ); |
|
2086 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2087 | + } |
|
2088 | + if ($redirect_after) { |
|
2089 | + $this->_redirect_after_action( |
|
2090 | + $success, |
|
2091 | + 'Event', |
|
2092 | + 'deleted', |
|
2093 | + array('action' => 'default', 'status' => 'trash') |
|
2094 | + ); |
|
2095 | + } |
|
2096 | + } |
|
2097 | + |
|
2098 | + |
|
2099 | + |
|
2100 | + /** |
|
2101 | + * _delete_events |
|
2102 | + * |
|
2103 | + * @access protected |
|
2104 | + * @return void |
|
2105 | + */ |
|
2106 | + protected function _delete_events() |
|
2107 | + { |
|
2108 | + $success = true; |
|
2109 | + // get list of events with no prices |
|
2110 | + $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
|
2111 | + //determine the event id and set to array. |
|
2112 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array)$this->_req_data['EVT_IDs'] : array(); |
|
2113 | + // loop thru events |
|
2114 | + foreach ($EVT_IDs as $EVT_ID) { |
|
2115 | + $EVT_ID = absint($EVT_ID); |
|
2116 | + if ($EVT_ID) { |
|
2117 | + $results = $this->_permanently_delete_event($EVT_ID); |
|
2118 | + $success = $results !== false ? $success : false; |
|
2119 | + // remove this event from the list of events with no prices |
|
2120 | + unset($espresso_no_ticket_prices[$EVT_ID]); |
|
2121 | + } else { |
|
2122 | + $success = false; |
|
2123 | + $msg = esc_html__( |
|
2124 | + 'An error occurred. An event could not be deleted because a valid event ID was not not supplied.', |
|
2125 | + 'event_espresso' |
|
2126 | + ); |
|
2127 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2128 | + } |
|
2129 | + } |
|
2130 | + update_option('ee_no_ticket_prices', $espresso_no_ticket_prices); |
|
2131 | + // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2132 | + $success = $success ? 2 : false; |
|
2133 | + $this->_redirect_after_action($success, 'Events', 'deleted', array('action' => 'default')); |
|
2134 | + } |
|
2135 | + |
|
2136 | + |
|
2137 | + |
|
2138 | + /** |
|
2139 | + * _permanently_delete_event |
|
2140 | + * |
|
2141 | + * @access private |
|
2142 | + * @param int $EVT_ID |
|
2143 | + * @return bool |
|
2144 | + */ |
|
2145 | + private function _permanently_delete_event($EVT_ID = 0) |
|
2146 | + { |
|
2147 | + // grab event id |
|
2148 | + if ( ! $EVT_ID) { |
|
2149 | + $msg = esc_html__( |
|
2150 | + 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2151 | + 'event_espresso' |
|
2152 | + ); |
|
2153 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2154 | + return false; |
|
2155 | + } |
|
2156 | + if ( |
|
2157 | + ! $this->_cpt_model_obj instanceof EE_Event |
|
2158 | + || $this->_cpt_model_obj->ID() !== $EVT_ID |
|
2159 | + ) { |
|
2160 | + $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2161 | + } |
|
2162 | + if ( ! $this->_cpt_model_obj instanceof EE_Event) { |
|
2163 | + return false; |
|
2164 | + } |
|
2165 | + //need to delete related tickets and prices first. |
|
2166 | + $datetimes = $this->_cpt_model_obj->get_many_related('Datetime'); |
|
2167 | + foreach ($datetimes as $datetime) { |
|
2168 | + $this->_cpt_model_obj->_remove_relation_to($datetime, 'Datetime'); |
|
2169 | + $tickets = $datetime->get_many_related('Ticket'); |
|
2170 | + foreach ($tickets as $ticket) { |
|
2171 | + $ticket->_remove_relation_to($datetime, 'Datetime'); |
|
2172 | + $ticket->delete_related_permanently('Price'); |
|
2173 | + $ticket->delete_permanently(); |
|
2174 | + } |
|
2175 | + $datetime->delete(); |
|
2176 | + } |
|
2177 | + //what about related venues or terms? |
|
2178 | + $venues = $this->_cpt_model_obj->get_many_related('Venue'); |
|
2179 | + foreach ($venues as $venue) { |
|
2180 | + $this->_cpt_model_obj->_remove_relation_to($venue, 'Venue'); |
|
2181 | + } |
|
2182 | + //any attached question groups? |
|
2183 | + $question_groups = $this->_cpt_model_obj->get_many_related('Question_Group'); |
|
2184 | + if ( ! empty($question_groups)) { |
|
2185 | + foreach ($question_groups as $question_group) { |
|
2186 | + $this->_cpt_model_obj->_remove_relation_to($question_group, 'Question_Group'); |
|
2187 | + } |
|
2188 | + } |
|
2189 | + //Message Template Groups |
|
2190 | + $this->_cpt_model_obj->_remove_relations('Message_Template_Group'); |
|
2191 | + /** @type EE_Term_Taxonomy[] $term_taxonomies */ |
|
2192 | + $term_taxonomies = $this->_cpt_model_obj->term_taxonomies(); |
|
2193 | + foreach ($term_taxonomies as $term_taxonomy) { |
|
2194 | + $this->_cpt_model_obj->remove_relation_to_term_taxonomy($term_taxonomy); |
|
2195 | + } |
|
2196 | + $success = $this->_cpt_model_obj->delete_permanently(); |
|
2197 | + // did it all go as planned ? |
|
2198 | + if ($success) { |
|
2199 | + $msg = sprintf(esc_html__('Event ID # %d has been deleted.', 'event_espresso'), $EVT_ID); |
|
2200 | + EE_Error::add_success($msg); |
|
2201 | + } else { |
|
2202 | + $msg = sprintf( |
|
2203 | + esc_html__('An error occurred. Event ID # %d could not be deleted.', 'event_espresso'), |
|
2204 | + $EVT_ID |
|
2205 | + ); |
|
2206 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2207 | + return false; |
|
2208 | + } |
|
2209 | + do_action('AHEE__Events_Admin_Page___permanently_delete_event__after_event_deleted', $EVT_ID); |
|
2210 | + return true; |
|
2211 | + } |
|
2212 | + |
|
2213 | + |
|
2214 | + |
|
2215 | + /** |
|
2216 | + * get total number of events |
|
2217 | + * |
|
2218 | + * @access public |
|
2219 | + * @return int |
|
2220 | + */ |
|
2221 | + public function total_events() |
|
2222 | + { |
|
2223 | + $count = EEM_Event::instance()->count(array('caps' => 'read_admin'), 'EVT_ID', true); |
|
2224 | + return $count; |
|
2225 | + } |
|
2226 | + |
|
2227 | + |
|
2228 | + |
|
2229 | + /** |
|
2230 | + * get total number of draft events |
|
2231 | + * |
|
2232 | + * @access public |
|
2233 | + * @return int |
|
2234 | + */ |
|
2235 | + public function total_events_draft() |
|
2236 | + { |
|
2237 | + $where = array( |
|
2238 | + 'status' => array('IN', array('draft', 'auto-draft')), |
|
2239 | + ); |
|
2240 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2241 | + return $count; |
|
2242 | + } |
|
2243 | + |
|
2244 | + |
|
2245 | + |
|
2246 | + /** |
|
2247 | + * get total number of trashed events |
|
2248 | + * |
|
2249 | + * @access public |
|
2250 | + * @return int |
|
2251 | + */ |
|
2252 | + public function total_trashed_events() |
|
2253 | + { |
|
2254 | + $where = array( |
|
2255 | + 'status' => 'trash', |
|
2256 | + ); |
|
2257 | + $count = EEM_Event::instance()->count(array($where, 'caps' => 'read_admin'), 'EVT_ID', true); |
|
2258 | + return $count; |
|
2259 | + } |
|
2260 | + |
|
2261 | + |
|
2262 | + /** |
|
2263 | + * _default_event_settings |
|
2264 | + * This generates the Default Settings Tab |
|
2265 | + * |
|
2266 | + * @return void |
|
2267 | + * @throws EE_Error |
|
2268 | + */ |
|
2269 | + protected function _default_event_settings() |
|
2270 | + { |
|
2271 | + $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2272 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2273 | + $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2274 | + $this->display_admin_page_with_sidebar(); |
|
2275 | + } |
|
2276 | + |
|
2277 | + |
|
2278 | + /** |
|
2279 | + * Return the form for event settings. |
|
2280 | + * @return EE_Form_Section_Proper |
|
2281 | + */ |
|
2282 | + protected function _default_event_settings_form() |
|
2283 | + { |
|
2284 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2285 | + $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2286 | + //exclude |
|
2287 | + array( |
|
2288 | + EEM_Registration::status_id_cancelled, |
|
2289 | + EEM_Registration::status_id_declined, |
|
2290 | + EEM_Registration::status_id_incomplete, |
|
2291 | + EEM_Registration::status_id_wait_list, |
|
2292 | + ), |
|
2293 | + true |
|
2294 | + ); |
|
2295 | + return new EE_Form_Section_Proper( |
|
2296 | + array( |
|
2297 | + 'name' => 'update_default_event_settings', |
|
2298 | + 'html_id' => 'update_default_event_settings', |
|
2299 | + 'html_class' => 'form-table', |
|
2300 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2301 | + 'subsections' => apply_filters( |
|
2302 | + 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2303 | + array( |
|
2304 | + 'default_reg_status' => new EE_Select_Input( |
|
2305 | + $registration_stati_for_selection, |
|
2306 | + array( |
|
2307 | + 'default' => isset($registration_config->default_STS_ID) |
|
2308 | + && array_key_exists( |
|
2309 | + $registration_config->default_STS_ID, |
|
2310 | + $registration_stati_for_selection |
|
2311 | + ) |
|
2312 | + ? sanitize_text_field($registration_config->default_STS_ID) |
|
2313 | + : EEM_Registration::status_id_pending_payment, |
|
2314 | + 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2315 | + . EEH_Template::get_help_tab_link( |
|
2316 | + 'default_settings_status_help_tab' |
|
2317 | + ), |
|
2318 | + 'html_help_text' => esc_html__( |
|
2319 | + '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.', |
|
2320 | + 'event_espresso' |
|
2321 | + ) |
|
2322 | + ) |
|
2323 | + ), |
|
2324 | + 'default_max_tickets' => new EE_Integer_Input( |
|
2325 | + array( |
|
2326 | + 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2327 | + ? $registration_config->default_maximum_number_of_tickets |
|
2328 | + : EEM_Event::get_default_additional_limit(), |
|
2329 | + 'html_label_text' => esc_html__( |
|
2330 | + 'Default Maximum Tickets Allowed Per Order:', |
|
2331 | + 'event_espresso' |
|
2332 | + ) . EEH_Template::get_help_tab_link( |
|
2333 | + 'default_maximum_tickets_help_tab"' |
|
2334 | + ), |
|
2335 | + 'html_help_text' => esc_html__( |
|
2336 | + 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2337 | + 'event_espresso' |
|
2338 | + ) |
|
2339 | + ) |
|
2340 | + ) |
|
2341 | + ) |
|
2342 | + ) |
|
2343 | + ) |
|
2344 | + ); |
|
2345 | + } |
|
2346 | + |
|
2347 | + |
|
2348 | + /** |
|
2349 | + * _update_default_event_settings |
|
2350 | + * |
|
2351 | + * @access protected |
|
2352 | + * @return void |
|
2353 | + * @throws EE_Error |
|
2354 | + */ |
|
2355 | + protected function _update_default_event_settings() |
|
2356 | + { |
|
2357 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2358 | + $form = $this->_default_event_settings_form(); |
|
2359 | + if ($form->was_submitted()) { |
|
2360 | + $form->receive_form_submission(); |
|
2361 | + if ($form->is_valid()) { |
|
2362 | + $valid_data = $form->valid_data(); |
|
2363 | + if (isset($valid_data['default_reg_status'])) { |
|
2364 | + $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2365 | + } |
|
2366 | + if (isset($valid_data['default_max_tickets'])) { |
|
2367 | + $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2368 | + } |
|
2369 | + //update because data was valid! |
|
2370 | + EE_Registry::instance()->CFG->update_espresso_config(); |
|
2371 | + EE_Error::overwrite_success(); |
|
2372 | + EE_Error::add_success( |
|
2373 | + __('Default Event Settings were updated', 'event_espresso') |
|
2374 | + ); |
|
2375 | + } |
|
2376 | + } |
|
2377 | + $this->_redirect_after_action(0, '', '', array('action' => 'default_event_settings'), true); |
|
2378 | + } |
|
2379 | + |
|
2380 | + |
|
2381 | + |
|
2382 | + /************* Templates *************/ |
|
2383 | + protected function _template_settings() |
|
2384 | + { |
|
2385 | + $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2386 | + $this->_template_args['preview_img'] = '<img src="' |
|
2387 | + . EVENTS_ASSETS_URL |
|
2388 | + . DS |
|
2389 | + . 'images' |
|
2390 | + . DS |
|
2391 | + . 'caffeinated_template_features.jpg" alt="' |
|
2392 | + . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2393 | + . '" />'; |
|
2394 | + $this->_template_args['preview_text'] = '<strong>' . esc_html__( |
|
2395 | + '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.', |
|
2396 | + 'event_espresso' |
|
2397 | + ) . '</strong>'; |
|
2398 | + $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2399 | + } |
|
2400 | + |
|
2401 | + |
|
2402 | + /** Event Category Stuff **/ |
|
2403 | + /** |
|
2404 | + * set the _category property with the category object for the loaded page. |
|
2405 | + * |
|
2406 | + * @access private |
|
2407 | + * @return void |
|
2408 | + */ |
|
2409 | + private function _set_category_object() |
|
2410 | + { |
|
2411 | + if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2412 | + return; |
|
2413 | + } //already have the category object so get out. |
|
2414 | + //set default category object |
|
2415 | + $this->_set_empty_category_object(); |
|
2416 | + //only set if we've got an id |
|
2417 | + if ( ! isset($this->_req_data['EVT_CAT_ID'])) { |
|
2418 | + return; |
|
2419 | + } |
|
2420 | + $category_id = absint($this->_req_data['EVT_CAT_ID']); |
|
2421 | + $term = get_term($category_id, 'espresso_event_categories'); |
|
2422 | + if ( ! empty($term)) { |
|
2423 | + $this->_category->category_name = $term->name; |
|
2424 | + $this->_category->category_identifier = $term->slug; |
|
2425 | + $this->_category->category_desc = $term->description; |
|
2426 | + $this->_category->id = $term->term_id; |
|
2427 | + $this->_category->parent = $term->parent; |
|
2428 | + } |
|
2429 | + } |
|
2430 | + |
|
2431 | + |
|
2432 | + /** |
|
2433 | + * Clears out category properties. |
|
2434 | + */ |
|
2435 | + private function _set_empty_category_object() |
|
2436 | + { |
|
2437 | + $this->_category = new stdClass(); |
|
2438 | + $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2439 | + $this->_category->id = $this->_category->parent = 0; |
|
2440 | + } |
|
2441 | + |
|
2442 | + |
|
2443 | + /** |
|
2444 | + * @throws EE_Error |
|
2445 | + */ |
|
2446 | + protected function _category_list_table() |
|
2447 | + { |
|
2448 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2449 | + $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2450 | + $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2451 | + 'add_category', |
|
2452 | + 'add_category', |
|
2453 | + array(), |
|
2454 | + 'add-new-h2' |
|
2455 | + ); |
|
2456 | + $this->display_admin_list_table_page_with_sidebar(); |
|
2457 | + } |
|
2458 | + |
|
2459 | + |
|
2460 | + |
|
2461 | + /** |
|
2462 | + * Output category details view. |
|
2463 | + */ |
|
2464 | + protected function _category_details($view) |
|
2465 | + { |
|
2466 | + //load formatter helper |
|
2467 | + //load field generator helper |
|
2468 | + $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2469 | + $this->_set_add_edit_form_tags($route); |
|
2470 | + $this->_set_category_object(); |
|
2471 | + $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2472 | + $delete_action = 'delete_category'; |
|
2473 | + //custom redirect |
|
2474 | + $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2475 | + array('action' => 'category_list'), |
|
2476 | + $this->_admin_base_url |
|
2477 | + ); |
|
2478 | + $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2479 | + //take care of contents |
|
2480 | + $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2481 | + $this->display_admin_page_with_sidebar(); |
|
2482 | + } |
|
2483 | + |
|
2484 | + |
|
2485 | + |
|
2486 | + /** |
|
2487 | + * Output category details content. |
|
2488 | + */ |
|
2489 | + protected function _category_details_content() |
|
2490 | + { |
|
2491 | + $editor_args['category_desc'] = array( |
|
2492 | + 'type' => 'wp_editor', |
|
2493 | + 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2494 | + 'class' => 'my_editor_custom', |
|
2495 | + 'wpeditor_args' => array('media_buttons' => false), |
|
2496 | + ); |
|
2497 | + $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2498 | + $all_terms = get_terms( |
|
2499 | + array('espresso_event_categories'), |
|
2500 | + array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
2501 | + ); |
|
2502 | + //setup category select for term parents. |
|
2503 | + $category_select_values[] = array( |
|
2504 | + 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2505 | + 'id' => 0, |
|
2506 | + ); |
|
2507 | + foreach ($all_terms as $term) { |
|
2508 | + $category_select_values[] = array( |
|
2509 | + 'text' => $term->name, |
|
2510 | + 'id' => $term->term_id, |
|
2511 | + ); |
|
2512 | + } |
|
2513 | + $category_select = EEH_Form_Fields::select_input( |
|
2514 | + 'category_parent', |
|
2515 | + $category_select_values, |
|
2516 | + $this->_category->parent |
|
2517 | + ); |
|
2518 | + $template_args = array( |
|
2519 | + 'category' => $this->_category, |
|
2520 | + 'category_select' => $category_select, |
|
2521 | + 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2522 | + 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2523 | + 'disable' => '', |
|
2524 | + 'disabled_message' => false, |
|
2525 | + ); |
|
2526 | + $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2527 | + return EEH_Template::display_template($template, $template_args, true); |
|
2528 | + } |
|
2529 | + |
|
2530 | + |
|
2531 | + /** |
|
2532 | + * Handles deleting categories. |
|
2533 | + */ |
|
2534 | + protected function _delete_categories() |
|
2535 | + { |
|
2536 | + $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array)$this->_req_data['EVT_CAT_ID'] |
|
2537 | + : (array)$this->_req_data['category_id']; |
|
2538 | + foreach ($cat_ids as $cat_id) { |
|
2539 | + $this->_delete_category($cat_id); |
|
2540 | + } |
|
2541 | + //doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2542 | + $query_args = array( |
|
2543 | + 'action' => 'category_list', |
|
2544 | + ); |
|
2545 | + $this->_redirect_after_action(0, '', '', $query_args); |
|
2546 | + } |
|
2547 | + |
|
2548 | + |
|
2549 | + |
|
2550 | + /** |
|
2551 | + * Handles deleting specific category. |
|
2552 | + * @param int $cat_id |
|
2553 | + */ |
|
2554 | + protected function _delete_category($cat_id) |
|
2555 | + { |
|
2556 | + $cat_id = absint($cat_id); |
|
2557 | + wp_delete_term($cat_id, 'espresso_event_categories'); |
|
2558 | + } |
|
2559 | + |
|
2560 | + |
|
2561 | + |
|
2562 | + /** |
|
2563 | + * Handles triggering the update or insertion of a new category. |
|
2564 | + * @param bool $new_category true means we're triggering the insert of a new category. |
|
2565 | + */ |
|
2566 | + protected function _insert_or_update_category($new_category) |
|
2567 | + { |
|
2568 | + $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2569 | + $success = 0; //we already have a success message so lets not send another. |
|
2570 | + if ($cat_id) { |
|
2571 | + $query_args = array( |
|
2572 | + 'action' => 'edit_category', |
|
2573 | + 'EVT_CAT_ID' => $cat_id, |
|
2574 | + ); |
|
2575 | + } else { |
|
2576 | + $query_args = array('action' => 'add_category'); |
|
2577 | + } |
|
2578 | + $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2579 | + } |
|
2580 | + |
|
2581 | + |
|
2582 | + |
|
2583 | + /** |
|
2584 | + * Inserts or updates category |
|
2585 | + * @param bool $update (true indicates we're updating a category). |
|
2586 | + * @return bool|mixed|string |
|
2587 | + */ |
|
2588 | + private function _insert_category($update = false) |
|
2589 | + { |
|
2590 | + $cat_id = $update ? $this->_req_data['EVT_CAT_ID'] : ''; |
|
2591 | + $category_name = isset($this->_req_data['category_name']) ? $this->_req_data['category_name'] : ''; |
|
2592 | + $category_desc = isset($this->_req_data['category_desc']) ? $this->_req_data['category_desc'] : ''; |
|
2593 | + $category_parent = isset($this->_req_data['category_parent']) ? $this->_req_data['category_parent'] : 0; |
|
2594 | + if (empty($category_name)) { |
|
2595 | + $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2596 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2597 | + return false; |
|
2598 | + } |
|
2599 | + $term_args = array( |
|
2600 | + 'name' => $category_name, |
|
2601 | + 'description' => $category_desc, |
|
2602 | + 'parent' => $category_parent, |
|
2603 | + ); |
|
2604 | + //was the category_identifier input disabled? |
|
2605 | + if (isset($this->_req_data['category_identifier'])) { |
|
2606 | + $term_args['slug'] = $this->_req_data['category_identifier']; |
|
2607 | + } |
|
2608 | + $insert_ids = $update |
|
2609 | + ? wp_update_term($cat_id, 'espresso_event_categories', $term_args) |
|
2610 | + : wp_insert_term($category_name, 'espresso_event_categories', $term_args); |
|
2611 | + if ( ! is_array($insert_ids)) { |
|
2612 | + $msg = esc_html__( |
|
2613 | + 'An error occurred and the category has not been saved to the database.', |
|
2614 | + 'event_espresso' |
|
2615 | + ); |
|
2616 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2617 | + } else { |
|
2618 | + $cat_id = $insert_ids['term_id']; |
|
2619 | + $msg = sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2620 | + EE_Error::add_success($msg); |
|
2621 | + } |
|
2622 | + return $cat_id; |
|
2623 | + } |
|
2624 | + |
|
2625 | + |
|
2626 | + |
|
2627 | + /** |
|
2628 | + * Gets categories or count of categories matching the arguments in the request. |
|
2629 | + * @param int $per_page |
|
2630 | + * @param int $current_page |
|
2631 | + * @param bool $count |
|
2632 | + * @return EE_Base_Class[]|EE_Term_Taxonomy[]|int |
|
2633 | + */ |
|
2634 | + public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2635 | + { |
|
2636 | + //testing term stuff |
|
2637 | + $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'Term.term_id'; |
|
2638 | + $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : 'DESC'; |
|
2639 | + $limit = ($current_page - 1) * $per_page; |
|
2640 | + $where = array('taxonomy' => 'espresso_event_categories'); |
|
2641 | + if (isset($this->_req_data['s'])) { |
|
2642 | + $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2643 | + $where['OR'] = array( |
|
2644 | + 'Term.name' => array('LIKE', $sstr), |
|
2645 | + 'description' => array('LIKE', $sstr), |
|
2646 | + ); |
|
2647 | + } |
|
2648 | + $query_params = array( |
|
2649 | + $where, |
|
2650 | + 'order_by' => array($orderby => $order), |
|
2651 | + 'limit' => $limit . ',' . $per_page, |
|
2652 | + 'force_join' => array('Term'), |
|
2653 | + ); |
|
2654 | + $categories = $count |
|
2655 | + ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2656 | + : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2657 | + return $categories; |
|
2658 | + } |
|
2659 | + |
|
2660 | + /* end category stuff */ |
|
2661 | + /**************/ |
|
2662 | + |
|
2663 | + |
|
2664 | + /** |
|
2665 | + * Callback for the `ee_save_timezone_setting` ajax action. |
|
2666 | + * @throws EE_Error |
|
2667 | + */ |
|
2668 | + public function save_timezonestring_setting() |
|
2669 | + { |
|
2670 | + $timezone_string = isset($this->_req_data['timezone_selected']) |
|
2671 | + ? $this->_req_data['timezone_selected'] |
|
2672 | + : ''; |
|
2673 | + if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) |
|
2674 | + { |
|
2675 | + EE_Error::add_error( |
|
2676 | + esc_html('An invalid timezone string submitted.', 'event_espresso'), |
|
2677 | + __FILE__, __FUNCTION__, __LINE__ |
|
2678 | + ); |
|
2679 | + $this->_template_args['error'] = true; |
|
2680 | + $this->_return_json(); |
|
2681 | + } |
|
2682 | + |
|
2683 | + update_option('timezone_string', $timezone_string); |
|
2684 | + EE_Error::add_success( |
|
2685 | + esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2686 | + ); |
|
2687 | + $this->_template_args['success'] = true; |
|
2688 | + $this->_return_json(true, array('action' => 'create_new')); |
|
2689 | + } |
|
2690 | 2690 | } |
2691 | 2691 | //end class Events_Admin_Page |
@@ -553,11 +553,11 @@ discard block |
||
553 | 553 | { |
554 | 554 | wp_register_style( |
555 | 555 | 'events-admin-css', |
556 | - EVENTS_ASSETS_URL . 'events-admin-page.css', |
|
556 | + EVENTS_ASSETS_URL.'events-admin-page.css', |
|
557 | 557 | array(), |
558 | 558 | EVENT_ESPRESSO_VERSION |
559 | 559 | ); |
560 | - wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL . 'ee-cat-admin.css', array(), EVENT_ESPRESSO_VERSION); |
|
560 | + wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL.'ee-cat-admin.css', array(), EVENT_ESPRESSO_VERSION); |
|
561 | 561 | wp_enqueue_style('events-admin-css'); |
562 | 562 | wp_enqueue_style('ee-cat-admin'); |
563 | 563 | //todo note: we also need to load_scripts_styles per view (i.e. default/view_report/event_details |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | //scripts |
566 | 566 | wp_register_script( |
567 | 567 | 'event_editor_js', |
568 | - EVENTS_ASSETS_URL . 'event_editor.js', |
|
568 | + EVENTS_ASSETS_URL.'event_editor.js', |
|
569 | 569 | array('ee_admin_js', 'jquery-ui-slider', 'jquery-ui-timepicker-addon'), |
570 | 570 | EVENT_ESPRESSO_VERSION, |
571 | 571 | true |
@@ -593,7 +593,7 @@ discard block |
||
593 | 593 | wp_enqueue_style('espresso-ui-theme'); |
594 | 594 | wp_register_style( |
595 | 595 | 'event-editor-css', |
596 | - EVENTS_ASSETS_URL . 'event-editor.css', |
|
596 | + EVENTS_ASSETS_URL.'event-editor.css', |
|
597 | 597 | array('ee-admin-css'), |
598 | 598 | EVENT_ESPRESSO_VERSION |
599 | 599 | ); |
@@ -601,7 +601,7 @@ discard block |
||
601 | 601 | //scripts |
602 | 602 | wp_register_script( |
603 | 603 | 'event-datetime-metabox', |
604 | - EVENTS_ASSETS_URL . 'event-datetime-metabox.js', |
|
604 | + EVENTS_ASSETS_URL.'event-datetime-metabox.js', |
|
605 | 605 | array('event_editor_js', 'ee-datepicker'), |
606 | 606 | EVENT_ESPRESSO_VERSION |
607 | 607 | ); |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | $event = $this->_cpt_model_obj; |
674 | 674 | } |
675 | 675 | // STILL no event? |
676 | - if (! $event instanceof EE_Event) { |
|
676 | + if ( ! $event instanceof EE_Event) { |
|
677 | 677 | return; |
678 | 678 | } |
679 | 679 | $orig_status = $event->status(); |
@@ -755,7 +755,7 @@ discard block |
||
755 | 755 | { |
756 | 756 | $has_timezone_string = get_option('timezone_string'); |
757 | 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())) { |
|
758 | + if ( ! $has_timezone_string && ! EEM_Event::instance()->exists(array())) { |
|
759 | 759 | EE_Error::add_attention( |
760 | 760 | sprintf( |
761 | 761 | __( |
@@ -839,31 +839,31 @@ discard block |
||
839 | 839 | $items = apply_filters('FHEE__Events_Admin_Page___event_legend_items__items', $items); |
840 | 840 | $statuses = array( |
841 | 841 | 'sold_out_status' => array( |
842 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::sold_out, |
|
842 | + 'class' => 'ee-status-legend ee-status-legend-'.EE_Datetime::sold_out, |
|
843 | 843 | 'desc' => EEH_Template::pretty_status(EE_Datetime::sold_out, false, 'sentence'), |
844 | 844 | ), |
845 | 845 | 'active_status' => array( |
846 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::active, |
|
846 | + 'class' => 'ee-status-legend ee-status-legend-'.EE_Datetime::active, |
|
847 | 847 | 'desc' => EEH_Template::pretty_status(EE_Datetime::active, false, 'sentence'), |
848 | 848 | ), |
849 | 849 | 'upcoming_status' => array( |
850 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::upcoming, |
|
850 | + 'class' => 'ee-status-legend ee-status-legend-'.EE_Datetime::upcoming, |
|
851 | 851 | 'desc' => EEH_Template::pretty_status(EE_Datetime::upcoming, false, 'sentence'), |
852 | 852 | ), |
853 | 853 | 'postponed_status' => array( |
854 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::postponed, |
|
854 | + 'class' => 'ee-status-legend ee-status-legend-'.EE_Datetime::postponed, |
|
855 | 855 | 'desc' => EEH_Template::pretty_status(EE_Datetime::postponed, false, 'sentence'), |
856 | 856 | ), |
857 | 857 | 'cancelled_status' => array( |
858 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::cancelled, |
|
858 | + 'class' => 'ee-status-legend ee-status-legend-'.EE_Datetime::cancelled, |
|
859 | 859 | 'desc' => EEH_Template::pretty_status(EE_Datetime::cancelled, false, 'sentence'), |
860 | 860 | ), |
861 | 861 | 'expired_status' => array( |
862 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::expired, |
|
862 | + 'class' => 'ee-status-legend ee-status-legend-'.EE_Datetime::expired, |
|
863 | 863 | 'desc' => EEH_Template::pretty_status(EE_Datetime::expired, false, 'sentence'), |
864 | 864 | ), |
865 | 865 | 'inactive_status' => array( |
866 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::inactive, |
|
866 | + 'class' => 'ee-status-legend ee-status-legend-'.EE_Datetime::inactive, |
|
867 | 867 | 'desc' => EEH_Template::pretty_status(EE_Datetime::inactive, false, 'sentence'), |
868 | 868 | ), |
869 | 869 | ); |
@@ -925,7 +925,7 @@ discard block |
||
925 | 925 | { |
926 | 926 | do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
927 | 927 | $this->_template_args['after_list_table'] = ! empty($this->_template_args['after_list_table']) |
928 | - ? (array)$this->_template_args['after_list_table'] |
|
928 | + ? (array) $this->_template_args['after_list_table'] |
|
929 | 929 | : array(); |
930 | 930 | $this->_template_args['after_list_table']['view_event_list_button'] = EEH_HTML::br() |
931 | 931 | . EEH_Template::get_button_or_link( |
@@ -934,7 +934,7 @@ discard block |
||
934 | 934 | 'button' |
935 | 935 | ); |
936 | 936 | $this->_template_args['after_list_table']['legend'] = $this->_display_legend($this->_event_legend_items()); |
937 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
937 | + $this->_admin_page_title .= ' '.$this->get_action_link_or_button( |
|
938 | 938 | 'create_new', |
939 | 939 | 'add', |
940 | 940 | array(), |
@@ -1064,7 +1064,7 @@ discard block |
||
1064 | 1064 | */ |
1065 | 1065 | protected function _default_venue_update(\EE_Event $evtobj, $data) |
1066 | 1066 | { |
1067 | - require_once(EE_MODELS . 'EEM_Venue.model.php'); |
|
1067 | + require_once(EE_MODELS.'EEM_Venue.model.php'); |
|
1068 | 1068 | $venue_model = EE_Registry::instance()->load_model('Venue'); |
1069 | 1069 | $rows_affected = null; |
1070 | 1070 | $venue_id = ! empty($data['venue_id']) ? $data['venue_id'] : null; |
@@ -1188,7 +1188,7 @@ discard block |
||
1188 | 1188 | if (empty($tkt['TKT_start_date'])) { |
1189 | 1189 | //let's use now in the set timezone. |
1190 | 1190 | $now = new DateTime('now', new DateTimeZone($evtobj->get_timezone())); |
1191 | - $tkt['TKT_start_date'] = $now->format($incoming_date_formats[0] . ' ' . $incoming_date_formats[1]); |
|
1191 | + $tkt['TKT_start_date'] = $now->format($incoming_date_formats[0].' '.$incoming_date_formats[1]); |
|
1192 | 1192 | } |
1193 | 1193 | if (empty($tkt['TKT_end_date'])) { |
1194 | 1194 | //use the start date of the first datetime |
@@ -1467,7 +1467,7 @@ discard block |
||
1467 | 1467 | $publish_box_extra_args['event_editor_overview_add'] = ob_get_clean(); |
1468 | 1468 | // load template |
1469 | 1469 | EEH_Template::display_template( |
1470 | - EVENTS_TEMPLATE_PATH . 'event_publish_box_extras.template.php', |
|
1470 | + EVENTS_TEMPLATE_PATH.'event_publish_box_extras.template.php', |
|
1471 | 1471 | $publish_box_extra_args |
1472 | 1472 | ); |
1473 | 1473 | } |
@@ -1594,7 +1594,7 @@ discard block |
||
1594 | 1594 | ); |
1595 | 1595 | $template = apply_filters( |
1596 | 1596 | 'FHEE__Events_Admin_Page__ticket_metabox__template', |
1597 | - EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_main.template.php' |
|
1597 | + EVENTS_TEMPLATE_PATH.'event_tickets_metabox_main.template.php' |
|
1598 | 1598 | ); |
1599 | 1599 | EEH_Template::display_template($template, $template_args); |
1600 | 1600 | } |
@@ -1613,7 +1613,7 @@ discard block |
||
1613 | 1613 | private function _get_ticket_row($ticket, $skeleton = false, $row = 0) |
1614 | 1614 | { |
1615 | 1615 | $template_args = array( |
1616 | - 'tkt_status_class' => ' tkt-status-' . $ticket->ticket_status(), |
|
1616 | + 'tkt_status_class' => ' tkt-status-'.$ticket->ticket_status(), |
|
1617 | 1617 | 'tkt_archive_class' => $ticket->ticket_status() === EE_Ticket::archived && ! $skeleton ? ' tkt-archived' |
1618 | 1618 | : '', |
1619 | 1619 | 'ticketrow' => $skeleton ? 'TICKETNUM' : $row, |
@@ -1667,7 +1667,7 @@ discard block |
||
1667 | 1667 | $template_args = array_merge($template_args, $price_args); |
1668 | 1668 | $template = apply_filters( |
1669 | 1669 | 'FHEE__Events_Admin_Page__get_ticket_row__template', |
1670 | - EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_ticket_row.template.php', |
|
1670 | + EVENTS_TEMPLATE_PATH.'event_tickets_metabox_ticket_row.template.php', |
|
1671 | 1671 | $ticket |
1672 | 1672 | ); |
1673 | 1673 | return EEH_Template::display_template($template, $template_args, true); |
@@ -1721,7 +1721,7 @@ discard block |
||
1721 | 1721 | $default_reg_status_values |
1722 | 1722 | ); |
1723 | 1723 | EEH_Template::display_template( |
1724 | - EVENTS_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
1724 | + EVENTS_TEMPLATE_PATH.'event_registration_options.template.php', |
|
1725 | 1725 | $template_args |
1726 | 1726 | ); |
1727 | 1727 | } |
@@ -1744,7 +1744,7 @@ discard block |
||
1744 | 1744 | { |
1745 | 1745 | $EEME = $this->_event_model(); |
1746 | 1746 | $offset = ($current_page - 1) * $per_page; |
1747 | - $limit = $count ? null : $offset . ',' . $per_page; |
|
1747 | + $limit = $count ? null : $offset.','.$per_page; |
|
1748 | 1748 | $orderby = isset($this->_req_data['orderby']) ? $this->_req_data['orderby'] : 'EVT_ID'; |
1749 | 1749 | $order = isset($this->_req_data['order']) ? $this->_req_data['order'] : "DESC"; |
1750 | 1750 | if (isset($this->_req_data['month_range'])) { |
@@ -1781,7 +1781,7 @@ discard block |
||
1781 | 1781 | $start_formats = EEM_Datetime::instance()->get_formats_for('DTT_EVT_start'); |
1782 | 1782 | if (isset($this->_req_data['month_range']) && $this->_req_data['month_range'] != '') { |
1783 | 1783 | $DateTime = new DateTime( |
1784 | - $year_r . '-' . $month_r . '-01 00:00:00', |
|
1784 | + $year_r.'-'.$month_r.'-01 00:00:00', |
|
1785 | 1785 | new DateTimeZone(EEM_Datetime::instance()->get_timezone()) |
1786 | 1786 | ); |
1787 | 1787 | $start = $DateTime->format(implode(' ', $start_formats)); |
@@ -1827,7 +1827,7 @@ discard block |
||
1827 | 1827 | } |
1828 | 1828 | //search query handling |
1829 | 1829 | if (isset($this->_req_data['s'])) { |
1830 | - $search_string = '%' . $this->_req_data['s'] . '%'; |
|
1830 | + $search_string = '%'.$this->_req_data['s'].'%'; |
|
1831 | 1831 | $where['OR'] = array( |
1832 | 1832 | 'EVT_name' => array('LIKE', $search_string), |
1833 | 1833 | 'EVT_desc' => array('LIKE', $search_string), |
@@ -1961,7 +1961,7 @@ discard block |
||
1961 | 1961 | if ( ! empty($event_status)) { |
1962 | 1962 | $success = true; |
1963 | 1963 | //determine the event id and set to array. |
1964 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array)$this->_req_data['EVT_IDs'] : array(); |
|
1964 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
1965 | 1965 | // loop thru events |
1966 | 1966 | foreach ($EVT_IDs as $EVT_ID) { |
1967 | 1967 | if ($EVT_ID = absint($EVT_ID)) { |
@@ -2109,7 +2109,7 @@ discard block |
||
2109 | 2109 | // get list of events with no prices |
2110 | 2110 | $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', array()); |
2111 | 2111 | //determine the event id and set to array. |
2112 | - $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array)$this->_req_data['EVT_IDs'] : array(); |
|
2112 | + $EVT_IDs = isset($this->_req_data['EVT_IDs']) ? (array) $this->_req_data['EVT_IDs'] : array(); |
|
2113 | 2113 | // loop thru events |
2114 | 2114 | foreach ($EVT_IDs as $EVT_ID) { |
2115 | 2115 | $EVT_ID = absint($EVT_ID); |
@@ -2329,7 +2329,7 @@ discard block |
||
2329 | 2329 | 'html_label_text' => esc_html__( |
2330 | 2330 | 'Default Maximum Tickets Allowed Per Order:', |
2331 | 2331 | 'event_espresso' |
2332 | - ) . EEH_Template::get_help_tab_link( |
|
2332 | + ).EEH_Template::get_help_tab_link( |
|
2333 | 2333 | 'default_maximum_tickets_help_tab"' |
2334 | 2334 | ), |
2335 | 2335 | 'html_help_text' => esc_html__( |
@@ -2391,10 +2391,10 @@ discard block |
||
2391 | 2391 | . 'caffeinated_template_features.jpg" alt="' |
2392 | 2392 | . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
2393 | 2393 | . '" />'; |
2394 | - $this->_template_args['preview_text'] = '<strong>' . esc_html__( |
|
2394 | + $this->_template_args['preview_text'] = '<strong>'.esc_html__( |
|
2395 | 2395 | '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.', |
2396 | 2396 | 'event_espresso' |
2397 | - ) . '</strong>'; |
|
2397 | + ).'</strong>'; |
|
2398 | 2398 | $this->display_admin_caf_preview_page('template_settings_tab'); |
2399 | 2399 | } |
2400 | 2400 | |
@@ -2447,7 +2447,7 @@ discard block |
||
2447 | 2447 | { |
2448 | 2448 | do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
2449 | 2449 | $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
2450 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2450 | + $this->_admin_page_title .= ' '.$this->get_action_link_or_button( |
|
2451 | 2451 | 'add_category', |
2452 | 2452 | 'add_category', |
2453 | 2453 | array(), |
@@ -2523,7 +2523,7 @@ discard block |
||
2523 | 2523 | 'disable' => '', |
2524 | 2524 | 'disabled_message' => false, |
2525 | 2525 | ); |
2526 | - $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2526 | + $template = EVENTS_TEMPLATE_PATH.'event_category_details.template.php'; |
|
2527 | 2527 | return EEH_Template::display_template($template, $template_args, true); |
2528 | 2528 | } |
2529 | 2529 | |
@@ -2533,8 +2533,8 @@ discard block |
||
2533 | 2533 | */ |
2534 | 2534 | protected function _delete_categories() |
2535 | 2535 | { |
2536 | - $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array)$this->_req_data['EVT_CAT_ID'] |
|
2537 | - : (array)$this->_req_data['category_id']; |
|
2536 | + $cat_ids = isset($this->_req_data['EVT_CAT_ID']) ? (array) $this->_req_data['EVT_CAT_ID'] |
|
2537 | + : (array) $this->_req_data['category_id']; |
|
2538 | 2538 | foreach ($cat_ids as $cat_id) { |
2539 | 2539 | $this->_delete_category($cat_id); |
2540 | 2540 | } |
@@ -2639,7 +2639,7 @@ discard block |
||
2639 | 2639 | $limit = ($current_page - 1) * $per_page; |
2640 | 2640 | $where = array('taxonomy' => 'espresso_event_categories'); |
2641 | 2641 | if (isset($this->_req_data['s'])) { |
2642 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2642 | + $sstr = '%'.$this->_req_data['s'].'%'; |
|
2643 | 2643 | $where['OR'] = array( |
2644 | 2644 | 'Term.name' => array('LIKE', $sstr), |
2645 | 2645 | 'description' => array('LIKE', $sstr), |
@@ -2648,7 +2648,7 @@ discard block |
||
2648 | 2648 | $query_params = array( |
2649 | 2649 | $where, |
2650 | 2650 | 'order_by' => array($orderby => $order), |
2651 | - 'limit' => $limit . ',' . $per_page, |
|
2651 | + 'limit' => $limit.','.$per_page, |
|
2652 | 2652 | 'force_join' => array('Term'), |
2653 | 2653 | ); |
2654 | 2654 | $categories = $count |
@@ -2670,7 +2670,7 @@ discard block |
||
2670 | 2670 | $timezone_string = isset($this->_req_data['timezone_selected']) |
2671 | 2671 | ? $this->_req_data['timezone_selected'] |
2672 | 2672 | : ''; |
2673 | - if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) |
|
2673 | + if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) |
|
2674 | 2674 | { |
2675 | 2675 | EE_Error::add_error( |
2676 | 2676 | esc_html('An invalid timezone string submitted.', 'event_espresso'), |
@@ -14,109 +14,109 @@ |
||
14 | 14 | trait EventsAdmin |
15 | 15 | { |
16 | 16 | |
17 | - /** |
|
18 | - * @param string $additional_params |
|
19 | - */ |
|
20 | - public function amOnDefaultEventsListTablePage($additional_params = '') |
|
21 | - { |
|
22 | - $this->actor()->amOnAdminPage(EventsPage::defaultEventsListTableUrl($additional_params)); |
|
23 | - } |
|
24 | - |
|
25 | - |
|
26 | - /** |
|
27 | - * Triggers the publishing of the Event. |
|
28 | - */ |
|
29 | - public function publishEvent() |
|
30 | - { |
|
31 | - $this->actor()->click(EventsPage::EVENT_EDITOR_PUBLISH_BUTTON_SELECTOR); |
|
32 | - } |
|
33 | - |
|
34 | - |
|
35 | - /** |
|
36 | - * Navigates the actor to the event list table page and will attempt to edit the event for the given title. |
|
37 | - * First this will search using the given title and then attempt to edit from the results of the search. |
|
38 | - * |
|
39 | - * Assumes actor is already logged in. |
|
40 | - * @param $event_title |
|
41 | - */ |
|
42 | - public function amEditingTheEventWithTitle($event_title) |
|
43 | - { |
|
44 | - $this->amOnDefaultEventsListTablePage(); |
|
45 | - $this->actor()->fillField(EventsPage::EVENT_LIST_TABLE_SEARCH_INPUT_SELECTOR, $event_title); |
|
46 | - $this->actor()->click(CoreAdmin::LIST_TABLE_SEARCH_SUBMIT_SELECTOR); |
|
47 | - $this->actor()->waitForText('Displaying search results for'); |
|
48 | - $this->actor()->click(EventsPage::eventListTableEventTitleEditLink($event_title)); |
|
49 | - } |
|
50 | - |
|
51 | - |
|
52 | - /** |
|
53 | - * Navigates the user to the single event page (frontend view) for the given event title via clicking the "View" |
|
54 | - * link for the event in the event list table. |
|
55 | - * Assumes the actor is already logged in and on the Event list table page. |
|
56 | - * |
|
57 | - * @param string $event_title |
|
58 | - */ |
|
59 | - public function amOnEventPageAfterClickingViewLinkInListTableForEvent($event_title) |
|
60 | - { |
|
61 | - $this->actor()->moveMouseOver(EventsPage::eventListTableEventTitleEditLinkSelectorForTitle($event_title)); |
|
62 | - $this->actor()->click(EventsPage::eventListTableEventTitleViewLinkSelectorForTitle($event_title)); |
|
63 | - } |
|
64 | - |
|
65 | - |
|
66 | - /** |
|
67 | - * This performs the click action on the gear icon that triggers the advanced settings view state. |
|
68 | - * Assumes the actor is already logged in and editing an event. |
|
69 | - * |
|
70 | - * @param int $row_number What ticket row to toggle open/close. |
|
71 | - */ |
|
72 | - public function toggleAdvancedSettingsViewForTicketRow($row_number = 1) |
|
73 | - { |
|
74 | - $this->actor()->click(EventsPage::eventEditorTicketAdvancedDetailsSelector($row_number)); |
|
75 | - } |
|
76 | - |
|
77 | - |
|
78 | - /** |
|
79 | - * Toggles the TKT_is_taxable checkbox for the ticket in the given row. |
|
80 | - * Assumes the actor is already logged in and editing an event and that the advanced settings view state for that |
|
81 | - * ticket is "open". |
|
82 | - * |
|
83 | - * @param int $row_number What ticket row to toggle the checkbox for. |
|
84 | - */ |
|
85 | - public function toggleTicketIsTaxableForTicketRow($row_number = 1) |
|
86 | - { |
|
87 | - $this->actor()->click(EventsPage::eventEditorTicketTaxableCheckboxSelector($row_number)); |
|
88 | - } |
|
89 | - |
|
90 | - |
|
91 | - /** |
|
92 | - * Use to change the default registration status for the event. |
|
93 | - * Assumes the view is already on the event editor. |
|
94 | - * @param $registration_status |
|
95 | - */ |
|
96 | - public function changeDefaultRegistrationStatusTo($registration_status) |
|
97 | - { |
|
98 | - $this->actor()->selectOption( |
|
99 | - EventsPage::EVENT_EDITOR_DEFAULT_REGISTRATION_STATUS_FIELD_SELECTOR, |
|
100 | - $registration_status |
|
101 | - ); |
|
102 | - } |
|
103 | - |
|
104 | - |
|
105 | - /** |
|
106 | - * Use this from the context of the event editor to select the given custom template for a given message type and |
|
107 | - * messenger. |
|
108 | - * |
|
109 | - * @param string $message_type_label The visible label for the message type (eg Registration Approved) |
|
110 | - * @param string $messenger_slug The slug for the messenger (eg 'email') |
|
111 | - * @param string $custom_template_label The visible label in the select input for the custom template you want |
|
112 | - * selected. |
|
113 | - */ |
|
114 | - public function selectCustomTemplateFor($message_type_label, $messenger_slug, $custom_template_label) |
|
115 | - { |
|
116 | - $this->actor()->click(EventsPage::eventEditorNotificationsMetaBoxMessengerTabSelector($messenger_slug)); |
|
117 | - $this->actor()->selectOption( |
|
118 | - EventsPage::eventEditorNotificationsMetaBoxSelectSelectorForMessageType($message_type_label), |
|
119 | - $custom_template_label |
|
120 | - ); |
|
121 | - } |
|
17 | + /** |
|
18 | + * @param string $additional_params |
|
19 | + */ |
|
20 | + public function amOnDefaultEventsListTablePage($additional_params = '') |
|
21 | + { |
|
22 | + $this->actor()->amOnAdminPage(EventsPage::defaultEventsListTableUrl($additional_params)); |
|
23 | + } |
|
24 | + |
|
25 | + |
|
26 | + /** |
|
27 | + * Triggers the publishing of the Event. |
|
28 | + */ |
|
29 | + public function publishEvent() |
|
30 | + { |
|
31 | + $this->actor()->click(EventsPage::EVENT_EDITOR_PUBLISH_BUTTON_SELECTOR); |
|
32 | + } |
|
33 | + |
|
34 | + |
|
35 | + /** |
|
36 | + * Navigates the actor to the event list table page and will attempt to edit the event for the given title. |
|
37 | + * First this will search using the given title and then attempt to edit from the results of the search. |
|
38 | + * |
|
39 | + * Assumes actor is already logged in. |
|
40 | + * @param $event_title |
|
41 | + */ |
|
42 | + public function amEditingTheEventWithTitle($event_title) |
|
43 | + { |
|
44 | + $this->amOnDefaultEventsListTablePage(); |
|
45 | + $this->actor()->fillField(EventsPage::EVENT_LIST_TABLE_SEARCH_INPUT_SELECTOR, $event_title); |
|
46 | + $this->actor()->click(CoreAdmin::LIST_TABLE_SEARCH_SUBMIT_SELECTOR); |
|
47 | + $this->actor()->waitForText('Displaying search results for'); |
|
48 | + $this->actor()->click(EventsPage::eventListTableEventTitleEditLink($event_title)); |
|
49 | + } |
|
50 | + |
|
51 | + |
|
52 | + /** |
|
53 | + * Navigates the user to the single event page (frontend view) for the given event title via clicking the "View" |
|
54 | + * link for the event in the event list table. |
|
55 | + * Assumes the actor is already logged in and on the Event list table page. |
|
56 | + * |
|
57 | + * @param string $event_title |
|
58 | + */ |
|
59 | + public function amOnEventPageAfterClickingViewLinkInListTableForEvent($event_title) |
|
60 | + { |
|
61 | + $this->actor()->moveMouseOver(EventsPage::eventListTableEventTitleEditLinkSelectorForTitle($event_title)); |
|
62 | + $this->actor()->click(EventsPage::eventListTableEventTitleViewLinkSelectorForTitle($event_title)); |
|
63 | + } |
|
64 | + |
|
65 | + |
|
66 | + /** |
|
67 | + * This performs the click action on the gear icon that triggers the advanced settings view state. |
|
68 | + * Assumes the actor is already logged in and editing an event. |
|
69 | + * |
|
70 | + * @param int $row_number What ticket row to toggle open/close. |
|
71 | + */ |
|
72 | + public function toggleAdvancedSettingsViewForTicketRow($row_number = 1) |
|
73 | + { |
|
74 | + $this->actor()->click(EventsPage::eventEditorTicketAdvancedDetailsSelector($row_number)); |
|
75 | + } |
|
76 | + |
|
77 | + |
|
78 | + /** |
|
79 | + * Toggles the TKT_is_taxable checkbox for the ticket in the given row. |
|
80 | + * Assumes the actor is already logged in and editing an event and that the advanced settings view state for that |
|
81 | + * ticket is "open". |
|
82 | + * |
|
83 | + * @param int $row_number What ticket row to toggle the checkbox for. |
|
84 | + */ |
|
85 | + public function toggleTicketIsTaxableForTicketRow($row_number = 1) |
|
86 | + { |
|
87 | + $this->actor()->click(EventsPage::eventEditorTicketTaxableCheckboxSelector($row_number)); |
|
88 | + } |
|
89 | + |
|
90 | + |
|
91 | + /** |
|
92 | + * Use to change the default registration status for the event. |
|
93 | + * Assumes the view is already on the event editor. |
|
94 | + * @param $registration_status |
|
95 | + */ |
|
96 | + public function changeDefaultRegistrationStatusTo($registration_status) |
|
97 | + { |
|
98 | + $this->actor()->selectOption( |
|
99 | + EventsPage::EVENT_EDITOR_DEFAULT_REGISTRATION_STATUS_FIELD_SELECTOR, |
|
100 | + $registration_status |
|
101 | + ); |
|
102 | + } |
|
103 | + |
|
104 | + |
|
105 | + /** |
|
106 | + * Use this from the context of the event editor to select the given custom template for a given message type and |
|
107 | + * messenger. |
|
108 | + * |
|
109 | + * @param string $message_type_label The visible label for the message type (eg Registration Approved) |
|
110 | + * @param string $messenger_slug The slug for the messenger (eg 'email') |
|
111 | + * @param string $custom_template_label The visible label in the select input for the custom template you want |
|
112 | + * selected. |
|
113 | + */ |
|
114 | + public function selectCustomTemplateFor($message_type_label, $messenger_slug, $custom_template_label) |
|
115 | + { |
|
116 | + $this->actor()->click(EventsPage::eventEditorNotificationsMetaBoxMessengerTabSelector($messenger_slug)); |
|
117 | + $this->actor()->selectOption( |
|
118 | + EventsPage::eventEditorNotificationsMetaBoxSelectSelectorForMessageType($message_type_label), |
|
119 | + $custom_template_label |
|
120 | + ); |
|
121 | + } |
|
122 | 122 | } |
123 | 123 | \ No newline at end of file |
@@ -10,237 +10,237 @@ |
||
10 | 10 | */ |
11 | 11 | trait MessagesAdmin |
12 | 12 | { |
13 | - /** |
|
14 | - * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
15 | - * a string. |
|
16 | - */ |
|
17 | - public function amOnMessagesActivityListTablePage($additional_params = '') |
|
18 | - { |
|
19 | - $this->actor()->amOnAdminPage(MessagesPage::messageActivityListTableUrl($additional_params)); |
|
20 | - } |
|
21 | - |
|
22 | - /** |
|
23 | - * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
24 | - * a string. |
|
25 | - */ |
|
26 | - public function amOnDefaultMessageTemplateListTablePage($additional_params = '') |
|
27 | - { |
|
28 | - $this->actor()->amOnAdminPage(MessagesPage::defaultMessageTemplateListTableUrl($additional_params)); |
|
29 | - } |
|
30 | - |
|
31 | - |
|
32 | - /** |
|
33 | - * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
34 | - * a string. |
|
35 | - */ |
|
36 | - public function amOnCustomMessageTemplateListTablePage($additional_params = '') |
|
37 | - { |
|
38 | - $this->actor()->amOnAdminPage(MessagesPage::customMessageTemplateListTableUrl($additional_params)); |
|
39 | - } |
|
40 | - |
|
41 | - |
|
42 | - /** |
|
43 | - * Directs to message settings page |
|
44 | - */ |
|
45 | - public function amOnMessageSettingsPage() |
|
46 | - { |
|
47 | - $this->actor()->amOnAdminPage(MessagesPage::messageSettingsUrl()); |
|
48 | - } |
|
49 | - |
|
50 | - |
|
51 | - public function activateMessageTypeForMessenger($message_type_slug, $messenger_slug = 'email') |
|
52 | - { |
|
53 | - $this->actor()->dragAndDrop( |
|
54 | - MessagesPage::draggableSettingsBoxSelectorForMessageTypeAndMessenger($message_type_slug, $messenger_slug), |
|
55 | - MessagesPage::MESSAGES_SETTINGS_ACTIVE_MESSAGE_TYPES_CONTAINER_SELECTOR |
|
56 | - ); |
|
57 | - } |
|
58 | - |
|
59 | - |
|
60 | - /** |
|
61 | - * Assumes you are already on the list table page that has the ui for editing the template. |
|
62 | - * @param string $message_type_slug |
|
63 | - * @param string $context [optional] if you want to click directly to the given context in the editor |
|
64 | - */ |
|
65 | - public function clickToEditMessageTemplateByMessageType($message_type_slug, $context = '') |
|
66 | - { |
|
67 | - $this->actor()->click(MessagesPage::editMessageTemplateClassByMessageType($message_type_slug, $context)); |
|
68 | - } |
|
69 | - |
|
70 | - |
|
71 | - /** |
|
72 | - * Use this action to verify that the count for the given text in the specified field is as expected. For example |
|
73 | - * filling the condition of, "There should only be 1 instance of `[email protected]` in all the 'to' column. |
|
74 | - * |
|
75 | - * @param int $expected_occurence_count |
|
76 | - * @param string $text_to_check_for |
|
77 | - * @param string $field |
|
78 | - * @param string $message_type_label |
|
79 | - * @param string $message_status |
|
80 | - * @param string $messenger |
|
81 | - * @param string $context |
|
82 | - */ |
|
83 | - public function verifyMatchingCountofTextInMessageActivityListTableFor( |
|
84 | - $expected_occurence_count, |
|
85 | - $text_to_check_for, |
|
86 | - $field, |
|
87 | - $message_type_label, |
|
88 | - $message_status = MessagesPage::MESSAGE_STATUS_SENT, |
|
89 | - $messenger = 'Email', |
|
90 | - $context = 'Event Admin' |
|
91 | - ) { |
|
92 | - $elements = $this->actor()->grabMultiple(MessagesPage::messagesActivityListTableCellSelectorFor( |
|
93 | - $field, |
|
94 | - $message_type_label, |
|
95 | - $message_status, |
|
96 | - $messenger, |
|
97 | - $context, |
|
98 | - $text_to_check_for, |
|
99 | - 0 |
|
100 | - )); |
|
101 | - $actual_count = count($elements); |
|
102 | - $this->actor()->assertEquals( |
|
103 | - $expected_occurence_count, |
|
104 | - $actual_count, |
|
105 | - sprintf( |
|
106 | - 'Expected %s of the %s text for the %s field but there were actually %s counted.', |
|
107 | - $expected_occurence_count, |
|
108 | - $text_to_check_for, |
|
109 | - $field, |
|
110 | - $actual_count |
|
111 | - ) |
|
112 | - ); |
|
113 | - } |
|
114 | - |
|
115 | - |
|
116 | - /** |
|
117 | - * This will create a custom message template for the given messenger and message type from the context of the |
|
118 | - * default (global) message template list table. |
|
119 | - * Also takes care of verifying the template was created. |
|
120 | - * @param string $message_type_label |
|
121 | - * @param string $messenger_label |
|
122 | - */ |
|
123 | - public function createCustomMessageTemplateFromDefaultFor($message_type_label, $messenger_label) |
|
124 | - { |
|
125 | - $this->amOnDefaultMessageTemplateListTablePage(); |
|
126 | - $this->actor()->click( |
|
127 | - MessagesPage::createCustomButtonForMessageTypeAndMessenger( |
|
128 | - $message_type_label, |
|
129 | - $messenger_label |
|
130 | - ) |
|
131 | - ); |
|
132 | - $this->actor()->seeInField('#title', 'New Custom Template'); |
|
133 | - } |
|
134 | - |
|
135 | - |
|
136 | - /** |
|
137 | - * This switches the context of the current messages template to the given reference. |
|
138 | - * @param string $context_reference This should be the visible label for the option. |
|
139 | - */ |
|
140 | - public function switchContextTo($context_reference) |
|
141 | - { |
|
142 | - $this->actor()->selectOption(MessagesPage::MESSAGES_CONTEXT_SWITCHER_SELECTOR, $context_reference); |
|
143 | - $this->actor()->click(MessagesPage::MESSAGES_CONTEXT_SWITCHER_BUTTON_SELECTOR); |
|
144 | - $this->actor()->waitForText($context_reference, 10, 'h1'); |
|
145 | - } |
|
146 | - |
|
147 | - |
|
148 | - /** |
|
149 | - * This takes care of clicking the View Message icon for the given parameters. |
|
150 | - * Assumes you are already viewing the messages activity list table. |
|
151 | - * @param $message_type_label |
|
152 | - * @param $message_status |
|
153 | - * @param string $messenger |
|
154 | - * @param string $context |
|
155 | - * @param int $number_in_set |
|
156 | - */ |
|
157 | - public function viewMessageInMessagesListTableFor( |
|
158 | - $message_type_label, |
|
159 | - $message_status = MessagesPage::MESSAGE_STATUS_SENT, |
|
160 | - $messenger = 'Email', |
|
161 | - $context = 'Event Admin', |
|
162 | - $number_in_set = 1 |
|
163 | - ) { |
|
164 | - $this->actor()->click(MessagesPage::messagesActivityListTableViewButtonSelectorFor( |
|
165 | - $message_type_label, |
|
166 | - $message_status, |
|
167 | - $messenger, |
|
168 | - $context, |
|
169 | - $number_in_set |
|
170 | - )); |
|
171 | - } |
|
172 | - |
|
173 | - |
|
174 | - /** |
|
175 | - * Takes care of deleting a message matching the given parameters via the message activity list table. |
|
176 | - * Assumes you are already viewing the messages activity list table. |
|
177 | - * @param $message_type_label |
|
178 | - * @param $message_status |
|
179 | - * @param string $messenger |
|
180 | - * @param string $context |
|
181 | - * @param int $number_in_set |
|
182 | - */ |
|
183 | - public function deleteMessageInMessagesListTableFor( |
|
184 | - $message_type_label, |
|
185 | - $message_status = MessagesPage::MESSAGE_STATUS_SENT, |
|
186 | - $messenger = 'Email', |
|
187 | - $context = 'Event Admin', |
|
188 | - $number_in_set = 1 |
|
189 | - ) { |
|
190 | - $this->actor()->moveMouseOver( |
|
191 | - MessagesPage::messagesActivityListTableCellSelectorFor( |
|
192 | - 'to', |
|
193 | - $message_type_label, |
|
194 | - $message_status, |
|
195 | - $messenger, |
|
196 | - $context, |
|
197 | - '', |
|
198 | - $number_in_set |
|
199 | - ) |
|
200 | - ); |
|
201 | - $this->actor()->waitForElementVisible( |
|
202 | - MessagesPage::messagesActivityListTableDeleteActionSelectorFor( |
|
203 | - $message_type_label, |
|
204 | - $message_status, |
|
205 | - $messenger, |
|
206 | - $context, |
|
207 | - $number_in_set |
|
208 | - ) |
|
209 | - ); |
|
210 | - $this->actor()->click( |
|
211 | - MessagesPage::messagesActivityListTableDeleteActionSelectorFor( |
|
212 | - $message_type_label, |
|
213 | - $message_status, |
|
214 | - $messenger, |
|
215 | - $context, |
|
216 | - $number_in_set |
|
217 | - ) |
|
218 | - ); |
|
219 | - $this->actor()->waitForText('successfully deleted'); |
|
220 | - } |
|
221 | - |
|
222 | - |
|
223 | - /** |
|
224 | - * Assuming you have already triggered the view modal for a single message from the context of the message activity |
|
225 | - * list table, this will take care of validating the given text is in that window. |
|
226 | - * @param string $text_to_view |
|
227 | - */ |
|
228 | - public function seeTextInViewMessageModal($text_to_view, $should_not_see = false) |
|
229 | - { |
|
230 | - $this->actor()->waitForElementVisible('.ee-admin-dialog-container-inner-content'); |
|
231 | - $this->actor()->switchToIframe('message-view-window'); |
|
232 | - $should_not_see ? $this->actor()->dontSee($text_to_view) : $this->actor()->see($text_to_view); |
|
233 | - $this->actor()->switchToIframe(); |
|
234 | - } |
|
235 | - |
|
236 | - |
|
237 | - /** |
|
238 | - * Assuming you have already triggered the view modal for a single message from the context of the message activity |
|
239 | - * list table, this will take care of validating the given text is NOT that window. |
|
240 | - * @param string $text_to_view |
|
241 | - */ |
|
242 | - public function dontSeeTextInViewMessageModal($text_to_view) |
|
243 | - { |
|
244 | - $this->seeTextInViewMessageModal($text_to_view, true); |
|
245 | - } |
|
13 | + /** |
|
14 | + * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
15 | + * a string. |
|
16 | + */ |
|
17 | + public function amOnMessagesActivityListTablePage($additional_params = '') |
|
18 | + { |
|
19 | + $this->actor()->amOnAdminPage(MessagesPage::messageActivityListTableUrl($additional_params)); |
|
20 | + } |
|
21 | + |
|
22 | + /** |
|
23 | + * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
24 | + * a string. |
|
25 | + */ |
|
26 | + public function amOnDefaultMessageTemplateListTablePage($additional_params = '') |
|
27 | + { |
|
28 | + $this->actor()->amOnAdminPage(MessagesPage::defaultMessageTemplateListTableUrl($additional_params)); |
|
29 | + } |
|
30 | + |
|
31 | + |
|
32 | + /** |
|
33 | + * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
34 | + * a string. |
|
35 | + */ |
|
36 | + public function amOnCustomMessageTemplateListTablePage($additional_params = '') |
|
37 | + { |
|
38 | + $this->actor()->amOnAdminPage(MessagesPage::customMessageTemplateListTableUrl($additional_params)); |
|
39 | + } |
|
40 | + |
|
41 | + |
|
42 | + /** |
|
43 | + * Directs to message settings page |
|
44 | + */ |
|
45 | + public function amOnMessageSettingsPage() |
|
46 | + { |
|
47 | + $this->actor()->amOnAdminPage(MessagesPage::messageSettingsUrl()); |
|
48 | + } |
|
49 | + |
|
50 | + |
|
51 | + public function activateMessageTypeForMessenger($message_type_slug, $messenger_slug = 'email') |
|
52 | + { |
|
53 | + $this->actor()->dragAndDrop( |
|
54 | + MessagesPage::draggableSettingsBoxSelectorForMessageTypeAndMessenger($message_type_slug, $messenger_slug), |
|
55 | + MessagesPage::MESSAGES_SETTINGS_ACTIVE_MESSAGE_TYPES_CONTAINER_SELECTOR |
|
56 | + ); |
|
57 | + } |
|
58 | + |
|
59 | + |
|
60 | + /** |
|
61 | + * Assumes you are already on the list table page that has the ui for editing the template. |
|
62 | + * @param string $message_type_slug |
|
63 | + * @param string $context [optional] if you want to click directly to the given context in the editor |
|
64 | + */ |
|
65 | + public function clickToEditMessageTemplateByMessageType($message_type_slug, $context = '') |
|
66 | + { |
|
67 | + $this->actor()->click(MessagesPage::editMessageTemplateClassByMessageType($message_type_slug, $context)); |
|
68 | + } |
|
69 | + |
|
70 | + |
|
71 | + /** |
|
72 | + * Use this action to verify that the count for the given text in the specified field is as expected. For example |
|
73 | + * filling the condition of, "There should only be 1 instance of `[email protected]` in all the 'to' column. |
|
74 | + * |
|
75 | + * @param int $expected_occurence_count |
|
76 | + * @param string $text_to_check_for |
|
77 | + * @param string $field |
|
78 | + * @param string $message_type_label |
|
79 | + * @param string $message_status |
|
80 | + * @param string $messenger |
|
81 | + * @param string $context |
|
82 | + */ |
|
83 | + public function verifyMatchingCountofTextInMessageActivityListTableFor( |
|
84 | + $expected_occurence_count, |
|
85 | + $text_to_check_for, |
|
86 | + $field, |
|
87 | + $message_type_label, |
|
88 | + $message_status = MessagesPage::MESSAGE_STATUS_SENT, |
|
89 | + $messenger = 'Email', |
|
90 | + $context = 'Event Admin' |
|
91 | + ) { |
|
92 | + $elements = $this->actor()->grabMultiple(MessagesPage::messagesActivityListTableCellSelectorFor( |
|
93 | + $field, |
|
94 | + $message_type_label, |
|
95 | + $message_status, |
|
96 | + $messenger, |
|
97 | + $context, |
|
98 | + $text_to_check_for, |
|
99 | + 0 |
|
100 | + )); |
|
101 | + $actual_count = count($elements); |
|
102 | + $this->actor()->assertEquals( |
|
103 | + $expected_occurence_count, |
|
104 | + $actual_count, |
|
105 | + sprintf( |
|
106 | + 'Expected %s of the %s text for the %s field but there were actually %s counted.', |
|
107 | + $expected_occurence_count, |
|
108 | + $text_to_check_for, |
|
109 | + $field, |
|
110 | + $actual_count |
|
111 | + ) |
|
112 | + ); |
|
113 | + } |
|
114 | + |
|
115 | + |
|
116 | + /** |
|
117 | + * This will create a custom message template for the given messenger and message type from the context of the |
|
118 | + * default (global) message template list table. |
|
119 | + * Also takes care of verifying the template was created. |
|
120 | + * @param string $message_type_label |
|
121 | + * @param string $messenger_label |
|
122 | + */ |
|
123 | + public function createCustomMessageTemplateFromDefaultFor($message_type_label, $messenger_label) |
|
124 | + { |
|
125 | + $this->amOnDefaultMessageTemplateListTablePage(); |
|
126 | + $this->actor()->click( |
|
127 | + MessagesPage::createCustomButtonForMessageTypeAndMessenger( |
|
128 | + $message_type_label, |
|
129 | + $messenger_label |
|
130 | + ) |
|
131 | + ); |
|
132 | + $this->actor()->seeInField('#title', 'New Custom Template'); |
|
133 | + } |
|
134 | + |
|
135 | + |
|
136 | + /** |
|
137 | + * This switches the context of the current messages template to the given reference. |
|
138 | + * @param string $context_reference This should be the visible label for the option. |
|
139 | + */ |
|
140 | + public function switchContextTo($context_reference) |
|
141 | + { |
|
142 | + $this->actor()->selectOption(MessagesPage::MESSAGES_CONTEXT_SWITCHER_SELECTOR, $context_reference); |
|
143 | + $this->actor()->click(MessagesPage::MESSAGES_CONTEXT_SWITCHER_BUTTON_SELECTOR); |
|
144 | + $this->actor()->waitForText($context_reference, 10, 'h1'); |
|
145 | + } |
|
146 | + |
|
147 | + |
|
148 | + /** |
|
149 | + * This takes care of clicking the View Message icon for the given parameters. |
|
150 | + * Assumes you are already viewing the messages activity list table. |
|
151 | + * @param $message_type_label |
|
152 | + * @param $message_status |
|
153 | + * @param string $messenger |
|
154 | + * @param string $context |
|
155 | + * @param int $number_in_set |
|
156 | + */ |
|
157 | + public function viewMessageInMessagesListTableFor( |
|
158 | + $message_type_label, |
|
159 | + $message_status = MessagesPage::MESSAGE_STATUS_SENT, |
|
160 | + $messenger = 'Email', |
|
161 | + $context = 'Event Admin', |
|
162 | + $number_in_set = 1 |
|
163 | + ) { |
|
164 | + $this->actor()->click(MessagesPage::messagesActivityListTableViewButtonSelectorFor( |
|
165 | + $message_type_label, |
|
166 | + $message_status, |
|
167 | + $messenger, |
|
168 | + $context, |
|
169 | + $number_in_set |
|
170 | + )); |
|
171 | + } |
|
172 | + |
|
173 | + |
|
174 | + /** |
|
175 | + * Takes care of deleting a message matching the given parameters via the message activity list table. |
|
176 | + * Assumes you are already viewing the messages activity list table. |
|
177 | + * @param $message_type_label |
|
178 | + * @param $message_status |
|
179 | + * @param string $messenger |
|
180 | + * @param string $context |
|
181 | + * @param int $number_in_set |
|
182 | + */ |
|
183 | + public function deleteMessageInMessagesListTableFor( |
|
184 | + $message_type_label, |
|
185 | + $message_status = MessagesPage::MESSAGE_STATUS_SENT, |
|
186 | + $messenger = 'Email', |
|
187 | + $context = 'Event Admin', |
|
188 | + $number_in_set = 1 |
|
189 | + ) { |
|
190 | + $this->actor()->moveMouseOver( |
|
191 | + MessagesPage::messagesActivityListTableCellSelectorFor( |
|
192 | + 'to', |
|
193 | + $message_type_label, |
|
194 | + $message_status, |
|
195 | + $messenger, |
|
196 | + $context, |
|
197 | + '', |
|
198 | + $number_in_set |
|
199 | + ) |
|
200 | + ); |
|
201 | + $this->actor()->waitForElementVisible( |
|
202 | + MessagesPage::messagesActivityListTableDeleteActionSelectorFor( |
|
203 | + $message_type_label, |
|
204 | + $message_status, |
|
205 | + $messenger, |
|
206 | + $context, |
|
207 | + $number_in_set |
|
208 | + ) |
|
209 | + ); |
|
210 | + $this->actor()->click( |
|
211 | + MessagesPage::messagesActivityListTableDeleteActionSelectorFor( |
|
212 | + $message_type_label, |
|
213 | + $message_status, |
|
214 | + $messenger, |
|
215 | + $context, |
|
216 | + $number_in_set |
|
217 | + ) |
|
218 | + ); |
|
219 | + $this->actor()->waitForText('successfully deleted'); |
|
220 | + } |
|
221 | + |
|
222 | + |
|
223 | + /** |
|
224 | + * Assuming you have already triggered the view modal for a single message from the context of the message activity |
|
225 | + * list table, this will take care of validating the given text is in that window. |
|
226 | + * @param string $text_to_view |
|
227 | + */ |
|
228 | + public function seeTextInViewMessageModal($text_to_view, $should_not_see = false) |
|
229 | + { |
|
230 | + $this->actor()->waitForElementVisible('.ee-admin-dialog-container-inner-content'); |
|
231 | + $this->actor()->switchToIframe('message-view-window'); |
|
232 | + $should_not_see ? $this->actor()->dontSee($text_to_view) : $this->actor()->see($text_to_view); |
|
233 | + $this->actor()->switchToIframe(); |
|
234 | + } |
|
235 | + |
|
236 | + |
|
237 | + /** |
|
238 | + * Assuming you have already triggered the view modal for a single message from the context of the message activity |
|
239 | + * list table, this will take care of validating the given text is NOT that window. |
|
240 | + * @param string $text_to_view |
|
241 | + */ |
|
242 | + public function dontSeeTextInViewMessageModal($text_to_view) |
|
243 | + { |
|
244 | + $this->seeTextInViewMessageModal($text_to_view, true); |
|
245 | + } |
|
246 | 246 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -32,15 +32,15 @@ discard block |
||
32 | 32 | |
33 | 33 | |
34 | 34 | |
35 | - public function __construct( $routing = TRUE ) { |
|
36 | - parent::__construct( $routing ); |
|
37 | - define( 'EE_ABOUT_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'about/templates/' ); |
|
35 | + public function __construct($routing = TRUE) { |
|
36 | + parent::__construct($routing); |
|
37 | + define('EE_ABOUT_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND.'about/templates/'); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | |
41 | 41 | |
42 | 42 | protected function _extend_page_config() { |
43 | - $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'about'; |
|
43 | + $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND.'about'; |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | protected function _set_page_routes() { |
@@ -112,11 +112,11 @@ discard block |
||
112 | 112 | protected function _whats_new() { |
113 | 113 | $steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ? $this->_get_started_steps() : FALSE; |
114 | 114 | $steps = $steps !== FALSE ? $steps : ''; |
115 | - $this->_admin_page_title = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
|
115 | + $this->_admin_page_title = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); |
|
116 | 116 | $settings_message = $steps; |
117 | - $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful Event Management plugin for WordPress.', 'event_espresso'). $settings_message ; |
|
118 | - $template = is_readable(EE_ABOUT_CAF_TEMPLATE_PATH . 'whats_new.template.php') ? EE_ABOUT_CAF_TEMPLATE_PATH . 'whats_new.template.php' : EE_ABOUT_TEMPLATE_PATH . 'whats_new.template.php'; |
|
119 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
117 | + $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful Event Management plugin for WordPress.', 'event_espresso').$settings_message; |
|
118 | + $template = is_readable(EE_ABOUT_CAF_TEMPLATE_PATH.'whats_new.template.php') ? EE_ABOUT_CAF_TEMPLATE_PATH.'whats_new.template.php' : EE_ABOUT_TEMPLATE_PATH.'whats_new.template.php'; |
|
119 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
120 | 120 | $this->display_about_admin_page(); |
121 | 121 | } |
122 | 122 | |
@@ -124,32 +124,32 @@ discard block |
||
124 | 124 | protected function _overview() { |
125 | 125 | $this->_admin_page_title = __('About Event Espresso', 'event_espresso'); |
126 | 126 | $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful Event Management plugin for WordPress.', 'event_espresso'); |
127 | - $template = is_readable(EE_ABOUT_CAF_TEMPLATE_PATH . 'ee4-overview.template.php') ? EE_ABOUT_CAF_TEMPLATE_PATH . 'ee4-overview.template.php' : EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php'; |
|
128 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
127 | + $template = is_readable(EE_ABOUT_CAF_TEMPLATE_PATH.'ee4-overview.template.php') ? EE_ABOUT_CAF_TEMPLATE_PATH.'ee4-overview.template.php' : EE_ABOUT_TEMPLATE_PATH.'ee4-overview.template.php'; |
|
128 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
129 | 129 | $this->display_about_admin_page(); |
130 | 130 | } |
131 | 131 | |
132 | 132 | protected function _credits() { |
133 | 133 | // $this->_template_args['admin_page_title'] = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
134 | 134 | $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful Event Management plugin for WordPress.', 'event_espresso'); |
135 | - $template = EE_ABOUT_TEMPLATE_PATH . 'credits.template.php'; |
|
136 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
135 | + $template = EE_ABOUT_TEMPLATE_PATH.'credits.template.php'; |
|
136 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
137 | 137 | $this->display_about_admin_page(); |
138 | 138 | } |
139 | 139 | |
140 | 140 | protected function _decafvpro() { |
141 | - $this->_template_args['admin_page_title'] = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
|
141 | + $this->_template_args['admin_page_title'] = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); |
|
142 | 142 | $this->_template_args['admin_page_subtitle'] = sprintf(__('Event Espresso lets you focus on doing %swhat you love%s — %sorganizing your events%s', 'event_espresso'), '<em>', '</em>', '<strong>', '</strong>'); |
143 | - $template = EE_ABOUT_TEMPLATE_PATH . 'decafvpro.template.php'; |
|
144 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
143 | + $template = EE_ABOUT_TEMPLATE_PATH.'decafvpro.template.php'; |
|
144 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
145 | 145 | $this->display_about_admin_page(); |
146 | 146 | } |
147 | 147 | |
148 | 148 | protected function _reviews() { |
149 | 149 | $this->_template_args['admin_page_title'] = __('Rave Reviews About Event Espresso 4', 'event_espresso'); |
150 | 150 | $this->_template_args['admin_page_subtitle'] = __('At Event Espresso, customer satisfaction is our ultimate goal.', 'event_espresso'); |
151 | - $template = EE_ABOUT_TEMPLATE_PATH . 'reviews.template.php'; |
|
152 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
151 | + $template = EE_ABOUT_TEMPLATE_PATH.'reviews.template.php'; |
|
152 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
153 | 153 | $this->display_about_admin_page(); |
154 | 154 | } |
155 | 155 | } |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <div class="changelog"> |
2 | 2 | <h2 class="about-headline-callout"><?php esc_html_e('Welcome to Event Espresso 4!', 'event_espresso'); ?></h2> |
3 | - <p><?php echo sprintf( esc_html__('Manage your events from your WordPress dashboard. Reduce your admin, reduce your costs, make your life easier! This is the Caffeinated/Regular version of Event Espresso, but we also have a hosted version called %sEvent Smart%s for customers that want to cut back on their hosting and security expenses.', 'event_espresso'),'<a href="https://eventsmart.com//?utm_source=ee4_decaf&utm_medium=link&utm_campaign=espresso_about_tab&utm_content=EE4+Caffeinated">','</a>'); ?></p> |
|
3 | + <p><?php echo sprintf(esc_html__('Manage your events from your WordPress dashboard. Reduce your admin, reduce your costs, make your life easier! This is the Caffeinated/Regular version of Event Espresso, but we also have a hosted version called %sEvent Smart%s for customers that want to cut back on their hosting and security expenses.', 'event_espresso'), '<a href="https://eventsmart.com//?utm_source=ee4_decaf&utm_medium=link&utm_campaign=espresso_about_tab&utm_content=EE4+Caffeinated">', '</a>'); ?></p> |
|
4 | 4 | <h2><?php esc_html_e('Powering 40,000+ event websites; $100 million in ticket sales per year!', 'event_espresso'); ?></h2> |
5 | - <p><?php echo sprintf( esc_html__('Event Espresso is a %sWordPress event manager%s which makes it easy for you to register attendees for classes, workshops, events, trainings, conferences or concerts, all from your WordPress website. Event Espresso events are created from the WordPress admin area. You can create signup forms to collect information about your attendees, accept payments, and create reports. The lite version of the plugin provides everything that you need to manage your event using WordPress.', 'event_espresso'),'<a href="http://eventespresso.com/?utm_source=wordpress_org&utm_medium=link&utm_campaign=espresso_about_tab&utm_content=EE4+Decaf" rel="nofollow">','</a>'); ?></p> |
|
5 | + <p><?php echo sprintf(esc_html__('Event Espresso is a %sWordPress event manager%s which makes it easy for you to register attendees for classes, workshops, events, trainings, conferences or concerts, all from your WordPress website. Event Espresso events are created from the WordPress admin area. You can create signup forms to collect information about your attendees, accept payments, and create reports. The lite version of the plugin provides everything that you need to manage your event using WordPress.', 'event_espresso'), '<a href="http://eventespresso.com/?utm_source=wordpress_org&utm_medium=link&utm_campaign=espresso_about_tab&utm_content=EE4+Decaf" rel="nofollow">', '</a>'); ?></p> |
|
6 | 6 | <div class="feature-section col three-col about-updates"> |
7 | 7 | <div class="col-1"> |
8 | 8 | <img src="<?php echo EE_GLOBAL_ASSETS_URL; ?>images/screenshots/publish_meta_box.jpg"> |
@@ -60,11 +60,11 @@ discard block |
||
60 | 60 | <h2 class="about-headline-callout"><?php esc_html_e('People Like You Manage Event Registration with WordPress', 'event_espresso'); ?></h2> |
61 | 61 | <div class="feature-section col two-col"> |
62 | 62 | <div class="grid_6"> |
63 | - <p><?php echo sprintf( esc_html__('Trusted by thousands, Event Espresso is the best WordPress event online registration and ticketing manager plugin–and the best supported with full-time support. Turn your existing blog or website into a %sfully-featured event management website%s and a new way to make money. With Event Espresso you get it all; everything from custom registration forms and emails, seating limits, multiple price options, and discount codes to printable tickets.', 'event_espresso'),'<strong>','</strong>'); ?></p> |
|
63 | + <p><?php echo sprintf(esc_html__('Trusted by thousands, Event Espresso is the best WordPress event online registration and ticketing manager plugin–and the best supported with full-time support. Turn your existing blog or website into a %sfully-featured event management website%s and a new way to make money. With Event Espresso you get it all; everything from custom registration forms and emails, seating limits, multiple price options, and discount codes to printable tickets.', 'event_espresso'), '<strong>', '</strong>'); ?></p> |
|
64 | 64 | <p><?php esc_html_e('Event Espresso works perfectly for classes, workshops, fundraisers, sporting, trainings, conferences, networking, religion, social, non-profit, and nearly any other type of event.', 'event_espresso'); ?></p> |
65 | 65 | </div> |
66 | 66 | <div class="grid_6"> |
67 | - <p><?php echo sprintf( esc_html__('Our online event registration software can %smake your organization more profitable and efficient%s by helping you save money on registration and ticketing fees, reduce the countless hours of time you spend manually processing registrations, create a “green” and paperless event registration process and you will be open for business to accept registrations and payment 24/7.', 'event_espresso'),'<strong>','</strong>'); ?></p> |
|
67 | + <p><?php echo sprintf(esc_html__('Our online event registration software can %smake your organization more profitable and efficient%s by helping you save money on registration and ticketing fees, reduce the countless hours of time you spend manually processing registrations, create a “green” and paperless event registration process and you will be open for business to accept registrations and payment 24/7.', 'event_espresso'), '<strong>', '</strong>'); ?></p> |
|
68 | 68 | <p><?php esc_html_e('If you\'re doing event registration and ticketing any other way, then you’re wasting time and money. We offer packages and prices to fit any budget, so get started with your online event registration and ticketing management system today.', 'event_espresso'); ?></p> |
69 | 69 | </div> |
70 | 70 | </div> |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | <h3><?php esc_html_e('Turn your blog into a complete event registration and management system', 'event_espresso'); ?></h3> |
75 | 75 | <p><?php esc_html_e('Create a beautiful event page with ticket selection, venue details, and an integrated single page checkout system. With WordPress, Event Espresso, and Espresso Arabica 2014 (based on the "Twenty Fourteen" theme by WordPress), your events will certainly sell out faster than ever!', 'event_espresso'); ?></p> |
76 | 76 | <p><?php esc_html_e('With a striking design that does not compromise the simplicity of WordPress and Event Espresso 4, Espresso Arabica 2014 will be the best event theme on the market.', 'event_espresso'); ?></p> |
77 | - <p><?php echo sprintf( esc_html__('%sLearn more >>%s', 'event_espresso'), '<a href="http://eventespresso.com/wiki/setup-event-espresso-arabica-theme/">', '</a>' ); ?></p> |
|
77 | + <p><?php echo sprintf(esc_html__('%sLearn more >>%s', 'event_espresso'), '<a href="http://eventespresso.com/wiki/setup-event-espresso-arabica-theme/">', '</a>'); ?></p> |
|
78 | 78 | </div> |
79 | 79 | <div><img src="<?php echo EE_GLOBAL_ASSETS_URL; ?>images/screenshots/single-event-page.jpg"></div> |
80 | 80 | </div> |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<h2 style="text-align: left;"><?php esc_html_e( 'Who uses Event Espresso?', 'event_espresso'); ?></h2> |
|
2 | -<p><?php echo sprintf( esc_html__('Event Espresso is used by over 40,000 event organizers across the world. They host %sconferences%s, %sart classes%s, training courses, concerts, fundraisers, workshops, %sfilm festivals%s, %spaint and wine%s, and more.', 'event_espresso'), '<a href="https://eventespresso.com/use-cases/conferences/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', '</a>', '<a href="https://eventespresso.com/use-cases/art-classes/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', '</a>','<a href="https://eventespresso.com/use-cases/film-festival-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">','</a>','<a href="https://eventespresso.com/use-cases/paint-wine-party-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">','</a>');?></p> |
|
1 | +<h2 style="text-align: left;"><?php esc_html_e('Who uses Event Espresso?', 'event_espresso'); ?></h2> |
|
2 | +<p><?php echo sprintf(esc_html__('Event Espresso is used by over 40,000 event organizers across the world. They host %sconferences%s, %sart classes%s, training courses, concerts, fundraisers, workshops, %sfilm festivals%s, %spaint and wine%s, and more.', 'event_espresso'), '<a href="https://eventespresso.com/use-cases/conferences/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', '</a>', '<a href="https://eventespresso.com/use-cases/art-classes/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', '</a>', '<a href="https://eventespresso.com/use-cases/film-festival-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', '</a>', '<a href="https://eventespresso.com/use-cases/paint-wine-party-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', '</a>'); ?></p> |
|
3 | 3 | |
4 | 4 | <div class="changelog"> |
5 | 5 | <h2 class="about-headline-callout"><?php _e('Rave Reviews About Event Espresso 4', 'event_espresso'); ?></h2> |
@@ -61,9 +61,9 @@ discard block |
||
61 | 61 | |
62 | 62 | </div> |
63 | 63 | <?php |
64 | - if ( !defined('EE_CAF_URL') ) { |
|
64 | + if ( ! defined('EE_CAF_URL')) { |
|
65 | 65 | ?> |
66 | - <div align="right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e( 'Upgrade Now!', 'event_espresso' ) ?></a></div> |
|
66 | + <div align="right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e('Upgrade Now!', 'event_espresso') ?></a></div> |
|
67 | 67 | <?php |
68 | 68 | } |
69 | 69 | ?> |
@@ -124,9 +124,9 @@ discard block |
||
124 | 124 | |
125 | 125 | </div> |
126 | 126 | <?php |
127 | - if ( !defined('EE_CAF_URL') ) { |
|
127 | + if ( ! defined('EE_CAF_URL')) { |
|
128 | 128 | ?> |
129 | - <div align="right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e( 'Upgrade Now!', 'event_espresso' ) ?></a></div> |
|
129 | + <div align="right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e('Upgrade Now!', 'event_espresso') ?></a></div> |
|
130 | 130 | <?php |
131 | 131 | } |
132 | 132 | ?> |
@@ -179,9 +179,9 @@ discard block |
||
179 | 179 | </div> |
180 | 180 | </div> |
181 | 181 | <?php |
182 | - if ( !defined('EE_CAF_URL') ) { |
|
182 | + if ( ! defined('EE_CAF_URL')) { |
|
183 | 183 | ?> |
184 | - <div align="right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e( 'Upgrade Now!', 'event_espresso' ) ?></a></div> |
|
184 | + <div align="right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e('Upgrade Now!', 'event_espresso') ?></a></div> |
|
185 | 185 | <?php |
186 | 186 | } |
187 | 187 | ?> |
@@ -1,10 +1,10 @@ discard block |
||
1 | 1 | <div class="changelog"> |
2 | 2 | <?php |
3 | 3 | //maintenance mode on? |
4 | - if ( EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance ) { |
|
4 | + if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) { |
|
5 | 5 | ?> |
6 | 6 | <div class="ee-attention"> |
7 | - <h2 class="ee-maintenance-mode-callout"><?php esc_html_e('Event Espresso is in full maintenance mode.' , 'event_espresso'); ?></h2> |
|
7 | + <h2 class="ee-maintenance-mode-callout"><?php esc_html_e('Event Espresso is in full maintenance mode.', 'event_espresso'); ?></h2> |
|
8 | 8 | <p> |
9 | 9 | <?php |
10 | 10 | printf( |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | ?> |
21 | 21 | |
22 | 22 | <h2 class="about-headline-callout"><?php esc_html_e('Welcome to the Decaf (free) Version of Event Espresso 4!', 'event_espresso'); ?></h2> |
23 | - <p><?php echo sprintf( esc_html__('Manage your events from your WordPress dashboard. Reduce your admin, reduce your costs, make your life easier! This is the Decaf version of Event Espresso, but we also have a premium version called %sEvent Espreso 4 Regular%s and a hosted version called %sEvent Smart%s (SaaS).', 'event_espresso'),'<a href="?page=espresso_about&action=decafvpro">','</a>','<a href="https://eventsmart.com//?utm_source=ee4_decaf&utm_medium=link&utm_campaign=espresso_about_tab&utm_content=EE4+Decaf">','</a>'); ?></p> |
|
23 | + <p><?php echo sprintf(esc_html__('Manage your events from your WordPress dashboard. Reduce your admin, reduce your costs, make your life easier! This is the Decaf version of Event Espresso, but we also have a premium version called %sEvent Espreso 4 Regular%s and a hosted version called %sEvent Smart%s (SaaS).', 'event_espresso'), '<a href="?page=espresso_about&action=decafvpro">', '</a>', '<a href="https://eventsmart.com//?utm_source=ee4_decaf&utm_medium=link&utm_campaign=espresso_about_tab&utm_content=EE4+Decaf">', '</a>'); ?></p> |
|
24 | 24 | <h2><?php esc_html_e('Powering 40,000+ event websites; $100 million in ticket sales per year!', 'event_espresso'); ?></h2> |
25 | - <p><?php echo sprintf( esc_html__('Event Espresso is a %sWordPress event manager%s which makes it easy for you to register attendees for classes, workshops, events, trainings, conferences or concerts, all from your WordPress website. Event Espresso events are created from the WordPress admin area. You can create signup forms to collect information about your attendees, accept payments, and create reports. The Decaf (free) version of the plugin provides everything that you need to manage your event using WordPress.', 'event_espresso'),'<a href="http://eventespresso.com/?utm_source=wordpress_org&utm_medium=link&utm_campaign=plugin_description_tab&utm_content=EE4+Decaf">','</a>'); ?></p> |
|
25 | + <p><?php echo sprintf(esc_html__('Event Espresso is a %sWordPress event manager%s which makes it easy for you to register attendees for classes, workshops, events, trainings, conferences or concerts, all from your WordPress website. Event Espresso events are created from the WordPress admin area. You can create signup forms to collect information about your attendees, accept payments, and create reports. The Decaf (free) version of the plugin provides everything that you need to manage your event using WordPress.', 'event_espresso'), '<a href="http://eventespresso.com/?utm_source=wordpress_org&utm_medium=link&utm_campaign=plugin_description_tab&utm_content=EE4+Decaf">', '</a>'); ?></p> |
|
26 | 26 | <div class="feature-section col three-col about-updates"> |
27 | 27 | <div class="col-1"> |
28 | 28 | <img src="<?php echo EE_GLOBAL_ASSETS_URL; ?>images/screenshots/publish_meta_box.jpg"> |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | <h2 class="about-headline-callout"><?php esc_html_e('People Like You Manage Event Registration with WordPress', 'event_espresso'); ?></h2> |
81 | 81 | <div class="feature-section col two-col"> |
82 | 82 | <div class="grid_6"> |
83 | - <p><?php echo sprintf( esc_html__('Trusted by thousands, Event Espresso is the best WordPress event online registration and ticketing manager plugin–and the best supported with full-time support. Turn your existing blog or website into a %sfully-featured event management website%s and a new way to make money. With Event Espresso you get it all; everything from custom registration forms and emails, seating limits, multiple price options, and discount codes to printable tickets.', 'event_espresso'),'<strong>','</strong>'); ?></p> |
|
83 | + <p><?php echo sprintf(esc_html__('Trusted by thousands, Event Espresso is the best WordPress event online registration and ticketing manager plugin–and the best supported with full-time support. Turn your existing blog or website into a %sfully-featured event management website%s and a new way to make money. With Event Espresso you get it all; everything from custom registration forms and emails, seating limits, multiple price options, and discount codes to printable tickets.', 'event_espresso'), '<strong>', '</strong>'); ?></p> |
|
84 | 84 | <p><?php esc_html_e('Event Espresso works perfectly for classes, workshops, fundraisers, sporting, trainings, conferences, networking, religion, social, non-profit, and nearly any other type of event.', 'event_espresso'); ?></p> |
85 | 85 | </div> |
86 | 86 | <div class="grid_6"> |
87 | - <p><?php echo sprintf( esc_html__('Our online event registration software can %smake your organization more profitable and efficient%s by helping you save money on registration and ticketing fees, reduce the countless hours of time you spend manually processing registrations, create a “green” and paperless event registration process and you will be open for business to accept registrations and payment 24/7.', 'event_espresso'),'<strong>','</strong>'); ?></p> |
|
87 | + <p><?php echo sprintf(esc_html__('Our online event registration software can %smake your organization more profitable and efficient%s by helping you save money on registration and ticketing fees, reduce the countless hours of time you spend manually processing registrations, create a “green” and paperless event registration process and you will be open for business to accept registrations and payment 24/7.', 'event_espresso'), '<strong>', '</strong>'); ?></p> |
|
88 | 88 | <p><?php esc_html_e('If you\'re doing event registration and ticketing any other way, then you’re wasting time and money. We offer packages and prices to fit any budget, so get started with your online event registration and ticketing management system today.', 'event_espresso'); ?></p> |
89 | 89 | </div> |
90 | 90 | </div> |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | <h3><?php esc_html_e('Turn your blog into a complete event registration and management system', 'event_espresso'); ?></h3> |
95 | 95 | <p><?php esc_html_e('Create a beautiful event page with ticket selection, venue details, and an integrated single page checkout system. With WordPress, Event Espresso, and Espresso Arabica 2014 (based on the "Twenty Fourteen" theme by WordPress), your events will certainly sell out faster than ever!', 'event_espresso'); ?></p> |
96 | 96 | <p><?php esc_html_e('With a striking design that does not compromise the simplicity of WordPress and Event Espresso 4, Espresso Arabica 2014 will be the best event theme on the market.', 'event_espresso'); ?></p> |
97 | - <p><?php echo sprintf( esc_html__('%sLearn more >>%s', 'event_espresso'), '<a href="http://eventespresso.com/wiki/setup-event-espresso-arabica-theme/">', '</a>' ); ?></p> |
|
97 | + <p><?php echo sprintf(esc_html__('%sLearn more >>%s', 'event_espresso'), '<a href="http://eventespresso.com/wiki/setup-event-espresso-arabica-theme/">', '</a>'); ?></p> |
|
98 | 98 | </div> |
99 | 99 | <div><img src="<?php echo EE_GLOBAL_ASSETS_URL; ?>images/screenshots/single-event-page.jpg"></div> |
100 | 100 | </div> |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<p><?php echo sprintf( esc_html__('We offer a free version of Event Espresso 4 called Decaf which is a good fit for basic events. Need more features like custom registration forms and advanced email notifications? %sUpgrade to Event Espresso 4 (Regular)%s.', 'event_espresso'),'<a href="https://eventespresso.com/pricing/?ee_ver=ee4&utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">','</a>');?><br> |
|
1 | +<p><?php echo sprintf(esc_html__('We offer a free version of Event Espresso 4 called Decaf which is a good fit for basic events. Need more features like custom registration forms and advanced email notifications? %sUpgrade to Event Espresso 4 (Regular)%s.', 'event_espresso'), '<a href="https://eventespresso.com/pricing/?ee_ver=ee4&utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', '</a>'); ?><br> |
|
2 | 2 | |
3 | 3 | <?php |
4 | 4 | |
@@ -8,43 +8,43 @@ discard block |
||
8 | 8 | |
9 | 9 | $features = array( |
10 | 10 | 'pricing-options' => array( |
11 | - 'label' => esc_html__( 'Handle multiple dates and pricing options', 'event_espresso' ), |
|
11 | + 'label' => esc_html__('Handle multiple dates and pricing options', 'event_espresso'), |
|
12 | 12 | 'decaf' => '<span class="dashicons dashicons-no-alt"></span>', |
13 | 13 | 'regular' => '<span class="dashicons dashicons-yes"></span></i>', |
14 | 14 | 'class' => 'alternate' |
15 | 15 | ), |
16 | 16 | 'custom-registration' => array( |
17 | - 'label' => esc_html__( 'Create custom registration forms', 'event_espresso' ), |
|
17 | + 'label' => esc_html__('Create custom registration forms', 'event_espresso'), |
|
18 | 18 | 'decaf' => '<span class="dashicons dashicons-no-alt"></span>', |
19 | 19 | 'regular' => '<span class="dashicons dashicons-yes"></span></i>', |
20 | 20 | 'class' => 'none' |
21 | 21 | ), |
22 | 22 | 'advanced-notifications' => array( |
23 | - 'label' => esc_html__( 'Customize advanced email notifications', 'event_espresso' ), |
|
23 | + 'label' => esc_html__('Customize advanced email notifications', 'event_espresso'), |
|
24 | 24 | 'decaf' => '<span class="dashicons dashicons-no-alt"></span>', |
25 | 25 | 'regular' => '<span class="dashicons dashicons-yes"></span></i>', |
26 | 26 | 'class' => 'alternate' |
27 | 27 | ), |
28 | 28 | 'manage-taxes' => array( |
29 | - 'label' => esc_html__( 'Manage taxes', 'event_espresso' ), |
|
29 | + 'label' => esc_html__('Manage taxes', 'event_espresso'), |
|
30 | 30 | 'decaf' => '<span class="dashicons dashicons-no-alt"></span>', |
31 | 31 | 'regular' => '<span class="dashicons dashicons-yes"></span></i>', |
32 | 32 | 'class' => 'none' |
33 | 33 | ), |
34 | 34 | 'typography' => array( |
35 | - 'label' => esc_html__( 'Additional payment methods available', 'event_espresso' ), |
|
35 | + 'label' => esc_html__('Additional payment methods available', 'event_espresso'), |
|
36 | 36 | 'decaf' => '<span class="dashicons dashicons-no-alt"></span>', |
37 | 37 | 'regular' => '<span class="dashicons dashicons-yes"></span></i>', |
38 | 38 | 'class' => 'alternate' |
39 | 39 | ), |
40 | 40 | 'add-on-compatibility' => array( |
41 | - 'label' => esc_html__( 'Compatibility with add-ons', 'event_espresso' ), |
|
41 | + 'label' => esc_html__('Compatibility with add-ons', 'event_espresso'), |
|
42 | 42 | 'decaf' => '<span class="dashicons dashicons-no-alt"></span>', |
43 | 43 | 'regular' => '<span class="dashicons dashicons-yes"></span></i>', |
44 | 44 | 'class' => 'none' |
45 | 45 | ), |
46 | 46 | 'best-support' => array( |
47 | - 'label' => esc_html__( 'Best in class support', 'event_espresso' ), |
|
47 | + 'label' => esc_html__('Best in class support', 'event_espresso'), |
|
48 | 48 | 'decaf' => '<span class="dashicons dashicons-no-alt"></span>', |
49 | 49 | 'regular' => '<span class="dashicons dashicons-yes"></span></i>', |
50 | 50 | 'class' => 'alternate' |
@@ -56,12 +56,12 @@ discard block |
||
56 | 56 | <thead> |
57 | 57 | <tr> |
58 | 58 | <th></th> |
59 | - <th><?php esc_html_e( 'Decaf', 'event_espresso' ) ?></th> |
|
60 | - <th><?php esc_html_e( 'Regular', 'event_espresso' ) ?></th> |
|
59 | + <th><?php esc_html_e('Decaf', 'event_espresso') ?></th> |
|
60 | + <th><?php esc_html_e('Regular', 'event_espresso') ?></th> |
|
61 | 61 | </tr> |
62 | 62 | </thead> |
63 | 63 | <tbody> |
64 | - <?php foreach ( $features as $feature ): ?> |
|
64 | + <?php foreach ($features as $feature): ?> |
|
65 | 65 | <tr class="<?php echo $feature['class']; ?>"> |
66 | 66 | <td class="feature"> |
67 | 67 | <h3> |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | <?php endforeach; ?> |
79 | 79 | <tr> |
80 | 80 | <td></td> |
81 | - <td colspan="2" class="text-right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e( 'Upgrade Now!', 'event_espresso' ) ?></a></td> |
|
81 | + <td colspan="2" class="text-right"><a href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular" target="_blank" class="button button-primary button-hero"><span class="dashicons dashicons-cart"></span><?php esc_html_e('Upgrade Now!', 'event_espresso') ?></a></td> |
|
82 | 82 | </tr> |
83 | 83 | </tbody> |
84 | 84 | </table> |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -139,11 +139,11 @@ discard block |
||
139 | 139 | //Copied from _whats_new() |
140 | 140 | $steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ? $this->_get_started_steps() : FALSE; |
141 | 141 | $steps = $steps !== FALSE ? $steps : ''; |
142 | - $this->_admin_page_title = sprintf( esc_html__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
|
142 | + $this->_admin_page_title = sprintf(esc_html__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); |
|
143 | 143 | $settings_message = $steps; |
144 | - $this->_template_args['admin_page_subtitle'] = esc_html__('Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso' ) . $settings_message; |
|
145 | - $template = EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php'; |
|
146 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
144 | + $this->_template_args['admin_page_subtitle'] = esc_html__('Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso').$settings_message; |
|
145 | + $template = EE_ABOUT_TEMPLATE_PATH.'ee4-overview.template.php'; |
|
146 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
147 | 147 | $this->display_about_admin_page(); |
148 | 148 | } |
149 | 149 | |
@@ -151,36 +151,36 @@ discard block |
||
151 | 151 | |
152 | 152 | protected function _get_started_steps() { |
153 | 153 | $steps = '<h2>'.esc_html__('Getting Started').'</h2>'; |
154 | - $step_one = '<p>'.sprintf( esc_html__('%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_general_settings">', '</a>') .'</strong></p>'; |
|
155 | - $step_two = '<p>'.sprintf( esc_html__('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_payment_settings">', '</a>') .'</strong></p>'; |
|
156 | - $step_three = '<p>'.sprintf( esc_html__('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_events&action=create_new">', '</a>') .'</strong></p>'; |
|
154 | + $step_one = '<p>'.sprintf(esc_html__('%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_general_settings">', '</a>').'</strong></p>'; |
|
155 | + $step_two = '<p>'.sprintf(esc_html__('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_payment_settings">', '</a>').'</strong></p>'; |
|
156 | + $step_three = '<p>'.sprintf(esc_html__('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_events&action=create_new">', '</a>').'</strong></p>'; |
|
157 | 157 | |
158 | 158 | //done? |
159 | 159 | $done_step_one = EE_Registry::instance()->CFG->organization->address_1 == '123 Onna Road' ? FALSE : TRUE; |
160 | - $active_invoice_pm = EEM_Payment_Method::instance()->get_one_active( EEM_Payment_Method::scope_cart, array( array( 'PMD_type' => 'Invoice' ) ) ); |
|
161 | - $active_pms_count = EEM_Payment_Method::instance()->count_active( EEM_Payment_Method::scope_cart ); |
|
160 | + $active_invoice_pm = EEM_Payment_Method::instance()->get_one_active(EEM_Payment_Method::scope_cart, array(array('PMD_type' => 'Invoice'))); |
|
161 | + $active_pms_count = EEM_Payment_Method::instance()->count_active(EEM_Payment_Method::scope_cart); |
|
162 | 162 | //done step two if a non-invoice paymetn method is active; or there is more than one PM active, or |
163 | 163 | //if only the invoice is active but it's clearly been updated |
164 | - $done_step_two = $active_pms_count > 1 || |
|
165 | - ( $active_pms_count === 1 && ! $active_invoice_pm ) || |
|
166 | - ( $active_invoice_pm instanceof EE_Payment_Method && ( |
|
167 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_name', TRUE, '' ) || |
|
168 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_email', TRUE, '' ) || |
|
169 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_tax_number', TRUE, '' ) || |
|
170 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_address', TRUE, '' ) || |
|
171 | - $active_invoice_pm->get_extra_meta( 'page_extra_info', TRUE, '' ) |
|
164 | + $done_step_two = $active_pms_count > 1 || |
|
165 | + ($active_pms_count === 1 && ! $active_invoice_pm) || |
|
166 | + ($active_invoice_pm instanceof EE_Payment_Method && ( |
|
167 | + $active_invoice_pm->get_extra_meta('pdf_payee_name', TRUE, '') || |
|
168 | + $active_invoice_pm->get_extra_meta('pdf_payee_email', TRUE, '') || |
|
169 | + $active_invoice_pm->get_extra_meta('pdf_payee_tax_number', TRUE, '') || |
|
170 | + $active_invoice_pm->get_extra_meta('pdf_payee_address', TRUE, '') || |
|
171 | + $active_invoice_pm->get_extra_meta('page_extra_info', TRUE, '') |
|
172 | 172 | ) |
173 | 173 | ); |
174 | 174 | $done_step_three = EE_Registry::instance()->load_model('Event')->count() > 0 ? TRUE : FALSE; |
175 | 175 | |
176 | 176 | //if ALL steps are done, let's just return FALSE so we don't display anything |
177 | - if ( $done_step_one && $done_step_two && $done_step_three ) |
|
177 | + if ($done_step_one && $done_step_two && $done_step_three) |
|
178 | 178 | return FALSE; |
179 | 179 | |
180 | 180 | //now let's put it together |
181 | - $steps .= sprintf( '%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>': '' ); |
|
182 | - $steps .= sprintf( '%s' . $step_two . '%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>': '' ); |
|
183 | - $steps .= sprintf( '%s' . $step_three . '%s', $done_step_three ? '<strike>' : '', $done_step_three ? '</strike>': '' ); |
|
181 | + $steps .= sprintf('%s'.$step_one.'%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>' : ''); |
|
182 | + $steps .= sprintf('%s'.$step_two.'%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>' : ''); |
|
183 | + $steps .= sprintf('%s'.$step_three.'%s', $done_step_three ? '<strike>' : '', $done_step_three ? '</strike>' : ''); |
|
184 | 184 | |
185 | 185 | return $steps; |
186 | 186 | } |
@@ -188,27 +188,27 @@ discard block |
||
188 | 188 | |
189 | 189 | |
190 | 190 | protected function _credits() { |
191 | - $this->_template_args['admin_page_title'] = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
|
191 | + $this->_template_args['admin_page_title'] = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); |
|
192 | 192 | $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso Decaf, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso'); |
193 | - $template = EE_ABOUT_TEMPLATE_PATH . 'credits.template.php'; |
|
194 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
193 | + $template = EE_ABOUT_TEMPLATE_PATH.'credits.template.php'; |
|
194 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
195 | 195 | $this->display_about_admin_page(); |
196 | 196 | } |
197 | 197 | |
198 | 198 | |
199 | 199 | protected function _decafvpro() { |
200 | - $this->_template_args['admin_page_title'] = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
|
200 | + $this->_template_args['admin_page_title'] = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); |
|
201 | 201 | $this->_template_args['admin_page_subtitle'] = sprintf(__('Event Espresso lets you focus on doing %swhat you love%s — %sorganizing your events%s', 'event_espresso'), '<em>', '</em>', '<strong>', '</strong>'); |
202 | - $template = EE_ABOUT_TEMPLATE_PATH . 'decafvpro.template.php'; |
|
203 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
202 | + $template = EE_ABOUT_TEMPLATE_PATH.'decafvpro.template.php'; |
|
203 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
204 | 204 | $this->display_about_admin_page(); |
205 | 205 | } |
206 | 206 | |
207 | 207 | protected function _reviews() { |
208 | 208 | $this->_template_args['admin_page_title'] = __('Rave Reviews About Event Espresso 4', 'event_espresso'); |
209 | 209 | $this->_template_args['admin_page_subtitle'] = __('At Event Espresso, customer satisfaction is our ultimate goal.', 'event_espresso'); |
210 | - $template = EE_ABOUT_TEMPLATE_PATH . 'reviews.template.php'; |
|
211 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
210 | + $template = EE_ABOUT_TEMPLATE_PATH.'reviews.template.php'; |
|
211 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
212 | 212 | $this->display_about_admin_page(); |
213 | 213 | } |
214 | 214 |