@@ -103,8 +103,8 @@ |
||
103 | 103 | public static function editMessageTemplateClassByMessageType($message_type_slug, $context = '') |
104 | 104 | { |
105 | 105 | return $context |
106 | - ? '.' . $message_type_slug . '-' . $context . '-edit-link' |
|
107 | - : '.' . $message_type_slug . '-edit-link'; |
|
106 | + ? '.'.$message_type_slug.'-'.$context.'-edit-link' |
|
107 | + : '.'.$message_type_slug.'-edit-link'; |
|
108 | 108 | } |
109 | 109 | |
110 | 110 |
@@ -14,292 +14,292 @@ |
||
14 | 14 | class MessagesAdmin extends CoreAdmin |
15 | 15 | { |
16 | 16 | |
17 | - /** |
|
18 | - * Context slug for the admin messages context. |
|
19 | - */ |
|
20 | - const ADMIN_CONTEXT_SLUG = 'admin'; |
|
17 | + /** |
|
18 | + * Context slug for the admin messages context. |
|
19 | + */ |
|
20 | + const ADMIN_CONTEXT_SLUG = 'admin'; |
|
21 | 21 | |
22 | - /** |
|
23 | - * Context slug for the primary attendee messages context |
|
24 | - */ |
|
25 | - const PRIMARY_ATTENDEE_CONTEXT_SLUG = 'primary_attendee'; |
|
22 | + /** |
|
23 | + * Context slug for the primary attendee messages context |
|
24 | + */ |
|
25 | + const PRIMARY_ATTENDEE_CONTEXT_SLUG = 'primary_attendee'; |
|
26 | 26 | |
27 | 27 | |
28 | - /** |
|
29 | - * Context slug for the attendee messages context |
|
30 | - */ |
|
31 | - const ATTENDEE_CONTEXT_SLUG = 'attendee'; |
|
28 | + /** |
|
29 | + * Context slug for the attendee messages context |
|
30 | + */ |
|
31 | + const ATTENDEE_CONTEXT_SLUG = 'attendee'; |
|
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * Status reference for the EEM_Message::status_sent status. |
|
36 | - */ |
|
37 | - const MESSAGE_STATUS_SENT = 'MSN'; |
|
34 | + /** |
|
35 | + * Status reference for the EEM_Message::status_sent status. |
|
36 | + */ |
|
37 | + const MESSAGE_STATUS_SENT = 'MSN'; |
|
38 | 38 | |
39 | 39 | |
40 | - /** |
|
41 | - * Message type slug for the Payment Failed message type |
|
42 | - */ |
|
43 | - const PAYMENT_FAILED_MESSAGE_TYPE_SLUG = 'payment_failed'; |
|
40 | + /** |
|
41 | + * Message type slug for the Payment Failed message type |
|
42 | + */ |
|
43 | + const PAYMENT_FAILED_MESSAGE_TYPE_SLUG = 'payment_failed'; |
|
44 | 44 | |
45 | 45 | |
46 | - /** |
|
47 | - * Message type slug for the Registration Pending Payment message type |
|
48 | - */ |
|
49 | - const MESSAGE_TYPE_PENDING_PAYMENT = 'pending_approval'; |
|
46 | + /** |
|
47 | + * Message type slug for the Registration Pending Payment message type |
|
48 | + */ |
|
49 | + const MESSAGE_TYPE_PENDING_PAYMENT = 'pending_approval'; |
|
50 | 50 | |
51 | 51 | |
52 | - /** |
|
53 | - * Selector for the Global Messages "Send on same request" field in the Messages Settings tab. |
|
54 | - */ |
|
55 | - const GLOBAL_MESSAGES_SETTINGS_ON_REQUEST_SELECTION_SELECTOR = |
|
56 | - '#global_messages_settings-do-messages-on-same-request'; |
|
52 | + /** |
|
53 | + * Selector for the Global Messages "Send on same request" field in the Messages Settings tab. |
|
54 | + */ |
|
55 | + const GLOBAL_MESSAGES_SETTINGS_ON_REQUEST_SELECTION_SELECTOR = |
|
56 | + '#global_messages_settings-do-messages-on-same-request'; |
|
57 | 57 | |
58 | 58 | |
59 | - /** |
|
60 | - * Selector for the Global Messages Settings submit button in the Messages Settings tab. |
|
61 | - */ |
|
62 | - const GLOBAL_MESSAGES_SETTINGS_SUBMIT_SELECTOR = '#global_messages_settings-update-settings-submit'; |
|
59 | + /** |
|
60 | + * Selector for the Global Messages Settings submit button in the Messages Settings tab. |
|
61 | + */ |
|
62 | + const GLOBAL_MESSAGES_SETTINGS_SUBMIT_SELECTOR = '#global_messages_settings-update-settings-submit'; |
|
63 | 63 | |
64 | 64 | |
65 | - /** |
|
66 | - * This is the container where active message types for a messenger are found/dragged to. |
|
67 | - */ |
|
68 | - const MESSAGES_SETTINGS_ACTIVE_MESSAGE_TYPES_CONTAINER_SELECTOR = '#active-message-types'; |
|
65 | + /** |
|
66 | + * This is the container where active message types for a messenger are found/dragged to. |
|
67 | + */ |
|
68 | + const MESSAGES_SETTINGS_ACTIVE_MESSAGE_TYPES_CONTAINER_SELECTOR = '#active-message-types'; |
|
69 | 69 | |
70 | 70 | |
71 | - /** |
|
72 | - * Locator for the context switcher selector on the Message Template Editor page. |
|
73 | - */ |
|
74 | - const MESSAGES_CONTEXT_SWITCHER_SELECTOR = "//form[@id='ee-msg-context-switcher-frm']/select"; |
|
71 | + /** |
|
72 | + * Locator for the context switcher selector on the Message Template Editor page. |
|
73 | + */ |
|
74 | + const MESSAGES_CONTEXT_SWITCHER_SELECTOR = "//form[@id='ee-msg-context-switcher-frm']/select"; |
|
75 | 75 | |
76 | 76 | |
77 | - /** |
|
78 | - * Locator for the context switcher submit button in the Message Template Editor page. |
|
79 | - */ |
|
80 | - const MESSAGES_CONTEXT_SWITCHER_BUTTON_SELECTOR = "#submit-msg-context-switcher-sbmt"; |
|
77 | + /** |
|
78 | + * Locator for the context switcher submit button in the Message Template Editor page. |
|
79 | + */ |
|
80 | + const MESSAGES_CONTEXT_SWITCHER_BUTTON_SELECTOR = "#submit-msg-context-switcher-sbmt"; |
|
81 | 81 | |
82 | 82 | |
83 | - /** |
|
84 | - * Locator for the dialog container used for housing viewed messages in the message activity list table. |
|
85 | - */ |
|
86 | - const MESSAGES_LIST_TABLE_VIEW_MESSAGE_DIALOG_CONTAINER_SELECTOR = '.ee-admin-dialog-container-inner-content'; |
|
87 | - |
|
88 | - |
|
89 | - /** |
|
90 | - * Returns the selector for the on/off toggle for context on the message template editor. |
|
91 | - */ |
|
92 | - const MESSAGES_CONTEXT_ACTIVE_STATE_TOGGLE = |
|
93 | - "//div[@class='activate_context_on_off_toggle_container']/div[@class='switch']/label"; |
|
94 | - |
|
95 | - |
|
96 | - const SELECTOR_LINK_FINALIZE_PAYMENT_PENDING_PAYMENT_MESSAGE = "//td/p[@class='callout']/a"; |
|
97 | - |
|
98 | - |
|
99 | - |
|
100 | - /** |
|
101 | - * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
102 | - * a string. |
|
103 | - * @return string |
|
104 | - */ |
|
105 | - public static function messageActivityListTableUrl($additional_params = '') |
|
106 | - { |
|
107 | - return self::adminUrl('espresso_messages', 'default', $additional_params); |
|
108 | - } |
|
109 | - |
|
110 | - |
|
111 | - /** |
|
112 | - * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
113 | - * a string. |
|
114 | - * @return string |
|
115 | - */ |
|
116 | - public static function defaultMessageTemplateListTableUrl($additional_params = '') |
|
117 | - { |
|
118 | - return self::adminUrl('espresso_messages', 'global_mtps', $additional_params); |
|
119 | - } |
|
120 | - |
|
121 | - |
|
122 | - /** |
|
123 | - * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
124 | - * a string. |
|
125 | - * @return string |
|
126 | - */ |
|
127 | - public static function customMessageTemplateListTableUrl($additional_params = '') |
|
128 | - { |
|
129 | - return self::adminUrl('espresso_messages', 'custom_mtps', $additional_params); |
|
130 | - } |
|
131 | - |
|
132 | - |
|
133 | - /** |
|
134 | - * @return string |
|
135 | - */ |
|
136 | - public static function messageSettingsUrl() |
|
137 | - { |
|
138 | - return self::adminUrl('espresso_messages', 'settings'); |
|
139 | - } |
|
140 | - |
|
141 | - |
|
142 | - |
|
143 | - public static function draggableSettingsBoxSelectorForMessageTypeAndMessenger( |
|
144 | - $message_type_slug, |
|
145 | - $messenger_slug = 'email' |
|
146 | - ) { |
|
147 | - return "#$message_type_slug-messagetype-$messenger_slug"; |
|
148 | - } |
|
149 | - |
|
150 | - |
|
151 | - /** |
|
152 | - * @param string $message_type_slug |
|
153 | - * @param string $context |
|
154 | - * @return string |
|
155 | - */ |
|
156 | - public static function editMessageTemplateClassByMessageType($message_type_slug, $context = '') |
|
157 | - { |
|
158 | - return $context |
|
159 | - ? '.' . $message_type_slug . '-' . $context . '-edit-link' |
|
160 | - : '.' . $message_type_slug . '-edit-link'; |
|
161 | - } |
|
162 | - |
|
163 | - |
|
164 | - /** |
|
165 | - * Selector for (a) specific table cell(s) in the Messages Activity list table for the given parameters. |
|
166 | - * |
|
167 | - * @param $field |
|
168 | - * @param $message_type_label |
|
169 | - * @param string $message_status |
|
170 | - * @param string $messenger |
|
171 | - * @param string $context |
|
172 | - * @param string $table_cell_content_for_field |
|
173 | - * @param int $number_in_set It's possible that the given parameters could match multiple items in the view. |
|
174 | - * This allows you to indicate which item from the set to match. If this is set to 0 |
|
175 | - * then all matches for the locator will be returned. |
|
176 | - * @return string |
|
177 | - * @throws \InvalidArgumentException |
|
178 | - */ |
|
179 | - public static function messagesActivityListTableCellSelectorFor( |
|
180 | - $field, |
|
181 | - $message_type_label, |
|
182 | - $message_status = self::MESSAGE_STATUS_SENT, |
|
183 | - $messenger = 'Email', |
|
184 | - $context = 'Event Admin', |
|
185 | - $table_cell_content_for_field = '', |
|
186 | - $number_in_set = 1 |
|
187 | - ) { |
|
188 | - $selector = "//tbody[@id='the-list']"; |
|
189 | - $selector .= "//tr[contains(@class, 'msg-status-$message_status')]" |
|
190 | - . "//td[contains(@class, 'message_type') and text()='$message_type_label']"; |
|
191 | - if ($messenger) { |
|
192 | - $selector .= "/ancestor::tr/td[contains(@class, 'messenger') and text()='$messenger']"; |
|
193 | - } |
|
194 | - $selector .= "/ancestor::tr/td[contains(@class, 'column-context') and text()='$context']"; |
|
195 | - $selector .= $table_cell_content_for_field |
|
196 | - ? "/ancestor::tr/td[contains(@class, 'column-$field') and text()='$table_cell_content_for_field']" |
|
197 | - : "/ancestor::tr/td[contains(@class, 'column-$field')]"; |
|
198 | - return $number_in_set > 0 ? Locator::elementAt($selector, $number_in_set) : $selector; |
|
199 | - } |
|
200 | - |
|
201 | - |
|
202 | - /** |
|
203 | - * Selector for the Create Custom button found in the message template list table. |
|
204 | - * @param string $message_type_label |
|
205 | - * @param string $messenger_label |
|
206 | - * @return string |
|
207 | - */ |
|
208 | - public static function createCustomButtonForMessageTypeAndMessenger($message_type_label, $messenger_label) |
|
209 | - { |
|
210 | - $selector = "//tr/td[contains(@class, 'message_type') and text()='$message_type_label']" |
|
211 | - . "//ancestor::tr/td[contains(@class, 'messenger') and contains(., '$messenger_label')]" |
|
212 | - . "//ancestor::tr/td/a[@class='button button-small']"; |
|
213 | - return $selector; |
|
214 | - } |
|
215 | - |
|
216 | - |
|
217 | - /** |
|
218 | - * Note, this could potentially match multiple buttons in the view so the selector is intentionally restricted to |
|
219 | - * the FIRST match (which will be the latest message sent if the table is default sorted). |
|
220 | - * |
|
221 | - * @param string $message_type_label The visible message type label for the row you want to match |
|
222 | - * @param string $message_status The status of the message for the row you want to match. |
|
223 | - * @param string $messenger The visible messenger label for the row you want to match. |
|
224 | - * @param string $context The visible context label for the row you want to match. |
|
225 | - * @param int $number_in_set It's possible that the given parameters could match multiple items in the |
|
226 | - * view. This allows you to indicate which item from the set to match. |
|
227 | - * @return string |
|
228 | - * @throws \InvalidArgumentException |
|
229 | - */ |
|
230 | - public static function messagesActivityListTableViewButtonSelectorFor( |
|
231 | - $message_type_label, |
|
232 | - $message_status = self::MESSAGE_STATUS_SENT, |
|
233 | - $messenger = 'Email', |
|
234 | - $context = 'Event Admin', |
|
235 | - $number_in_set = 1 |
|
236 | - ) { |
|
237 | - $selector = self::messagesActivityListTableCellSelectorFor( |
|
238 | - 'action', |
|
239 | - $message_type_label, |
|
240 | - $message_status, |
|
241 | - $messenger, |
|
242 | - $context, |
|
243 | - '', |
|
244 | - $number_in_set |
|
245 | - ); |
|
246 | - $selector .= "/a/span[contains(@class, 'ee-message-action-link-view')" |
|
247 | - . " and not(contains(@class, 'ee-message-action-link-view_transaction'))]"; |
|
248 | - return $selector; |
|
249 | - } |
|
250 | - |
|
251 | - |
|
252 | - /** |
|
253 | - * Locator for the delete action link for a message item in the message activity list table. |
|
254 | - * Note: The link is not visible by default, so the column would need hovered over for the link to appear. |
|
255 | - * |
|
256 | - * @param $message_type_label |
|
257 | - * @param string $message_status |
|
258 | - * @param string $messenger |
|
259 | - * @param string $context |
|
260 | - * @param int $number_in_set |
|
261 | - * @return string |
|
262 | - * @throws \InvalidArgumentException |
|
263 | - */ |
|
264 | - public static function messagesActivityListTableDeleteActionSelectorFor( |
|
265 | - $message_type_label, |
|
266 | - $message_status = self::MESSAGE_STATUS_SENT, |
|
267 | - $messenger = 'Email', |
|
268 | - $context = 'Event Admin', |
|
269 | - $number_in_set = 1 |
|
270 | - ) { |
|
271 | - $selector = self::messagesActivityListTableCellSelectorFor( |
|
272 | - 'to', |
|
273 | - $message_type_label, |
|
274 | - $message_status, |
|
275 | - $messenger, |
|
276 | - $context, |
|
277 | - '', |
|
278 | - $number_in_set |
|
279 | - ); |
|
280 | - $selector .= "/div/span[@class='delete']/a"; |
|
281 | - return $selector; |
|
282 | - } |
|
283 | - |
|
284 | - |
|
285 | - |
|
286 | - /** |
|
287 | - * Returns the input selector for a given field in the message template editor. |
|
288 | - * Assumes one is already viewing the Message Template Editor. |
|
289 | - * @param string $field |
|
290 | - * @return string |
|
291 | - */ |
|
292 | - public static function messageInputFieldSelectorFor($field) |
|
293 | - { |
|
294 | - return "//div[@id='post-body']//input[@id='$field-content']"; |
|
295 | - } |
|
296 | - |
|
297 | - |
|
298 | - /** |
|
299 | - * Wrapper for self::messageInputFieldSelectorFor('to') that takes care of getting the input for the To field. |
|
300 | - */ |
|
301 | - public static function messageTemplateToFieldSelector() |
|
302 | - { |
|
303 | - return self::messageInputFieldSelectorFor('to'); |
|
304 | - } |
|
83 | + /** |
|
84 | + * Locator for the dialog container used for housing viewed messages in the message activity list table. |
|
85 | + */ |
|
86 | + const MESSAGES_LIST_TABLE_VIEW_MESSAGE_DIALOG_CONTAINER_SELECTOR = '.ee-admin-dialog-container-inner-content'; |
|
87 | + |
|
88 | + |
|
89 | + /** |
|
90 | + * Returns the selector for the on/off toggle for context on the message template editor. |
|
91 | + */ |
|
92 | + const MESSAGES_CONTEXT_ACTIVE_STATE_TOGGLE = |
|
93 | + "//div[@class='activate_context_on_off_toggle_container']/div[@class='switch']/label"; |
|
94 | + |
|
95 | + |
|
96 | + const SELECTOR_LINK_FINALIZE_PAYMENT_PENDING_PAYMENT_MESSAGE = "//td/p[@class='callout']/a"; |
|
97 | + |
|
98 | + |
|
99 | + |
|
100 | + /** |
|
101 | + * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
102 | + * a string. |
|
103 | + * @return string |
|
104 | + */ |
|
105 | + public static function messageActivityListTableUrl($additional_params = '') |
|
106 | + { |
|
107 | + return self::adminUrl('espresso_messages', 'default', $additional_params); |
|
108 | + } |
|
109 | + |
|
110 | + |
|
111 | + /** |
|
112 | + * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
113 | + * a string. |
|
114 | + * @return string |
|
115 | + */ |
|
116 | + public static function defaultMessageTemplateListTableUrl($additional_params = '') |
|
117 | + { |
|
118 | + return self::adminUrl('espresso_messages', 'global_mtps', $additional_params); |
|
119 | + } |
|
120 | + |
|
121 | + |
|
122 | + /** |
|
123 | + * @param string $additional_params Any additional request parameters for the generated url should be included as |
|
124 | + * a string. |
|
125 | + * @return string |
|
126 | + */ |
|
127 | + public static function customMessageTemplateListTableUrl($additional_params = '') |
|
128 | + { |
|
129 | + return self::adminUrl('espresso_messages', 'custom_mtps', $additional_params); |
|
130 | + } |
|
131 | + |
|
132 | + |
|
133 | + /** |
|
134 | + * @return string |
|
135 | + */ |
|
136 | + public static function messageSettingsUrl() |
|
137 | + { |
|
138 | + return self::adminUrl('espresso_messages', 'settings'); |
|
139 | + } |
|
140 | + |
|
141 | + |
|
142 | + |
|
143 | + public static function draggableSettingsBoxSelectorForMessageTypeAndMessenger( |
|
144 | + $message_type_slug, |
|
145 | + $messenger_slug = 'email' |
|
146 | + ) { |
|
147 | + return "#$message_type_slug-messagetype-$messenger_slug"; |
|
148 | + } |
|
149 | + |
|
150 | + |
|
151 | + /** |
|
152 | + * @param string $message_type_slug |
|
153 | + * @param string $context |
|
154 | + * @return string |
|
155 | + */ |
|
156 | + public static function editMessageTemplateClassByMessageType($message_type_slug, $context = '') |
|
157 | + { |
|
158 | + return $context |
|
159 | + ? '.' . $message_type_slug . '-' . $context . '-edit-link' |
|
160 | + : '.' . $message_type_slug . '-edit-link'; |
|
161 | + } |
|
162 | + |
|
163 | + |
|
164 | + /** |
|
165 | + * Selector for (a) specific table cell(s) in the Messages Activity list table for the given parameters. |
|
166 | + * |
|
167 | + * @param $field |
|
168 | + * @param $message_type_label |
|
169 | + * @param string $message_status |
|
170 | + * @param string $messenger |
|
171 | + * @param string $context |
|
172 | + * @param string $table_cell_content_for_field |
|
173 | + * @param int $number_in_set It's possible that the given parameters could match multiple items in the view. |
|
174 | + * This allows you to indicate which item from the set to match. If this is set to 0 |
|
175 | + * then all matches for the locator will be returned. |
|
176 | + * @return string |
|
177 | + * @throws \InvalidArgumentException |
|
178 | + */ |
|
179 | + public static function messagesActivityListTableCellSelectorFor( |
|
180 | + $field, |
|
181 | + $message_type_label, |
|
182 | + $message_status = self::MESSAGE_STATUS_SENT, |
|
183 | + $messenger = 'Email', |
|
184 | + $context = 'Event Admin', |
|
185 | + $table_cell_content_for_field = '', |
|
186 | + $number_in_set = 1 |
|
187 | + ) { |
|
188 | + $selector = "//tbody[@id='the-list']"; |
|
189 | + $selector .= "//tr[contains(@class, 'msg-status-$message_status')]" |
|
190 | + . "//td[contains(@class, 'message_type') and text()='$message_type_label']"; |
|
191 | + if ($messenger) { |
|
192 | + $selector .= "/ancestor::tr/td[contains(@class, 'messenger') and text()='$messenger']"; |
|
193 | + } |
|
194 | + $selector .= "/ancestor::tr/td[contains(@class, 'column-context') and text()='$context']"; |
|
195 | + $selector .= $table_cell_content_for_field |
|
196 | + ? "/ancestor::tr/td[contains(@class, 'column-$field') and text()='$table_cell_content_for_field']" |
|
197 | + : "/ancestor::tr/td[contains(@class, 'column-$field')]"; |
|
198 | + return $number_in_set > 0 ? Locator::elementAt($selector, $number_in_set) : $selector; |
|
199 | + } |
|
200 | + |
|
201 | + |
|
202 | + /** |
|
203 | + * Selector for the Create Custom button found in the message template list table. |
|
204 | + * @param string $message_type_label |
|
205 | + * @param string $messenger_label |
|
206 | + * @return string |
|
207 | + */ |
|
208 | + public static function createCustomButtonForMessageTypeAndMessenger($message_type_label, $messenger_label) |
|
209 | + { |
|
210 | + $selector = "//tr/td[contains(@class, 'message_type') and text()='$message_type_label']" |
|
211 | + . "//ancestor::tr/td[contains(@class, 'messenger') and contains(., '$messenger_label')]" |
|
212 | + . "//ancestor::tr/td/a[@class='button button-small']"; |
|
213 | + return $selector; |
|
214 | + } |
|
215 | + |
|
216 | + |
|
217 | + /** |
|
218 | + * Note, this could potentially match multiple buttons in the view so the selector is intentionally restricted to |
|
219 | + * the FIRST match (which will be the latest message sent if the table is default sorted). |
|
220 | + * |
|
221 | + * @param string $message_type_label The visible message type label for the row you want to match |
|
222 | + * @param string $message_status The status of the message for the row you want to match. |
|
223 | + * @param string $messenger The visible messenger label for the row you want to match. |
|
224 | + * @param string $context The visible context label for the row you want to match. |
|
225 | + * @param int $number_in_set It's possible that the given parameters could match multiple items in the |
|
226 | + * view. This allows you to indicate which item from the set to match. |
|
227 | + * @return string |
|
228 | + * @throws \InvalidArgumentException |
|
229 | + */ |
|
230 | + public static function messagesActivityListTableViewButtonSelectorFor( |
|
231 | + $message_type_label, |
|
232 | + $message_status = self::MESSAGE_STATUS_SENT, |
|
233 | + $messenger = 'Email', |
|
234 | + $context = 'Event Admin', |
|
235 | + $number_in_set = 1 |
|
236 | + ) { |
|
237 | + $selector = self::messagesActivityListTableCellSelectorFor( |
|
238 | + 'action', |
|
239 | + $message_type_label, |
|
240 | + $message_status, |
|
241 | + $messenger, |
|
242 | + $context, |
|
243 | + '', |
|
244 | + $number_in_set |
|
245 | + ); |
|
246 | + $selector .= "/a/span[contains(@class, 'ee-message-action-link-view')" |
|
247 | + . " and not(contains(@class, 'ee-message-action-link-view_transaction'))]"; |
|
248 | + return $selector; |
|
249 | + } |
|
250 | + |
|
251 | + |
|
252 | + /** |
|
253 | + * Locator for the delete action link for a message item in the message activity list table. |
|
254 | + * Note: The link is not visible by default, so the column would need hovered over for the link to appear. |
|
255 | + * |
|
256 | + * @param $message_type_label |
|
257 | + * @param string $message_status |
|
258 | + * @param string $messenger |
|
259 | + * @param string $context |
|
260 | + * @param int $number_in_set |
|
261 | + * @return string |
|
262 | + * @throws \InvalidArgumentException |
|
263 | + */ |
|
264 | + public static function messagesActivityListTableDeleteActionSelectorFor( |
|
265 | + $message_type_label, |
|
266 | + $message_status = self::MESSAGE_STATUS_SENT, |
|
267 | + $messenger = 'Email', |
|
268 | + $context = 'Event Admin', |
|
269 | + $number_in_set = 1 |
|
270 | + ) { |
|
271 | + $selector = self::messagesActivityListTableCellSelectorFor( |
|
272 | + 'to', |
|
273 | + $message_type_label, |
|
274 | + $message_status, |
|
275 | + $messenger, |
|
276 | + $context, |
|
277 | + '', |
|
278 | + $number_in_set |
|
279 | + ); |
|
280 | + $selector .= "/div/span[@class='delete']/a"; |
|
281 | + return $selector; |
|
282 | + } |
|
283 | + |
|
284 | + |
|
285 | + |
|
286 | + /** |
|
287 | + * Returns the input selector for a given field in the message template editor. |
|
288 | + * Assumes one is already viewing the Message Template Editor. |
|
289 | + * @param string $field |
|
290 | + * @return string |
|
291 | + */ |
|
292 | + public static function messageInputFieldSelectorFor($field) |
|
293 | + { |
|
294 | + return "//div[@id='post-body']//input[@id='$field-content']"; |
|
295 | + } |
|
296 | + |
|
297 | + |
|
298 | + /** |
|
299 | + * Wrapper for self::messageInputFieldSelectorFor('to') that takes care of getting the input for the To field. |
|
300 | + */ |
|
301 | + public static function messageTemplateToFieldSelector() |
|
302 | + { |
|
303 | + return self::messageInputFieldSelectorFor('to'); |
|
304 | + } |
|
305 | 305 | } |
306 | 306 | \ No newline at end of file |
@@ -8,26 +8,26 @@ |
||
8 | 8 | |
9 | 9 | class InvalidStatusException extends InvalidArgumentException |
10 | 10 | { |
11 | - /** |
|
12 | - * InvalidStatusException constructor. |
|
13 | - * @param string $status the invalid status id that was supplied |
|
14 | - * @param string $domain the name of the domain, model, or class that the status belongs to |
|
15 | - * @param string $message custom message |
|
16 | - * @param int $code |
|
17 | - * @param Exception|null $previous |
|
18 | - */ |
|
19 | - public function __construct($status, $domain, $message = '', $code = 0, Exception $previous = null) |
|
20 | - { |
|
21 | - if (empty($message)) { |
|
22 | - $message = sprintf( |
|
23 | - __( |
|
24 | - '"%1$s" is not a valid %2$s status', |
|
25 | - 'event_espresso' |
|
26 | - ), |
|
27 | - $status, |
|
28 | - $domain |
|
29 | - ); |
|
30 | - } |
|
31 | - parent::__construct($message, $code, $previous); |
|
32 | - } |
|
11 | + /** |
|
12 | + * InvalidStatusException constructor. |
|
13 | + * @param string $status the invalid status id that was supplied |
|
14 | + * @param string $domain the name of the domain, model, or class that the status belongs to |
|
15 | + * @param string $message custom message |
|
16 | + * @param int $code |
|
17 | + * @param Exception|null $previous |
|
18 | + */ |
|
19 | + public function __construct($status, $domain, $message = '', $code = 0, Exception $previous = null) |
|
20 | + { |
|
21 | + if (empty($message)) { |
|
22 | + $message = sprintf( |
|
23 | + __( |
|
24 | + '"%1$s" is not a valid %2$s status', |
|
25 | + 'event_espresso' |
|
26 | + ), |
|
27 | + $status, |
|
28 | + $domain |
|
29 | + ); |
|
30 | + } |
|
31 | + parent::__construct($message, $code, $previous); |
|
32 | + } |
|
33 | 33 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | { |
121 | 121 | wp_register_style( |
122 | 122 | 'espresso-admin-toolbar', |
123 | - EE_GLOBAL_ASSETS_URL . 'css/espresso-admin-toolbar.css', |
|
123 | + EE_GLOBAL_ASSETS_URL.'css/espresso-admin-toolbar.css', |
|
124 | 124 | array('dashicons'), |
125 | 125 | EVENT_ESPRESSO_VERSION |
126 | 126 | ); |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | 'href' => $this->events_admin_url, |
144 | 144 | 'meta' => array( |
145 | 145 | 'title' => esc_html__('Event Espresso', 'event_espresso'), |
146 | - 'class' => $this->menu_class . 'first', |
|
146 | + 'class' => $this->menu_class.'first', |
|
147 | 147 | ), |
148 | 148 | ) |
149 | 149 | ); |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | 'meta' => array( |
492 | 492 | 'title' => esc_html__('Approved', 'event_espresso'), |
493 | 493 | 'target' => '', |
494 | - 'class' => $this->menu_class . ' ee-toolbar-icon-approved', |
|
494 | + 'class' => $this->menu_class.' ee-toolbar-icon-approved', |
|
495 | 495 | ), |
496 | 496 | ) |
497 | 497 | ); |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | 'meta' => array( |
529 | 529 | 'title' => esc_html__('Pending Payment', 'event_espresso'), |
530 | 530 | 'target' => '', |
531 | - 'class' => $this->menu_class . ' ee-toolbar-icon-pending', |
|
531 | + 'class' => $this->menu_class.' ee-toolbar-icon-pending', |
|
532 | 532 | ), |
533 | 533 | ) |
534 | 534 | ); |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | 'meta' => array( |
566 | 566 | 'title' => esc_html__('Not Approved', 'event_espresso'), |
567 | 567 | 'target' => '', |
568 | - 'class' => $this->menu_class . ' ee-toolbar-icon-not-approved', |
|
568 | + 'class' => $this->menu_class.' ee-toolbar-icon-not-approved', |
|
569 | 569 | ), |
570 | 570 | ) |
571 | 571 | ); |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | 'meta' => array( |
603 | 603 | 'title' => esc_html__('Cancelled', 'event_espresso'), |
604 | 604 | 'target' => '', |
605 | - 'class' => $this->menu_class . ' ee-toolbar-icon-cancelled', |
|
605 | + 'class' => $this->menu_class.' ee-toolbar-icon-cancelled', |
|
606 | 606 | ), |
607 | 607 | ) |
608 | 608 | ); |
@@ -674,7 +674,7 @@ discard block |
||
674 | 674 | 'meta' => array( |
675 | 675 | 'title' => esc_html__('Approved', 'event_espresso'), |
676 | 676 | 'target' => '', |
677 | - 'class' => $this->menu_class . ' ee-toolbar-icon-approved', |
|
677 | + 'class' => $this->menu_class.' ee-toolbar-icon-approved', |
|
678 | 678 | ), |
679 | 679 | ) |
680 | 680 | ); |
@@ -711,7 +711,7 @@ discard block |
||
711 | 711 | 'meta' => array( |
712 | 712 | 'title' => esc_html__('Pending', 'event_espresso'), |
713 | 713 | 'target' => '', |
714 | - 'class' => $this->menu_class . ' ee-toolbar-icon-pending', |
|
714 | + 'class' => $this->menu_class.' ee-toolbar-icon-pending', |
|
715 | 715 | ), |
716 | 716 | ) |
717 | 717 | ); |
@@ -748,7 +748,7 @@ discard block |
||
748 | 748 | 'meta' => array( |
749 | 749 | 'title' => esc_html__('Not Approved', 'event_espresso'), |
750 | 750 | 'target' => '', |
751 | - 'class' => $this->menu_class . ' ee-toolbar-icon-not-approved', |
|
751 | + 'class' => $this->menu_class.' ee-toolbar-icon-not-approved', |
|
752 | 752 | ), |
753 | 753 | ) |
754 | 754 | ); |
@@ -785,7 +785,7 @@ discard block |
||
785 | 785 | 'meta' => array( |
786 | 786 | 'title' => esc_html__('Cancelled', 'event_espresso'), |
787 | 787 | 'target' => '', |
788 | - 'class' => $this->menu_class . ' ee-toolbar-icon-cancelled', |
|
788 | + 'class' => $this->menu_class.' ee-toolbar-icon-cancelled', |
|
789 | 789 | ), |
790 | 790 | ) |
791 | 791 | ); |
@@ -19,741 +19,741 @@ |
||
19 | 19 | class AdminToolBar |
20 | 20 | { |
21 | 21 | |
22 | - /** |
|
23 | - * @var WP_Admin_Bar $admin_bar |
|
24 | - */ |
|
25 | - private $admin_bar; |
|
26 | - |
|
27 | - /** |
|
28 | - * @var EE_Capabilities $capabilities |
|
29 | - */ |
|
30 | - private $capabilities; |
|
31 | - |
|
32 | - /** |
|
33 | - * @var string $events_admin_url |
|
34 | - */ |
|
35 | - private $events_admin_url; |
|
36 | - |
|
37 | - /** |
|
38 | - * @var string $menu_class |
|
39 | - */ |
|
40 | - private $menu_class = 'espresso_menu_item_class'; |
|
41 | - |
|
42 | - /** |
|
43 | - * @var string $reg_admin_url |
|
44 | - */ |
|
45 | - private $reg_admin_url; |
|
46 | - |
|
47 | - |
|
48 | - /** |
|
49 | - * AdminToolBar constructor. |
|
50 | - * |
|
51 | - * @param EE_Capabilities $capabilities |
|
52 | - */ |
|
53 | - public function __construct(EE_Capabilities $capabilities) |
|
54 | - { |
|
55 | - $this->capabilities = $capabilities; |
|
56 | - add_action('admin_bar_menu', array($this, 'espressoToolbarItems'), 100); |
|
57 | - $this->enqueueAssets(); |
|
58 | - } |
|
59 | - |
|
60 | - |
|
61 | - /** |
|
62 | - * espresso_toolbar_items |
|
63 | - * |
|
64 | - * @access public |
|
65 | - * @param WP_Admin_Bar $admin_bar |
|
66 | - * @return void |
|
67 | - */ |
|
68 | - public function espressoToolbarItems(WP_Admin_Bar $admin_bar) |
|
69 | - { |
|
70 | - // if its an AJAX request, or user is NOT an admin, or in full M-Mode |
|
71 | - if (defined('DOING_AJAX') |
|
72 | - || ! $this->capabilities->current_user_can('ee_read_ee', 'ee_admin_bar_menu_top_level') |
|
73 | - || EE_Maintenance_Mode::instance()->level() === EE_Maintenance_Mode::level_2_complete_maintenance |
|
74 | - ) { |
|
75 | - return; |
|
76 | - } |
|
77 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
78 | - $this->admin_bar = $admin_bar; |
|
79 | - // we don't use the constants EVENTS_ADMIN_URL or REG_ADMIN_URL |
|
80 | - // because they're only defined in each of their respective constructors |
|
81 | - // and this might be a frontend request, in which case they aren't available |
|
82 | - $this->events_admin_url = admin_url('admin.php?page=espresso_events'); |
|
83 | - $this->reg_admin_url = admin_url('admin.php?page=espresso_registrations'); |
|
84 | - // now let's add all of the menu items |
|
85 | - $this->addTopLevelMenu(); |
|
86 | - $this->addEventsSubMenu(); |
|
87 | - $this->addEventsAddEditHeader(); |
|
88 | - $this->addEventsAddNew(); |
|
89 | - $this->addEventsEditCurrentEvent(); |
|
90 | - $this->addEventsViewHeader(); |
|
91 | - $this->addEventsViewAll(); |
|
92 | - $this->addEventsViewToday(); |
|
93 | - $this->addEventsViewThisMonth(); |
|
94 | - $this->addRegistrationSubMenu(); |
|
95 | - $this->addRegistrationOverviewToday(); |
|
96 | - $this->addRegistrationOverviewTodayApproved(); |
|
97 | - $this->addRegistrationOverviewTodayPendingPayment(); |
|
98 | - $this->addRegistrationOverviewTodayNotApproved(); |
|
99 | - $this->addRegistrationOverviewTodayCancelled(); |
|
100 | - $this->addRegistrationOverviewThisMonth(); |
|
101 | - $this->addRegistrationOverviewThisMonthApproved(); |
|
102 | - $this->addRegistrationOverviewThisMonthPending(); |
|
103 | - $this->addRegistrationOverviewThisMonthNotApproved(); |
|
104 | - $this->addRegistrationOverviewThisMonthCancelled(); |
|
105 | - $this->addExtensionsAndServices(); |
|
106 | - } |
|
107 | - |
|
108 | - |
|
109 | - /** |
|
110 | - * @return void |
|
111 | - */ |
|
112 | - private function enqueueAssets() |
|
113 | - { |
|
114 | - wp_register_style( |
|
115 | - 'espresso-admin-toolbar', |
|
116 | - EE_GLOBAL_ASSETS_URL . 'css/espresso-admin-toolbar.css', |
|
117 | - array('dashicons'), |
|
118 | - EVENT_ESPRESSO_VERSION |
|
119 | - ); |
|
120 | - wp_enqueue_style('espresso-admin-toolbar'); |
|
121 | - } |
|
122 | - |
|
123 | - |
|
124 | - /** |
|
125 | - * @return void |
|
126 | - */ |
|
127 | - private function addTopLevelMenu() |
|
128 | - { |
|
129 | - $this->admin_bar->add_menu( |
|
130 | - array( |
|
131 | - 'id' => 'espresso-toolbar', |
|
132 | - 'title' => '<span class="ee-icon ee-icon-ee-cup-thick ee-icon-size-20"></span><span class="ab-label">' |
|
133 | - . esc_html_x('Event Espresso', 'admin bar menu group label', 'event_espresso') |
|
134 | - . '</span>', |
|
135 | - 'href' => $this->events_admin_url, |
|
136 | - 'meta' => array( |
|
137 | - 'title' => esc_html__('Event Espresso', 'event_espresso'), |
|
138 | - 'class' => $this->menu_class . 'first', |
|
139 | - ), |
|
140 | - ) |
|
141 | - ); |
|
142 | - } |
|
143 | - |
|
144 | - |
|
145 | - /** |
|
146 | - * @return void |
|
147 | - */ |
|
148 | - private function addEventsSubMenu() |
|
149 | - { |
|
150 | - if ($this->capabilities->current_user_can( |
|
151 | - 'ee_read_events', |
|
152 | - 'ee_admin_bar_menu_espresso-toolbar-events' |
|
153 | - ) |
|
154 | - ) { |
|
155 | - $this->admin_bar->add_menu( |
|
156 | - array( |
|
157 | - 'id' => 'espresso-toolbar-events', |
|
158 | - 'parent' => 'espresso-toolbar', |
|
159 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
160 | - . esc_html__('Events', 'event_espresso'), |
|
161 | - 'href' => $this->events_admin_url, |
|
162 | - 'meta' => array( |
|
163 | - 'title' => esc_html__('Events', 'event_espresso'), |
|
164 | - 'target' => '', |
|
165 | - 'class' => $this->menu_class, |
|
166 | - ), |
|
167 | - ) |
|
168 | - ); |
|
169 | - } |
|
170 | - } |
|
171 | - |
|
172 | - |
|
173 | - /** |
|
174 | - * @return void |
|
175 | - */ |
|
176 | - private function addEventsAddEditHeader() |
|
177 | - { |
|
178 | - if ($this->capabilities->current_user_can( |
|
179 | - 'ee_read_events', |
|
180 | - 'ee_admin_bar_menu_espresso-toolbar-events-view' |
|
181 | - ) |
|
182 | - ) { |
|
183 | - $this->admin_bar->add_menu( |
|
184 | - array( |
|
185 | - 'id' => 'espresso-toolbar-events-add-edit', |
|
186 | - 'parent' => 'espresso-toolbar-events', |
|
187 | - 'title' => esc_html__('Add / Edit', 'event_espresso'), |
|
188 | - 'href' => '', |
|
189 | - ) |
|
190 | - ); |
|
191 | - } |
|
192 | - } |
|
193 | - |
|
194 | - |
|
195 | - /** |
|
196 | - * @return void |
|
197 | - */ |
|
198 | - private function addEventsAddNew() |
|
199 | - { |
|
200 | - if ($this->capabilities->current_user_can( |
|
201 | - 'ee_edit_events', |
|
202 | - 'ee_admin_bar_menu_espresso-toolbar-events-new' |
|
203 | - )) { |
|
204 | - $this->admin_bar->add_menu( |
|
205 | - array( |
|
206 | - 'id' => 'espresso-toolbar-events-new', |
|
207 | - 'parent' => 'espresso-toolbar-events', |
|
208 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
209 | - . esc_html__('Add New', 'event_espresso'), |
|
210 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
211 | - array('action' => 'create_new'), |
|
212 | - $this->events_admin_url |
|
213 | - ), |
|
214 | - 'meta' => array( |
|
215 | - 'title' => esc_html__('Add New', 'event_espresso'), |
|
216 | - 'target' => '', |
|
217 | - 'class' => $this->menu_class, |
|
218 | - ), |
|
219 | - ) |
|
220 | - ); |
|
221 | - } |
|
222 | - } |
|
223 | - |
|
224 | - |
|
225 | - /** |
|
226 | - * @return void |
|
227 | - */ |
|
228 | - private function addEventsEditCurrentEvent() |
|
229 | - { |
|
230 | - if (is_single() && (get_post_type() === 'espresso_events')) { |
|
231 | - // Current post |
|
232 | - global $post; |
|
233 | - if ($this->capabilities->current_user_can( |
|
234 | - 'ee_edit_event', |
|
235 | - 'ee_admin_bar_menu_espresso-toolbar-events-edit', |
|
236 | - $post->ID |
|
237 | - )) { |
|
238 | - $this->admin_bar->add_menu( |
|
239 | - array( |
|
240 | - 'id' => 'espresso-toolbar-events-edit', |
|
241 | - 'parent' => 'espresso-toolbar-events', |
|
242 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
243 | - . esc_html__('Edit Event', 'event_espresso'), |
|
244 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
245 | - array( |
|
246 | - 'action' => 'edit', |
|
247 | - 'post' => $post->ID, |
|
248 | - ), |
|
249 | - $this->events_admin_url |
|
250 | - ), |
|
251 | - 'meta' => array( |
|
252 | - 'title' => esc_html__('Edit Event', 'event_espresso'), |
|
253 | - 'target' => '', |
|
254 | - 'class' => $this->menu_class, |
|
255 | - ), |
|
256 | - ) |
|
257 | - ); |
|
258 | - } |
|
259 | - } |
|
260 | - } |
|
261 | - |
|
262 | - |
|
263 | - /** |
|
264 | - * @return void |
|
265 | - */ |
|
266 | - private function addEventsViewHeader() |
|
267 | - { |
|
268 | - if ($this->capabilities->current_user_can( |
|
269 | - 'ee_read_events', |
|
270 | - 'ee_admin_bar_menu_espresso-toolbar-events-view' |
|
271 | - )) { |
|
272 | - $this->admin_bar->add_menu( |
|
273 | - array( |
|
274 | - 'id' => 'espresso-toolbar-events-view', |
|
275 | - 'parent' => 'espresso-toolbar-events', |
|
276 | - 'title' => esc_html__('View', 'event_espresso'), |
|
277 | - 'href' => '', |
|
278 | - ) |
|
279 | - ); |
|
280 | - } |
|
281 | - } |
|
282 | - |
|
283 | - |
|
284 | - /** |
|
285 | - * @return void |
|
286 | - */ |
|
287 | - private function addEventsViewAll() |
|
288 | - { |
|
289 | - if ($this->capabilities->current_user_can( |
|
290 | - 'ee_read_events', |
|
291 | - 'ee_admin_bar_menu_espresso-toolbar-events-all' |
|
292 | - )) { |
|
293 | - $this->admin_bar->add_menu( |
|
294 | - array( |
|
295 | - 'id' => 'espresso-toolbar-events-all', |
|
296 | - 'parent' => 'espresso-toolbar-events', |
|
297 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
298 | - . esc_html__('All', 'event_espresso'), |
|
299 | - 'href' => $this->events_admin_url, |
|
300 | - 'meta' => array( |
|
301 | - 'title' => esc_html__('All', 'event_espresso'), |
|
302 | - 'target' => '', |
|
303 | - 'class' => $this->menu_class, |
|
304 | - ), |
|
305 | - ) |
|
306 | - ); |
|
307 | - } |
|
308 | - } |
|
309 | - |
|
310 | - |
|
311 | - /** |
|
312 | - * @return void |
|
313 | - */ |
|
314 | - private function addEventsViewToday() |
|
315 | - { |
|
316 | - if ($this->capabilities->current_user_can( |
|
317 | - 'ee_read_events', |
|
318 | - 'ee_admin_bar_menu_espresso-toolbar-events-today' |
|
319 | - )) { |
|
320 | - $this->admin_bar->add_menu( |
|
321 | - array( |
|
322 | - 'id' => 'espresso-toolbar-events-today', |
|
323 | - 'parent' => 'espresso-toolbar-events', |
|
324 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
325 | - . esc_html__('Today', 'event_espresso'), |
|
326 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
327 | - array( |
|
328 | - 'action' => 'default', |
|
329 | - 'status' => 'today', |
|
330 | - ), |
|
331 | - $this->events_admin_url |
|
332 | - ), |
|
333 | - 'meta' => array( |
|
334 | - 'title' => esc_html__('Today', 'event_espresso'), |
|
335 | - 'target' => '', |
|
336 | - 'class' => $this->menu_class, |
|
337 | - ), |
|
338 | - ) |
|
339 | - ); |
|
340 | - } |
|
341 | - } |
|
342 | - |
|
343 | - |
|
344 | - /** |
|
345 | - * @return void |
|
346 | - */ |
|
347 | - private function addEventsViewThisMonth() |
|
348 | - { |
|
349 | - if ($this->capabilities->current_user_can( |
|
350 | - 'ee_read_events', |
|
351 | - 'ee_admin_bar_menu_espresso-toolbar-events-month' |
|
352 | - )) { |
|
353 | - $this->admin_bar->add_menu( |
|
354 | - array( |
|
355 | - 'id' => 'espresso-toolbar-events-month', |
|
356 | - 'parent' => 'espresso-toolbar-events', |
|
357 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
358 | - . esc_html__('This Month', 'event_espresso'), |
|
359 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
360 | - array( |
|
361 | - 'action' => 'default', |
|
362 | - 'status' => 'month', |
|
363 | - ), |
|
364 | - $this->events_admin_url |
|
365 | - ), |
|
366 | - 'meta' => array( |
|
367 | - 'title' => esc_html__('This Month', 'event_espresso'), |
|
368 | - 'target' => '', |
|
369 | - 'class' => $this->menu_class, |
|
370 | - ), |
|
371 | - ) |
|
372 | - ); |
|
373 | - } |
|
374 | - } |
|
375 | - |
|
376 | - |
|
377 | - /** |
|
378 | - * @return void |
|
379 | - */ |
|
380 | - private function addRegistrationSubMenu() |
|
381 | - { |
|
382 | - if ($this->capabilities->current_user_can( |
|
383 | - 'ee_read_registrations', |
|
384 | - 'ee_admin_bar_menu_espresso-toolbar-registrations' |
|
385 | - )) { |
|
386 | - $this->admin_bar->add_menu( |
|
387 | - array( |
|
388 | - 'id' => 'espresso-toolbar-registrations', |
|
389 | - 'parent' => 'espresso-toolbar', |
|
390 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
391 | - . esc_html__('Registrations', 'event_espresso'), |
|
392 | - 'href' => $this->reg_admin_url, |
|
393 | - 'meta' => array( |
|
394 | - 'title' => esc_html__('Registrations', 'event_espresso'), |
|
395 | - 'target' => '', |
|
396 | - 'class' => $this->menu_class, |
|
397 | - ), |
|
398 | - ) |
|
399 | - ); |
|
400 | - } |
|
401 | - } |
|
402 | - |
|
403 | - |
|
404 | - /** |
|
405 | - * @return void |
|
406 | - */ |
|
407 | - private function addRegistrationOverviewToday() |
|
408 | - { |
|
409 | - if ($this->capabilities->current_user_can( |
|
410 | - 'ee_read_registrations', |
|
411 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-today' |
|
412 | - )) { |
|
413 | - $this->admin_bar->add_menu( |
|
414 | - array( |
|
415 | - 'id' => 'espresso-toolbar-registrations-today', |
|
416 | - 'parent' => 'espresso-toolbar-registrations', |
|
417 | - 'title' => esc_html__('Today', 'event_espresso'), |
|
418 | - 'href' => '', |
|
419 | - 'meta' => array( |
|
420 | - 'title' => esc_html__('Today', 'event_espresso'), |
|
421 | - 'target' => '', |
|
422 | - 'class' => $this->menu_class, |
|
423 | - ), |
|
424 | - ) |
|
425 | - ); |
|
426 | - } |
|
427 | - } |
|
428 | - |
|
429 | - |
|
430 | - /** |
|
431 | - * @return void |
|
432 | - */ |
|
433 | - private function addRegistrationOverviewTodayApproved() |
|
434 | - { |
|
435 | - if ($this->capabilities->current_user_can( |
|
436 | - 'ee_read_registrations', |
|
437 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-today-approved' |
|
438 | - )) { |
|
439 | - $this->admin_bar->add_menu( |
|
440 | - array( |
|
441 | - 'id' => 'espresso-toolbar-registrations-today-approved', |
|
442 | - 'parent' => 'espresso-toolbar-registrations', |
|
443 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
444 | - . esc_html__('Approved', 'event_espresso'), |
|
445 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
446 | - array( |
|
447 | - 'action' => 'default', |
|
448 | - 'status' => 'today', |
|
449 | - '_reg_status' => EEM_Registration::status_id_approved, |
|
450 | - ), |
|
451 | - $this->reg_admin_url |
|
452 | - ), |
|
453 | - 'meta' => array( |
|
454 | - 'title' => esc_html__('Approved', 'event_espresso'), |
|
455 | - 'target' => '', |
|
456 | - 'class' => $this->menu_class . ' ee-toolbar-icon-approved', |
|
457 | - ), |
|
458 | - ) |
|
459 | - ); |
|
460 | - } |
|
461 | - } |
|
462 | - |
|
463 | - |
|
464 | - /** |
|
465 | - * @return void |
|
466 | - */ |
|
467 | - private function addRegistrationOverviewTodayPendingPayment() |
|
468 | - { |
|
469 | - if ($this->capabilities->current_user_can( |
|
470 | - 'ee_read_registrations', |
|
471 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-today-pending' |
|
472 | - )) { |
|
473 | - $this->admin_bar->add_menu( |
|
474 | - array( |
|
475 | - 'id' => 'espresso-toolbar-registrations-today-pending', |
|
476 | - 'parent' => 'espresso-toolbar-registrations', |
|
477 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
478 | - . esc_html__('Pending', 'event_espresso'), |
|
479 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
480 | - array( |
|
481 | - 'action' => 'default', |
|
482 | - 'status' => 'today', |
|
483 | - '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
484 | - ), |
|
485 | - $this->reg_admin_url |
|
486 | - ), |
|
487 | - 'meta' => array( |
|
488 | - 'title' => esc_html__('Pending Payment', 'event_espresso'), |
|
489 | - 'target' => '', |
|
490 | - 'class' => $this->menu_class . ' ee-toolbar-icon-pending', |
|
491 | - ), |
|
492 | - ) |
|
493 | - ); |
|
494 | - } |
|
495 | - } |
|
496 | - |
|
497 | - |
|
498 | - /** |
|
499 | - * @return void |
|
500 | - */ |
|
501 | - private function addRegistrationOverviewTodayNotApproved() |
|
502 | - { |
|
503 | - if ($this->capabilities->current_user_can( |
|
504 | - 'ee_read_registrations', |
|
505 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-today-not-approved' |
|
506 | - )) { |
|
507 | - $this->admin_bar->add_menu( |
|
508 | - array( |
|
509 | - 'id' => 'espresso-toolbar-registrations-today-not-approved', |
|
510 | - 'parent' => 'espresso-toolbar-registrations', |
|
511 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
512 | - . esc_html__('Not Approved', 'event_espresso'), |
|
513 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
514 | - array( |
|
515 | - 'action' => 'default', |
|
516 | - 'status' => 'today', |
|
517 | - '_reg_status' => EEM_Registration::status_id_not_approved, |
|
518 | - ), |
|
519 | - $this->reg_admin_url |
|
520 | - ), |
|
521 | - 'meta' => array( |
|
522 | - 'title' => esc_html__('Not Approved', 'event_espresso'), |
|
523 | - 'target' => '', |
|
524 | - 'class' => $this->menu_class . ' ee-toolbar-icon-not-approved', |
|
525 | - ), |
|
526 | - ) |
|
527 | - ); |
|
528 | - } |
|
529 | - } |
|
530 | - |
|
531 | - |
|
532 | - /** |
|
533 | - * @return void |
|
534 | - */ |
|
535 | - private function addRegistrationOverviewTodayCancelled() |
|
536 | - { |
|
537 | - if ($this->capabilities->current_user_can( |
|
538 | - 'ee_read_registrations', |
|
539 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-today-cancelled' |
|
540 | - )) { |
|
541 | - $this->admin_bar->add_menu( |
|
542 | - array( |
|
543 | - 'id' => 'espresso-toolbar-registrations-today-cancelled', |
|
544 | - 'parent' => 'espresso-toolbar-registrations', |
|
545 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
546 | - . esc_html__('Cancelled', 'event_espresso'), |
|
547 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
548 | - array( |
|
549 | - 'action' => 'default', |
|
550 | - 'status' => 'today', |
|
551 | - '_reg_status' => EEM_Registration::status_id_cancelled, |
|
552 | - ), |
|
553 | - $this->reg_admin_url |
|
554 | - ), |
|
555 | - 'meta' => array( |
|
556 | - 'title' => esc_html__('Cancelled', 'event_espresso'), |
|
557 | - 'target' => '', |
|
558 | - 'class' => $this->menu_class . ' ee-toolbar-icon-cancelled', |
|
559 | - ), |
|
560 | - ) |
|
561 | - ); |
|
562 | - } |
|
563 | - } |
|
564 | - |
|
565 | - |
|
566 | - /** |
|
567 | - * @return void |
|
568 | - */ |
|
569 | - private function addRegistrationOverviewThisMonth() |
|
570 | - { |
|
571 | - if ($this->capabilities->current_user_can( |
|
572 | - 'ee_read_registrations', |
|
573 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-month' |
|
574 | - )) { |
|
575 | - $this->admin_bar->add_menu( |
|
576 | - array( |
|
577 | - 'id' => 'espresso-toolbar-registrations-month', |
|
578 | - 'parent' => 'espresso-toolbar-registrations', |
|
579 | - 'title' => esc_html__('This Month', 'event_espresso'), |
|
580 | - 'href' => '', // EEH_URL::add_query_args_and_nonce( |
|
581 | - // array( |
|
582 | - // 'action' => 'default', |
|
583 | - // 'status' => 'month' |
|
584 | - // ), |
|
585 | - // $this->reg_admin_url |
|
586 | - // ), |
|
587 | - 'meta' => array( |
|
588 | - 'title' => esc_html__('This Month', 'event_espresso'), |
|
589 | - 'target' => '', |
|
590 | - 'class' => $this->menu_class, |
|
591 | - ), |
|
592 | - ) |
|
593 | - ); |
|
594 | - } |
|
595 | - } |
|
596 | - |
|
597 | - |
|
598 | - /** |
|
599 | - * @return void |
|
600 | - */ |
|
601 | - private function addRegistrationOverviewThisMonthApproved() |
|
602 | - { |
|
603 | - if ($this->capabilities->current_user_can( |
|
604 | - 'ee_read_registrations', |
|
605 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-month-approved' |
|
606 | - )) { |
|
607 | - $this->admin_bar->add_menu( |
|
608 | - array( |
|
609 | - 'id' => 'espresso-toolbar-registrations-month-approved', |
|
610 | - 'parent' => 'espresso-toolbar-registrations', |
|
611 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
612 | - . esc_html__('Approved', 'event_espresso'), |
|
613 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
614 | - array( |
|
615 | - 'action' => 'default', |
|
616 | - 'status' => 'month', |
|
617 | - '_reg_status' => EEM_Registration::status_id_approved, |
|
618 | - ), |
|
619 | - $this->reg_admin_url |
|
620 | - ), |
|
621 | - 'meta' => array( |
|
622 | - 'title' => esc_html__('Approved', 'event_espresso'), |
|
623 | - 'target' => '', |
|
624 | - 'class' => $this->menu_class . ' ee-toolbar-icon-approved', |
|
625 | - ), |
|
626 | - ) |
|
627 | - ); |
|
628 | - } |
|
629 | - } |
|
630 | - |
|
631 | - |
|
632 | - /** |
|
633 | - * @return void |
|
634 | - */ |
|
635 | - private function addRegistrationOverviewThisMonthPending() |
|
636 | - { |
|
637 | - if ($this->capabilities->current_user_can( |
|
638 | - 'ee_read_registrations', |
|
639 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-month-pending' |
|
640 | - )) { |
|
641 | - $this->admin_bar->add_menu( |
|
642 | - array( |
|
643 | - 'id' => 'espresso-toolbar-registrations-month-pending', |
|
644 | - 'parent' => 'espresso-toolbar-registrations', |
|
645 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
646 | - . esc_html__('Pending', 'event_espresso'), |
|
647 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
648 | - array( |
|
649 | - 'action' => 'default', |
|
650 | - 'status' => 'month', |
|
651 | - '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
652 | - ), |
|
653 | - $this->reg_admin_url |
|
654 | - ), |
|
655 | - 'meta' => array( |
|
656 | - 'title' => esc_html__('Pending', 'event_espresso'), |
|
657 | - 'target' => '', |
|
658 | - 'class' => $this->menu_class . ' ee-toolbar-icon-pending', |
|
659 | - ), |
|
660 | - ) |
|
661 | - ); |
|
662 | - } |
|
663 | - } |
|
664 | - |
|
665 | - |
|
666 | - /** |
|
667 | - * @return void |
|
668 | - */ |
|
669 | - private function addRegistrationOverviewThisMonthNotApproved() |
|
670 | - { |
|
671 | - if ($this->capabilities->current_user_can( |
|
672 | - 'ee_read_registrations', |
|
673 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-month-not-approved' |
|
674 | - )) { |
|
675 | - $this->admin_bar->add_menu( |
|
676 | - array( |
|
677 | - 'id' => 'espresso-toolbar-registrations-month-not-approved', |
|
678 | - 'parent' => 'espresso-toolbar-registrations', |
|
679 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
680 | - . esc_html__('Not Approved', 'event_espresso'), |
|
681 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
682 | - array( |
|
683 | - 'action' => 'default', |
|
684 | - 'status' => 'month', |
|
685 | - '_reg_status' => EEM_Registration::status_id_not_approved, |
|
686 | - ), |
|
687 | - $this->reg_admin_url |
|
688 | - ), |
|
689 | - 'meta' => array( |
|
690 | - 'title' => esc_html__('Not Approved', 'event_espresso'), |
|
691 | - 'target' => '', |
|
692 | - 'class' => $this->menu_class . ' ee-toolbar-icon-not-approved', |
|
693 | - ), |
|
694 | - ) |
|
695 | - ); |
|
696 | - } |
|
697 | - } |
|
698 | - |
|
699 | - |
|
700 | - /** |
|
701 | - * @return void |
|
702 | - */ |
|
703 | - private function addRegistrationOverviewThisMonthCancelled() |
|
704 | - { |
|
705 | - if ($this->capabilities->current_user_can( |
|
706 | - 'ee_read_registrations', |
|
707 | - 'ee_admin_bar_menu_espresso-toolbar-registrations-month-cancelled' |
|
708 | - )) { |
|
709 | - $this->admin_bar->add_menu( |
|
710 | - array( |
|
711 | - 'id' => 'espresso-toolbar-registrations-month-cancelled', |
|
712 | - 'parent' => 'espresso-toolbar-registrations', |
|
713 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
714 | - . esc_html__('Cancelled', 'event_espresso'), |
|
715 | - 'href' => EEH_URL::add_query_args_and_nonce( |
|
716 | - array( |
|
717 | - 'action' => 'default', |
|
718 | - 'status' => 'month', |
|
719 | - '_reg_status' => EEM_Registration::status_id_cancelled, |
|
720 | - ), |
|
721 | - $this->reg_admin_url |
|
722 | - ), |
|
723 | - 'meta' => array( |
|
724 | - 'title' => esc_html__('Cancelled', 'event_espresso'), |
|
725 | - 'target' => '', |
|
726 | - 'class' => $this->menu_class . ' ee-toolbar-icon-cancelled', |
|
727 | - ), |
|
728 | - ) |
|
729 | - ); |
|
730 | - } |
|
731 | - } |
|
732 | - |
|
733 | - |
|
734 | - /** |
|
735 | - * @return void |
|
736 | - */ |
|
737 | - private function addExtensionsAndServices() |
|
738 | - { |
|
739 | - if ($this->capabilities->current_user_can( |
|
740 | - 'ee_read_ee', |
|
741 | - 'ee_admin_bar_menu_espresso-toolbar-extensions-and-services' |
|
742 | - )) { |
|
743 | - $this->admin_bar->add_menu( |
|
744 | - array( |
|
745 | - 'id' => 'espresso-toolbar-extensions-and-services', |
|
746 | - 'parent' => 'espresso-toolbar', |
|
747 | - 'title' => '<span class="ee-toolbar-icon"></span>' |
|
748 | - . esc_html__('Extensions & Services', 'event_espresso'), |
|
749 | - 'href' => admin_url('admin.php?page=espresso_packages'), |
|
750 | - 'meta' => array( |
|
751 | - 'title' => esc_html__('Extensions & Services', 'event_espresso'), |
|
752 | - 'target' => '', |
|
753 | - 'class' => $this->menu_class, |
|
754 | - ), |
|
755 | - ) |
|
756 | - ); |
|
757 | - } |
|
758 | - } |
|
22 | + /** |
|
23 | + * @var WP_Admin_Bar $admin_bar |
|
24 | + */ |
|
25 | + private $admin_bar; |
|
26 | + |
|
27 | + /** |
|
28 | + * @var EE_Capabilities $capabilities |
|
29 | + */ |
|
30 | + private $capabilities; |
|
31 | + |
|
32 | + /** |
|
33 | + * @var string $events_admin_url |
|
34 | + */ |
|
35 | + private $events_admin_url; |
|
36 | + |
|
37 | + /** |
|
38 | + * @var string $menu_class |
|
39 | + */ |
|
40 | + private $menu_class = 'espresso_menu_item_class'; |
|
41 | + |
|
42 | + /** |
|
43 | + * @var string $reg_admin_url |
|
44 | + */ |
|
45 | + private $reg_admin_url; |
|
46 | + |
|
47 | + |
|
48 | + /** |
|
49 | + * AdminToolBar constructor. |
|
50 | + * |
|
51 | + * @param EE_Capabilities $capabilities |
|
52 | + */ |
|
53 | + public function __construct(EE_Capabilities $capabilities) |
|
54 | + { |
|
55 | + $this->capabilities = $capabilities; |
|
56 | + add_action('admin_bar_menu', array($this, 'espressoToolbarItems'), 100); |
|
57 | + $this->enqueueAssets(); |
|
58 | + } |
|
59 | + |
|
60 | + |
|
61 | + /** |
|
62 | + * espresso_toolbar_items |
|
63 | + * |
|
64 | + * @access public |
|
65 | + * @param WP_Admin_Bar $admin_bar |
|
66 | + * @return void |
|
67 | + */ |
|
68 | + public function espressoToolbarItems(WP_Admin_Bar $admin_bar) |
|
69 | + { |
|
70 | + // if its an AJAX request, or user is NOT an admin, or in full M-Mode |
|
71 | + if (defined('DOING_AJAX') |
|
72 | + || ! $this->capabilities->current_user_can('ee_read_ee', 'ee_admin_bar_menu_top_level') |
|
73 | + || EE_Maintenance_Mode::instance()->level() === EE_Maintenance_Mode::level_2_complete_maintenance |
|
74 | + ) { |
|
75 | + return; |
|
76 | + } |
|
77 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
78 | + $this->admin_bar = $admin_bar; |
|
79 | + // we don't use the constants EVENTS_ADMIN_URL or REG_ADMIN_URL |
|
80 | + // because they're only defined in each of their respective constructors |
|
81 | + // and this might be a frontend request, in which case they aren't available |
|
82 | + $this->events_admin_url = admin_url('admin.php?page=espresso_events'); |
|
83 | + $this->reg_admin_url = admin_url('admin.php?page=espresso_registrations'); |
|
84 | + // now let's add all of the menu items |
|
85 | + $this->addTopLevelMenu(); |
|
86 | + $this->addEventsSubMenu(); |
|
87 | + $this->addEventsAddEditHeader(); |
|
88 | + $this->addEventsAddNew(); |
|
89 | + $this->addEventsEditCurrentEvent(); |
|
90 | + $this->addEventsViewHeader(); |
|
91 | + $this->addEventsViewAll(); |
|
92 | + $this->addEventsViewToday(); |
|
93 | + $this->addEventsViewThisMonth(); |
|
94 | + $this->addRegistrationSubMenu(); |
|
95 | + $this->addRegistrationOverviewToday(); |
|
96 | + $this->addRegistrationOverviewTodayApproved(); |
|
97 | + $this->addRegistrationOverviewTodayPendingPayment(); |
|
98 | + $this->addRegistrationOverviewTodayNotApproved(); |
|
99 | + $this->addRegistrationOverviewTodayCancelled(); |
|
100 | + $this->addRegistrationOverviewThisMonth(); |
|
101 | + $this->addRegistrationOverviewThisMonthApproved(); |
|
102 | + $this->addRegistrationOverviewThisMonthPending(); |
|
103 | + $this->addRegistrationOverviewThisMonthNotApproved(); |
|
104 | + $this->addRegistrationOverviewThisMonthCancelled(); |
|
105 | + $this->addExtensionsAndServices(); |
|
106 | + } |
|
107 | + |
|
108 | + |
|
109 | + /** |
|
110 | + * @return void |
|
111 | + */ |
|
112 | + private function enqueueAssets() |
|
113 | + { |
|
114 | + wp_register_style( |
|
115 | + 'espresso-admin-toolbar', |
|
116 | + EE_GLOBAL_ASSETS_URL . 'css/espresso-admin-toolbar.css', |
|
117 | + array('dashicons'), |
|
118 | + EVENT_ESPRESSO_VERSION |
|
119 | + ); |
|
120 | + wp_enqueue_style('espresso-admin-toolbar'); |
|
121 | + } |
|
122 | + |
|
123 | + |
|
124 | + /** |
|
125 | + * @return void |
|
126 | + */ |
|
127 | + private function addTopLevelMenu() |
|
128 | + { |
|
129 | + $this->admin_bar->add_menu( |
|
130 | + array( |
|
131 | + 'id' => 'espresso-toolbar', |
|
132 | + 'title' => '<span class="ee-icon ee-icon-ee-cup-thick ee-icon-size-20"></span><span class="ab-label">' |
|
133 | + . esc_html_x('Event Espresso', 'admin bar menu group label', 'event_espresso') |
|
134 | + . '</span>', |
|
135 | + 'href' => $this->events_admin_url, |
|
136 | + 'meta' => array( |
|
137 | + 'title' => esc_html__('Event Espresso', 'event_espresso'), |
|
138 | + 'class' => $this->menu_class . 'first', |
|
139 | + ), |
|
140 | + ) |
|
141 | + ); |
|
142 | + } |
|
143 | + |
|
144 | + |
|
145 | + /** |
|
146 | + * @return void |
|
147 | + */ |
|
148 | + private function addEventsSubMenu() |
|
149 | + { |
|
150 | + if ($this->capabilities->current_user_can( |
|
151 | + 'ee_read_events', |
|
152 | + 'ee_admin_bar_menu_espresso-toolbar-events' |
|
153 | + ) |
|
154 | + ) { |
|
155 | + $this->admin_bar->add_menu( |
|
156 | + array( |
|
157 | + 'id' => 'espresso-toolbar-events', |
|
158 | + 'parent' => 'espresso-toolbar', |
|
159 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
160 | + . esc_html__('Events', 'event_espresso'), |
|
161 | + 'href' => $this->events_admin_url, |
|
162 | + 'meta' => array( |
|
163 | + 'title' => esc_html__('Events', 'event_espresso'), |
|
164 | + 'target' => '', |
|
165 | + 'class' => $this->menu_class, |
|
166 | + ), |
|
167 | + ) |
|
168 | + ); |
|
169 | + } |
|
170 | + } |
|
171 | + |
|
172 | + |
|
173 | + /** |
|
174 | + * @return void |
|
175 | + */ |
|
176 | + private function addEventsAddEditHeader() |
|
177 | + { |
|
178 | + if ($this->capabilities->current_user_can( |
|
179 | + 'ee_read_events', |
|
180 | + 'ee_admin_bar_menu_espresso-toolbar-events-view' |
|
181 | + ) |
|
182 | + ) { |
|
183 | + $this->admin_bar->add_menu( |
|
184 | + array( |
|
185 | + 'id' => 'espresso-toolbar-events-add-edit', |
|
186 | + 'parent' => 'espresso-toolbar-events', |
|
187 | + 'title' => esc_html__('Add / Edit', 'event_espresso'), |
|
188 | + 'href' => '', |
|
189 | + ) |
|
190 | + ); |
|
191 | + } |
|
192 | + } |
|
193 | + |
|
194 | + |
|
195 | + /** |
|
196 | + * @return void |
|
197 | + */ |
|
198 | + private function addEventsAddNew() |
|
199 | + { |
|
200 | + if ($this->capabilities->current_user_can( |
|
201 | + 'ee_edit_events', |
|
202 | + 'ee_admin_bar_menu_espresso-toolbar-events-new' |
|
203 | + )) { |
|
204 | + $this->admin_bar->add_menu( |
|
205 | + array( |
|
206 | + 'id' => 'espresso-toolbar-events-new', |
|
207 | + 'parent' => 'espresso-toolbar-events', |
|
208 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
209 | + . esc_html__('Add New', 'event_espresso'), |
|
210 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
211 | + array('action' => 'create_new'), |
|
212 | + $this->events_admin_url |
|
213 | + ), |
|
214 | + 'meta' => array( |
|
215 | + 'title' => esc_html__('Add New', 'event_espresso'), |
|
216 | + 'target' => '', |
|
217 | + 'class' => $this->menu_class, |
|
218 | + ), |
|
219 | + ) |
|
220 | + ); |
|
221 | + } |
|
222 | + } |
|
223 | + |
|
224 | + |
|
225 | + /** |
|
226 | + * @return void |
|
227 | + */ |
|
228 | + private function addEventsEditCurrentEvent() |
|
229 | + { |
|
230 | + if (is_single() && (get_post_type() === 'espresso_events')) { |
|
231 | + // Current post |
|
232 | + global $post; |
|
233 | + if ($this->capabilities->current_user_can( |
|
234 | + 'ee_edit_event', |
|
235 | + 'ee_admin_bar_menu_espresso-toolbar-events-edit', |
|
236 | + $post->ID |
|
237 | + )) { |
|
238 | + $this->admin_bar->add_menu( |
|
239 | + array( |
|
240 | + 'id' => 'espresso-toolbar-events-edit', |
|
241 | + 'parent' => 'espresso-toolbar-events', |
|
242 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
243 | + . esc_html__('Edit Event', 'event_espresso'), |
|
244 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
245 | + array( |
|
246 | + 'action' => 'edit', |
|
247 | + 'post' => $post->ID, |
|
248 | + ), |
|
249 | + $this->events_admin_url |
|
250 | + ), |
|
251 | + 'meta' => array( |
|
252 | + 'title' => esc_html__('Edit Event', 'event_espresso'), |
|
253 | + 'target' => '', |
|
254 | + 'class' => $this->menu_class, |
|
255 | + ), |
|
256 | + ) |
|
257 | + ); |
|
258 | + } |
|
259 | + } |
|
260 | + } |
|
261 | + |
|
262 | + |
|
263 | + /** |
|
264 | + * @return void |
|
265 | + */ |
|
266 | + private function addEventsViewHeader() |
|
267 | + { |
|
268 | + if ($this->capabilities->current_user_can( |
|
269 | + 'ee_read_events', |
|
270 | + 'ee_admin_bar_menu_espresso-toolbar-events-view' |
|
271 | + )) { |
|
272 | + $this->admin_bar->add_menu( |
|
273 | + array( |
|
274 | + 'id' => 'espresso-toolbar-events-view', |
|
275 | + 'parent' => 'espresso-toolbar-events', |
|
276 | + 'title' => esc_html__('View', 'event_espresso'), |
|
277 | + 'href' => '', |
|
278 | + ) |
|
279 | + ); |
|
280 | + } |
|
281 | + } |
|
282 | + |
|
283 | + |
|
284 | + /** |
|
285 | + * @return void |
|
286 | + */ |
|
287 | + private function addEventsViewAll() |
|
288 | + { |
|
289 | + if ($this->capabilities->current_user_can( |
|
290 | + 'ee_read_events', |
|
291 | + 'ee_admin_bar_menu_espresso-toolbar-events-all' |
|
292 | + )) { |
|
293 | + $this->admin_bar->add_menu( |
|
294 | + array( |
|
295 | + 'id' => 'espresso-toolbar-events-all', |
|
296 | + 'parent' => 'espresso-toolbar-events', |
|
297 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
298 | + . esc_html__('All', 'event_espresso'), |
|
299 | + 'href' => $this->events_admin_url, |
|
300 | + 'meta' => array( |
|
301 | + 'title' => esc_html__('All', 'event_espresso'), |
|
302 | + 'target' => '', |
|
303 | + 'class' => $this->menu_class, |
|
304 | + ), |
|
305 | + ) |
|
306 | + ); |
|
307 | + } |
|
308 | + } |
|
309 | + |
|
310 | + |
|
311 | + /** |
|
312 | + * @return void |
|
313 | + */ |
|
314 | + private function addEventsViewToday() |
|
315 | + { |
|
316 | + if ($this->capabilities->current_user_can( |
|
317 | + 'ee_read_events', |
|
318 | + 'ee_admin_bar_menu_espresso-toolbar-events-today' |
|
319 | + )) { |
|
320 | + $this->admin_bar->add_menu( |
|
321 | + array( |
|
322 | + 'id' => 'espresso-toolbar-events-today', |
|
323 | + 'parent' => 'espresso-toolbar-events', |
|
324 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
325 | + . esc_html__('Today', 'event_espresso'), |
|
326 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
327 | + array( |
|
328 | + 'action' => 'default', |
|
329 | + 'status' => 'today', |
|
330 | + ), |
|
331 | + $this->events_admin_url |
|
332 | + ), |
|
333 | + 'meta' => array( |
|
334 | + 'title' => esc_html__('Today', 'event_espresso'), |
|
335 | + 'target' => '', |
|
336 | + 'class' => $this->menu_class, |
|
337 | + ), |
|
338 | + ) |
|
339 | + ); |
|
340 | + } |
|
341 | + } |
|
342 | + |
|
343 | + |
|
344 | + /** |
|
345 | + * @return void |
|
346 | + */ |
|
347 | + private function addEventsViewThisMonth() |
|
348 | + { |
|
349 | + if ($this->capabilities->current_user_can( |
|
350 | + 'ee_read_events', |
|
351 | + 'ee_admin_bar_menu_espresso-toolbar-events-month' |
|
352 | + )) { |
|
353 | + $this->admin_bar->add_menu( |
|
354 | + array( |
|
355 | + 'id' => 'espresso-toolbar-events-month', |
|
356 | + 'parent' => 'espresso-toolbar-events', |
|
357 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
358 | + . esc_html__('This Month', 'event_espresso'), |
|
359 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
360 | + array( |
|
361 | + 'action' => 'default', |
|
362 | + 'status' => 'month', |
|
363 | + ), |
|
364 | + $this->events_admin_url |
|
365 | + ), |
|
366 | + 'meta' => array( |
|
367 | + 'title' => esc_html__('This Month', 'event_espresso'), |
|
368 | + 'target' => '', |
|
369 | + 'class' => $this->menu_class, |
|
370 | + ), |
|
371 | + ) |
|
372 | + ); |
|
373 | + } |
|
374 | + } |
|
375 | + |
|
376 | + |
|
377 | + /** |
|
378 | + * @return void |
|
379 | + */ |
|
380 | + private function addRegistrationSubMenu() |
|
381 | + { |
|
382 | + if ($this->capabilities->current_user_can( |
|
383 | + 'ee_read_registrations', |
|
384 | + 'ee_admin_bar_menu_espresso-toolbar-registrations' |
|
385 | + )) { |
|
386 | + $this->admin_bar->add_menu( |
|
387 | + array( |
|
388 | + 'id' => 'espresso-toolbar-registrations', |
|
389 | + 'parent' => 'espresso-toolbar', |
|
390 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
391 | + . esc_html__('Registrations', 'event_espresso'), |
|
392 | + 'href' => $this->reg_admin_url, |
|
393 | + 'meta' => array( |
|
394 | + 'title' => esc_html__('Registrations', 'event_espresso'), |
|
395 | + 'target' => '', |
|
396 | + 'class' => $this->menu_class, |
|
397 | + ), |
|
398 | + ) |
|
399 | + ); |
|
400 | + } |
|
401 | + } |
|
402 | + |
|
403 | + |
|
404 | + /** |
|
405 | + * @return void |
|
406 | + */ |
|
407 | + private function addRegistrationOverviewToday() |
|
408 | + { |
|
409 | + if ($this->capabilities->current_user_can( |
|
410 | + 'ee_read_registrations', |
|
411 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-today' |
|
412 | + )) { |
|
413 | + $this->admin_bar->add_menu( |
|
414 | + array( |
|
415 | + 'id' => 'espresso-toolbar-registrations-today', |
|
416 | + 'parent' => 'espresso-toolbar-registrations', |
|
417 | + 'title' => esc_html__('Today', 'event_espresso'), |
|
418 | + 'href' => '', |
|
419 | + 'meta' => array( |
|
420 | + 'title' => esc_html__('Today', 'event_espresso'), |
|
421 | + 'target' => '', |
|
422 | + 'class' => $this->menu_class, |
|
423 | + ), |
|
424 | + ) |
|
425 | + ); |
|
426 | + } |
|
427 | + } |
|
428 | + |
|
429 | + |
|
430 | + /** |
|
431 | + * @return void |
|
432 | + */ |
|
433 | + private function addRegistrationOverviewTodayApproved() |
|
434 | + { |
|
435 | + if ($this->capabilities->current_user_can( |
|
436 | + 'ee_read_registrations', |
|
437 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-today-approved' |
|
438 | + )) { |
|
439 | + $this->admin_bar->add_menu( |
|
440 | + array( |
|
441 | + 'id' => 'espresso-toolbar-registrations-today-approved', |
|
442 | + 'parent' => 'espresso-toolbar-registrations', |
|
443 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
444 | + . esc_html__('Approved', 'event_espresso'), |
|
445 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
446 | + array( |
|
447 | + 'action' => 'default', |
|
448 | + 'status' => 'today', |
|
449 | + '_reg_status' => EEM_Registration::status_id_approved, |
|
450 | + ), |
|
451 | + $this->reg_admin_url |
|
452 | + ), |
|
453 | + 'meta' => array( |
|
454 | + 'title' => esc_html__('Approved', 'event_espresso'), |
|
455 | + 'target' => '', |
|
456 | + 'class' => $this->menu_class . ' ee-toolbar-icon-approved', |
|
457 | + ), |
|
458 | + ) |
|
459 | + ); |
|
460 | + } |
|
461 | + } |
|
462 | + |
|
463 | + |
|
464 | + /** |
|
465 | + * @return void |
|
466 | + */ |
|
467 | + private function addRegistrationOverviewTodayPendingPayment() |
|
468 | + { |
|
469 | + if ($this->capabilities->current_user_can( |
|
470 | + 'ee_read_registrations', |
|
471 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-today-pending' |
|
472 | + )) { |
|
473 | + $this->admin_bar->add_menu( |
|
474 | + array( |
|
475 | + 'id' => 'espresso-toolbar-registrations-today-pending', |
|
476 | + 'parent' => 'espresso-toolbar-registrations', |
|
477 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
478 | + . esc_html__('Pending', 'event_espresso'), |
|
479 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
480 | + array( |
|
481 | + 'action' => 'default', |
|
482 | + 'status' => 'today', |
|
483 | + '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
484 | + ), |
|
485 | + $this->reg_admin_url |
|
486 | + ), |
|
487 | + 'meta' => array( |
|
488 | + 'title' => esc_html__('Pending Payment', 'event_espresso'), |
|
489 | + 'target' => '', |
|
490 | + 'class' => $this->menu_class . ' ee-toolbar-icon-pending', |
|
491 | + ), |
|
492 | + ) |
|
493 | + ); |
|
494 | + } |
|
495 | + } |
|
496 | + |
|
497 | + |
|
498 | + /** |
|
499 | + * @return void |
|
500 | + */ |
|
501 | + private function addRegistrationOverviewTodayNotApproved() |
|
502 | + { |
|
503 | + if ($this->capabilities->current_user_can( |
|
504 | + 'ee_read_registrations', |
|
505 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-today-not-approved' |
|
506 | + )) { |
|
507 | + $this->admin_bar->add_menu( |
|
508 | + array( |
|
509 | + 'id' => 'espresso-toolbar-registrations-today-not-approved', |
|
510 | + 'parent' => 'espresso-toolbar-registrations', |
|
511 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
512 | + . esc_html__('Not Approved', 'event_espresso'), |
|
513 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
514 | + array( |
|
515 | + 'action' => 'default', |
|
516 | + 'status' => 'today', |
|
517 | + '_reg_status' => EEM_Registration::status_id_not_approved, |
|
518 | + ), |
|
519 | + $this->reg_admin_url |
|
520 | + ), |
|
521 | + 'meta' => array( |
|
522 | + 'title' => esc_html__('Not Approved', 'event_espresso'), |
|
523 | + 'target' => '', |
|
524 | + 'class' => $this->menu_class . ' ee-toolbar-icon-not-approved', |
|
525 | + ), |
|
526 | + ) |
|
527 | + ); |
|
528 | + } |
|
529 | + } |
|
530 | + |
|
531 | + |
|
532 | + /** |
|
533 | + * @return void |
|
534 | + */ |
|
535 | + private function addRegistrationOverviewTodayCancelled() |
|
536 | + { |
|
537 | + if ($this->capabilities->current_user_can( |
|
538 | + 'ee_read_registrations', |
|
539 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-today-cancelled' |
|
540 | + )) { |
|
541 | + $this->admin_bar->add_menu( |
|
542 | + array( |
|
543 | + 'id' => 'espresso-toolbar-registrations-today-cancelled', |
|
544 | + 'parent' => 'espresso-toolbar-registrations', |
|
545 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
546 | + . esc_html__('Cancelled', 'event_espresso'), |
|
547 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
548 | + array( |
|
549 | + 'action' => 'default', |
|
550 | + 'status' => 'today', |
|
551 | + '_reg_status' => EEM_Registration::status_id_cancelled, |
|
552 | + ), |
|
553 | + $this->reg_admin_url |
|
554 | + ), |
|
555 | + 'meta' => array( |
|
556 | + 'title' => esc_html__('Cancelled', 'event_espresso'), |
|
557 | + 'target' => '', |
|
558 | + 'class' => $this->menu_class . ' ee-toolbar-icon-cancelled', |
|
559 | + ), |
|
560 | + ) |
|
561 | + ); |
|
562 | + } |
|
563 | + } |
|
564 | + |
|
565 | + |
|
566 | + /** |
|
567 | + * @return void |
|
568 | + */ |
|
569 | + private function addRegistrationOverviewThisMonth() |
|
570 | + { |
|
571 | + if ($this->capabilities->current_user_can( |
|
572 | + 'ee_read_registrations', |
|
573 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-month' |
|
574 | + )) { |
|
575 | + $this->admin_bar->add_menu( |
|
576 | + array( |
|
577 | + 'id' => 'espresso-toolbar-registrations-month', |
|
578 | + 'parent' => 'espresso-toolbar-registrations', |
|
579 | + 'title' => esc_html__('This Month', 'event_espresso'), |
|
580 | + 'href' => '', // EEH_URL::add_query_args_and_nonce( |
|
581 | + // array( |
|
582 | + // 'action' => 'default', |
|
583 | + // 'status' => 'month' |
|
584 | + // ), |
|
585 | + // $this->reg_admin_url |
|
586 | + // ), |
|
587 | + 'meta' => array( |
|
588 | + 'title' => esc_html__('This Month', 'event_espresso'), |
|
589 | + 'target' => '', |
|
590 | + 'class' => $this->menu_class, |
|
591 | + ), |
|
592 | + ) |
|
593 | + ); |
|
594 | + } |
|
595 | + } |
|
596 | + |
|
597 | + |
|
598 | + /** |
|
599 | + * @return void |
|
600 | + */ |
|
601 | + private function addRegistrationOverviewThisMonthApproved() |
|
602 | + { |
|
603 | + if ($this->capabilities->current_user_can( |
|
604 | + 'ee_read_registrations', |
|
605 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-month-approved' |
|
606 | + )) { |
|
607 | + $this->admin_bar->add_menu( |
|
608 | + array( |
|
609 | + 'id' => 'espresso-toolbar-registrations-month-approved', |
|
610 | + 'parent' => 'espresso-toolbar-registrations', |
|
611 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
612 | + . esc_html__('Approved', 'event_espresso'), |
|
613 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
614 | + array( |
|
615 | + 'action' => 'default', |
|
616 | + 'status' => 'month', |
|
617 | + '_reg_status' => EEM_Registration::status_id_approved, |
|
618 | + ), |
|
619 | + $this->reg_admin_url |
|
620 | + ), |
|
621 | + 'meta' => array( |
|
622 | + 'title' => esc_html__('Approved', 'event_espresso'), |
|
623 | + 'target' => '', |
|
624 | + 'class' => $this->menu_class . ' ee-toolbar-icon-approved', |
|
625 | + ), |
|
626 | + ) |
|
627 | + ); |
|
628 | + } |
|
629 | + } |
|
630 | + |
|
631 | + |
|
632 | + /** |
|
633 | + * @return void |
|
634 | + */ |
|
635 | + private function addRegistrationOverviewThisMonthPending() |
|
636 | + { |
|
637 | + if ($this->capabilities->current_user_can( |
|
638 | + 'ee_read_registrations', |
|
639 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-month-pending' |
|
640 | + )) { |
|
641 | + $this->admin_bar->add_menu( |
|
642 | + array( |
|
643 | + 'id' => 'espresso-toolbar-registrations-month-pending', |
|
644 | + 'parent' => 'espresso-toolbar-registrations', |
|
645 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
646 | + . esc_html__('Pending', 'event_espresso'), |
|
647 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
648 | + array( |
|
649 | + 'action' => 'default', |
|
650 | + 'status' => 'month', |
|
651 | + '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
652 | + ), |
|
653 | + $this->reg_admin_url |
|
654 | + ), |
|
655 | + 'meta' => array( |
|
656 | + 'title' => esc_html__('Pending', 'event_espresso'), |
|
657 | + 'target' => '', |
|
658 | + 'class' => $this->menu_class . ' ee-toolbar-icon-pending', |
|
659 | + ), |
|
660 | + ) |
|
661 | + ); |
|
662 | + } |
|
663 | + } |
|
664 | + |
|
665 | + |
|
666 | + /** |
|
667 | + * @return void |
|
668 | + */ |
|
669 | + private function addRegistrationOverviewThisMonthNotApproved() |
|
670 | + { |
|
671 | + if ($this->capabilities->current_user_can( |
|
672 | + 'ee_read_registrations', |
|
673 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-month-not-approved' |
|
674 | + )) { |
|
675 | + $this->admin_bar->add_menu( |
|
676 | + array( |
|
677 | + 'id' => 'espresso-toolbar-registrations-month-not-approved', |
|
678 | + 'parent' => 'espresso-toolbar-registrations', |
|
679 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
680 | + . esc_html__('Not Approved', 'event_espresso'), |
|
681 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
682 | + array( |
|
683 | + 'action' => 'default', |
|
684 | + 'status' => 'month', |
|
685 | + '_reg_status' => EEM_Registration::status_id_not_approved, |
|
686 | + ), |
|
687 | + $this->reg_admin_url |
|
688 | + ), |
|
689 | + 'meta' => array( |
|
690 | + 'title' => esc_html__('Not Approved', 'event_espresso'), |
|
691 | + 'target' => '', |
|
692 | + 'class' => $this->menu_class . ' ee-toolbar-icon-not-approved', |
|
693 | + ), |
|
694 | + ) |
|
695 | + ); |
|
696 | + } |
|
697 | + } |
|
698 | + |
|
699 | + |
|
700 | + /** |
|
701 | + * @return void |
|
702 | + */ |
|
703 | + private function addRegistrationOverviewThisMonthCancelled() |
|
704 | + { |
|
705 | + if ($this->capabilities->current_user_can( |
|
706 | + 'ee_read_registrations', |
|
707 | + 'ee_admin_bar_menu_espresso-toolbar-registrations-month-cancelled' |
|
708 | + )) { |
|
709 | + $this->admin_bar->add_menu( |
|
710 | + array( |
|
711 | + 'id' => 'espresso-toolbar-registrations-month-cancelled', |
|
712 | + 'parent' => 'espresso-toolbar-registrations', |
|
713 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
714 | + . esc_html__('Cancelled', 'event_espresso'), |
|
715 | + 'href' => EEH_URL::add_query_args_and_nonce( |
|
716 | + array( |
|
717 | + 'action' => 'default', |
|
718 | + 'status' => 'month', |
|
719 | + '_reg_status' => EEM_Registration::status_id_cancelled, |
|
720 | + ), |
|
721 | + $this->reg_admin_url |
|
722 | + ), |
|
723 | + 'meta' => array( |
|
724 | + 'title' => esc_html__('Cancelled', 'event_espresso'), |
|
725 | + 'target' => '', |
|
726 | + 'class' => $this->menu_class . ' ee-toolbar-icon-cancelled', |
|
727 | + ), |
|
728 | + ) |
|
729 | + ); |
|
730 | + } |
|
731 | + } |
|
732 | + |
|
733 | + |
|
734 | + /** |
|
735 | + * @return void |
|
736 | + */ |
|
737 | + private function addExtensionsAndServices() |
|
738 | + { |
|
739 | + if ($this->capabilities->current_user_can( |
|
740 | + 'ee_read_ee', |
|
741 | + 'ee_admin_bar_menu_espresso-toolbar-extensions-and-services' |
|
742 | + )) { |
|
743 | + $this->admin_bar->add_menu( |
|
744 | + array( |
|
745 | + 'id' => 'espresso-toolbar-extensions-and-services', |
|
746 | + 'parent' => 'espresso-toolbar', |
|
747 | + 'title' => '<span class="ee-toolbar-icon"></span>' |
|
748 | + . esc_html__('Extensions & Services', 'event_espresso'), |
|
749 | + 'href' => admin_url('admin.php?page=espresso_packages'), |
|
750 | + 'meta' => array( |
|
751 | + 'title' => esc_html__('Extensions & Services', 'event_espresso'), |
|
752 | + 'target' => '', |
|
753 | + 'class' => $this->menu_class, |
|
754 | + ), |
|
755 | + ) |
|
756 | + ); |
|
757 | + } |
|
758 | + } |
|
759 | 759 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * can_use_espresso_conditionals |
131 | 131 | * tests whether the Espresso Conditional tags like is_espresso_event_single() can be called |
132 | 132 | * |
133 | - * @param $conditional_tag |
|
133 | + * @param string $conditional_tag |
|
134 | 134 | * @return bool |
135 | 135 | */ |
136 | 136 | function can_use_espresso_conditionals( $conditional_tag ) { |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | if ( ! function_exists( 'espresso_ticket_selector' )) { |
202 | 202 | /** |
203 | 203 | * espresso_ticket_selector |
204 | - * @param null $event |
|
204 | + * @param EE_Event $event |
|
205 | 205 | */ |
206 | 206 | function espresso_ticket_selector( $event = NULL ) { |
207 | 207 | if ( ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) { |
@@ -842,7 +842,7 @@ discard block |
||
842 | 842 | /** |
843 | 843 | * espresso_event_venues |
844 | 844 | * |
845 | - * @return array all venues related to an event |
|
845 | + * @return EE_Venue[] all venues related to an event |
|
846 | 846 | */ |
847 | 847 | function espresso_event_venues() { |
848 | 848 | return EEH_Venue_View::get_event_venues(); |
@@ -875,7 +875,7 @@ discard block |
||
875 | 875 | * |
876 | 876 | * @param int $VNU_ID optional, the venue id to check. |
877 | 877 | * |
878 | - * @return bool | null |
|
878 | + * @return null|boolean | null |
|
879 | 879 | */ |
880 | 880 | function espresso_is_venue_private( $VNU_ID = 0 ) { |
881 | 881 | return EEH_Venue_View::is_venue_private( $VNU_ID ); |
@@ -889,7 +889,7 @@ discard block |
||
889 | 889 | * returns true or false if a venue is password protected or not |
890 | 890 | * |
891 | 891 | * @param int $VNU_ID optional, the venue id to check. |
892 | - * @return string |
|
892 | + * @return boolean |
|
893 | 893 | */ |
894 | 894 | function espresso_venue_is_password_protected( $VNU_ID = 0 ) { |
895 | 895 | EE_Registry::instance()->load_helper( 'Venue_View' ); |
@@ -206,7 +206,7 @@ |
||
206 | 206 | function espresso_ticket_selector( $event = NULL ) { |
207 | 207 | if ( ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) { |
208 | 208 | espresso_load_ticket_selector(); |
209 | - \EED_Ticket_Selector::set_definitions(); |
|
209 | + \EED_Ticket_Selector::set_definitions(); |
|
210 | 210 | echo EED_Ticket_Selector::display_ticket_selector( $event ); |
211 | 211 | } |
212 | 212 | } |
@@ -14,12 +14,12 @@ discard block |
||
14 | 14 | * @param int | \EE_Event $event |
15 | 15 | * @return bool |
16 | 16 | */ |
17 | -function is_espresso_event( $event = NULL ) { |
|
18 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
17 | +function is_espresso_event($event = NULL) { |
|
18 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
19 | 19 | // extract EE_Event object from passed param regardless of what it is (within reason of course) |
20 | - $event = EEH_Event_View::get_event( $event ); |
|
20 | + $event = EEH_Event_View::get_event($event); |
|
21 | 21 | // do we have a valid event ? |
22 | - return $event instanceof EE_Event ? TRUE : FALSE; |
|
22 | + return $event instanceof EE_Event ? TRUE : FALSE; |
|
23 | 23 | } |
24 | 24 | return FALSE; |
25 | 25 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @return bool |
32 | 32 | */ |
33 | 33 | function is_espresso_event_single() { |
34 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
34 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
35 | 35 | global $wp_query; |
36 | 36 | // return conditionals set by CPTs |
37 | 37 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_single : FALSE; |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * @return bool |
47 | 47 | */ |
48 | 48 | function is_espresso_event_archive() { |
49 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
49 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
50 | 50 | global $wp_query; |
51 | 51 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_archive : FALSE; |
52 | 52 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * @return bool |
61 | 61 | */ |
62 | 62 | function is_espresso_event_taxonomy() { |
63 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
63 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
64 | 64 | global $wp_query; |
65 | 65 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_taxonomy : FALSE; |
66 | 66 | } |
@@ -74,10 +74,10 @@ discard block |
||
74 | 74 | * @param int | \EE_Venue $venue |
75 | 75 | * @return bool |
76 | 76 | */ |
77 | -function is_espresso_venue( $venue = NULL ) { |
|
78 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
77 | +function is_espresso_venue($venue = NULL) { |
|
78 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
79 | 79 | // extract EE_Venue object from passed param regardless of what it is (within reason of course) |
80 | - $venue = EEH_Venue_View::get_venue( $venue, FALSE ); |
|
80 | + $venue = EEH_Venue_View::get_venue($venue, FALSE); |
|
81 | 81 | // do we have a valid event ? |
82 | 82 | return $venue instanceof EE_Venue ? TRUE : FALSE; |
83 | 83 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * @return bool |
92 | 92 | */ |
93 | 93 | function is_espresso_venue_single() { |
94 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
94 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
95 | 95 | global $wp_query; |
96 | 96 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_single : FALSE; |
97 | 97 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | * @return bool |
106 | 106 | */ |
107 | 107 | function is_espresso_venue_archive() { |
108 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
108 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
109 | 109 | global $wp_query; |
110 | 110 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_archive : FALSE; |
111 | 111 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | * @return bool |
120 | 120 | */ |
121 | 121 | function is_espresso_venue_taxonomy() { |
122 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
122 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
123 | 123 | global $wp_query; |
124 | 124 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_taxonomy : FALSE; |
125 | 125 | } |
@@ -133,12 +133,12 @@ discard block |
||
133 | 133 | * @param $conditional_tag |
134 | 134 | * @return bool |
135 | 135 | */ |
136 | -function can_use_espresso_conditionals( $conditional_tag ) { |
|
137 | - if ( ! did_action( 'AHEE__EE_System__initialize' )) { |
|
136 | +function can_use_espresso_conditionals($conditional_tag) { |
|
137 | + if ( ! did_action('AHEE__EE_System__initialize')) { |
|
138 | 138 | EE_Error::doing_it_wrong( |
139 | 139 | __FUNCTION__, |
140 | 140 | sprintf( |
141 | - esc_html__( 'The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.','event_espresso'), |
|
141 | + esc_html__('The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.', 'event_espresso'), |
|
142 | 142 | $conditional_tag |
143 | 143 | ), |
144 | 144 | '4.4.0' |
@@ -153,13 +153,13 @@ discard block |
||
153 | 153 | |
154 | 154 | /*************************** Event Queries ***************************/ |
155 | 155 | |
156 | -if ( ! function_exists( 'espresso_get_events' )) { |
|
156 | +if ( ! function_exists('espresso_get_events')) { |
|
157 | 157 | /** |
158 | 158 | * espresso_get_events |
159 | 159 | * @param array $params |
160 | 160 | * @return array |
161 | 161 | */ |
162 | - function espresso_get_events( $params = array() ) { |
|
162 | + function espresso_get_events($params = array()) { |
|
163 | 163 | //set default params |
164 | 164 | $default_espresso_events_params = array( |
165 | 165 | 'limit' => 10, |
@@ -170,18 +170,18 @@ discard block |
||
170 | 170 | 'sort' => 'ASC' |
171 | 171 | ); |
172 | 172 | // allow the defaults to be filtered |
173 | - $default_espresso_events_params = apply_filters( 'espresso_get_events__default_espresso_events_params', $default_espresso_events_params ); |
|
173 | + $default_espresso_events_params = apply_filters('espresso_get_events__default_espresso_events_params', $default_espresso_events_params); |
|
174 | 174 | // grab params and merge with defaults, then extract |
175 | - $params = array_merge( $default_espresso_events_params, $params ); |
|
175 | + $params = array_merge($default_espresso_events_params, $params); |
|
176 | 176 | // run the query |
177 | - $events_query = new EventEspresso\core\domain\services\wp_queries\EventListQuery( $params ); |
|
177 | + $events_query = new EventEspresso\core\domain\services\wp_queries\EventListQuery($params); |
|
178 | 178 | // assign results to a variable so we can return it |
179 | 179 | $events = $events_query->have_posts() ? $events_query->posts : array(); |
180 | 180 | // but first reset the query and postdata |
181 | 181 | wp_reset_query(); |
182 | 182 | wp_reset_postdata(); |
183 | 183 | EED_Events_Archive::remove_all_events_archive_filters(); |
184 | - unset( $events_query ); |
|
184 | + unset($events_query); |
|
185 | 185 | return $events; |
186 | 186 | } |
187 | 187 | } |
@@ -195,33 +195,33 @@ discard block |
||
195 | 195 | * espresso_load_ticket_selector |
196 | 196 | */ |
197 | 197 | function espresso_load_ticket_selector() { |
198 | - EE_Registry::instance()->load_file( EE_MODULES . 'ticket_selector', 'EED_Ticket_Selector', 'module' ); |
|
198 | + EE_Registry::instance()->load_file(EE_MODULES.'ticket_selector', 'EED_Ticket_Selector', 'module'); |
|
199 | 199 | } |
200 | 200 | |
201 | -if ( ! function_exists( 'espresso_ticket_selector' )) { |
|
201 | +if ( ! function_exists('espresso_ticket_selector')) { |
|
202 | 202 | /** |
203 | 203 | * espresso_ticket_selector |
204 | 204 | * @param null $event |
205 | 205 | */ |
206 | - function espresso_ticket_selector( $event = NULL ) { |
|
207 | - if ( ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) { |
|
206 | + function espresso_ticket_selector($event = NULL) { |
|
207 | + if ( ! apply_filters('FHEE_disable_espresso_ticket_selector', FALSE)) { |
|
208 | 208 | espresso_load_ticket_selector(); |
209 | 209 | \EED_Ticket_Selector::set_definitions(); |
210 | - echo EED_Ticket_Selector::display_ticket_selector( $event ); |
|
210 | + echo EED_Ticket_Selector::display_ticket_selector($event); |
|
211 | 211 | } |
212 | 212 | } |
213 | 213 | } |
214 | 214 | |
215 | 215 | |
216 | - if ( ! function_exists( 'espresso_view_details_btn' )) { |
|
216 | + if ( ! function_exists('espresso_view_details_btn')) { |
|
217 | 217 | /** |
218 | 218 | * espresso_view_details_btn |
219 | 219 | * @param null $event |
220 | 220 | */ |
221 | - function espresso_view_details_btn( $event = NULL ) { |
|
222 | - if ( ! apply_filters( 'FHEE_disable_espresso_view_details_btn', FALSE ) ) { |
|
221 | + function espresso_view_details_btn($event = NULL) { |
|
222 | + if ( ! apply_filters('FHEE_disable_espresso_view_details_btn', FALSE)) { |
|
223 | 223 | espresso_load_ticket_selector(); |
224 | - echo EED_Ticket_Selector::display_ticket_selector( $event, TRUE ); |
|
224 | + echo EED_Ticket_Selector::display_ticket_selector($event, TRUE); |
|
225 | 225 | } |
226 | 226 | } |
227 | 227 | } |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | |
232 | 232 | /*************************** EEH_Event_View ***************************/ |
233 | 233 | |
234 | -if ( ! function_exists( 'espresso_load_event_list_assets' )) { |
|
234 | +if ( ! function_exists('espresso_load_event_list_assets')) { |
|
235 | 235 | /** |
236 | 236 | * espresso_load_event_list_assets |
237 | 237 | * ensures that event list styles and scripts are loaded |
@@ -240,13 +240,13 @@ discard block |
||
240 | 240 | */ |
241 | 241 | function espresso_load_event_list_assets() { |
242 | 242 | $event_list = EED_Events_Archive::instance(); |
243 | - add_action( 'AHEE__EE_System__initialize_last', array( $event_list, 'load_event_list_assets' ), 10 ); |
|
244 | - add_filter( 'FHEE_enable_default_espresso_css', '__return_true' ); |
|
243 | + add_action('AHEE__EE_System__initialize_last', array($event_list, 'load_event_list_assets'), 10); |
|
244 | + add_filter('FHEE_enable_default_espresso_css', '__return_true'); |
|
245 | 245 | } |
246 | 246 | } |
247 | 247 | |
248 | 248 | |
249 | -if ( ! function_exists( 'espresso_event_reg_button' )) { |
|
249 | +if ( ! function_exists('espresso_event_reg_button')) { |
|
250 | 250 | /** |
251 | 251 | * espresso_event_reg_button |
252 | 252 | * returns the "Register Now" button if event is active, |
@@ -258,13 +258,13 @@ discard block |
||
258 | 258 | * @param bool $EVT_ID |
259 | 259 | * @return string |
260 | 260 | */ |
261 | - function espresso_event_reg_button( $btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE ) { |
|
262 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
263 | - if ( ! $event instanceof EE_Event ) { |
|
261 | + function espresso_event_reg_button($btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE) { |
|
262 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
263 | + if ( ! $event instanceof EE_Event) { |
|
264 | 264 | return; |
265 | 265 | } |
266 | 266 | $event_status = $event->get_active_status(); |
267 | - switch ( $event_status ) { |
|
267 | + switch ($event_status) { |
|
268 | 268 | case EE_Datetime::sold_out : |
269 | 269 | $btn_text = esc_html__('Sold Out', 'event_espresso'); |
270 | 270 | $class = 'ee-pink'; |
@@ -284,15 +284,15 @@ discard block |
||
284 | 284 | case EE_Datetime::upcoming : |
285 | 285 | case EE_Datetime::active : |
286 | 286 | default : |
287 | - $btn_text =! empty( $btn_text_if_active ) ? $btn_text_if_active : esc_html__( 'Register Now', 'event_espresso' ); |
|
287 | + $btn_text = ! empty($btn_text_if_active) ? $btn_text_if_active : esc_html__('Register Now', 'event_espresso'); |
|
288 | 288 | $class = 'ee-green'; |
289 | 289 | } |
290 | - if ( $event_status < 1 && ! empty( $btn_text_if_inactive )) { |
|
290 | + if ($event_status < 1 && ! empty($btn_text_if_inactive)) { |
|
291 | 291 | $btn_text = $btn_text_if_inactive; |
292 | 292 | $class = 'ee-grey'; |
293 | 293 | } |
294 | 294 | ?> |
295 | - <a class="ee-button ee-register-button <?php echo $class; ?>" href="<?php espresso_event_link_url( $EVT_ID ); ?>"<?php echo \EED_Events_Archive::link_target(); ?>> |
|
295 | + <a class="ee-button ee-register-button <?php echo $class; ?>" href="<?php espresso_event_link_url($EVT_ID); ?>"<?php echo \EED_Events_Archive::link_target(); ?>> |
|
296 | 296 | <?php echo $btn_text; ?> |
297 | 297 | </a> |
298 | 298 | <?php |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | |
302 | 302 | |
303 | 303 | |
304 | -if ( ! function_exists( 'espresso_display_ticket_selector' )) { |
|
304 | +if ( ! function_exists('espresso_display_ticket_selector')) { |
|
305 | 305 | /** |
306 | 306 | * espresso_display_ticket_selector |
307 | 307 | * whether or not to display the Ticket Selector for an event |
@@ -309,14 +309,14 @@ discard block |
||
309 | 309 | * @param bool $EVT_ID |
310 | 310 | * @return boolean |
311 | 311 | */ |
312 | - function espresso_display_ticket_selector( $EVT_ID = FALSE ) { |
|
313 | - return EEH_Event_View::display_ticket_selector( $EVT_ID ); |
|
312 | + function espresso_display_ticket_selector($EVT_ID = FALSE) { |
|
313 | + return EEH_Event_View::display_ticket_selector($EVT_ID); |
|
314 | 314 | } |
315 | 315 | } |
316 | 316 | |
317 | 317 | |
318 | 318 | |
319 | -if ( ! function_exists( 'espresso_event_status_banner' )) { |
|
319 | +if ( ! function_exists('espresso_event_status_banner')) { |
|
320 | 320 | /** |
321 | 321 | * espresso_event_status |
322 | 322 | * returns a banner showing the event status if it is sold out, expired, or inactive |
@@ -324,13 +324,13 @@ discard block |
||
324 | 324 | * @param bool $EVT_ID |
325 | 325 | * @return string |
326 | 326 | */ |
327 | - function espresso_event_status_banner( $EVT_ID = FALSE ) { |
|
328 | - return EEH_Event_View::event_status( $EVT_ID ); |
|
327 | + function espresso_event_status_banner($EVT_ID = FALSE) { |
|
328 | + return EEH_Event_View::event_status($EVT_ID); |
|
329 | 329 | } |
330 | 330 | } |
331 | 331 | |
332 | 332 | |
333 | -if ( ! function_exists( 'espresso_event_status' )) { |
|
333 | +if ( ! function_exists('espresso_event_status')) { |
|
334 | 334 | /** |
335 | 335 | * espresso_event_status |
336 | 336 | * returns the event status if it is sold out, expired, or inactive |
@@ -339,13 +339,13 @@ discard block |
||
339 | 339 | * @param bool $echo |
340 | 340 | * @return string |
341 | 341 | */ |
342 | - function espresso_event_status( $EVT_ID = 0, $echo = TRUE ) { |
|
343 | - return EEH_Event_View::event_active_status( $EVT_ID, $echo ); |
|
342 | + function espresso_event_status($EVT_ID = 0, $echo = TRUE) { |
|
343 | + return EEH_Event_View::event_active_status($EVT_ID, $echo); |
|
344 | 344 | } |
345 | 345 | } |
346 | 346 | |
347 | 347 | |
348 | -if ( ! function_exists( 'espresso_event_categories' )) { |
|
348 | +if ( ! function_exists('espresso_event_categories')) { |
|
349 | 349 | /** |
350 | 350 | * espresso_event_categories |
351 | 351 | * returns the terms associated with an event |
@@ -355,17 +355,17 @@ discard block |
||
355 | 355 | * @param bool $echo |
356 | 356 | * @return string |
357 | 357 | */ |
358 | - function espresso_event_categories( $EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE ) { |
|
359 | - if ( $echo ) { |
|
360 | - echo EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized ); |
|
358 | + function espresso_event_categories($EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) { |
|
359 | + if ($echo) { |
|
360 | + echo EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized); |
|
361 | 361 | return ''; |
362 | 362 | } |
363 | - return EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized ); |
|
363 | + return EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized); |
|
364 | 364 | } |
365 | 365 | } |
366 | 366 | |
367 | 367 | |
368 | -if ( ! function_exists( 'espresso_event_tickets_available' )) { |
|
368 | +if ( ! function_exists('espresso_event_tickets_available')) { |
|
369 | 369 | /** |
370 | 370 | * espresso_event_tickets_available |
371 | 371 | * returns the ticket types available for purchase for an event |
@@ -375,26 +375,26 @@ discard block |
||
375 | 375 | * @param bool $format |
376 | 376 | * @return string |
377 | 377 | */ |
378 | - function espresso_event_tickets_available( $EVT_ID = 0, $echo = TRUE, $format = TRUE ) { |
|
379 | - $tickets = EEH_Event_View::event_tickets_available( $EVT_ID ); |
|
380 | - if ( is_array( $tickets ) && ! empty( $tickets )) { |
|
378 | + function espresso_event_tickets_available($EVT_ID = 0, $echo = TRUE, $format = TRUE) { |
|
379 | + $tickets = EEH_Event_View::event_tickets_available($EVT_ID); |
|
380 | + if (is_array($tickets) && ! empty($tickets)) { |
|
381 | 381 | // if formatting then $html will be a string, else it will be an array of ticket objects |
382 | - $html = $format ? '<ul id="ee-event-tickets-ul-' . $EVT_ID . '" class="ee-event-tickets-ul">' : array(); |
|
383 | - foreach ( $tickets as $ticket ) { |
|
384 | - if ( $ticket instanceof EE_Ticket ) { |
|
385 | - if ( $format ) { |
|
386 | - $html .= '<li id="ee-event-tickets-li-' . $ticket->ID() . '" class="ee-event-tickets-li">'; |
|
387 | - $html .= $ticket->name() . ' ' . EEH_Template::format_currency( $ticket->get_ticket_total_with_taxes() ); |
|
382 | + $html = $format ? '<ul id="ee-event-tickets-ul-'.$EVT_ID.'" class="ee-event-tickets-ul">' : array(); |
|
383 | + foreach ($tickets as $ticket) { |
|
384 | + if ($ticket instanceof EE_Ticket) { |
|
385 | + if ($format) { |
|
386 | + $html .= '<li id="ee-event-tickets-li-'.$ticket->ID().'" class="ee-event-tickets-li">'; |
|
387 | + $html .= $ticket->name().' '.EEH_Template::format_currency($ticket->get_ticket_total_with_taxes()); |
|
388 | 388 | $html .= '</li>'; |
389 | 389 | } else { |
390 | 390 | $html[] = $ticket; |
391 | 391 | } |
392 | 392 | } |
393 | 393 | } |
394 | - if ( $format ) { |
|
394 | + if ($format) { |
|
395 | 395 | $html .= '</ul>'; |
396 | 396 | } |
397 | - if ( $echo && $format ) { |
|
397 | + if ($echo && $format) { |
|
398 | 398 | echo $html; |
399 | 399 | return ''; |
400 | 400 | } |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | } |
405 | 405 | } |
406 | 406 | |
407 | -if ( ! function_exists( 'espresso_event_date_obj' )) { |
|
407 | +if ( ! function_exists('espresso_event_date_obj')) { |
|
408 | 408 | /** |
409 | 409 | * espresso_event_date_obj |
410 | 410 | * returns the primary date object for an event |
@@ -412,13 +412,13 @@ discard block |
||
412 | 412 | * @param bool $EVT_ID |
413 | 413 | * @return object |
414 | 414 | */ |
415 | - function espresso_event_date_obj( $EVT_ID = FALSE ) { |
|
416 | - return EEH_Event_View::get_primary_date_obj( $EVT_ID ); |
|
415 | + function espresso_event_date_obj($EVT_ID = FALSE) { |
|
416 | + return EEH_Event_View::get_primary_date_obj($EVT_ID); |
|
417 | 417 | } |
418 | 418 | } |
419 | 419 | |
420 | 420 | |
421 | -if ( ! function_exists( 'espresso_event_date' )) { |
|
421 | +if ( ! function_exists('espresso_event_date')) { |
|
422 | 422 | /** |
423 | 423 | * espresso_event_date |
424 | 424 | * returns the primary date for an event |
@@ -429,22 +429,22 @@ discard block |
||
429 | 429 | * @param bool $echo |
430 | 430 | * @return string |
431 | 431 | */ |
432 | - function espresso_event_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) { |
|
433 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
434 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
435 | - $date_format = apply_filters( 'FHEE__espresso_event_date__date_format', $date_format ); |
|
436 | - $time_format = apply_filters( 'FHEE__espresso_event_date__time_format', $time_format ); |
|
437 | - if($echo){ |
|
438 | - echo EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID ); |
|
432 | + function espresso_event_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) { |
|
433 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
434 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
435 | + $date_format = apply_filters('FHEE__espresso_event_date__date_format', $date_format); |
|
436 | + $time_format = apply_filters('FHEE__espresso_event_date__time_format', $time_format); |
|
437 | + if ($echo) { |
|
438 | + echo EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID); |
|
439 | 439 | return ''; |
440 | 440 | } |
441 | - return EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID ); |
|
441 | + return EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID); |
|
442 | 442 | |
443 | 443 | } |
444 | 444 | } |
445 | 445 | |
446 | 446 | |
447 | -if ( ! function_exists( 'espresso_list_of_event_dates' )) { |
|
447 | +if ( ! function_exists('espresso_list_of_event_dates')) { |
|
448 | 448 | /** |
449 | 449 | * espresso_list_of_event_dates |
450 | 450 | * returns a unordered list of dates for an event |
@@ -459,40 +459,40 @@ discard block |
||
459 | 459 | * @param null $limit |
460 | 460 | * @return string |
461 | 461 | */ |
462 | - function espresso_list_of_event_dates( $EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL ) { |
|
463 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
464 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
465 | - $date_format = apply_filters( 'FHEE__espresso_list_of_event_dates__date_format', $date_format ); |
|
466 | - $time_format = apply_filters( 'FHEE__espresso_list_of_event_dates__time_format', $time_format ); |
|
467 | - $datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, $show_expired, FALSE, $limit ); |
|
468 | - if ( ! $format ) { |
|
469 | - return apply_filters( 'FHEE__espresso_list_of_event_dates__datetimes', $datetimes ); |
|
462 | + function espresso_list_of_event_dates($EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL) { |
|
463 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
464 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
465 | + $date_format = apply_filters('FHEE__espresso_list_of_event_dates__date_format', $date_format); |
|
466 | + $time_format = apply_filters('FHEE__espresso_list_of_event_dates__time_format', $time_format); |
|
467 | + $datetimes = EEH_Event_View::get_all_date_obj($EVT_ID, $show_expired, FALSE, $limit); |
|
468 | + if ( ! $format) { |
|
469 | + return apply_filters('FHEE__espresso_list_of_event_dates__datetimes', $datetimes); |
|
470 | 470 | } |
471 | 471 | //d( $datetimes ); |
472 | - if ( is_array( $datetimes ) && ! empty( $datetimes )) { |
|
472 | + if (is_array($datetimes) && ! empty($datetimes)) { |
|
473 | 473 | global $post; |
474 | - $html = $format ? '<ul id="ee-event-datetimes-ul-' . $post->ID . '" class="ee-event-datetimes-ul ee-clearfix">' : ''; |
|
475 | - foreach ( $datetimes as $datetime ) { |
|
476 | - if ( $datetime instanceof EE_Datetime ) { |
|
477 | - $html .= '<li id="ee-event-datetimes-li-' . $datetime->ID(); |
|
478 | - $html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-' . $datetime->get_active_status() . '">'; |
|
474 | + $html = $format ? '<ul id="ee-event-datetimes-ul-'.$post->ID.'" class="ee-event-datetimes-ul ee-clearfix">' : ''; |
|
475 | + foreach ($datetimes as $datetime) { |
|
476 | + if ($datetime instanceof EE_Datetime) { |
|
477 | + $html .= '<li id="ee-event-datetimes-li-'.$datetime->ID(); |
|
478 | + $html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-'.$datetime->get_active_status().'">'; |
|
479 | 479 | $datetime_name = $datetime->name(); |
480 | - $html .= ! empty( $datetime_name ) ? '<strong>' . $datetime_name . '</strong>' : ''; |
|
481 | - $html .= ! empty( $datetime_name ) && $add_breaks ? '<br />' : ''; |
|
482 | - $html .= '<span class="dashicons dashicons-calendar"></span><span class="ee-event-datetimes-li-daterange">' . $datetime->date_range( $date_format ) . '</span><br/>'; |
|
483 | - $html .= '<span class="dashicons dashicons-clock"></span><span class="ee-event-datetimes-li-timerange">' . $datetime->time_range( $time_format ) . '</span>'; |
|
480 | + $html .= ! empty($datetime_name) ? '<strong>'.$datetime_name.'</strong>' : ''; |
|
481 | + $html .= ! empty($datetime_name) && $add_breaks ? '<br />' : ''; |
|
482 | + $html .= '<span class="dashicons dashicons-calendar"></span><span class="ee-event-datetimes-li-daterange">'.$datetime->date_range($date_format).'</span><br/>'; |
|
483 | + $html .= '<span class="dashicons dashicons-clock"></span><span class="ee-event-datetimes-li-timerange">'.$datetime->time_range($time_format).'</span>'; |
|
484 | 484 | $datetime_description = $datetime->description(); |
485 | - $html .= ! empty( $datetime_description ) && $add_breaks ? '<br />' : ''; |
|
486 | - $html .= ! empty( $datetime_description ) ? ' - ' . $datetime_description : ''; |
|
487 | - $html = apply_filters( 'FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime ); |
|
485 | + $html .= ! empty($datetime_description) && $add_breaks ? '<br />' : ''; |
|
486 | + $html .= ! empty($datetime_description) ? ' - '.$datetime_description : ''; |
|
487 | + $html = apply_filters('FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime); |
|
488 | 488 | $html .= '</li>'; |
489 | 489 | } |
490 | 490 | } |
491 | 491 | $html .= $format ? '</ul>' : ''; |
492 | 492 | } else { |
493 | - $html = $format ? '<p><span class="dashicons dashicons-marker pink-text"></span>' . esc_html__( 'There are no upcoming dates for this event.', 'event_espresso' ) . '</p><br/>' : ''; |
|
493 | + $html = $format ? '<p><span class="dashicons dashicons-marker pink-text"></span>'.esc_html__('There are no upcoming dates for this event.', 'event_espresso').'</p><br/>' : ''; |
|
494 | 494 | } |
495 | - if ( $echo ) { |
|
495 | + if ($echo) { |
|
496 | 496 | echo $html; |
497 | 497 | return ''; |
498 | 498 | } |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | } |
502 | 502 | |
503 | 503 | |
504 | -if ( ! function_exists( 'espresso_event_end_date' )) { |
|
504 | +if ( ! function_exists('espresso_event_end_date')) { |
|
505 | 505 | /** |
506 | 506 | * espresso_event_end_date |
507 | 507 | * returns the last date for an event |
@@ -512,20 +512,20 @@ discard block |
||
512 | 512 | * @param bool $echo |
513 | 513 | * @return string |
514 | 514 | */ |
515 | - function espresso_event_end_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) { |
|
516 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
517 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
518 | - $date_format = apply_filters( 'FHEE__espresso_event_end_date__date_format', $date_format ); |
|
519 | - $time_format = apply_filters( 'FHEE__espresso_event_end_date__time_format', $time_format ); |
|
520 | - if($echo){ |
|
521 | - echo EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID ); |
|
515 | + function espresso_event_end_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) { |
|
516 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
517 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
518 | + $date_format = apply_filters('FHEE__espresso_event_end_date__date_format', $date_format); |
|
519 | + $time_format = apply_filters('FHEE__espresso_event_end_date__time_format', $time_format); |
|
520 | + if ($echo) { |
|
521 | + echo EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID); |
|
522 | 522 | return ''; |
523 | 523 | } |
524 | - return EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID ); |
|
524 | + return EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID); |
|
525 | 525 | } |
526 | 526 | } |
527 | 527 | |
528 | -if ( ! function_exists( 'espresso_event_date_range' )) { |
|
528 | +if ( ! function_exists('espresso_event_date_range')) { |
|
529 | 529 | /** |
530 | 530 | * espresso_event_date_range |
531 | 531 | * returns the first and last chronologically ordered dates for an event (if different) |
@@ -538,32 +538,32 @@ discard block |
||
538 | 538 | * @param bool $echo |
539 | 539 | * @return string |
540 | 540 | */ |
541 | - function espresso_event_date_range( $date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE ) { |
|
541 | + function espresso_event_date_range($date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE) { |
|
542 | 542 | // set and filter date and time formats when a range is returned |
543 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
544 | - $date_format = apply_filters( 'FHEE__espresso_event_date_range__date_format', $date_format ); |
|
543 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
544 | + $date_format = apply_filters('FHEE__espresso_event_date_range__date_format', $date_format); |
|
545 | 545 | // get the start and end date with NO time portion |
546 | - $the_event_date = EEH_Event_View::the_earliest_event_date( $date_format, '', $EVT_ID ); |
|
547 | - $the_event_end_date = EEH_Event_View::the_latest_event_date( $date_format, '', $EVT_ID ); |
|
546 | + $the_event_date = EEH_Event_View::the_earliest_event_date($date_format, '', $EVT_ID); |
|
547 | + $the_event_end_date = EEH_Event_View::the_latest_event_date($date_format, '', $EVT_ID); |
|
548 | 548 | // now we can determine if date range spans more than one day |
549 | - if ( $the_event_date != $the_event_end_date ) { |
|
550 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
551 | - $time_format = apply_filters( 'FHEE__espresso_event_date_range__time_format', $time_format ); |
|
549 | + if ($the_event_date != $the_event_end_date) { |
|
550 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
551 | + $time_format = apply_filters('FHEE__espresso_event_date_range__time_format', $time_format); |
|
552 | 552 | $html = sprintf( |
553 | 553 | /* translators: 1: first event date, 2: last event date */ |
554 | - esc_html__( '%1$s - %2$s', 'event_espresso' ), |
|
555 | - EEH_Event_View::the_earliest_event_date( $date_format, $time_format, $EVT_ID ), |
|
556 | - EEH_Event_View::the_latest_event_date( $date_format, $time_format, $EVT_ID ) |
|
554 | + esc_html__('%1$s - %2$s', 'event_espresso'), |
|
555 | + EEH_Event_View::the_earliest_event_date($date_format, $time_format, $EVT_ID), |
|
556 | + EEH_Event_View::the_latest_event_date($date_format, $time_format, $EVT_ID) |
|
557 | 557 | ); |
558 | 558 | } else { |
559 | 559 | // set and filter date and time formats when only a single datetime is returned |
560 | - $single_date_format = ! empty( $single_date_format ) ? $single_date_format : get_option( 'date_format' ); |
|
561 | - $single_time_format = ! empty( $single_time_format ) ? $single_time_format : get_option( 'time_format' ); |
|
562 | - $single_date_format = apply_filters( 'FHEE__espresso_event_date_range__single_date_format', $single_date_format ); |
|
563 | - $single_time_format = apply_filters( 'FHEE__espresso_event_date_range__single_time_format', $single_time_format ); |
|
564 | - $html = EEH_Event_View::the_earliest_event_date( $single_date_format, $single_time_format, $EVT_ID ); |
|
560 | + $single_date_format = ! empty($single_date_format) ? $single_date_format : get_option('date_format'); |
|
561 | + $single_time_format = ! empty($single_time_format) ? $single_time_format : get_option('time_format'); |
|
562 | + $single_date_format = apply_filters('FHEE__espresso_event_date_range__single_date_format', $single_date_format); |
|
563 | + $single_time_format = apply_filters('FHEE__espresso_event_date_range__single_time_format', $single_time_format); |
|
564 | + $html = EEH_Event_View::the_earliest_event_date($single_date_format, $single_time_format, $EVT_ID); |
|
565 | 565 | } |
566 | - if ( $echo ) { |
|
566 | + if ($echo) { |
|
567 | 567 | echo $html; |
568 | 568 | return ''; |
569 | 569 | } |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | } |
572 | 572 | } |
573 | 573 | |
574 | -if ( ! function_exists( 'espresso_next_upcoming_datetime_obj' )) { |
|
574 | +if ( ! function_exists('espresso_next_upcoming_datetime_obj')) { |
|
575 | 575 | /** |
576 | 576 | * espresso_next_upcoming_datetime_obj |
577 | 577 | * returns the next upcoming datetime object for an event |
@@ -579,12 +579,12 @@ discard block |
||
579 | 579 | * @param int $EVT_ID |
580 | 580 | * @return EE_Datetime|null |
581 | 581 | */ |
582 | - function espresso_next_upcoming_datetime_obj( $EVT_ID = 0 ) { |
|
583 | - return EEH_Event_View::get_next_upcoming_date_obj( $EVT_ID ); |
|
582 | + function espresso_next_upcoming_datetime_obj($EVT_ID = 0) { |
|
583 | + return EEH_Event_View::get_next_upcoming_date_obj($EVT_ID); |
|
584 | 584 | } |
585 | 585 | } |
586 | 586 | |
587 | -if ( ! function_exists( 'espresso_next_upcoming_datetime' ) ) { |
|
587 | +if ( ! function_exists('espresso_next_upcoming_datetime')) { |
|
588 | 588 | /** |
589 | 589 | * espresso_next_upcoming_datetime |
590 | 590 | * returns the start date and time for the next upcoming event. |
@@ -595,30 +595,30 @@ discard block |
||
595 | 595 | * @param bool $echo |
596 | 596 | * @return string |
597 | 597 | */ |
598 | - function espresso_next_upcoming_datetime( $date_format = '', $time_format = '', $EVT_ID = 0, $echo = true ) { |
|
598 | + function espresso_next_upcoming_datetime($date_format = '', $time_format = '', $EVT_ID = 0, $echo = true) { |
|
599 | 599 | |
600 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
601 | - $date_format = apply_filters( 'FHEE__espresso_next_upcoming_datetime__date_format', $date_format ); |
|
600 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
601 | + $date_format = apply_filters('FHEE__espresso_next_upcoming_datetime__date_format', $date_format); |
|
602 | 602 | |
603 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
604 | - $time_format = apply_filters( 'FHEE__espresso_next_upcoming_datetime__time_format', $time_format ); |
|
603 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
604 | + $time_format = apply_filters('FHEE__espresso_next_upcoming_datetime__time_format', $time_format); |
|
605 | 605 | |
606 | - $datetime_format = trim( $date_format . ' ' . $time_format); |
|
606 | + $datetime_format = trim($date_format.' '.$time_format); |
|
607 | 607 | |
608 | - $datetime = espresso_next_upcoming_datetime_obj( $EVT_ID ); |
|
608 | + $datetime = espresso_next_upcoming_datetime_obj($EVT_ID); |
|
609 | 609 | |
610 | - if( ! $datetime instanceof EE_Datetime ) { |
|
610 | + if ( ! $datetime instanceof EE_Datetime) { |
|
611 | 611 | return ''; |
612 | 612 | } |
613 | - if ( $echo ){ |
|
614 | - echo $datetime->get_i18n_datetime( 'DTT_EVT_start', $datetime_format ); |
|
613 | + if ($echo) { |
|
614 | + echo $datetime->get_i18n_datetime('DTT_EVT_start', $datetime_format); |
|
615 | 615 | return ''; |
616 | 616 | } |
617 | - return $datetime->get_i18n_datetime( 'DTT_EVT_start', $datetime_format ); |
|
617 | + return $datetime->get_i18n_datetime('DTT_EVT_start', $datetime_format); |
|
618 | 618 | } |
619 | 619 | } |
620 | 620 | |
621 | -if ( ! function_exists( 'espresso_event_date_as_calendar_page' )) { |
|
621 | +if ( ! function_exists('espresso_event_date_as_calendar_page')) { |
|
622 | 622 | /** |
623 | 623 | * espresso_event_date_as_calendar_page |
624 | 624 | * returns the primary date for an event, stylized to appear as the page of a calendar |
@@ -626,15 +626,15 @@ discard block |
||
626 | 626 | * @param bool $EVT_ID |
627 | 627 | * @return string |
628 | 628 | */ |
629 | - function espresso_event_date_as_calendar_page( $EVT_ID = FALSE ) { |
|
630 | - EEH_Event_View::event_date_as_calendar_page( $EVT_ID ); |
|
629 | + function espresso_event_date_as_calendar_page($EVT_ID = FALSE) { |
|
630 | + EEH_Event_View::event_date_as_calendar_page($EVT_ID); |
|
631 | 631 | } |
632 | 632 | } |
633 | 633 | |
634 | 634 | |
635 | 635 | |
636 | 636 | |
637 | -if ( ! function_exists( 'espresso_event_link_url' )) { |
|
637 | +if ( ! function_exists('espresso_event_link_url')) { |
|
638 | 638 | /** |
639 | 639 | * espresso_event_link_url |
640 | 640 | * |
@@ -642,18 +642,18 @@ discard block |
||
642 | 642 | * @param bool $echo |
643 | 643 | * @return string |
644 | 644 | */ |
645 | - function espresso_event_link_url( $EVT_ID = 0, $echo = TRUE ) { |
|
646 | - if ( $echo ) { |
|
647 | - echo EEH_Event_View::event_link_url( $EVT_ID ); |
|
645 | + function espresso_event_link_url($EVT_ID = 0, $echo = TRUE) { |
|
646 | + if ($echo) { |
|
647 | + echo EEH_Event_View::event_link_url($EVT_ID); |
|
648 | 648 | return ''; |
649 | 649 | } |
650 | - return EEH_Event_View::event_link_url( $EVT_ID ); |
|
650 | + return EEH_Event_View::event_link_url($EVT_ID); |
|
651 | 651 | } |
652 | 652 | } |
653 | 653 | |
654 | 654 | |
655 | 655 | |
656 | -if ( ! function_exists( 'espresso_event_has_content_or_excerpt' )) { |
|
656 | +if ( ! function_exists('espresso_event_has_content_or_excerpt')) { |
|
657 | 657 | /** |
658 | 658 | * espresso_event_has_content_or_excerpt |
659 | 659 | * |
@@ -661,15 +661,15 @@ discard block |
||
661 | 661 | * @param bool $EVT_ID |
662 | 662 | * @return boolean |
663 | 663 | */ |
664 | - function espresso_event_has_content_or_excerpt( $EVT_ID = FALSE ) { |
|
665 | - return EEH_Event_View::event_has_content_or_excerpt( $EVT_ID ); |
|
664 | + function espresso_event_has_content_or_excerpt($EVT_ID = FALSE) { |
|
665 | + return EEH_Event_View::event_has_content_or_excerpt($EVT_ID); |
|
666 | 666 | } |
667 | 667 | } |
668 | 668 | |
669 | 669 | |
670 | 670 | |
671 | 671 | |
672 | -if ( ! function_exists( 'espresso_event_content_or_excerpt' )) { |
|
672 | +if ( ! function_exists('espresso_event_content_or_excerpt')) { |
|
673 | 673 | /** |
674 | 674 | * espresso_event_content_or_excerpt |
675 | 675 | * |
@@ -678,18 +678,18 @@ discard block |
||
678 | 678 | * @param bool $echo |
679 | 679 | * @return string |
680 | 680 | */ |
681 | - function espresso_event_content_or_excerpt( $num_words = 55, $more = NULL, $echo = TRUE ) { |
|
682 | - if ( $echo ) { |
|
683 | - echo EEH_Event_View::event_content_or_excerpt( $num_words, $more ); |
|
681 | + function espresso_event_content_or_excerpt($num_words = 55, $more = NULL, $echo = TRUE) { |
|
682 | + if ($echo) { |
|
683 | + echo EEH_Event_View::event_content_or_excerpt($num_words, $more); |
|
684 | 684 | return ''; |
685 | 685 | } |
686 | - return EEH_Event_View::event_content_or_excerpt( $num_words, $more ); |
|
686 | + return EEH_Event_View::event_content_or_excerpt($num_words, $more); |
|
687 | 687 | } |
688 | 688 | } |
689 | 689 | |
690 | 690 | |
691 | 691 | |
692 | -if ( ! function_exists( 'espresso_event_phone' )) { |
|
692 | +if ( ! function_exists('espresso_event_phone')) { |
|
693 | 693 | /** |
694 | 694 | * espresso_event_phone |
695 | 695 | * |
@@ -697,18 +697,18 @@ discard block |
||
697 | 697 | * @param bool $echo |
698 | 698 | * @return string |
699 | 699 | */ |
700 | - function espresso_event_phone( $EVT_ID = 0, $echo = TRUE ) { |
|
701 | - if ( $echo ) { |
|
702 | - echo EEH_Event_View::event_phone( $EVT_ID ); |
|
700 | + function espresso_event_phone($EVT_ID = 0, $echo = TRUE) { |
|
701 | + if ($echo) { |
|
702 | + echo EEH_Event_View::event_phone($EVT_ID); |
|
703 | 703 | return ''; |
704 | 704 | } |
705 | - return EEH_Event_View::event_phone( $EVT_ID ); |
|
705 | + return EEH_Event_View::event_phone($EVT_ID); |
|
706 | 706 | } |
707 | 707 | } |
708 | 708 | |
709 | 709 | |
710 | 710 | |
711 | -if ( ! function_exists( 'espresso_edit_event_link' )) { |
|
711 | +if ( ! function_exists('espresso_edit_event_link')) { |
|
712 | 712 | /** |
713 | 713 | * espresso_edit_event_link |
714 | 714 | * returns a link to edit an event |
@@ -717,39 +717,39 @@ discard block |
||
717 | 717 | * @param bool $echo |
718 | 718 | * @return string |
719 | 719 | */ |
720 | - function espresso_edit_event_link( $EVT_ID = 0, $echo = TRUE ) { |
|
721 | - if ( $echo ) { |
|
722 | - echo EEH_Event_View::edit_event_link( $EVT_ID ); |
|
720 | + function espresso_edit_event_link($EVT_ID = 0, $echo = TRUE) { |
|
721 | + if ($echo) { |
|
722 | + echo EEH_Event_View::edit_event_link($EVT_ID); |
|
723 | 723 | return ''; |
724 | 724 | } |
725 | - return EEH_Event_View::edit_event_link( $EVT_ID ); |
|
725 | + return EEH_Event_View::edit_event_link($EVT_ID); |
|
726 | 726 | } |
727 | 727 | } |
728 | 728 | |
729 | 729 | |
730 | -if ( ! function_exists( 'espresso_organization_name' )) { |
|
730 | +if ( ! function_exists('espresso_organization_name')) { |
|
731 | 731 | /** |
732 | 732 | * espresso_organization_name |
733 | 733 | * @param bool $echo |
734 | 734 | * @return string |
735 | 735 | */ |
736 | 736 | function espresso_organization_name($echo = TRUE) { |
737 | - if($echo){ |
|
738 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'name' ); |
|
737 | + if ($echo) { |
|
738 | + echo EE_Registry::instance()->CFG->organization->get_pretty('name'); |
|
739 | 739 | return ''; |
740 | 740 | } |
741 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'name' ); |
|
741 | + return EE_Registry::instance()->CFG->organization->get_pretty('name'); |
|
742 | 742 | } |
743 | 743 | } |
744 | 744 | |
745 | -if ( ! function_exists( 'espresso_organization_address' )) { |
|
745 | +if ( ! function_exists('espresso_organization_address')) { |
|
746 | 746 | /** |
747 | 747 | * espresso_organization_address |
748 | 748 | * @param string $type |
749 | 749 | * @return string |
750 | 750 | */ |
751 | - function espresso_organization_address( $type = 'inline' ) { |
|
752 | - if ( EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config ) { |
|
751 | + function espresso_organization_address($type = 'inline') { |
|
752 | + if (EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config) { |
|
753 | 753 | $address = new EventEspresso\core\domain\entities\GenericAddress( |
754 | 754 | EE_Registry::instance()->CFG->organization->address_1, |
755 | 755 | EE_Registry::instance()->CFG->organization->address_2, |
@@ -758,129 +758,129 @@ discard block |
||
758 | 758 | EE_Registry::instance()->CFG->organization->zip, |
759 | 759 | EE_Registry::instance()->CFG->organization->CNT_ISO |
760 | 760 | ); |
761 | - return EEH_Address::format( $address, $type ); |
|
761 | + return EEH_Address::format($address, $type); |
|
762 | 762 | } |
763 | 763 | return ''; |
764 | 764 | } |
765 | 765 | } |
766 | 766 | |
767 | -if ( ! function_exists( 'espresso_organization_email' )) { |
|
767 | +if ( ! function_exists('espresso_organization_email')) { |
|
768 | 768 | /** |
769 | 769 | * espresso_organization_email |
770 | 770 | * @param bool $echo |
771 | 771 | * @return string |
772 | 772 | */ |
773 | - function espresso_organization_email( $echo = TRUE ) { |
|
774 | - if($echo){ |
|
775 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'email' ); |
|
773 | + function espresso_organization_email($echo = TRUE) { |
|
774 | + if ($echo) { |
|
775 | + echo EE_Registry::instance()->CFG->organization->get_pretty('email'); |
|
776 | 776 | return ''; |
777 | 777 | } |
778 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'email' ); |
|
778 | + return EE_Registry::instance()->CFG->organization->get_pretty('email'); |
|
779 | 779 | } |
780 | 780 | } |
781 | 781 | |
782 | -if ( ! function_exists( 'espresso_organization_logo_url' )) { |
|
782 | +if ( ! function_exists('espresso_organization_logo_url')) { |
|
783 | 783 | /** |
784 | 784 | * espresso_organization_logo_url |
785 | 785 | * @param bool $echo |
786 | 786 | * @return string |
787 | 787 | */ |
788 | - function espresso_organization_logo_url( $echo = TRUE ) { |
|
789 | - if($echo){ |
|
790 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' ); |
|
788 | + function espresso_organization_logo_url($echo = TRUE) { |
|
789 | + if ($echo) { |
|
790 | + echo EE_Registry::instance()->CFG->organization->get_pretty('logo_url'); |
|
791 | 791 | return ''; |
792 | 792 | } |
793 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' ); |
|
793 | + return EE_Registry::instance()->CFG->organization->get_pretty('logo_url'); |
|
794 | 794 | } |
795 | 795 | } |
796 | 796 | |
797 | -if ( ! function_exists( 'espresso_organization_facebook' )) { |
|
797 | +if ( ! function_exists('espresso_organization_facebook')) { |
|
798 | 798 | /** |
799 | 799 | * espresso_organization_facebook |
800 | 800 | * @param bool $echo |
801 | 801 | * @return string |
802 | 802 | */ |
803 | - function espresso_organization_facebook( $echo = TRUE ) { |
|
804 | - if($echo){ |
|
805 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' ); |
|
803 | + function espresso_organization_facebook($echo = TRUE) { |
|
804 | + if ($echo) { |
|
805 | + echo EE_Registry::instance()->CFG->organization->get_pretty('facebook'); |
|
806 | 806 | return ''; |
807 | 807 | } |
808 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' ); |
|
808 | + return EE_Registry::instance()->CFG->organization->get_pretty('facebook'); |
|
809 | 809 | } |
810 | 810 | } |
811 | 811 | |
812 | -if ( ! function_exists( 'espresso_organization_twitter' )) { |
|
812 | +if ( ! function_exists('espresso_organization_twitter')) { |
|
813 | 813 | /** |
814 | 814 | * espresso_organization_twitter |
815 | 815 | * @param bool $echo |
816 | 816 | * @return string |
817 | 817 | */ |
818 | - function espresso_organization_twitter( $echo = TRUE ) { |
|
819 | - if($echo){ |
|
820 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' ); |
|
818 | + function espresso_organization_twitter($echo = TRUE) { |
|
819 | + if ($echo) { |
|
820 | + echo EE_Registry::instance()->CFG->organization->get_pretty('twitter'); |
|
821 | 821 | return ''; |
822 | 822 | } |
823 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' ); |
|
823 | + return EE_Registry::instance()->CFG->organization->get_pretty('twitter'); |
|
824 | 824 | } |
825 | 825 | } |
826 | 826 | |
827 | -if ( ! function_exists( 'espresso_organization_linkedin' )) { |
|
827 | +if ( ! function_exists('espresso_organization_linkedin')) { |
|
828 | 828 | /** |
829 | 829 | * espresso_organization_linkedin |
830 | 830 | * @param bool $echo |
831 | 831 | * @return string |
832 | 832 | */ |
833 | - function espresso_organization_linkedin( $echo = TRUE ) { |
|
834 | - if($echo){ |
|
835 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' ); |
|
833 | + function espresso_organization_linkedin($echo = TRUE) { |
|
834 | + if ($echo) { |
|
835 | + echo EE_Registry::instance()->CFG->organization->get_pretty('linkedin'); |
|
836 | 836 | return ''; |
837 | 837 | } |
838 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' ); |
|
838 | + return EE_Registry::instance()->CFG->organization->get_pretty('linkedin'); |
|
839 | 839 | } |
840 | 840 | } |
841 | 841 | |
842 | -if ( ! function_exists( 'espresso_organization_pinterest' )) { |
|
842 | +if ( ! function_exists('espresso_organization_pinterest')) { |
|
843 | 843 | /** |
844 | 844 | * espresso_organization_pinterest |
845 | 845 | * @param bool $echo |
846 | 846 | * @return string |
847 | 847 | */ |
848 | - function espresso_organization_pinterest( $echo = TRUE ) { |
|
849 | - if($echo){ |
|
850 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' ); |
|
848 | + function espresso_organization_pinterest($echo = TRUE) { |
|
849 | + if ($echo) { |
|
850 | + echo EE_Registry::instance()->CFG->organization->get_pretty('pinterest'); |
|
851 | 851 | return ''; |
852 | 852 | } |
853 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' ); |
|
853 | + return EE_Registry::instance()->CFG->organization->get_pretty('pinterest'); |
|
854 | 854 | } |
855 | 855 | } |
856 | 856 | |
857 | -if ( ! function_exists( 'espresso_organization_google' )) { |
|
857 | +if ( ! function_exists('espresso_organization_google')) { |
|
858 | 858 | /** |
859 | 859 | * espresso_organization_google |
860 | 860 | * @param bool $echo |
861 | 861 | * @return string |
862 | 862 | */ |
863 | - function espresso_organization_google( $echo = TRUE ) { |
|
864 | - if($echo){ |
|
865 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'google' ); |
|
863 | + function espresso_organization_google($echo = TRUE) { |
|
864 | + if ($echo) { |
|
865 | + echo EE_Registry::instance()->CFG->organization->get_pretty('google'); |
|
866 | 866 | return ''; |
867 | 867 | } |
868 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'google' ); |
|
868 | + return EE_Registry::instance()->CFG->organization->get_pretty('google'); |
|
869 | 869 | } |
870 | 870 | } |
871 | 871 | |
872 | -if ( ! function_exists( 'espresso_organization_instagram' )) { |
|
872 | +if ( ! function_exists('espresso_organization_instagram')) { |
|
873 | 873 | /** |
874 | 874 | * espresso_organization_instagram |
875 | 875 | * @param bool $echo |
876 | 876 | * @return string |
877 | 877 | */ |
878 | - function espresso_organization_instagram( $echo = TRUE ) { |
|
879 | - if($echo){ |
|
880 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' ); |
|
878 | + function espresso_organization_instagram($echo = TRUE) { |
|
879 | + if ($echo) { |
|
880 | + echo EE_Registry::instance()->CFG->organization->get_pretty('instagram'); |
|
881 | 881 | return ''; |
882 | 882 | } |
883 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' ); |
|
883 | + return EE_Registry::instance()->CFG->organization->get_pretty('instagram'); |
|
884 | 884 | } |
885 | 885 | } |
886 | 886 | |
@@ -890,7 +890,7 @@ discard block |
||
890 | 890 | |
891 | 891 | |
892 | 892 | |
893 | -if ( ! function_exists( 'espresso_event_venues' )) { |
|
893 | +if ( ! function_exists('espresso_event_venues')) { |
|
894 | 894 | /** |
895 | 895 | * espresso_event_venues |
896 | 896 | * |
@@ -904,7 +904,7 @@ discard block |
||
904 | 904 | |
905 | 905 | |
906 | 906 | |
907 | -if ( ! function_exists( 'espresso_venue_id' )) { |
|
907 | +if ( ! function_exists('espresso_venue_id')) { |
|
908 | 908 | /** |
909 | 909 | * espresso_venue_name |
910 | 910 | * |
@@ -912,15 +912,15 @@ discard block |
||
912 | 912 | * @param int $EVT_ID |
913 | 913 | * @return string |
914 | 914 | */ |
915 | - function espresso_venue_id( $EVT_ID = 0 ) { |
|
916 | - $venue = EEH_Venue_View::get_venue( $EVT_ID ); |
|
915 | + function espresso_venue_id($EVT_ID = 0) { |
|
916 | + $venue = EEH_Venue_View::get_venue($EVT_ID); |
|
917 | 917 | return $venue instanceof EE_Venue ? $venue->ID() : 0; |
918 | 918 | } |
919 | 919 | } |
920 | 920 | |
921 | 921 | |
922 | 922 | |
923 | -if ( ! function_exists( 'espresso_is_venue_private' ) ) { |
|
923 | +if ( ! function_exists('espresso_is_venue_private')) { |
|
924 | 924 | /** |
925 | 925 | * Return whether a venue is private or not. |
926 | 926 | * @see EEH_Venue_View::get_venue() for more info on expected return results. |
@@ -929,45 +929,45 @@ discard block |
||
929 | 929 | * |
930 | 930 | * @return bool | null |
931 | 931 | */ |
932 | - function espresso_is_venue_private( $VNU_ID = 0 ) { |
|
933 | - return EEH_Venue_View::is_venue_private( $VNU_ID ); |
|
932 | + function espresso_is_venue_private($VNU_ID = 0) { |
|
933 | + return EEH_Venue_View::is_venue_private($VNU_ID); |
|
934 | 934 | } |
935 | 935 | } |
936 | 936 | |
937 | 937 | |
938 | 938 | |
939 | -if ( ! function_exists( 'espresso_venue_is_password_protected' ) ) { |
|
939 | +if ( ! function_exists('espresso_venue_is_password_protected')) { |
|
940 | 940 | /** |
941 | 941 | * returns true or false if a venue is password protected or not |
942 | 942 | * |
943 | 943 | * @param int $VNU_ID optional, the venue id to check. |
944 | 944 | * @return string |
945 | 945 | */ |
946 | - function espresso_venue_is_password_protected( $VNU_ID = 0 ) { |
|
947 | - EE_Registry::instance()->load_helper( 'Venue_View' ); |
|
948 | - return EEH_Venue_View::is_venue_password_protected( $VNU_ID ); |
|
946 | + function espresso_venue_is_password_protected($VNU_ID = 0) { |
|
947 | + EE_Registry::instance()->load_helper('Venue_View'); |
|
948 | + return EEH_Venue_View::is_venue_password_protected($VNU_ID); |
|
949 | 949 | } |
950 | 950 | } |
951 | 951 | |
952 | 952 | |
953 | 953 | |
954 | -if ( ! function_exists( 'espresso_password_protected_venue_form' ) ) { |
|
954 | +if ( ! function_exists('espresso_password_protected_venue_form')) { |
|
955 | 955 | /** |
956 | 956 | * Returns a password form if venue is password protected. |
957 | 957 | * |
958 | 958 | * @param int $VNU_ID optional, the venue id to check. |
959 | 959 | * @return string |
960 | 960 | */ |
961 | - function espresso_password_protected_venue_form( $VNU_ID = 0 ) { |
|
962 | - EE_Registry::instance()->load_helper( 'Venue_View' ); |
|
963 | - return EEH_Venue_View::password_protected_venue_form( $VNU_ID ); |
|
961 | + function espresso_password_protected_venue_form($VNU_ID = 0) { |
|
962 | + EE_Registry::instance()->load_helper('Venue_View'); |
|
963 | + return EEH_Venue_View::password_protected_venue_form($VNU_ID); |
|
964 | 964 | } |
965 | 965 | } |
966 | 966 | |
967 | 967 | |
968 | 968 | |
969 | 969 | |
970 | -if ( ! function_exists( 'espresso_venue_name' )) { |
|
970 | +if ( ! function_exists('espresso_venue_name')) { |
|
971 | 971 | /** |
972 | 972 | * espresso_venue_name |
973 | 973 | * |
@@ -977,19 +977,19 @@ discard block |
||
977 | 977 | * @param bool $echo |
978 | 978 | * @return string |
979 | 979 | */ |
980 | - function espresso_venue_name( $VNU_ID = 0, $link_to = 'details', $echo = TRUE ) { |
|
981 | - if($echo){ |
|
982 | - echo EEH_Venue_View::venue_name( $link_to, $VNU_ID ); |
|
980 | + function espresso_venue_name($VNU_ID = 0, $link_to = 'details', $echo = TRUE) { |
|
981 | + if ($echo) { |
|
982 | + echo EEH_Venue_View::venue_name($link_to, $VNU_ID); |
|
983 | 983 | return ''; |
984 | 984 | } |
985 | - return EEH_Venue_View::venue_name( $link_to, $VNU_ID ); |
|
985 | + return EEH_Venue_View::venue_name($link_to, $VNU_ID); |
|
986 | 986 | } |
987 | 987 | } |
988 | 988 | |
989 | 989 | |
990 | 990 | |
991 | 991 | |
992 | -if ( ! function_exists( 'espresso_venue_link' )) { |
|
992 | +if ( ! function_exists('espresso_venue_link')) { |
|
993 | 993 | /** |
994 | 994 | * espresso_venue_link |
995 | 995 | * |
@@ -998,14 +998,14 @@ discard block |
||
998 | 998 | * @param string $text |
999 | 999 | * @return string |
1000 | 1000 | */ |
1001 | - function espresso_venue_link( $VNU_ID = 0, $text = '' ) { |
|
1002 | - return EEH_Venue_View::venue_details_link( $VNU_ID, $text ); |
|
1001 | + function espresso_venue_link($VNU_ID = 0, $text = '') { |
|
1002 | + return EEH_Venue_View::venue_details_link($VNU_ID, $text); |
|
1003 | 1003 | } |
1004 | 1004 | } |
1005 | 1005 | |
1006 | 1006 | |
1007 | 1007 | |
1008 | -if ( ! function_exists( 'espresso_venue_description' )) { |
|
1008 | +if ( ! function_exists('espresso_venue_description')) { |
|
1009 | 1009 | /** |
1010 | 1010 | * espresso_venue_description |
1011 | 1011 | * |
@@ -1014,17 +1014,17 @@ discard block |
||
1014 | 1014 | * @param bool $echo |
1015 | 1015 | * @return string |
1016 | 1016 | */ |
1017 | - function espresso_venue_description( $VNU_ID = FALSE, $echo = TRUE ) { |
|
1018 | - if($echo){ |
|
1019 | - echo EEH_Venue_View::venue_description( $VNU_ID ); |
|
1017 | + function espresso_venue_description($VNU_ID = FALSE, $echo = TRUE) { |
|
1018 | + if ($echo) { |
|
1019 | + echo EEH_Venue_View::venue_description($VNU_ID); |
|
1020 | 1020 | return ''; |
1021 | 1021 | } |
1022 | - return EEH_Venue_View::venue_description( $VNU_ID ); |
|
1022 | + return EEH_Venue_View::venue_description($VNU_ID); |
|
1023 | 1023 | } |
1024 | 1024 | } |
1025 | 1025 | |
1026 | 1026 | |
1027 | -if ( ! function_exists( 'espresso_venue_excerpt' )) { |
|
1027 | +if ( ! function_exists('espresso_venue_excerpt')) { |
|
1028 | 1028 | /** |
1029 | 1029 | * espresso_venue_excerpt |
1030 | 1030 | * |
@@ -1033,18 +1033,18 @@ discard block |
||
1033 | 1033 | * @param bool $echo |
1034 | 1034 | * @return string |
1035 | 1035 | */ |
1036 | - function espresso_venue_excerpt( $VNU_ID = 0, $echo = TRUE ) { |
|
1037 | - if ( $echo ) { |
|
1038 | - echo EEH_Venue_View::venue_excerpt( $VNU_ID ); |
|
1036 | + function espresso_venue_excerpt($VNU_ID = 0, $echo = TRUE) { |
|
1037 | + if ($echo) { |
|
1038 | + echo EEH_Venue_View::venue_excerpt($VNU_ID); |
|
1039 | 1039 | return ''; |
1040 | 1040 | } |
1041 | - return EEH_Venue_View::venue_excerpt( $VNU_ID ); |
|
1041 | + return EEH_Venue_View::venue_excerpt($VNU_ID); |
|
1042 | 1042 | } |
1043 | 1043 | } |
1044 | 1044 | |
1045 | 1045 | |
1046 | 1046 | |
1047 | -if ( ! function_exists( 'espresso_venue_categories' )) { |
|
1047 | +if ( ! function_exists('espresso_venue_categories')) { |
|
1048 | 1048 | /** |
1049 | 1049 | * espresso_venue_categories |
1050 | 1050 | * returns the terms associated with a venue |
@@ -1054,17 +1054,17 @@ discard block |
||
1054 | 1054 | * @param bool $echo |
1055 | 1055 | * @return string |
1056 | 1056 | */ |
1057 | - function espresso_venue_categories( $VNU_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE ) { |
|
1058 | - if ( $echo ) { |
|
1059 | - echo EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized ); |
|
1057 | + function espresso_venue_categories($VNU_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) { |
|
1058 | + if ($echo) { |
|
1059 | + echo EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized); |
|
1060 | 1060 | return ''; |
1061 | 1061 | } |
1062 | - return EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized ); |
|
1062 | + return EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized); |
|
1063 | 1063 | } |
1064 | 1064 | } |
1065 | 1065 | |
1066 | 1066 | |
1067 | -if ( ! function_exists( 'espresso_venue_address' )) { |
|
1067 | +if ( ! function_exists('espresso_venue_address')) { |
|
1068 | 1068 | /** |
1069 | 1069 | * espresso_venue_address |
1070 | 1070 | * returns a formatted block of html for displaying a venue's address |
@@ -1074,17 +1074,17 @@ discard block |
||
1074 | 1074 | * @param bool $echo |
1075 | 1075 | * @return string |
1076 | 1076 | */ |
1077 | - function espresso_venue_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) { |
|
1078 | - if ( $echo ) { |
|
1079 | - echo EEH_Venue_View::venue_address( $type, $VNU_ID ); |
|
1077 | + function espresso_venue_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) { |
|
1078 | + if ($echo) { |
|
1079 | + echo EEH_Venue_View::venue_address($type, $VNU_ID); |
|
1080 | 1080 | return ''; |
1081 | 1081 | } |
1082 | - return EEH_Venue_View::venue_address( $type, $VNU_ID ); |
|
1082 | + return EEH_Venue_View::venue_address($type, $VNU_ID); |
|
1083 | 1083 | } |
1084 | 1084 | } |
1085 | 1085 | |
1086 | 1086 | |
1087 | -if ( ! function_exists( 'espresso_venue_raw_address' )) { |
|
1087 | +if ( ! function_exists('espresso_venue_raw_address')) { |
|
1088 | 1088 | /** |
1089 | 1089 | * espresso_venue_address |
1090 | 1090 | * returns an UN-formatted string containing a venue's address |
@@ -1094,17 +1094,17 @@ discard block |
||
1094 | 1094 | * @param bool $echo |
1095 | 1095 | * @return string |
1096 | 1096 | */ |
1097 | - function espresso_venue_raw_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) { |
|
1098 | - if ( $echo ) { |
|
1099 | - echo EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE ); |
|
1097 | + function espresso_venue_raw_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) { |
|
1098 | + if ($echo) { |
|
1099 | + echo EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE); |
|
1100 | 1100 | return ''; |
1101 | 1101 | } |
1102 | - return EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE ); |
|
1102 | + return EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE); |
|
1103 | 1103 | } |
1104 | 1104 | } |
1105 | 1105 | |
1106 | 1106 | |
1107 | -if ( ! function_exists( 'espresso_venue_has_address' )) { |
|
1107 | +if ( ! function_exists('espresso_venue_has_address')) { |
|
1108 | 1108 | /** |
1109 | 1109 | * espresso_venue_has_address |
1110 | 1110 | * returns TRUE or FALSE if a Venue has address information |
@@ -1112,13 +1112,13 @@ discard block |
||
1112 | 1112 | * @param int $VNU_ID |
1113 | 1113 | * @return bool |
1114 | 1114 | */ |
1115 | - function espresso_venue_has_address( $VNU_ID = 0 ) { |
|
1116 | - return EEH_Venue_View::venue_has_address( $VNU_ID ); |
|
1115 | + function espresso_venue_has_address($VNU_ID = 0) { |
|
1116 | + return EEH_Venue_View::venue_has_address($VNU_ID); |
|
1117 | 1117 | } |
1118 | 1118 | } |
1119 | 1119 | |
1120 | 1120 | |
1121 | -if ( ! function_exists( 'espresso_venue_gmap' )) { |
|
1121 | +if ( ! function_exists('espresso_venue_gmap')) { |
|
1122 | 1122 | /** |
1123 | 1123 | * espresso_venue_gmap |
1124 | 1124 | * returns a google map for the venue address |
@@ -1129,17 +1129,17 @@ discard block |
||
1129 | 1129 | * @param bool $echo |
1130 | 1130 | * @return string |
1131 | 1131 | */ |
1132 | - function espresso_venue_gmap( $VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE ) { |
|
1133 | - if ( $echo ) { |
|
1134 | - echo EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap ); |
|
1132 | + function espresso_venue_gmap($VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE) { |
|
1133 | + if ($echo) { |
|
1134 | + echo EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap); |
|
1135 | 1135 | return ''; |
1136 | 1136 | } |
1137 | - return EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap ); |
|
1137 | + return EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap); |
|
1138 | 1138 | } |
1139 | 1139 | } |
1140 | 1140 | |
1141 | 1141 | |
1142 | -if ( ! function_exists( 'espresso_venue_phone' )) { |
|
1142 | +if ( ! function_exists('espresso_venue_phone')) { |
|
1143 | 1143 | /** |
1144 | 1144 | * espresso_venue_phone |
1145 | 1145 | * |
@@ -1147,18 +1147,18 @@ discard block |
||
1147 | 1147 | * @param bool $echo |
1148 | 1148 | * @return string |
1149 | 1149 | */ |
1150 | - function espresso_venue_phone( $VNU_ID = 0, $echo = TRUE ) { |
|
1151 | - if ( $echo ) { |
|
1152 | - echo EEH_Venue_View::venue_phone( $VNU_ID ); |
|
1150 | + function espresso_venue_phone($VNU_ID = 0, $echo = TRUE) { |
|
1151 | + if ($echo) { |
|
1152 | + echo EEH_Venue_View::venue_phone($VNU_ID); |
|
1153 | 1153 | return ''; |
1154 | 1154 | } |
1155 | - return EEH_Venue_View::venue_phone( $VNU_ID ); |
|
1155 | + return EEH_Venue_View::venue_phone($VNU_ID); |
|
1156 | 1156 | } |
1157 | 1157 | } |
1158 | 1158 | |
1159 | 1159 | |
1160 | 1160 | |
1161 | -if ( ! function_exists( 'espresso_venue_website' )) { |
|
1161 | +if ( ! function_exists('espresso_venue_website')) { |
|
1162 | 1162 | /** |
1163 | 1163 | * espresso_venue_website |
1164 | 1164 | * |
@@ -1166,18 +1166,18 @@ discard block |
||
1166 | 1166 | * @param bool $echo |
1167 | 1167 | * @return string |
1168 | 1168 | */ |
1169 | - function espresso_venue_website( $VNU_ID = 0, $echo = TRUE ) { |
|
1170 | - if ( $echo ) { |
|
1171 | - echo EEH_Venue_View::venue_website_link( $VNU_ID ); |
|
1169 | + function espresso_venue_website($VNU_ID = 0, $echo = TRUE) { |
|
1170 | + if ($echo) { |
|
1171 | + echo EEH_Venue_View::venue_website_link($VNU_ID); |
|
1172 | 1172 | return ''; |
1173 | 1173 | } |
1174 | - return EEH_Venue_View::venue_website_link( $VNU_ID ); |
|
1174 | + return EEH_Venue_View::venue_website_link($VNU_ID); |
|
1175 | 1175 | } |
1176 | 1176 | } |
1177 | 1177 | |
1178 | 1178 | |
1179 | 1179 | |
1180 | -if ( ! function_exists( 'espresso_edit_venue_link' )) { |
|
1180 | +if ( ! function_exists('espresso_edit_venue_link')) { |
|
1181 | 1181 | /** |
1182 | 1182 | * espresso_edit_venue_link |
1183 | 1183 | * |
@@ -1185,12 +1185,12 @@ discard block |
||
1185 | 1185 | * @param bool $echo |
1186 | 1186 | * @return string |
1187 | 1187 | */ |
1188 | - function espresso_edit_venue_link( $VNU_ID = 0, $echo = TRUE ) { |
|
1189 | - if($echo){ |
|
1190 | - echo EEH_Venue_View::edit_venue_link( $VNU_ID ); |
|
1188 | + function espresso_edit_venue_link($VNU_ID = 0, $echo = TRUE) { |
|
1189 | + if ($echo) { |
|
1190 | + echo EEH_Venue_View::edit_venue_link($VNU_ID); |
|
1191 | 1191 | return ''; |
1192 | 1192 | } |
1193 | - return EEH_Venue_View::edit_venue_link( $VNU_ID ); |
|
1193 | + return EEH_Venue_View::edit_venue_link($VNU_ID); |
|
1194 | 1194 | } |
1195 | 1195 | } |
1196 | 1196 |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | // with these parameters |
141 | 141 | $cache_id .= filter_input(INPUT_SERVER, 'QUERY_STRING', FILTER_SANITIZE_URL); |
142 | 142 | // then md5 the above to control it's length, add all of our prefixes, and truncate |
143 | - return substr($this->cachePrefix() . $id_prefix . '-' . md5($cache_id), 0, 182); |
|
143 | + return substr($this->cachePrefix().$id_prefix.'-'.md5($cache_id), 0, 182); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
@@ -170,9 +170,9 @@ discard block |
||
170 | 170 | return ' |
171 | 171 | <div class="ee-cached-content-notice" style="position:fixed; bottom:0; left: 0;"> |
172 | 172 | <p style="font-size:9px;font-weight:normal;color:#666;line-height: 12px;margin:0 0 3px 5px"> |
173 | - <b>' . $type . '</b><span style="color:#999"> : </span> |
|
174 | - <span>' . $cache_id . '</span> |
|
175 | - <span style="margin-left:2em;">' . __FILE__ . '</span> |
|
173 | + <b>' . $type.'</b><span style="color:#999"> : </span> |
|
174 | + <span>' . $cache_id.'</span> |
|
175 | + <span style="margin-left:2em;">' . __FILE__.'</span> |
|
176 | 176 | </p> |
177 | 177 | </div>'; |
178 | 178 | } |
@@ -16,135 +16,135 @@ discard block |
||
16 | 16 | class BasicCacheManager implements CacheManagerInterface |
17 | 17 | { |
18 | 18 | |
19 | - /** |
|
20 | - * @type string |
|
21 | - */ |
|
22 | - const CACHE_PREFIX = 'ee_cache_'; |
|
23 | - |
|
24 | - |
|
25 | - /** |
|
26 | - * @var CacheStorageInterface $cache_storage |
|
27 | - */ |
|
28 | - private $cache_storage; |
|
29 | - |
|
30 | - |
|
31 | - /** |
|
32 | - * BasicCacheManager constructor. |
|
33 | - * |
|
34 | - * @param CacheStorageInterface $cache_storage [required] |
|
35 | - */ |
|
36 | - public function __construct(CacheStorageInterface $cache_storage) |
|
37 | - { |
|
38 | - $this->cache_storage = $cache_storage; |
|
39 | - } |
|
40 | - |
|
41 | - |
|
42 | - /** |
|
43 | - * returns a string that will be prepended to all cache identifiers |
|
44 | - * |
|
45 | - * @return string |
|
46 | - */ |
|
47 | - public function cachePrefix() |
|
48 | - { |
|
49 | - return BasicCacheManager::CACHE_PREFIX; |
|
50 | - } |
|
51 | - |
|
52 | - |
|
53 | - /** |
|
54 | - * @param string $id_prefix [required] Prepended to all cache IDs. Can be helpful in finding specific cache types. |
|
55 | - * May also be helpful to include an additional specific identifier, |
|
56 | - * such as a post ID as part of the $id_prefix so that individual caches |
|
57 | - * can be found and/or cleared. ex: "venue-28", or "shortcode-156". |
|
58 | - * BasicCacheManager::CACHE_PREFIX will also be prepended to the cache id. |
|
59 | - * @param string $cache_id [required] Additional identifying details that make this cache unique. |
|
60 | - * It is advisable to use some of the actual data |
|
61 | - * that is used to generate the content being cached, |
|
62 | - * in order to guarantee that the cache id is unique for that content. |
|
63 | - * The cache id will be md5'd before usage to make it more db friendly, |
|
64 | - * and the entire cache id string will be truncated to 190 characters. |
|
65 | - * @param Closure $callback [required] since the point of caching is to avoid generating content when not |
|
66 | - * necessary, |
|
67 | - * we wrap our content creation in a Closure so that it is not executed until needed. |
|
68 | - * @param int $expiration |
|
69 | - * @return Closure|mixed |
|
70 | - */ |
|
71 | - public function get($id_prefix, $cache_id, Closure $callback, $expiration = HOUR_IN_SECONDS) |
|
72 | - { |
|
73 | - $content = ''; |
|
74 | - $expiration = absint( |
|
75 | - apply_filters( |
|
76 | - 'FHEE__CacheManager__get__cache_expiration', |
|
77 | - $expiration, |
|
78 | - $id_prefix, |
|
79 | - $cache_id |
|
80 | - ) |
|
81 | - ); |
|
82 | - $cache_id = $this->generateCacheIdentifier($id_prefix, $cache_id); |
|
83 | - // is caching enabled for this content ? |
|
84 | - if ($expiration) { |
|
85 | - $content = $this->cache_storage->get($cache_id); |
|
86 | - } |
|
87 | - // any existing content ? |
|
88 | - if (empty($content)) { |
|
89 | - // nope! let's generate some new stuff |
|
90 | - $content = $callback(); |
|
91 | - // save the new content if caching is enabled |
|
92 | - if ($expiration) { |
|
93 | - $this->cache_storage->add($cache_id, $content, $expiration); |
|
94 | - if (EE_DEBUG) { |
|
95 | - $content .= $this->displayCacheNotice($cache_id, 'REFRESH CACHE'); |
|
96 | - } |
|
97 | - } |
|
98 | - } else { |
|
99 | - if (EE_DEBUG) { |
|
100 | - $content .= $this->displayCacheNotice($cache_id, 'CACHED CONTENT'); |
|
101 | - } |
|
102 | - } |
|
103 | - return $content; |
|
104 | - } |
|
105 | - |
|
106 | - |
|
107 | - /** |
|
108 | - * Generates a unique identifier string for the cache |
|
109 | - * |
|
110 | - * @param string $id_prefix [required] see BasicCacheManager::get() |
|
111 | - * @param string $cache_id [required] see BasicCacheManager::get() |
|
112 | - * @return string |
|
113 | - */ |
|
114 | - private function generateCacheIdentifier($id_prefix, $cache_id) |
|
115 | - { |
|
116 | - // let's make the cached content unique for this "page" |
|
117 | - $cache_id .= filter_input(INPUT_SERVER, 'REQUEST_URI', FILTER_SANITIZE_URL); |
|
118 | - // with these parameters |
|
119 | - $cache_id .= filter_input(INPUT_SERVER, 'QUERY_STRING', FILTER_SANITIZE_URL); |
|
120 | - // then md5 the above to control it's length, add all of our prefixes, and truncate |
|
121 | - return substr($this->cachePrefix() . $id_prefix . '-' . md5($cache_id), 0, 182); |
|
122 | - } |
|
123 | - |
|
124 | - |
|
125 | - /** |
|
126 | - * @param array|string $cache_id [required] Could be an ID prefix affecting many caches |
|
127 | - * or a specific ID targeting a single cache item |
|
128 | - * @return void |
|
129 | - */ |
|
130 | - public function clear($cache_id) |
|
131 | - { |
|
132 | - // ensure incoming arg is in an array |
|
133 | - $cache_id = is_array($cache_id) ? $cache_id : array($cache_id); |
|
134 | - // delete corresponding transients for the supplied id prefix |
|
135 | - $this->cache_storage->deleteMany($cache_id); |
|
136 | - } |
|
137 | - |
|
138 | - |
|
139 | - /** |
|
140 | - * @param array|string $cache_id [required] Could be an ID prefix affecting many caches |
|
141 | - * or a specific ID targeting a single cache item |
|
142 | - * @param string $type |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - private function displayCacheNotice($cache_id, $type) |
|
146 | - { |
|
147 | - return ' |
|
19 | + /** |
|
20 | + * @type string |
|
21 | + */ |
|
22 | + const CACHE_PREFIX = 'ee_cache_'; |
|
23 | + |
|
24 | + |
|
25 | + /** |
|
26 | + * @var CacheStorageInterface $cache_storage |
|
27 | + */ |
|
28 | + private $cache_storage; |
|
29 | + |
|
30 | + |
|
31 | + /** |
|
32 | + * BasicCacheManager constructor. |
|
33 | + * |
|
34 | + * @param CacheStorageInterface $cache_storage [required] |
|
35 | + */ |
|
36 | + public function __construct(CacheStorageInterface $cache_storage) |
|
37 | + { |
|
38 | + $this->cache_storage = $cache_storage; |
|
39 | + } |
|
40 | + |
|
41 | + |
|
42 | + /** |
|
43 | + * returns a string that will be prepended to all cache identifiers |
|
44 | + * |
|
45 | + * @return string |
|
46 | + */ |
|
47 | + public function cachePrefix() |
|
48 | + { |
|
49 | + return BasicCacheManager::CACHE_PREFIX; |
|
50 | + } |
|
51 | + |
|
52 | + |
|
53 | + /** |
|
54 | + * @param string $id_prefix [required] Prepended to all cache IDs. Can be helpful in finding specific cache types. |
|
55 | + * May also be helpful to include an additional specific identifier, |
|
56 | + * such as a post ID as part of the $id_prefix so that individual caches |
|
57 | + * can be found and/or cleared. ex: "venue-28", or "shortcode-156". |
|
58 | + * BasicCacheManager::CACHE_PREFIX will also be prepended to the cache id. |
|
59 | + * @param string $cache_id [required] Additional identifying details that make this cache unique. |
|
60 | + * It is advisable to use some of the actual data |
|
61 | + * that is used to generate the content being cached, |
|
62 | + * in order to guarantee that the cache id is unique for that content. |
|
63 | + * The cache id will be md5'd before usage to make it more db friendly, |
|
64 | + * and the entire cache id string will be truncated to 190 characters. |
|
65 | + * @param Closure $callback [required] since the point of caching is to avoid generating content when not |
|
66 | + * necessary, |
|
67 | + * we wrap our content creation in a Closure so that it is not executed until needed. |
|
68 | + * @param int $expiration |
|
69 | + * @return Closure|mixed |
|
70 | + */ |
|
71 | + public function get($id_prefix, $cache_id, Closure $callback, $expiration = HOUR_IN_SECONDS) |
|
72 | + { |
|
73 | + $content = ''; |
|
74 | + $expiration = absint( |
|
75 | + apply_filters( |
|
76 | + 'FHEE__CacheManager__get__cache_expiration', |
|
77 | + $expiration, |
|
78 | + $id_prefix, |
|
79 | + $cache_id |
|
80 | + ) |
|
81 | + ); |
|
82 | + $cache_id = $this->generateCacheIdentifier($id_prefix, $cache_id); |
|
83 | + // is caching enabled for this content ? |
|
84 | + if ($expiration) { |
|
85 | + $content = $this->cache_storage->get($cache_id); |
|
86 | + } |
|
87 | + // any existing content ? |
|
88 | + if (empty($content)) { |
|
89 | + // nope! let's generate some new stuff |
|
90 | + $content = $callback(); |
|
91 | + // save the new content if caching is enabled |
|
92 | + if ($expiration) { |
|
93 | + $this->cache_storage->add($cache_id, $content, $expiration); |
|
94 | + if (EE_DEBUG) { |
|
95 | + $content .= $this->displayCacheNotice($cache_id, 'REFRESH CACHE'); |
|
96 | + } |
|
97 | + } |
|
98 | + } else { |
|
99 | + if (EE_DEBUG) { |
|
100 | + $content .= $this->displayCacheNotice($cache_id, 'CACHED CONTENT'); |
|
101 | + } |
|
102 | + } |
|
103 | + return $content; |
|
104 | + } |
|
105 | + |
|
106 | + |
|
107 | + /** |
|
108 | + * Generates a unique identifier string for the cache |
|
109 | + * |
|
110 | + * @param string $id_prefix [required] see BasicCacheManager::get() |
|
111 | + * @param string $cache_id [required] see BasicCacheManager::get() |
|
112 | + * @return string |
|
113 | + */ |
|
114 | + private function generateCacheIdentifier($id_prefix, $cache_id) |
|
115 | + { |
|
116 | + // let's make the cached content unique for this "page" |
|
117 | + $cache_id .= filter_input(INPUT_SERVER, 'REQUEST_URI', FILTER_SANITIZE_URL); |
|
118 | + // with these parameters |
|
119 | + $cache_id .= filter_input(INPUT_SERVER, 'QUERY_STRING', FILTER_SANITIZE_URL); |
|
120 | + // then md5 the above to control it's length, add all of our prefixes, and truncate |
|
121 | + return substr($this->cachePrefix() . $id_prefix . '-' . md5($cache_id), 0, 182); |
|
122 | + } |
|
123 | + |
|
124 | + |
|
125 | + /** |
|
126 | + * @param array|string $cache_id [required] Could be an ID prefix affecting many caches |
|
127 | + * or a specific ID targeting a single cache item |
|
128 | + * @return void |
|
129 | + */ |
|
130 | + public function clear($cache_id) |
|
131 | + { |
|
132 | + // ensure incoming arg is in an array |
|
133 | + $cache_id = is_array($cache_id) ? $cache_id : array($cache_id); |
|
134 | + // delete corresponding transients for the supplied id prefix |
|
135 | + $this->cache_storage->deleteMany($cache_id); |
|
136 | + } |
|
137 | + |
|
138 | + |
|
139 | + /** |
|
140 | + * @param array|string $cache_id [required] Could be an ID prefix affecting many caches |
|
141 | + * or a specific ID targeting a single cache item |
|
142 | + * @param string $type |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + private function displayCacheNotice($cache_id, $type) |
|
146 | + { |
|
147 | + return ' |
|
148 | 148 | <div class="ee-cached-content-notice" style="position:fixed; bottom:0; left: 0;"> |
149 | 149 | <p style="font-size:9px;font-weight:normal;color:#666;line-height: 12px;margin:0 0 3px 5px"> |
150 | 150 | <b>' . $type . '</b><span style="color:#999"> : </span> |
@@ -152,5 +152,5 @@ discard block |
||
152 | 152 | <span style="margin-left:2em;">' . __FILE__ . '</span> |
153 | 153 | </p> |
154 | 154 | </div>'; |
155 | - } |
|
155 | + } |
|
156 | 156 | } |
@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public static function adminUrl($page = 'espresso_events', $action = 'default', $additional_params = '') |
68 | 68 | { |
69 | - $url = self::URL_PREFIX . $page; |
|
70 | - $url .= $action ? '&action=' . $action : ''; |
|
71 | - $url .= $additional_params ? '&' . ltrim('&', ltrim('?', $additional_params)) : ''; |
|
69 | + $url = self::URL_PREFIX.$page; |
|
70 | + $url .= $action ? '&action='.$action : ''; |
|
71 | + $url .= $additional_params ? '&'.ltrim('&', ltrim('?', $additional_params)) : ''; |
|
72 | 72 | return $url; |
73 | 73 | } |
74 | 74 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public static function wpEditorTextTabSelector($field_reference) |
82 | 82 | { |
83 | - return '#content-' . $field_reference . '-content-html'; |
|
83 | + return '#content-'.$field_reference.'-content-html'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | |
@@ -91,6 +91,6 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public static function wpEditorTextAreaSelector($field_reference) |
93 | 93 | { |
94 | - return '#content-' . $field_reference . '-content'; |
|
94 | + return '#content-'.$field_reference.'-content'; |
|
95 | 95 | } |
96 | 96 | } |
@@ -13,96 +13,96 @@ |
||
13 | 13 | class CoreAdmin |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * @var string |
|
18 | - */ |
|
19 | - const URL_PREFIX = 'admin.php?page='; |
|
20 | - |
|
21 | - |
|
22 | - /** |
|
23 | - * This is the selector for the next page button on list tables. |
|
24 | - * @var string |
|
25 | - */ |
|
26 | - const ADMIN_LIST_TABLE_NEXT_PAGE_CLASS = '.next-page'; |
|
27 | - |
|
28 | - |
|
29 | - /** |
|
30 | - * The selector for the search input submit button on list table pages |
|
31 | - * @var string |
|
32 | - */ |
|
33 | - const LIST_TABLE_SEARCH_SUBMIT_SELECTOR = '#search-submit'; |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * Selector for the screen options dropdown. |
|
38 | - * @var string |
|
39 | - */ |
|
40 | - const WP_SCREEN_SETTINGS_LINK_SELECTOR = '#show-settings-link'; |
|
41 | - |
|
42 | - |
|
43 | - /** |
|
44 | - * Selector for the per page field setting selector (found within screen options dropdown) |
|
45 | - * @var string |
|
46 | - */ |
|
47 | - const WP_SCREEN_SETTINGS_PER_PAGE_FIELD_SELECTOR = '.screen-per-page'; |
|
48 | - |
|
49 | - |
|
50 | - /** |
|
51 | - * Selector for apply screen options settings. |
|
52 | - * @var string |
|
53 | - */ |
|
54 | - const WP_SCREEN_OPTIONS_APPLY_SETTINGS_BUTTON_SELECTOR = '#screen-options-apply'; |
|
55 | - |
|
56 | - |
|
57 | - /** |
|
58 | - * Selector for bulk action select field on list tables. |
|
59 | - */ |
|
60 | - const SELECTOR_LIST_TABLE_BULK_ACTION_FIELD = '#bulk-action-selector-'; |
|
61 | - |
|
62 | - |
|
63 | - /** |
|
64 | - * Selector for applying a bulk action. |
|
65 | - */ |
|
66 | - const SELECTOR_LIST_TABLE_BULK_ACTTION_APPLY = '#doaction'; |
|
67 | - |
|
68 | - |
|
69 | - /** |
|
70 | - * Get the EE admin url for the given properties. |
|
71 | - * Note, this is JUST the endpoint for the admin route. It is expected that the actor/test would be calling this |
|
72 | - * with `amOnAdminPage` action. |
|
73 | - * |
|
74 | - * @param string $page |
|
75 | - * @param string $action |
|
76 | - * @param string $additional_params |
|
77 | - * @return string |
|
78 | - */ |
|
79 | - public static function adminUrl($page = 'espresso_events', $action = 'default', $additional_params = '') |
|
80 | - { |
|
81 | - $url = self::URL_PREFIX . $page; |
|
82 | - $url .= $action ? '&action=' . $action : ''; |
|
83 | - $url .= $additional_params ? '&' . ltrim('&', ltrim('?', $additional_params)) : ''; |
|
84 | - return $url; |
|
85 | - } |
|
86 | - |
|
87 | - |
|
88 | - /** |
|
89 | - * Returns the selector for the text tab switcher for a wp-editor instance. |
|
90 | - * @param $field_reference |
|
91 | - * @return string |
|
92 | - */ |
|
93 | - public static function wpEditorTextTabSelector($field_reference) |
|
94 | - { |
|
95 | - return '#content-' . $field_reference . '-content-html'; |
|
96 | - } |
|
97 | - |
|
98 | - |
|
99 | - /** |
|
100 | - * Returns the selector for the textarea exposed when clicing the text tab switcher for a wp-editor instance. |
|
101 | - * @param $field_reference |
|
102 | - * @return string |
|
103 | - */ |
|
104 | - public static function wpEditorTextAreaSelector($field_reference) |
|
105 | - { |
|
106 | - return '#content-' . $field_reference . '-content'; |
|
107 | - } |
|
16 | + /** |
|
17 | + * @var string |
|
18 | + */ |
|
19 | + const URL_PREFIX = 'admin.php?page='; |
|
20 | + |
|
21 | + |
|
22 | + /** |
|
23 | + * This is the selector for the next page button on list tables. |
|
24 | + * @var string |
|
25 | + */ |
|
26 | + const ADMIN_LIST_TABLE_NEXT_PAGE_CLASS = '.next-page'; |
|
27 | + |
|
28 | + |
|
29 | + /** |
|
30 | + * The selector for the search input submit button on list table pages |
|
31 | + * @var string |
|
32 | + */ |
|
33 | + const LIST_TABLE_SEARCH_SUBMIT_SELECTOR = '#search-submit'; |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * Selector for the screen options dropdown. |
|
38 | + * @var string |
|
39 | + */ |
|
40 | + const WP_SCREEN_SETTINGS_LINK_SELECTOR = '#show-settings-link'; |
|
41 | + |
|
42 | + |
|
43 | + /** |
|
44 | + * Selector for the per page field setting selector (found within screen options dropdown) |
|
45 | + * @var string |
|
46 | + */ |
|
47 | + const WP_SCREEN_SETTINGS_PER_PAGE_FIELD_SELECTOR = '.screen-per-page'; |
|
48 | + |
|
49 | + |
|
50 | + /** |
|
51 | + * Selector for apply screen options settings. |
|
52 | + * @var string |
|
53 | + */ |
|
54 | + const WP_SCREEN_OPTIONS_APPLY_SETTINGS_BUTTON_SELECTOR = '#screen-options-apply'; |
|
55 | + |
|
56 | + |
|
57 | + /** |
|
58 | + * Selector for bulk action select field on list tables. |
|
59 | + */ |
|
60 | + const SELECTOR_LIST_TABLE_BULK_ACTION_FIELD = '#bulk-action-selector-'; |
|
61 | + |
|
62 | + |
|
63 | + /** |
|
64 | + * Selector for applying a bulk action. |
|
65 | + */ |
|
66 | + const SELECTOR_LIST_TABLE_BULK_ACTTION_APPLY = '#doaction'; |
|
67 | + |
|
68 | + |
|
69 | + /** |
|
70 | + * Get the EE admin url for the given properties. |
|
71 | + * Note, this is JUST the endpoint for the admin route. It is expected that the actor/test would be calling this |
|
72 | + * with `amOnAdminPage` action. |
|
73 | + * |
|
74 | + * @param string $page |
|
75 | + * @param string $action |
|
76 | + * @param string $additional_params |
|
77 | + * @return string |
|
78 | + */ |
|
79 | + public static function adminUrl($page = 'espresso_events', $action = 'default', $additional_params = '') |
|
80 | + { |
|
81 | + $url = self::URL_PREFIX . $page; |
|
82 | + $url .= $action ? '&action=' . $action : ''; |
|
83 | + $url .= $additional_params ? '&' . ltrim('&', ltrim('?', $additional_params)) : ''; |
|
84 | + return $url; |
|
85 | + } |
|
86 | + |
|
87 | + |
|
88 | + /** |
|
89 | + * Returns the selector for the text tab switcher for a wp-editor instance. |
|
90 | + * @param $field_reference |
|
91 | + * @return string |
|
92 | + */ |
|
93 | + public static function wpEditorTextTabSelector($field_reference) |
|
94 | + { |
|
95 | + return '#content-' . $field_reference . '-content-html'; |
|
96 | + } |
|
97 | + |
|
98 | + |
|
99 | + /** |
|
100 | + * Returns the selector for the textarea exposed when clicing the text tab switcher for a wp-editor instance. |
|
101 | + * @param $field_reference |
|
102 | + * @return string |
|
103 | + */ |
|
104 | + public static function wpEditorTextAreaSelector($field_reference) |
|
105 | + { |
|
106 | + return '#content-' . $field_reference . '-content'; |
|
107 | + } |
|
108 | 108 | } |
@@ -14,115 +14,115 @@ |
||
14 | 14 | { |
15 | 15 | |
16 | 16 | |
17 | - /** |
|
18 | - * EE_Message_Template_Group_Collection constructor. |
|
19 | - */ |
|
20 | - public function __construct() |
|
21 | - { |
|
22 | - $this->interface = 'EE_Message_Template_Group'; |
|
23 | - } |
|
17 | + /** |
|
18 | + * EE_Message_Template_Group_Collection constructor. |
|
19 | + */ |
|
20 | + public function __construct() |
|
21 | + { |
|
22 | + $this->interface = 'EE_Message_Template_Group'; |
|
23 | + } |
|
24 | 24 | |
25 | 25 | |
26 | - /** |
|
27 | - * Adds the Message Template Group object to the repository. |
|
28 | - * |
|
29 | - * @param $message_template_group |
|
30 | - * @param array|int $EVT_ID Some templates are specific to EVT, so this is provided as a way of |
|
31 | - * indexing the template by key. If this template is shared among multiple events then |
|
32 | - * include the events as an array. |
|
33 | - * @return bool |
|
34 | - */ |
|
35 | - public function add($message_template_group, $EVT_ID = array()) |
|
36 | - { |
|
37 | - $EVT_ID = is_array($EVT_ID) ? $EVT_ID : (array) $EVT_ID; |
|
38 | - if ($message_template_group instanceof $this->interface) { |
|
39 | - $data['key'] = $this->getKey( |
|
40 | - $message_template_group->messenger(), |
|
41 | - $message_template_group->message_type(), |
|
42 | - $EVT_ID |
|
43 | - ); |
|
44 | - return parent::add($message_template_group, $data); |
|
45 | - } |
|
46 | - return false; |
|
47 | - } |
|
26 | + /** |
|
27 | + * Adds the Message Template Group object to the repository. |
|
28 | + * |
|
29 | + * @param $message_template_group |
|
30 | + * @param array|int $EVT_ID Some templates are specific to EVT, so this is provided as a way of |
|
31 | + * indexing the template by key. If this template is shared among multiple events then |
|
32 | + * include the events as an array. |
|
33 | + * @return bool |
|
34 | + */ |
|
35 | + public function add($message_template_group, $EVT_ID = array()) |
|
36 | + { |
|
37 | + $EVT_ID = is_array($EVT_ID) ? $EVT_ID : (array) $EVT_ID; |
|
38 | + if ($message_template_group instanceof $this->interface) { |
|
39 | + $data['key'] = $this->getKey( |
|
40 | + $message_template_group->messenger(), |
|
41 | + $message_template_group->message_type(), |
|
42 | + $EVT_ID |
|
43 | + ); |
|
44 | + return parent::add($message_template_group, $data); |
|
45 | + } |
|
46 | + return false; |
|
47 | + } |
|
48 | 48 | |
49 | 49 | |
50 | - /** |
|
51 | - * This retrieves any EE_Message_Template_Group in the repo by its ID. |
|
52 | - * |
|
53 | - * @param $GRP_ID |
|
54 | - * @return EE_Message_Template_Group | null |
|
55 | - */ |
|
56 | - public function get_by_ID($GRP_ID) |
|
57 | - { |
|
58 | - $this->rewind(); |
|
59 | - while ($this->valid()) { |
|
60 | - if ($this->current()->ID() === $GRP_ID) { |
|
61 | - /** @var EE_Message_Template_Group $message_template_group */ |
|
62 | - $message_template_group = $this->current(); |
|
63 | - $this->rewind(); |
|
64 | - return $message_template_group; |
|
65 | - } |
|
66 | - $this->next(); |
|
67 | - } |
|
68 | - return null; |
|
69 | - } |
|
50 | + /** |
|
51 | + * This retrieves any EE_Message_Template_Group in the repo by its ID. |
|
52 | + * |
|
53 | + * @param $GRP_ID |
|
54 | + * @return EE_Message_Template_Group | null |
|
55 | + */ |
|
56 | + public function get_by_ID($GRP_ID) |
|
57 | + { |
|
58 | + $this->rewind(); |
|
59 | + while ($this->valid()) { |
|
60 | + if ($this->current()->ID() === $GRP_ID) { |
|
61 | + /** @var EE_Message_Template_Group $message_template_group */ |
|
62 | + $message_template_group = $this->current(); |
|
63 | + $this->rewind(); |
|
64 | + return $message_template_group; |
|
65 | + } |
|
66 | + $this->next(); |
|
67 | + } |
|
68 | + return null; |
|
69 | + } |
|
70 | 70 | |
71 | 71 | |
72 | - /** |
|
73 | - * Generates a hash used to identify a given Message Template Group. |
|
74 | - * |
|
75 | - * @param string $messenger The EE_messenger->name |
|
76 | - * @param string $message_type The EE_message_type->name |
|
77 | - * @param int $EVT_ID Optional. If the template is for a specific EVT then that should be included. |
|
78 | - * @deprecated 4.9.40.rc.017 Use getKey instead. |
|
79 | - * @return string |
|
80 | - */ |
|
81 | - public function get_key($messenger, $message_type, $EVT_ID = 0) |
|
82 | - { |
|
83 | - $EVT_ID = (array) $EVT_ID; |
|
84 | - return $this->getKey($messenger, $message_type, $EVT_ID); |
|
85 | - } |
|
72 | + /** |
|
73 | + * Generates a hash used to identify a given Message Template Group. |
|
74 | + * |
|
75 | + * @param string $messenger The EE_messenger->name |
|
76 | + * @param string $message_type The EE_message_type->name |
|
77 | + * @param int $EVT_ID Optional. If the template is for a specific EVT then that should be included. |
|
78 | + * @deprecated 4.9.40.rc.017 Use getKey instead. |
|
79 | + * @return string |
|
80 | + */ |
|
81 | + public function get_key($messenger, $message_type, $EVT_ID = 0) |
|
82 | + { |
|
83 | + $EVT_ID = (array) $EVT_ID; |
|
84 | + return $this->getKey($messenger, $message_type, $EVT_ID); |
|
85 | + } |
|
86 | 86 | |
87 | 87 | |
88 | - /** |
|
89 | - * Generates a hash used to identify a given Message Template Group |
|
90 | - * @param string $messenger The EE_messenger->name |
|
91 | - * @param string $message_type The EE_message_type->name |
|
92 | - * @param array $EVT_ID Optional. If the template is for a specific EVT_ID (or events) then that should |
|
93 | - * be included. |
|
94 | - * @since 4.9.40.rc.017 |
|
95 | - * @return string |
|
96 | - */ |
|
97 | - public function getKey($messenger, $message_type, array $EVT_ID = array()) |
|
98 | - { |
|
99 | - sort($EVT_ID); |
|
100 | - $EVT_ID = implode(',', array_unique($EVT_ID)); |
|
101 | - return md5($messenger . $message_type . $EVT_ID); |
|
102 | - } |
|
88 | + /** |
|
89 | + * Generates a hash used to identify a given Message Template Group |
|
90 | + * @param string $messenger The EE_messenger->name |
|
91 | + * @param string $message_type The EE_message_type->name |
|
92 | + * @param array $EVT_ID Optional. If the template is for a specific EVT_ID (or events) then that should |
|
93 | + * be included. |
|
94 | + * @since 4.9.40.rc.017 |
|
95 | + * @return string |
|
96 | + */ |
|
97 | + public function getKey($messenger, $message_type, array $EVT_ID = array()) |
|
98 | + { |
|
99 | + sort($EVT_ID); |
|
100 | + $EVT_ID = implode(',', array_unique($EVT_ID)); |
|
101 | + return md5($messenger . $message_type . $EVT_ID); |
|
102 | + } |
|
103 | 103 | |
104 | 104 | |
105 | - /** |
|
106 | - * This returns a saved EE_Message_Template_Group object if there is one in the repository indexed by a key matching |
|
107 | - * the given string. |
|
108 | - * |
|
109 | - * @param string $key @see EE_Message_Template_Group::get_key() to setup a key formatted for searching. |
|
110 | - * @return null|EE_Message_Template_Group |
|
111 | - */ |
|
112 | - public function get_by_key($key) |
|
113 | - { |
|
114 | - $this->rewind(); |
|
115 | - while ($this->valid()) { |
|
116 | - $data = $this->getInfo(); |
|
117 | - if (isset($data['key']) && $data['key'] === $key) { |
|
118 | - /** @var EE_Message_Template_Group $message_template_group */ |
|
119 | - $message_template_group = $this->current(); |
|
120 | - $this->rewind(); |
|
121 | - return $message_template_group; |
|
122 | - } |
|
123 | - $this->next(); |
|
124 | - } |
|
125 | - return null; |
|
126 | - } |
|
105 | + /** |
|
106 | + * This returns a saved EE_Message_Template_Group object if there is one in the repository indexed by a key matching |
|
107 | + * the given string. |
|
108 | + * |
|
109 | + * @param string $key @see EE_Message_Template_Group::get_key() to setup a key formatted for searching. |
|
110 | + * @return null|EE_Message_Template_Group |
|
111 | + */ |
|
112 | + public function get_by_key($key) |
|
113 | + { |
|
114 | + $this->rewind(); |
|
115 | + while ($this->valid()) { |
|
116 | + $data = $this->getInfo(); |
|
117 | + if (isset($data['key']) && $data['key'] === $key) { |
|
118 | + /** @var EE_Message_Template_Group $message_template_group */ |
|
119 | + $message_template_group = $this->current(); |
|
120 | + $this->rewind(); |
|
121 | + return $message_template_group; |
|
122 | + } |
|
123 | + $this->next(); |
|
124 | + } |
|
125 | + return null; |
|
126 | + } |
|
127 | 127 | |
128 | 128 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | { |
99 | 99 | sort($EVT_ID); |
100 | 100 | $EVT_ID = implode(',', array_unique($EVT_ID)); |
101 | - return md5($messenger . $message_type . $EVT_ID); |
|
101 | + return md5($messenger.$message_type.$EVT_ID); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | $this->_form_section->html_id(), |
19 | 19 | $this->_form_section->html_class(), |
20 | 20 | $this->_form_section->html_style() |
21 | - ) . EEH_HTML::tbody(); |
|
21 | + ).EEH_HTML::tbody(); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function layout_form_end($additional_args = array()) |
33 | 33 | { |
34 | - return EEH_HTML::tbodyx() . EEH_HTML::tablex($this->_form_section->html_id()); |
|
34 | + return EEH_HTML::tbodyx().EEH_HTML::tablex($this->_form_section->html_id()); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
@@ -50,11 +50,11 @@ discard block |
||
50 | 50 | } else { |
51 | 51 | $html_for_input = $input->get_html_for_input(); |
52 | 52 | $html_for_input .= $input->get_html_for_errors() != '' |
53 | - ? EEH_HTML::nl() . $input->get_html_for_errors() |
|
53 | + ? EEH_HTML::nl().$input->get_html_for_errors() |
|
54 | 54 | : ''; |
55 | - $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl() . $input->get_html_for_help() : ''; |
|
55 | + $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl().$input->get_html_for_help() : ''; |
|
56 | 56 | $html .= EEH_HTML::tr( |
57 | - EEH_HTML::th($input->get_html_for_label()) . |
|
57 | + EEH_HTML::th($input->get_html_for_label()). |
|
58 | 58 | EEH_HTML::td($html_for_input) |
59 | 59 | ); |
60 | 60 | } |
@@ -5,81 +5,81 @@ |
||
5 | 5 | class EE_Two_Column_Layout extends EE_Form_Section_Layout_Base |
6 | 6 | { |
7 | 7 | |
8 | - /** |
|
9 | - * Should be used to start teh form section (Eg a table tag, or a div tag, etc.) |
|
10 | - * |
|
11 | - * @param array $additional_args |
|
12 | - * @return string |
|
13 | - */ |
|
14 | - public function layout_form_begin($additional_args = array()) |
|
15 | - { |
|
16 | - return $this->display_form_wide_errors() |
|
17 | - . EEH_HTML::table( |
|
18 | - '', |
|
19 | - $this->_form_section->html_id(), |
|
20 | - $this->_form_section->html_class(), |
|
21 | - $this->_form_section->html_style() |
|
22 | - ) . EEH_HTML::tbody(); |
|
23 | - } |
|
8 | + /** |
|
9 | + * Should be used to start teh form section (Eg a table tag, or a div tag, etc.) |
|
10 | + * |
|
11 | + * @param array $additional_args |
|
12 | + * @return string |
|
13 | + */ |
|
14 | + public function layout_form_begin($additional_args = array()) |
|
15 | + { |
|
16 | + return $this->display_form_wide_errors() |
|
17 | + . EEH_HTML::table( |
|
18 | + '', |
|
19 | + $this->_form_section->html_id(), |
|
20 | + $this->_form_section->html_class(), |
|
21 | + $this->_form_section->html_style() |
|
22 | + ) . EEH_HTML::tbody(); |
|
23 | + } |
|
24 | 24 | |
25 | 25 | |
26 | 26 | |
27 | - /** |
|
28 | - * Should be used to end the form section (eg a /table tag, or a /div tag, etc) |
|
29 | - * |
|
30 | - * @param array $additional_args |
|
31 | - * @return string |
|
32 | - */ |
|
33 | - public function layout_form_end($additional_args = array()) |
|
34 | - { |
|
35 | - return EEH_HTML::tbodyx() . EEH_HTML::tablex($this->_form_section->html_id()); |
|
36 | - } |
|
27 | + /** |
|
28 | + * Should be used to end the form section (eg a /table tag, or a /div tag, etc) |
|
29 | + * |
|
30 | + * @param array $additional_args |
|
31 | + * @return string |
|
32 | + */ |
|
33 | + public function layout_form_end($additional_args = array()) |
|
34 | + { |
|
35 | + return EEH_HTML::tbodyx() . EEH_HTML::tablex($this->_form_section->html_id()); |
|
36 | + } |
|
37 | 37 | |
38 | 38 | |
39 | 39 | |
40 | - /** |
|
41 | - * Lays out the row for the input, including label and errors |
|
42 | - * |
|
43 | - * @param EE_Form_Input_Base $input |
|
44 | - * @return string |
|
45 | - */ |
|
46 | - public function layout_input($input) |
|
47 | - { |
|
48 | - $html = ''; |
|
49 | - if ($input instanceof EE_Hidden_Input) { |
|
50 | - $html .= $input->get_html_for_input(); |
|
51 | - } else { |
|
52 | - $html_for_input = $input->get_html_for_input(); |
|
53 | - $html_for_input .= $input->get_html_for_errors() != '' |
|
54 | - ? EEH_HTML::nl() . $input->get_html_for_errors() |
|
55 | - : ''; |
|
56 | - $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl() . $input->get_html_for_help() : ''; |
|
57 | - $html .= EEH_HTML::tr( |
|
58 | - EEH_HTML::th($input->get_html_for_label()) . |
|
59 | - EEH_HTML::td($html_for_input) |
|
60 | - ); |
|
61 | - } |
|
62 | - return $html; |
|
63 | - } |
|
40 | + /** |
|
41 | + * Lays out the row for the input, including label and errors |
|
42 | + * |
|
43 | + * @param EE_Form_Input_Base $input |
|
44 | + * @return string |
|
45 | + */ |
|
46 | + public function layout_input($input) |
|
47 | + { |
|
48 | + $html = ''; |
|
49 | + if ($input instanceof EE_Hidden_Input) { |
|
50 | + $html .= $input->get_html_for_input(); |
|
51 | + } else { |
|
52 | + $html_for_input = $input->get_html_for_input(); |
|
53 | + $html_for_input .= $input->get_html_for_errors() != '' |
|
54 | + ? EEH_HTML::nl() . $input->get_html_for_errors() |
|
55 | + : ''; |
|
56 | + $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl() . $input->get_html_for_help() : ''; |
|
57 | + $html .= EEH_HTML::tr( |
|
58 | + EEH_HTML::th($input->get_html_for_label()) . |
|
59 | + EEH_HTML::td($html_for_input) |
|
60 | + ); |
|
61 | + } |
|
62 | + return $html; |
|
63 | + } |
|
64 | 64 | |
65 | 65 | |
66 | 66 | |
67 | - /** |
|
68 | - * Lays out a row for the subsection. Please note that if you have a subsection which you don't want wrapped in |
|
69 | - * a tr and td with a colspan=2, you should use a different layout strategy, like EE_No_Layout, EE_Template_Layout, |
|
70 | - * or EE_Div_Per_Section_Layout, and create subsections using EE_Two_Column_Layout for everywhere you want the |
|
71 | - * two-column layout, and then other sub-sections can be outside the EE_Two_Column_Layout table. |
|
72 | - * |
|
73 | - * @param EE_Form_Section_Proper $form_section |
|
74 | - * @return string |
|
75 | - */ |
|
76 | - public function layout_subsection($form_section) |
|
77 | - { |
|
78 | - if ($form_section instanceof EE_Form_Section_Proper |
|
79 | - || $form_section instanceof EE_Form_Section_HTML |
|
80 | - ) { |
|
81 | - return EEH_HTML::no_row($form_section->get_html()); |
|
82 | - } |
|
83 | - return ''; |
|
84 | - } |
|
67 | + /** |
|
68 | + * Lays out a row for the subsection. Please note that if you have a subsection which you don't want wrapped in |
|
69 | + * a tr and td with a colspan=2, you should use a different layout strategy, like EE_No_Layout, EE_Template_Layout, |
|
70 | + * or EE_Div_Per_Section_Layout, and create subsections using EE_Two_Column_Layout for everywhere you want the |
|
71 | + * two-column layout, and then other sub-sections can be outside the EE_Two_Column_Layout table. |
|
72 | + * |
|
73 | + * @param EE_Form_Section_Proper $form_section |
|
74 | + * @return string |
|
75 | + */ |
|
76 | + public function layout_subsection($form_section) |
|
77 | + { |
|
78 | + if ($form_section instanceof EE_Form_Section_Proper |
|
79 | + || $form_section instanceof EE_Form_Section_HTML |
|
80 | + ) { |
|
81 | + return EEH_HTML::no_row($form_section->get_html()); |
|
82 | + } |
|
83 | + return ''; |
|
84 | + } |
|
85 | 85 | } |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace EventEspresso\Codeception\helpers; |
3 | 3 | |
4 | -use Page\CoreAdmin; |
|
5 | 4 | use Page\CountrySettingsAdmin as CountrySettings; |
6 | 5 | |
7 | 6 | trait CountrySettingsAdmin |
@@ -6,59 +6,59 @@ |
||
6 | 6 | |
7 | 7 | trait CountrySettingsAdmin |
8 | 8 | { |
9 | - /** |
|
10 | - * Instructs the actor to browse to the country settings page. |
|
11 | - * Assumes the actor is already logged in. |
|
12 | - * @param string $additional_params |
|
13 | - */ |
|
14 | - public function amOnCountrySettingsAdminPage($additional_params = '') |
|
15 | - { |
|
16 | - $this->actor()->amOnAdminPage(CountrySettings::url($additional_params)); |
|
17 | - } |
|
9 | + /** |
|
10 | + * Instructs the actor to browse to the country settings page. |
|
11 | + * Assumes the actor is already logged in. |
|
12 | + * @param string $additional_params |
|
13 | + */ |
|
14 | + public function amOnCountrySettingsAdminPage($additional_params = '') |
|
15 | + { |
|
16 | + $this->actor()->amOnAdminPage(CountrySettings::url($additional_params)); |
|
17 | + } |
|
18 | 18 | |
19 | 19 | |
20 | - /** |
|
21 | - * Instructs the actor to select the given decimal places radio option. |
|
22 | - * Assumes the actor is already on the country settings page. |
|
23 | - * @param string $decimal_places |
|
24 | - * @param string $country_code |
|
25 | - */ |
|
26 | - public function setCurrencyDecimalPlacesTo($decimal_places = '2', $country_code = 'US') |
|
27 | - { |
|
28 | - $this->actor()->click(CountrySettings::currencyDecimalPlacesRadioField($decimal_places, $country_code)); |
|
29 | - } |
|
20 | + /** |
|
21 | + * Instructs the actor to select the given decimal places radio option. |
|
22 | + * Assumes the actor is already on the country settings page. |
|
23 | + * @param string $decimal_places |
|
24 | + * @param string $country_code |
|
25 | + */ |
|
26 | + public function setCurrencyDecimalPlacesTo($decimal_places = '2', $country_code = 'US') |
|
27 | + { |
|
28 | + $this->actor()->click(CountrySettings::currencyDecimalPlacesRadioField($decimal_places, $country_code)); |
|
29 | + } |
|
30 | 30 | |
31 | 31 | |
32 | - /** |
|
33 | - * Instructs the actor to select the given decimal mark radio option. |
|
34 | - * Assumes the actor is already on the country settings page. |
|
35 | - * @param string $decimal_mark |
|
36 | - */ |
|
37 | - public function setCurrencyDecimalMarkTo($decimal_mark = '.') |
|
38 | - { |
|
39 | - $this->actor()->click(CountrySettings::currencyDecimalMarkRadioField($decimal_mark)); |
|
40 | - } |
|
32 | + /** |
|
33 | + * Instructs the actor to select the given decimal mark radio option. |
|
34 | + * Assumes the actor is already on the country settings page. |
|
35 | + * @param string $decimal_mark |
|
36 | + */ |
|
37 | + public function setCurrencyDecimalMarkTo($decimal_mark = '.') |
|
38 | + { |
|
39 | + $this->actor()->click(CountrySettings::currencyDecimalMarkRadioField($decimal_mark)); |
|
40 | + } |
|
41 | 41 | |
42 | 42 | |
43 | - /** |
|
44 | - * Instructs the actor to select the given thousands separator radio option. |
|
45 | - * Assumes the actor is already on the country settings page. |
|
46 | - * @param string $thousands_seperator |
|
47 | - */ |
|
48 | - public function setCurrencyThousandsSeparatorTo($thousands_seperator = ',') |
|
49 | - { |
|
50 | - $this->actor()->click(CountrySettings::currencyThousandsSeparatorField($thousands_seperator)); |
|
51 | - } |
|
43 | + /** |
|
44 | + * Instructs the actor to select the given thousands separator radio option. |
|
45 | + * Assumes the actor is already on the country settings page. |
|
46 | + * @param string $thousands_seperator |
|
47 | + */ |
|
48 | + public function setCurrencyThousandsSeparatorTo($thousands_seperator = ',') |
|
49 | + { |
|
50 | + $this->actor()->click(CountrySettings::currencyThousandsSeparatorField($thousands_seperator)); |
|
51 | + } |
|
52 | 52 | |
53 | 53 | |
54 | - /** |
|
55 | - * Clicks the country settings submit button. |
|
56 | - * Assumes the actor is on the country settings admin page. |
|
57 | - */ |
|
58 | - public function saveCountrySettings() |
|
59 | - { |
|
60 | - $this->actor()->click(CountrySettings::COUNTRY_SETTINGS_SAVE_BUTTON); |
|
61 | - //no indicator on the page when stuff has been updated so just give a bit of time for it to finish. |
|
62 | - $this->actor()->wait(10); |
|
63 | - } |
|
54 | + /** |
|
55 | + * Clicks the country settings submit button. |
|
56 | + * Assumes the actor is on the country settings admin page. |
|
57 | + */ |
|
58 | + public function saveCountrySettings() |
|
59 | + { |
|
60 | + $this->actor()->click(CountrySettings::COUNTRY_SETTINGS_SAVE_BUTTON); |
|
61 | + //no indicator on the page when stuff has been updated so just give a bit of time for it to finish. |
|
62 | + $this->actor()->wait(10); |
|
63 | + } |
|
64 | 64 | } |
65 | 65 | \ No newline at end of file |