@@ -558,7 +558,7 @@ |
||
558 | 558 | * |
559 | 559 | * @param string $payment_status The payment status being matched. |
560 | 560 | * |
561 | - * @return string|bool The payment message type slug matching the status or false if no match. |
|
561 | + * @return string|false The payment message type slug matching the status or false if no match. |
|
562 | 562 | */ |
563 | 563 | protected static function _get_payment_message_type( $payment_status ) { |
564 | 564 | $matches = array( |
@@ -6,7 +6,9 @@ discard block |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage modules, messages |
8 | 8 | */ |
9 | -if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
9 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
10 | + exit('No direct script access allowed'); |
|
11 | +} |
|
10 | 12 | /** |
11 | 13 | * |
12 | 14 | * Messages module. Takes care of registering all the triggers for messages. |
@@ -216,14 +218,16 @@ discard block |
||
216 | 218 | $template = basename( $template_path ); |
217 | 219 | |
218 | 220 | //is this already set? |
219 | - if ( isset( self::$_TMP_PACKS[$template] ) ) |
|
220 | - continue; |
|
221 | + if ( isset( self::$_TMP_PACKS[$template] ) ) { |
|
222 | + continue; |
|
223 | + } |
|
221 | 224 | |
222 | 225 | //setup classname. |
223 | 226 | $pack_class = 'EE_Messages_Template_Pack_' . str_replace( ' ', '_', ucwords( str_replace( '_' , ' ', $template ) ) ); |
224 | 227 | |
225 | - if ( ! class_exists( $pack_class ) ) |
|
226 | - continue; |
|
228 | + if ( ! class_exists( $pack_class ) ) { |
|
229 | + continue; |
|
230 | + } |
|
227 | 231 | |
228 | 232 | $template_packs[$template] = new $pack_class; |
229 | 233 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @return EED_Module |
59 | 59 | */ |
60 | 60 | public static function instance() { |
61 | - return parent::get_instance( __CLASS__ ); |
|
61 | + return parent::get_instance(__CLASS__); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | |
@@ -73,11 +73,11 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public static function set_hooks() { |
75 | 75 | //actions |
76 | - add_action( 'AHEE__EE_Payment_Processor__update_txn_based_on_payment', array( 'EED_Messages', 'payment' ), 10, 2 ); |
|
77 | - add_action( 'AHEE__EE_Registration_Processor__trigger_registration_update_notifications', array( 'EED_Messages', 'maybe_registration' ), 10, 2 ); |
|
76 | + add_action('AHEE__EE_Payment_Processor__update_txn_based_on_payment', array('EED_Messages', 'payment'), 10, 2); |
|
77 | + add_action('AHEE__EE_Registration_Processor__trigger_registration_update_notifications', array('EED_Messages', 'maybe_registration'), 10, 2); |
|
78 | 78 | //filters |
79 | - add_filter( 'FHEE__EE_Registration__receipt_url__receipt_url', array( 'EED_Messages', 'registration_message_trigger_url' ), 10, 4 ); |
|
80 | - add_filter( 'FHEE__EE_Registration__invoice_url__invoice_url', array( 'EED_Messages', 'registration_message_trigger_url' ), 10, 4 ); |
|
79 | + add_filter('FHEE__EE_Registration__receipt_url__receipt_url', array('EED_Messages', 'registration_message_trigger_url'), 10, 4); |
|
80 | + add_filter('FHEE__EE_Registration__invoice_url__invoice_url', array('EED_Messages', 'registration_message_trigger_url'), 10, 4); |
|
81 | 81 | //register routes |
82 | 82 | self::_register_routes(); |
83 | 83 | } |
@@ -90,15 +90,15 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public static function set_hooks_admin() { |
92 | 92 | //actions |
93 | - add_action( 'AHEE__EE_Payment_Processor__update_txn_based_on_payment', array( 'EED_Messages', 'payment' ), 10, 2 ); |
|
94 | - add_action( 'AHEE__Transactions_Admin_Page___send_payment_reminder__process_admin_payment_reminder', array( 'EED_Messages', 'payment_reminder'), 10 ); |
|
95 | - add_action( 'AHEE__EE_Registration_Processor__trigger_registration_update_notifications', array( 'EED_Messages', 'maybe_registration' ), 10, 3 ); |
|
96 | - add_action( 'AHEE__Extend_Registrations_Admin_Page___newsletter_selected_send__with_registrations', array( 'EED_Messages', 'send_newsletter_message'), 10, 2 ); |
|
97 | - add_action( 'AHEE__EES_Espresso_Cancelled__process_shortcode__transaction', array( 'EED_Messages', 'cancelled_registration' ), 10 ); |
|
93 | + add_action('AHEE__EE_Payment_Processor__update_txn_based_on_payment', array('EED_Messages', 'payment'), 10, 2); |
|
94 | + add_action('AHEE__Transactions_Admin_Page___send_payment_reminder__process_admin_payment_reminder', array('EED_Messages', 'payment_reminder'), 10); |
|
95 | + add_action('AHEE__EE_Registration_Processor__trigger_registration_update_notifications', array('EED_Messages', 'maybe_registration'), 10, 3); |
|
96 | + add_action('AHEE__Extend_Registrations_Admin_Page___newsletter_selected_send__with_registrations', array('EED_Messages', 'send_newsletter_message'), 10, 2); |
|
97 | + add_action('AHEE__EES_Espresso_Cancelled__process_shortcode__transaction', array('EED_Messages', 'cancelled_registration'), 10); |
|
98 | 98 | //filters |
99 | - add_filter( 'FHEE__EE_Admin_Page___process_admin_payment_notification__success', array( 'EED_Messages', 'process_admin_payment'), 10, 2 ); |
|
100 | - add_filter( 'FHEE__EE_Registration__receipt_url__receipt_url', array( 'EED_Messages', 'registration_message_trigger_url' ), 10, 4 ); |
|
101 | - add_filter( 'FHEE__EE_Registration__invoice_url__invoice_url', array( 'EED_Messages', 'registration_message_trigger_url' ), 10, 4 ); |
|
99 | + add_filter('FHEE__EE_Admin_Page___process_admin_payment_notification__success', array('EED_Messages', 'process_admin_payment'), 10, 2); |
|
100 | + add_filter('FHEE__EE_Registration__receipt_url__receipt_url', array('EED_Messages', 'registration_message_trigger_url'), 10, 4); |
|
101 | + add_filter('FHEE__EE_Registration__invoice_url__invoice_url', array('EED_Messages', 'registration_message_trigger_url'), 10, 4); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | |
@@ -112,8 +112,8 @@ discard block |
||
112 | 112 | * @return void |
113 | 113 | */ |
114 | 114 | protected static function _register_routes() { |
115 | - EE_Config::register_route( 'msg_url_trigger', 'Messages', 'run' ); |
|
116 | - do_action( 'AHEE__EED_Messages___register_routes' ); |
|
115 | + EE_Config::register_route('msg_url_trigger', 'Messages', 'run'); |
|
116 | + do_action('AHEE__EED_Messages___register_routes'); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @throws EE_Error |
127 | 127 | * @return void |
128 | 128 | */ |
129 | - public function run( $WP ) { |
|
129 | + public function run($WP) { |
|
130 | 130 | |
131 | 131 | $sending_messenger = EE_Registry::instance()->REQ->is_set('snd_msgr') ? EE_Registry::instance()->REQ->get('snd_msgr') : ''; |
132 | 132 | $generating_messenger = EE_Registry::instance()->REQ->is_set('gen_msgr') ? EE_Registry::instance()->REQ->get('gen_msgr') : ''; |
@@ -136,15 +136,15 @@ discard block |
||
136 | 136 | $data_id = EE_Registry::instance()->REQ->is_set('id') ? (int) EE_Registry::instance()->REQ->get('id') : 0; |
137 | 137 | |
138 | 138 | //verify the needed params are present. |
139 | - if ( empty( $sending_messenger ) || empty( $generating_messenger ) || empty( $message_type ) || empty( $context ) || empty( $token ) ) { |
|
140 | - EE_Error::add_error( __( 'The request for the "msg_url_trigger" route has a malformed url.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
139 | + if (empty($sending_messenger) || empty($generating_messenger) || empty($message_type) || empty($context) || empty($token)) { |
|
140 | + EE_Error::add_error(__('The request for the "msg_url_trigger" route has a malformed url.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
141 | 141 | return; |
142 | 142 | } |
143 | 143 | //get the registration: the token will always be the unique REG_url_link saved with a registration. We use that to make sure we retrieve the correct data for the given registration. |
144 | - $registration = EEM_Registration::instance()->get_one( array( array( 'REG_url_link' => $token ) ) ); |
|
144 | + $registration = EEM_Registration::instance()->get_one(array(array('REG_url_link' => $token))); |
|
145 | 145 | //if no registration then bail early. |
146 | - if ( ! $registration instanceof EE_Registration ) { |
|
147 | - EE_Error::add_error( __( 'Unable to complete the request because the token is invalid.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
146 | + if ( ! $registration instanceof EE_Registration) { |
|
147 | + EE_Error::add_error(__('Unable to complete the request because the token is invalid.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
148 | 148 | return; |
149 | 149 | } |
150 | 150 | //ensure controller is loaded |
@@ -154,16 +154,16 @@ discard block |
||
154 | 154 | // retrieve the data via the handler |
155 | 155 | // Depending on the context and the message type data handler, the data_id will correspond to the specific data handler item we need to retrieve for specific messages |
156 | 156 | // (i.e. a specific payment or specific refund). |
157 | - $data = $this->_get_messages_data_from_url( $generating_messenger, $message_type, $registration, $data_id, $context ); |
|
157 | + $data = $this->_get_messages_data_from_url($generating_messenger, $message_type, $registration, $data_id, $context); |
|
158 | 158 | //make sure we drop generating messenger if both sending and generating are the same. |
159 | 159 | $generating_messenger = $sending_messenger != $generating_messenger ? $generating_messenger : NULL; |
160 | 160 | //now we can trigger the actual sending of the message via the message type. |
161 | - self::$_EEMSG->send_message( $message_type, $data, $sending_messenger, $generating_messenger, $context ); |
|
162 | - } catch ( EE_Error $e ) { |
|
163 | - $error_msg = __( 'Please note that a system message failed to send due to a technical issue.', 'event_espresso' ); |
|
161 | + self::$_EEMSG->send_message($message_type, $data, $sending_messenger, $generating_messenger, $context); |
|
162 | + } catch (EE_Error $e) { |
|
163 | + $error_msg = __('Please note that a system message failed to send due to a technical issue.', 'event_espresso'); |
|
164 | 164 | // add specific message for developers if WP_DEBUG in on |
165 | - $error_msg .= '||' . $e->getMessage(); |
|
166 | - EE_Error::add_error( $error_msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
165 | + $error_msg .= '||'.$e->getMessage(); |
|
166 | + EE_Error::add_error($error_msg, __FILE__, __FUNCTION__, __LINE__); |
|
167 | 167 | } |
168 | 168 | } |
169 | 169 | |
@@ -178,17 +178,17 @@ discard block |
||
178 | 178 | * |
179 | 179 | * @return EE_Messages_Template_Pack |
180 | 180 | */ |
181 | - public static function get_template_pack( $template_pack_name ) { |
|
182 | - if ( isset( self::$_TMP_PACKS[$template_pack_name] ) ) { |
|
181 | + public static function get_template_pack($template_pack_name) { |
|
182 | + if (isset(self::$_TMP_PACKS[$template_pack_name])) { |
|
183 | 183 | return self::$_TMP_PACKS[$template_pack_name]; |
184 | 184 | } |
185 | 185 | |
186 | 186 | //not set yet so let's attempt to get it. |
187 | - $pack_class = 'EE_Messages_Template_Pack_' . str_replace( ' ', '_', ucwords( str_replace( '_' , ' ', $template_pack_name ) ) ); |
|
187 | + $pack_class = 'EE_Messages_Template_Pack_'.str_replace(' ', '_', ucwords(str_replace('_', ' ', $template_pack_name))); |
|
188 | 188 | |
189 | - if ( ! class_exists( $pack_class ) ) { |
|
189 | + if ( ! class_exists($pack_class)) { |
|
190 | 190 | $pack_class = 'EE_Messages_Template_Pack_Default'; |
191 | - self::$_TMP_PACKS['default'] = empty( self::$_TMP_PACKS['default'] ) ? new $pack_class : self::$_TMP_PACKS['default']; |
|
191 | + self::$_TMP_PACKS['default'] = empty(self::$_TMP_PACKS['default']) ? new $pack_class : self::$_TMP_PACKS['default']; |
|
192 | 192 | return self::$_TMP_PACKS['default']; |
193 | 193 | } else { |
194 | 194 | $pack = new $pack_class; |
@@ -208,27 +208,27 @@ discard block |
||
208 | 208 | */ |
209 | 209 | public static function get_template_packs() { |
210 | 210 | //glob the defaults directory for messages |
211 | - $templates = glob( EE_LIBRARIES . 'messages/defaults/*', GLOB_ONLYDIR ); |
|
211 | + $templates = glob(EE_LIBRARIES.'messages/defaults/*', GLOB_ONLYDIR); |
|
212 | 212 | $template_packs = array(); |
213 | - foreach( $templates as $template_path ) { |
|
213 | + foreach ($templates as $template_path) { |
|
214 | 214 | //grab folder name |
215 | - $template = basename( $template_path ); |
|
215 | + $template = basename($template_path); |
|
216 | 216 | |
217 | 217 | //is this already set? |
218 | - if ( isset( self::$_TMP_PACKS[$template] ) ) |
|
218 | + if (isset(self::$_TMP_PACKS[$template])) |
|
219 | 219 | continue; |
220 | 220 | |
221 | 221 | //setup classname. |
222 | - $pack_class = 'EE_Messages_Template_Pack_' . str_replace( ' ', '_', ucwords( str_replace( '_' , ' ', $template ) ) ); |
|
222 | + $pack_class = 'EE_Messages_Template_Pack_'.str_replace(' ', '_', ucwords(str_replace('_', ' ', $template))); |
|
223 | 223 | |
224 | - if ( ! class_exists( $pack_class ) ) |
|
224 | + if ( ! class_exists($pack_class)) |
|
225 | 225 | continue; |
226 | 226 | |
227 | 227 | $template_packs[$template] = new $pack_class; |
228 | 228 | } |
229 | 229 | |
230 | - $template_packs = apply_filters( 'FHEE__EED_Messages__get_template_packs__template_packs', $template_packs ); |
|
231 | - self::$_TMP_PACKS = array_merge( self::$_TMP_PACKS, $template_packs ); |
|
230 | + $template_packs = apply_filters('FHEE__EED_Messages__get_template_packs__template_packs', $template_packs); |
|
231 | + self::$_TMP_PACKS = array_merge(self::$_TMP_PACKS, $template_packs); |
|
232 | 232 | return self::$_TMP_PACKS; |
233 | 233 | } |
234 | 234 | |
@@ -250,15 +250,15 @@ discard block |
||
250 | 250 | * |
251 | 251 | * @return mixed (EE_Base_Class||EE_Base_Class[]) |
252 | 252 | */ |
253 | - protected function _get_messages_data_from_url( $generating_messenger, $message_type, EE_Registration $registration, $data_id, $context ) { |
|
253 | + protected function _get_messages_data_from_url($generating_messenger, $message_type, EE_Registration $registration, $data_id, $context) { |
|
254 | 254 | //get message type object then get the correct data setup for that message type. |
255 | - $message_type = self::$_EEMSG->get_active_message_type( $generating_messenger, $message_type ); |
|
255 | + $message_type = self::$_EEMSG->get_active_message_type($generating_messenger, $message_type); |
|
256 | 256 | //if no message type then it likely isn't active for this messenger. |
257 | - if ( ! $message_type instanceof EE_message_type ) { |
|
258 | - throw new EE_Error( sprintf( __('Unable to get data for the %s message type, likely because it is not active for the %s messenger.', 'event_espresso'), $message_type->name, $generating_messenger ) ); |
|
257 | + if ( ! $message_type instanceof EE_message_type) { |
|
258 | + throw new EE_Error(sprintf(__('Unable to get data for the %s message type, likely because it is not active for the %s messenger.', 'event_espresso'), $message_type->name, $generating_messenger)); |
|
259 | 259 | } |
260 | 260 | //get data according to data handler requirements |
261 | - return $message_type->get_data_for_context( $context, $registration, $data_id ); |
|
261 | + return $message_type->get_data_for_context($context, $registration, $data_id); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | |
@@ -271,10 +271,10 @@ discard block |
||
271 | 271 | * @return void |
272 | 272 | */ |
273 | 273 | public static function set_autoloaders() { |
274 | - if ( empty( self::$_MSG_PATHS ) ) { |
|
274 | + if (empty(self::$_MSG_PATHS)) { |
|
275 | 275 | self::_set_messages_paths(); |
276 | - foreach ( self::$_MSG_PATHS as $path ) { |
|
277 | - EEH_Autoloader::register_autoloaders_for_each_file_in_folder( $path ); |
|
276 | + foreach (self::$_MSG_PATHS as $path) { |
|
277 | + EEH_Autoloader::register_autoloaders_for_each_file_in_folder($path); |
|
278 | 278 | } |
279 | 279 | } |
280 | 280 | } |
@@ -304,10 +304,10 @@ discard block |
||
304 | 304 | 'shortcodes' |
305 | 305 | ); |
306 | 306 | $paths = array(); |
307 | - foreach ( $dir_ref as $index => $dir ) { |
|
308 | - $paths[$index] = EE_LIBRARIES . $dir; |
|
307 | + foreach ($dir_ref as $index => $dir) { |
|
308 | + $paths[$index] = EE_LIBRARIES.$dir; |
|
309 | 309 | } |
310 | - self::$_MSG_PATHS = apply_filters( 'FHEE__EED_Messages___set_messages_paths___MSG_PATHS', $paths ); |
|
310 | + self::$_MSG_PATHS = apply_filters('FHEE__EED_Messages___set_messages_paths___MSG_PATHS', $paths); |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @return void |
320 | 320 | */ |
321 | 321 | protected static function _load_controller() { |
322 | - if ( ! self::$_EEMSG instanceof EE_messages ) { |
|
322 | + if ( ! self::$_EEMSG instanceof EE_messages) { |
|
323 | 323 | self::set_autoloaders(); |
324 | 324 | self::$_EEMSG = new EE_messages(); |
325 | 325 | } |
@@ -330,10 +330,10 @@ discard block |
||
330 | 330 | /** |
331 | 331 | * @param EE_Transaction $transaction |
332 | 332 | */ |
333 | - public static function payment_reminder( EE_Transaction $transaction ) { |
|
333 | + public static function payment_reminder(EE_Transaction $transaction) { |
|
334 | 334 | self::_load_controller(); |
335 | - $data = array( $transaction, null ); |
|
336 | - if ( self::$_EEMSG->send_message( 'payment_reminder', $data ) ) { |
|
335 | + $data = array($transaction, null); |
|
336 | + if (self::$_EEMSG->send_message('payment_reminder', $data)) { |
|
337 | 337 | //self::log( |
338 | 338 | // __CLASS__, __FUNCTION__, __LINE__, |
339 | 339 | // $transaction, |
@@ -354,11 +354,11 @@ discard block |
||
354 | 354 | * @param EE_Payment object |
355 | 355 | * @return void |
356 | 356 | */ |
357 | - public static function payment( EE_Transaction $transaction, EE_Payment $payment ) { |
|
357 | + public static function payment(EE_Transaction $transaction, EE_Payment $payment) { |
|
358 | 358 | self::_load_controller(); |
359 | - $data = array( $transaction, $payment ); |
|
359 | + $data = array($transaction, $payment); |
|
360 | 360 | |
361 | - $message_type = self::_get_payment_message_type( $payment->STS_ID() ); |
|
361 | + $message_type = self::_get_payment_message_type($payment->STS_ID()); |
|
362 | 362 | |
363 | 363 | //if payment amount is less than 0 then switch to payment_refund message type. |
364 | 364 | $message_type = $payment->amount() < 0 ? 'payment_refund' : $message_type; |
@@ -366,15 +366,15 @@ discard block |
||
366 | 366 | //verify this message type is present and active. If it isn't then no message is sent. |
367 | 367 | $active_mts = self::$_EEMSG->get_active_message_types(); |
368 | 368 | |
369 | - $message_type = in_array( $message_type, $active_mts ) ? $message_type : false; |
|
370 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, current_time( 'mysql' ), 'delivered' ); |
|
371 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, $message_type, '$message_type' ); |
|
372 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, $transaction->status_ID(), '$transaction->status_ID()' ); |
|
373 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, $payment->status(), '$payment->status()' ); |
|
374 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, print_r( $active_mts, true ), '$active_mts' ); |
|
369 | + $message_type = in_array($message_type, $active_mts) ? $message_type : false; |
|
370 | + do_action('AHEE_log', __FILE__, __FUNCTION__, current_time('mysql'), 'delivered'); |
|
371 | + do_action('AHEE_log', __FILE__, __FUNCTION__, $message_type, '$message_type'); |
|
372 | + do_action('AHEE_log', __FILE__, __FUNCTION__, $transaction->status_ID(), '$transaction->status_ID()'); |
|
373 | + do_action('AHEE_log', __FILE__, __FUNCTION__, $payment->status(), '$payment->status()'); |
|
374 | + do_action('AHEE_log', __FILE__, __FUNCTION__, print_r($active_mts, true), '$active_mts'); |
|
375 | 375 | |
376 | - if ( $message_type ) { |
|
377 | - if ( self::$_EEMSG->send_message( $message_type, $data ) ) { |
|
376 | + if ($message_type) { |
|
377 | + if (self::$_EEMSG->send_message($message_type, $data)) { |
|
378 | 378 | //self::log( |
379 | 379 | // __CLASS__, __FUNCTION__, __LINE__, |
380 | 380 | // $transaction, |
@@ -394,15 +394,15 @@ discard block |
||
394 | 394 | /** |
395 | 395 | * @param EE_Transaction $transaction |
396 | 396 | */ |
397 | - public static function cancelled_registration( EE_Transaction $transaction ) { |
|
397 | + public static function cancelled_registration(EE_Transaction $transaction) { |
|
398 | 398 | self::_load_controller(); |
399 | 399 | |
400 | - $data = array( $transaction, NULL ); |
|
400 | + $data = array($transaction, NULL); |
|
401 | 401 | |
402 | 402 | $active_mts = self::$_EEMSG->get_active_message_types(); |
403 | 403 | |
404 | - if ( in_array( 'cancelled_registration', $active_mts ) ) { |
|
405 | - self::$_EEMSG->send_message( 'cancelled_registration', $data ); |
|
404 | + if (in_array('cancelled_registration', $active_mts)) { |
|
405 | + self::$_EEMSG->send_message('cancelled_registration', $data); |
|
406 | 406 | } |
407 | 407 | return; |
408 | 408 | } |
@@ -417,9 +417,9 @@ discard block |
||
417 | 417 | * @param array $extra_details |
418 | 418 | * @return void |
419 | 419 | */ |
420 | - public static function maybe_registration( EE_Registration $registration, $extra_details = array() ) { |
|
420 | + public static function maybe_registration(EE_Registration $registration, $extra_details = array()) { |
|
421 | 421 | |
422 | - if ( ! self::_verify_registration_notification_send( $registration, $extra_details ) ) { |
|
422 | + if ( ! self::_verify_registration_notification_send($registration, $extra_details)) { |
|
423 | 423 | //no messages please |
424 | 424 | return; |
425 | 425 | } |
@@ -432,19 +432,19 @@ discard block |
||
432 | 432 | $statuses_sent = array(); |
433 | 433 | |
434 | 434 | //loop through registrations and trigger messages once per status. |
435 | - foreach ( $all_registrations as $reg ) { |
|
435 | + foreach ($all_registrations as $reg) { |
|
436 | 436 | |
437 | 437 | //already triggered? |
438 | - if ( in_array( $reg->status_ID(), $statuses_sent ) ) { |
|
438 | + if (in_array($reg->status_ID(), $statuses_sent)) { |
|
439 | 439 | continue; |
440 | 440 | } |
441 | 441 | |
442 | - $message_type = self::_get_reg_status_array( $reg->status_ID() ); |
|
443 | - if ( EEH_MSG_Template::is_mt_active( $message_type ) ) { |
|
442 | + $message_type = self::_get_reg_status_array($reg->status_ID()); |
|
443 | + if (EEH_MSG_Template::is_mt_active($message_type)) { |
|
444 | 444 | self::_load_controller(); |
445 | 445 | |
446 | 446 | //send away, send away, uhhuh |
447 | - if ( self::$_EEMSG->send_message( $message_type, array( $registration->transaction(), null, $reg->status_ID() ) ) ) { |
|
447 | + if (self::$_EEMSG->send_message($message_type, array($registration->transaction(), null, $reg->status_ID()))) { |
|
448 | 448 | // DEBUG LOG |
449 | 449 | // self::log( |
450 | 450 | // __CLASS__, __FUNCTION__, __LINE__, |
@@ -463,9 +463,9 @@ discard block |
||
463 | 463 | } |
464 | 464 | |
465 | 465 | //now send summary (registration_summary) if active |
466 | - if ( EEH_MSG_Template::is_mt_active( 'registration_summary' ) ) { |
|
466 | + if (EEH_MSG_Template::is_mt_active('registration_summary')) { |
|
467 | 467 | self::_load_controller(); |
468 | - if ( self::$_EEMSG->send_message( 'registration_summary', array( $registration->transaction(), null ) ) ) { |
|
468 | + if (self::$_EEMSG->send_message('registration_summary', array($registration->transaction(), null))) { |
|
469 | 469 | // DEBUG LOG |
470 | 470 | // self::log( |
471 | 471 | // __CLASS__, __FUNCTION__, __LINE__, |
@@ -491,18 +491,18 @@ discard block |
||
491 | 491 | * |
492 | 492 | * @return bool true = send away, false = nope halt the presses. |
493 | 493 | */ |
494 | - protected static function _verify_registration_notification_send( EE_Registration $registration, $extra_details = array() ) { |
|
494 | + protected static function _verify_registration_notification_send(EE_Registration $registration, $extra_details = array()) { |
|
495 | 495 | //self::log( |
496 | 496 | // __CLASS__, __FUNCTION__, __LINE__, |
497 | 497 | // $registration->transaction(), |
498 | 498 | // array( '$extra_details' => $extra_details ) |
499 | 499 | //); |
500 | 500 | // currently only using this to send messages for the primary registrant |
501 | - if ( ! $registration->is_primary_registrant() ) { |
|
501 | + if ( ! $registration->is_primary_registrant()) { |
|
502 | 502 | return false; |
503 | 503 | } |
504 | 504 | if ( |
505 | - ! apply_filters( 'FHEE__EED_Messages___maybe_registration__deliver_notifications', false ) && |
|
505 | + ! apply_filters('FHEE__EED_Messages___maybe_registration__deliver_notifications', false) && |
|
506 | 506 | $registration->status_ID() !== EEM_Registration::status_id_not_approved |
507 | 507 | ) { |
508 | 508 | return false; |
@@ -519,7 +519,7 @@ discard block |
||
519 | 519 | * @param string $reg_status |
520 | 520 | * @return array |
521 | 521 | */ |
522 | - protected static function _get_reg_status_array( $reg_status = '' ) { |
|
522 | + protected static function _get_reg_status_array($reg_status = '') { |
|
523 | 523 | $reg_status_array = array( |
524 | 524 | EEM_Registration::status_id_approved => 'registration', |
525 | 525 | EEM_Registration::status_id_pending_payment => 'pending_approval', |
@@ -527,7 +527,7 @@ discard block |
||
527 | 527 | EEM_Registration::status_id_cancelled => 'cancelled_registration', |
528 | 528 | EEM_Registration::status_id_declined => 'declined_registration' |
529 | 529 | ); |
530 | - return isset( $reg_status_array[ $reg_status ] ) ? $reg_status_array[ $reg_status ] : $reg_status_array; |
|
530 | + return isset($reg_status_array[$reg_status]) ? $reg_status_array[$reg_status] : $reg_status_array; |
|
531 | 531 | } |
532 | 532 | |
533 | 533 | |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | * |
540 | 540 | * @return string|bool The payment message type slug matching the status or false if no match. |
541 | 541 | */ |
542 | - protected static function _get_payment_message_type( $payment_status ) { |
|
542 | + protected static function _get_payment_message_type($payment_status) { |
|
543 | 543 | $matches = array( |
544 | 544 | EEM_Payment::status_id_approved => 'payment', |
545 | 545 | EEM_Payment::status_id_pending => 'payment_pending', |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | EEM_Payment::status_id_failed => 'payment_failed' |
549 | 549 | ); |
550 | 550 | |
551 | - return isset( $matches[$payment_status] ) ? $matches[$payment_status] : false; |
|
551 | + return isset($matches[$payment_status]) ? $matches[$payment_status] : false; |
|
552 | 552 | } |
553 | 553 | |
554 | 554 | |
@@ -561,22 +561,22 @@ discard block |
||
561 | 561 | * @param array $req_data This is the $_POST & $_GET data sent from EE_Admin Pages |
562 | 562 | * @return bool success/fail |
563 | 563 | */ |
564 | - public static function process_resend( $req_data ) { |
|
564 | + public static function process_resend($req_data) { |
|
565 | 565 | $regs_to_send = array(); |
566 | 566 | |
567 | 567 | //first let's make sure we have the reg id (needed for resending!); |
568 | - if ( ! isset( $req_data['_REG_ID'] ) ) { |
|
569 | - EE_Error::add_error( __('Something went wrong because we\'re missing the registration ID', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
568 | + if ( ! isset($req_data['_REG_ID'])) { |
|
569 | + EE_Error::add_error(__('Something went wrong because we\'re missing the registration ID', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
570 | 570 | return false; |
571 | 571 | } |
572 | 572 | |
573 | 573 | //if $req_data['_REG_ID'] is an array then let's group the registrations by transaction and reg status |
574 | 574 | // so we can only trigger messages per group. |
575 | - if ( is_array( $req_data['_REG_ID'] ) ) { |
|
576 | - foreach ( $req_data['_REG_ID'] as $reg_id ) { |
|
577 | - $reg = EE_Registry::instance()->load_model( 'Registration' )->get_one_by_ID( $reg_id ); |
|
578 | - if ( ! $reg instanceof EE_Registration ) { |
|
579 | - EE_Error::add_error( sprintf( __('Unable to retrieve a registration object for the given reg id (%s)', 'event_espresso'), $req_data['_REG_ID'] ) ); |
|
575 | + if (is_array($req_data['_REG_ID'])) { |
|
576 | + foreach ($req_data['_REG_ID'] as $reg_id) { |
|
577 | + $reg = EE_Registry::instance()->load_model('Registration')->get_one_by_ID($reg_id); |
|
578 | + if ( ! $reg instanceof EE_Registration) { |
|
579 | + EE_Error::add_error(sprintf(__('Unable to retrieve a registration object for the given reg id (%s)', 'event_espresso'), $req_data['_REG_ID'])); |
|
580 | 580 | return false; |
581 | 581 | } |
582 | 582 | $regs_to_send[$reg->transaction_ID()][$reg->status_ID()][] = $reg; |
@@ -584,11 +584,11 @@ discard block |
||
584 | 584 | } else { |
585 | 585 | //we have a single registration id, so let's see if we can get a EE_Registration from it, and if so set it up for sending. |
586 | 586 | //get reg object from reg_id |
587 | - $reg = EE_Registry::instance()->load_model('Registration')->get_one_by_ID( $req_data['_REG_ID'] ); |
|
587 | + $reg = EE_Registry::instance()->load_model('Registration')->get_one_by_ID($req_data['_REG_ID']); |
|
588 | 588 | |
589 | 589 | //if no reg object then send error |
590 | - if ( ! $reg instanceof EE_Registration ) { |
|
591 | - EE_Error::add_error( sprintf( __('Unable to retrieve a registration object for the given reg id (%s)', 'event_espresso'), $req_data['_REG_ID'] ) ); |
|
590 | + if ( ! $reg instanceof EE_Registration) { |
|
591 | + EE_Error::add_error(sprintf(__('Unable to retrieve a registration object for the given reg id (%s)', 'event_espresso'), $req_data['_REG_ID'])); |
|
592 | 592 | return false; |
593 | 593 | } |
594 | 594 | |
@@ -600,26 +600,26 @@ discard block |
||
600 | 600 | $active_mts = self::$_EEMSG->get_active_message_types(); |
601 | 601 | $success = false; |
602 | 602 | //loop through and send! |
603 | - foreach( $regs_to_send as $status_group ) { |
|
604 | - foreach ( $status_group as $status_id => $registrations ) { |
|
605 | - if ( ! in_array( $status_match_array[ $status_id ], $active_mts ) ) { |
|
603 | + foreach ($regs_to_send as $status_group) { |
|
604 | + foreach ($status_group as $status_id => $registrations) { |
|
605 | + if ( ! in_array($status_match_array[$status_id], $active_mts)) { |
|
606 | 606 | EE_Error::add_error( |
607 | 607 | sprintf( |
608 | 608 | __('Cannot resend the message for this registration because the corresponding message type (%1$s) is not active. If you wish to send messages for this message type then please activate it by visiting the %2$sMessages Admin Page%3$s.', 'event_espresso'), |
609 | - $status_match_array[ $reg->status_ID() ], |
|
610 | - '<a href="' . admin_url('admin.php?page=espresso_messages&action=settings') . '">', |
|
609 | + $status_match_array[$reg->status_ID()], |
|
610 | + '<a href="'.admin_url('admin.php?page=espresso_messages&action=settings').'">', |
|
611 | 611 | '</a>' |
612 | 612 | ) |
613 | 613 | ); |
614 | 614 | return false; |
615 | 615 | } |
616 | 616 | |
617 | - if ( self::$_EEMSG->send_message( $status_match_array[$status_id], array( $registrations, $status_id ) ) ) { |
|
617 | + if (self::$_EEMSG->send_message($status_match_array[$status_id], array($registrations, $status_id))) { |
|
618 | 618 | EE_Error::overwrite_success(); |
619 | - EE_Error::add_success( __('The message for this registration has been re-sent', 'event_espresso') ); |
|
619 | + EE_Error::add_success(__('The message for this registration has been re-sent', 'event_espresso')); |
|
620 | 620 | $success = true; |
621 | 621 | } else { |
622 | - EE_Error::add_error( __('Something went wrong and the message for this registration was NOT resent', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
622 | + EE_Error::add_error(__('Something went wrong and the message for this registration was NOT resent', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
623 | 623 | } |
624 | 624 | } |
625 | 625 | } |
@@ -641,12 +641,12 @@ discard block |
||
641 | 641 | * @param EE_Payment $payment EE_payment object |
642 | 642 | * @return bool success/fail |
643 | 643 | */ |
644 | - public static function process_admin_payment( $success = TRUE, EE_Payment $payment ) { |
|
644 | + public static function process_admin_payment($success = TRUE, EE_Payment $payment) { |
|
645 | 645 | //we need to get the transaction object |
646 | 646 | $transaction = $payment->transaction(); |
647 | - if ( $transaction instanceof EE_Transaction ) { |
|
648 | - $data = array( $transaction, $payment ); |
|
649 | - $message_type = self::_get_payment_message_type( $payment->STS_ID() ); |
|
647 | + if ($transaction instanceof EE_Transaction) { |
|
648 | + $data = array($transaction, $payment); |
|
649 | + $message_type = self::_get_payment_message_type($payment->STS_ID()); |
|
650 | 650 | |
651 | 651 | //if payment amount is less than 0 then switch to payment_refund message type. |
652 | 652 | $message_type = $payment->amount() < 0 ? 'payment_refund' : $message_type; |
@@ -657,18 +657,18 @@ discard block |
||
657 | 657 | self::_load_controller(); |
658 | 658 | //verify this message type is present and active. If it isn't then no message is sent. |
659 | 659 | $active_mts = self::$_EEMSG->get_active_message_types(); |
660 | - $message_type = in_array( $message_type, $active_mts ) ? $message_type : false; |
|
660 | + $message_type = in_array($message_type, $active_mts) ? $message_type : false; |
|
661 | 661 | |
662 | 662 | |
663 | - if ( $message_type ) { |
|
663 | + if ($message_type) { |
|
664 | 664 | |
665 | - $success = self::$_EEMSG->send_message( $message_type, $data ); |
|
666 | - if ( ! $success ) { |
|
667 | - EE_Error::add_error( __('Something went wrong and the payment confirmation was NOT resent', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
665 | + $success = self::$_EEMSG->send_message($message_type, $data); |
|
666 | + if ( ! $success) { |
|
667 | + EE_Error::add_error(__('Something went wrong and the payment confirmation was NOT resent', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
668 | 668 | } |
669 | 669 | |
670 | 670 | } else { |
671 | - EE_Error::add_error( __('The message type for the status of this payment is not active or does not exist, so no notification was sent.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
671 | + EE_Error::add_error(__('The message type for the status of this payment is not active or does not exist, so no notification was sent.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
672 | 672 | } |
673 | 673 | |
674 | 674 | } |
@@ -686,12 +686,12 @@ discard block |
||
686 | 686 | * @param int $grp_id a specific message template group id. |
687 | 687 | * @return void |
688 | 688 | */ |
689 | - public static function send_newsletter_message( $registrations, $grp_id ) { |
|
689 | + public static function send_newsletter_message($registrations, $grp_id) { |
|
690 | 690 | //make sure mtp is id and set it in the EE_Request Handler later messages setup. |
691 | - EE_Registry::instance()->REQ->set( 'GRP_ID', (int) $grp_id ); |
|
691 | + EE_Registry::instance()->REQ->set('GRP_ID', (int) $grp_id); |
|
692 | 692 | |
693 | 693 | self::_load_controller(); |
694 | - self::$_EEMSG->send_message( 'newsletter', $registrations ); |
|
694 | + self::$_EEMSG->send_message('newsletter', $registrations); |
|
695 | 695 | } |
696 | 696 | |
697 | 697 | |
@@ -706,9 +706,9 @@ discard block |
||
706 | 706 | * @param string $message_type |
707 | 707 | * @return string |
708 | 708 | */ |
709 | - public static function registration_message_trigger_url( $registration_message_trigger_url, EE_Registration $registration, $messenger = 'html', $message_type = 'invoice' ) { |
|
709 | + public static function registration_message_trigger_url($registration_message_trigger_url, EE_Registration $registration, $messenger = 'html', $message_type = 'invoice') { |
|
710 | 710 | // whitelist $messenger |
711 | - switch ( $messenger ) { |
|
711 | + switch ($messenger) { |
|
712 | 712 | case 'pdf' : |
713 | 713 | $sending_messenger = 'pdf'; |
714 | 714 | $generating_messenger = 'html'; |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | break; |
721 | 721 | } |
722 | 722 | // whitelist $message_type |
723 | - switch ( $message_type ) { |
|
723 | + switch ($message_type) { |
|
724 | 724 | case 'receipt' : |
725 | 725 | $message_type = 'receipt'; |
726 | 726 | break; |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | break; |
731 | 731 | } |
732 | 732 | // verify that both the messenger AND the message type are active |
733 | - if ( EEH_MSG_Template::is_messenger_active( $sending_messenger ) && EEH_MSG_Template::is_mt_active( $message_type )) { |
|
733 | + if (EEH_MSG_Template::is_messenger_active($sending_messenger) && EEH_MSG_Template::is_mt_active($message_type)) { |
|
734 | 734 | //need to get the correct message template group for this (i.e. is there a custom invoice for the event this registration is registered for?) |
735 | 735 | $template_query_params = array( |
736 | 736 | 'MTP_is_active' => TRUE, |
@@ -739,16 +739,16 @@ discard block |
||
739 | 739 | 'Event.EVT_ID' => $registration->event_ID() |
740 | 740 | ); |
741 | 741 | //get the message template group. |
742 | - $msg_template_group = EEM_Message_Template_Group::instance()->get_one( array( $template_query_params )); |
|
742 | + $msg_template_group = EEM_Message_Template_Group::instance()->get_one(array($template_query_params)); |
|
743 | 743 | //if we don't have an EE_Message_Template_Group then return |
744 | - if ( ! $msg_template_group instanceof EE_Message_Template_Group ) { |
|
744 | + if ( ! $msg_template_group instanceof EE_Message_Template_Group) { |
|
745 | 745 | // remove EVT_ID from query params so that global templates get picked up |
746 | - unset( $template_query_params[ 'Event.EVT_ID' ] ); |
|
746 | + unset($template_query_params['Event.EVT_ID']); |
|
747 | 747 | //get global template as the fallback |
748 | - $msg_template_group = EEM_Message_Template_Group::instance()->get_one( array( $template_query_params )); |
|
748 | + $msg_template_group = EEM_Message_Template_Group::instance()->get_one(array($template_query_params)); |
|
749 | 749 | } |
750 | 750 | //if we don't have an EE_Message_Template_Group then return |
751 | - if ( ! $msg_template_group instanceof EE_Message_Template_Group ) { |
|
751 | + if ( ! $msg_template_group instanceof EE_Message_Template_Group) { |
|
752 | 752 | return ''; |
753 | 753 | } |
754 | 754 | // generate the URL |
@@ -778,16 +778,16 @@ discard block |
||
778 | 778 | * @param array $info |
779 | 779 | * @param bool $display_request |
780 | 780 | */ |
781 | - protected static function log( $class = '', $func = '', $line = '', EE_Transaction $transaction, $info = array(), $display_request = false ) { |
|
782 | - if ( WP_DEBUG && false ) { |
|
783 | - if ( $transaction instanceof EE_Transaction ) { |
|
781 | + protected static function log($class = '', $func = '', $line = '', EE_Transaction $transaction, $info = array(), $display_request = false) { |
|
782 | + if (WP_DEBUG && false) { |
|
783 | + if ($transaction instanceof EE_Transaction) { |
|
784 | 784 | // don't serialize objects |
785 | - $info = EEH_Debug_Tools::strip_objects( $info ); |
|
786 | - $info[ 'TXN_status' ] = $transaction->status_ID(); |
|
787 | - $info[ 'TXN_reg_steps' ] = $transaction->reg_steps(); |
|
788 | - if ( $transaction->ID() ) { |
|
789 | - $index = 'EE_Transaction: ' . $transaction->ID(); |
|
790 | - EEH_Debug_Tools::log( $class, $func, $line, $info, $display_request, $index ); |
|
785 | + $info = EEH_Debug_Tools::strip_objects($info); |
|
786 | + $info['TXN_status'] = $transaction->status_ID(); |
|
787 | + $info['TXN_reg_steps'] = $transaction->reg_steps(); |
|
788 | + if ($transaction->ID()) { |
|
789 | + $index = 'EE_Transaction: '.$transaction->ID(); |
|
790 | + EEH_Debug_Tools::log($class, $func, $line, $info, $display_request, $index); |
|
791 | 791 | } |
792 | 792 | } |
793 | 793 | } |
@@ -387,7 +387,7 @@ |
||
387 | 387 | |
388 | 388 | /** |
389 | 389 | * creates the default hidden inputs section |
390 | - * @return EE_Form_Input_Base[] |
|
390 | + * @return EE_Form_Section_Proper |
|
391 | 391 | */ |
392 | 392 | public function reg_step_hidden_inputs() { |
393 | 393 | // hidden inputs for admin registrations |
@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | /** |
3 | - * |
|
4 | - * Class EE_SPCO_Reg_Step |
|
5 | - * |
|
6 | - * Description |
|
7 | - * |
|
8 | - * @package Event Espresso |
|
9 | - * @subpackage core |
|
10 | - * @author Brent Christensen |
|
11 | - * @since 4.5.0 |
|
12 | - * |
|
13 | - */ |
|
3 | + * |
|
4 | + * Class EE_SPCO_Reg_Step |
|
5 | + * |
|
6 | + * Description |
|
7 | + * |
|
8 | + * @package Event Espresso |
|
9 | + * @subpackage core |
|
10 | + * @author Brent Christensen |
|
11 | + * @since 4.5.0 |
|
12 | + * |
|
13 | + */ |
|
14 | 14 | abstract class EE_SPCO_Reg_Step { |
15 | 15 | |
16 | 16 | /** |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | public function set_completed() { |
154 | 154 | // DEBUG LOG |
155 | 155 | //$this->checkout->log( __CLASS__, __FUNCTION__, __LINE__ ); |
156 | - $this->_completed = apply_filters( 'FHEE__EE_SPCO_Reg_Step__set_completed___completed', true, $this ); |
|
156 | + $this->_completed = apply_filters('FHEE__EE_SPCO_Reg_Step__set_completed___completed', true, $this); |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | |
@@ -201,18 +201,18 @@ discard block |
||
201 | 201 | * sets the text that appears on the reg step form submit button |
202 | 202 | * @param string $submit_button_text |
203 | 203 | */ |
204 | - public function set_submit_button_text( $submit_button_text = '' ) { |
|
205 | - if ( ! empty( $submit_button_text )) { |
|
204 | + public function set_submit_button_text($submit_button_text = '') { |
|
205 | + if ( ! empty($submit_button_text)) { |
|
206 | 206 | $this->_submit_button_text = $submit_button_text; |
207 | - } else if ( $this->checkout->next_step instanceof EE_SPCO_Reg_Step ) { |
|
208 | - if ( $this->checkout->revisit ) { |
|
209 | - $this->_submit_button_text = sprintf( __( 'Update %s', 'event_espresso' ), $this->checkout->current_step->name() ); |
|
207 | + } else if ($this->checkout->next_step instanceof EE_SPCO_Reg_Step) { |
|
208 | + if ($this->checkout->revisit) { |
|
209 | + $this->_submit_button_text = sprintf(__('Update %s', 'event_espresso'), $this->checkout->current_step->name()); |
|
210 | 210 | } else { |
211 | - $this->_submit_button_text = sprintf( __( 'Proceed to %s', 'event_espresso' ), $this->checkout->next_step->name() ); |
|
211 | + $this->_submit_button_text = sprintf(__('Proceed to %s', 'event_espresso'), $this->checkout->next_step->name()); |
|
212 | 212 | } |
213 | 213 | } |
214 | 214 | // filters the submit button text |
215 | - $this->_submit_button_text = apply_filters( 'FHEE__EE_SPCO_Reg_Step__set_submit_button_text___submit_button_text', $this->_submit_button_text, $this->checkout ); |
|
215 | + $this->_submit_button_text = apply_filters('FHEE__EE_SPCO_Reg_Step__set_submit_button_text___submit_button_text', $this->_submit_button_text, $this->checkout); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | /** |
221 | 221 | * @param boolean $is_current_step |
222 | 222 | */ |
223 | - public function set_is_current_step( $is_current_step ) { |
|
223 | + public function set_is_current_step($is_current_step) { |
|
224 | 224 | $this->_is_current_step = $is_current_step; |
225 | 225 | } |
226 | 226 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | /** |
248 | 248 | * @param int $order |
249 | 249 | */ |
250 | - public function set_order( $order ) { |
|
250 | + public function set_order($order) { |
|
251 | 251 | $this->_order = $order; |
252 | 252 | } |
253 | 253 | |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | * _set_success_message |
286 | 286 | * @param string $success_message |
287 | 287 | */ |
288 | - protected function _set_success_message( $success_message ) { |
|
288 | + protected function _set_success_message($success_message) { |
|
289 | 289 | $this->_success_message = $success_message; |
290 | 290 | } |
291 | 291 | |
@@ -313,8 +313,8 @@ discard block |
||
313 | 313 | /** |
314 | 314 | * @param string $instructions |
315 | 315 | */ |
316 | - public function set_instructions( $instructions ) { |
|
317 | - $this->_instructions = apply_filters( 'FHEE__EE_SPCO_Reg_Step__set_instructions__instructions', $instructions, $this ); |
|
316 | + public function set_instructions($instructions) { |
|
317 | + $this->_instructions = apply_filters('FHEE__EE_SPCO_Reg_Step__set_instructions__instructions', $instructions, $this); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | /** |
323 | 323 | * @param array $valid_data |
324 | 324 | */ |
325 | - public function set_valid_data( $valid_data ) { |
|
325 | + public function set_valid_data($valid_data) { |
|
326 | 326 | $this->_valid_data = $valid_data; |
327 | 327 | } |
328 | 328 | |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | * @return array |
333 | 333 | */ |
334 | 334 | public function valid_data() { |
335 | - if ( empty( $this->_valid_data )) { |
|
335 | + if (empty($this->_valid_data)) { |
|
336 | 336 | $this->_valid_data = $this->reg_form->valid_data(); |
337 | 337 | } |
338 | 338 | return $this->_valid_data; |
@@ -343,8 +343,8 @@ discard block |
||
343 | 343 | * @return string |
344 | 344 | */ |
345 | 345 | public function reg_form_name() { |
346 | - if ( empty( $this->_reg_form_name )) { |
|
347 | - $this->set_reg_form_name( 'ee-spco-' . $this->slug() . '-reg-step-form' ); |
|
346 | + if (empty($this->_reg_form_name)) { |
|
347 | + $this->set_reg_form_name('ee-spco-'.$this->slug().'-reg-step-form'); |
|
348 | 348 | } |
349 | 349 | return $this->_reg_form_name; |
350 | 350 | } |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | /** |
355 | 355 | * @param string $reg_form_name |
356 | 356 | */ |
357 | - protected function set_reg_form_name( $reg_form_name ) { |
|
357 | + protected function set_reg_form_name($reg_form_name) { |
|
358 | 358 | $this->_reg_form_name = $reg_form_name; |
359 | 359 | } |
360 | 360 | |
@@ -365,22 +365,22 @@ discard block |
||
365 | 365 | * @param string $action |
366 | 366 | * @return string |
367 | 367 | */ |
368 | - public function reg_step_url( $action = '' ) { |
|
369 | - $query_args = array( 'step' => $this->slug() ); |
|
370 | - if( ! empty( $action )) { |
|
368 | + public function reg_step_url($action = '') { |
|
369 | + $query_args = array('step' => $this->slug()); |
|
370 | + if ( ! empty($action)) { |
|
371 | 371 | $query_args['action'] = $action; |
372 | 372 | } |
373 | 373 | // final step has no display |
374 | - if ( $this instanceof EE_SPCO_Reg_Step_Finalize_Registration && $action == 'display_spco_reg_step' ) { |
|
375 | - $query_args[ 'action' ] = 'process_reg_step'; |
|
374 | + if ($this instanceof EE_SPCO_Reg_Step_Finalize_Registration && $action == 'display_spco_reg_step') { |
|
375 | + $query_args['action'] = 'process_reg_step'; |
|
376 | 376 | } |
377 | - if( $this->checkout->revisit ) { |
|
377 | + if ($this->checkout->revisit) { |
|
378 | 378 | $query_args['revisit'] = TRUE; |
379 | 379 | } |
380 | - if( $this->checkout->reg_url_link ) { |
|
380 | + if ($this->checkout->reg_url_link) { |
|
381 | 381 | $query_args['e_reg_url_link'] = $this->checkout->reg_url_link; |
382 | 382 | } |
383 | - return add_query_arg( $query_args, $this->checkout->reg_page_base_url ); |
|
383 | + return add_query_arg($query_args, $this->checkout->reg_page_base_url); |
|
384 | 384 | } |
385 | 385 | |
386 | 386 | |
@@ -391,16 +391,16 @@ discard block |
||
391 | 391 | */ |
392 | 392 | public function reg_step_hidden_inputs() { |
393 | 393 | // hidden inputs for admin registrations |
394 | - if ( $this->checkout->admin_request ) { |
|
394 | + if ($this->checkout->admin_request) { |
|
395 | 395 | return new EE_Form_Section_Proper( |
396 | 396 | array( |
397 | 397 | 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
398 | - 'html_id' => 'ee-' . $this->slug() . '-hidden-inputs', |
|
398 | + 'html_id' => 'ee-'.$this->slug().'-hidden-inputs', |
|
399 | 399 | 'subsections' => array( |
400 | 400 | 'next_step' => new EE_Fixed_Hidden_Input( |
401 | 401 | array( |
402 | 402 | 'html_name' => 'next_step', |
403 | - 'html_id' => 'spco-' . $this->slug() . '-next-step', |
|
403 | + 'html_id' => 'spco-'.$this->slug().'-next-step', |
|
404 | 404 | 'default' => $this->checkout->next_step instanceof EE_SPCO_Reg_Step ? $this->checkout->next_step->slug() : '' |
405 | 405 | ) |
406 | 406 | ) |
@@ -412,19 +412,19 @@ discard block |
||
412 | 412 | return new EE_Form_Section_Proper( |
413 | 413 | array( |
414 | 414 | 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
415 | - 'html_id' => 'ee-' . $this->slug() . '-hidden-inputs', |
|
415 | + 'html_id' => 'ee-'.$this->slug().'-hidden-inputs', |
|
416 | 416 | 'subsections' => array( |
417 | 417 | 'action' => new EE_Fixed_Hidden_Input( |
418 | 418 | array( |
419 | 419 | 'html_name' => 'action', |
420 | - 'html_id' => 'spco-' . $this->slug() . '-action', |
|
421 | - 'default' => empty( $this->checkout->reg_url_link ) ? 'process_reg_step' : 'update_reg_step' |
|
420 | + 'html_id' => 'spco-'.$this->slug().'-action', |
|
421 | + 'default' => empty($this->checkout->reg_url_link) ? 'process_reg_step' : 'update_reg_step' |
|
422 | 422 | ) |
423 | 423 | ), |
424 | 424 | 'next_step' => new EE_Fixed_Hidden_Input( |
425 | 425 | array( |
426 | 426 | 'html_name' => 'next_step', |
427 | - 'html_id' => 'spco-' . $this->slug() . '-next-step', |
|
427 | + 'html_id' => 'spco-'.$this->slug().'-next-step', |
|
428 | 428 | 'default' => $this->checkout->next_step instanceof EE_SPCO_Reg_Step ? $this->checkout->next_step->slug() : '' |
429 | 429 | ) |
430 | 430 | ), |
@@ -456,9 +456,9 @@ discard block |
||
456 | 456 | * @param array $actions |
457 | 457 | * @return void |
458 | 458 | */ |
459 | - public function generate_reg_form_for_actions( $actions = array() ) { |
|
460 | - $actions = array_merge( array( 'generate_reg_form', 'display_spco_reg_step', 'process_reg_step', 'update_reg_step' ), $actions ); |
|
461 | - $this->checkout->generate_reg_form = in_array( $this->checkout->action, $actions ) ? TRUE : FALSE; |
|
459 | + public function generate_reg_form_for_actions($actions = array()) { |
|
460 | + $actions = array_merge(array('generate_reg_form', 'display_spco_reg_step', 'process_reg_step', 'update_reg_step'), $actions); |
|
461 | + $this->checkout->generate_reg_form = in_array($this->checkout->action, $actions) ? TRUE : FALSE; |
|
462 | 462 | } |
463 | 463 | |
464 | 464 | |
@@ -468,11 +468,11 @@ discard block |
||
468 | 468 | */ |
469 | 469 | public function display_reg_form() { |
470 | 470 | $html = ''; |
471 | - if ( $this->reg_form instanceof EE_Form_Section_Proper ) { |
|
472 | - $html .= ! $this->checkout->admin_request ? $this->reg_form->form_open( $this->reg_step_url() ) : ''; |
|
473 | - if ( EE_Registry::instance()->REQ->ajax ) { |
|
471 | + if ($this->reg_form instanceof EE_Form_Section_Proper) { |
|
472 | + $html .= ! $this->checkout->admin_request ? $this->reg_form->form_open($this->reg_step_url()) : ''; |
|
473 | + if (EE_Registry::instance()->REQ->ajax) { |
|
474 | 474 | $this->reg_form->localize_validation_rules(); |
475 | - $this->checkout->json_response->add_validation_rules( EE_Form_Section_Proper::js_localization() ); |
|
475 | + $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
476 | 476 | $html .= $this->reg_form->get_html(); |
477 | 477 | } else { |
478 | 478 | $html .= $this->reg_form->get_html_and_js(); |
@@ -490,26 +490,26 @@ discard block |
||
490 | 490 | * @return string |
491 | 491 | */ |
492 | 492 | public function reg_step_submit_button() { |
493 | - if ( ! $this->checkout->next_step instanceof EE_SPCO_Reg_Step ) { |
|
493 | + if ( ! $this->checkout->next_step instanceof EE_SPCO_Reg_Step) { |
|
494 | 494 | return ''; |
495 | 495 | } |
496 | 496 | ob_start(); |
497 | - do_action( 'AHEE__before_spco_whats_next_buttons', $this->slug(), $this->checkout->next_step->slug(), $this->checkout ); |
|
497 | + do_action('AHEE__before_spco_whats_next_buttons', $this->slug(), $this->checkout->next_step->slug(), $this->checkout); |
|
498 | 498 | $html = ob_get_clean(); |
499 | 499 | // generate submit button |
500 | - $sbmt_btn = new EE_Submit_Input( array( |
|
501 | - 'html_name' => 'spco-go-to-step-' . $this->checkout->next_step->slug(), |
|
502 | - 'html_id' => 'spco-go-to-step-' . $this->checkout->next_step->slug(), |
|
500 | + $sbmt_btn = new EE_Submit_Input(array( |
|
501 | + 'html_name' => 'spco-go-to-step-'.$this->checkout->next_step->slug(), |
|
502 | + 'html_id' => 'spco-go-to-step-'.$this->checkout->next_step->slug(), |
|
503 | 503 | 'html_class' => 'spco-next-step-btn', |
504 | - 'other_html_attributes' => ' rel="' . $this->slug() . '"', |
|
504 | + 'other_html_attributes' => ' rel="'.$this->slug().'"', |
|
505 | 505 | 'default' => $this->submit_button_text() |
506 | 506 | )); |
507 | - $sbmt_btn->set_button_css_attributes( TRUE, 'large' ); |
|
507 | + $sbmt_btn->set_button_css_attributes(TRUE, 'large'); |
|
508 | 508 | $sbmt_btn_html = $sbmt_btn->get_html_for_input(); |
509 | 509 | EE_Registry::instance()->load_helper('HTML'); |
510 | 510 | $html .= EEH_HTML::div( |
511 | - apply_filters( 'FHEE__EE_SPCO_Reg_Step__reg_step_submit_button__sbmt_btn_html', $sbmt_btn_html, $this ), |
|
512 | - 'spco-' . $this->slug() . '-whats-next-buttons-dv', |
|
511 | + apply_filters('FHEE__EE_SPCO_Reg_Step__reg_step_submit_button__sbmt_btn_html', $sbmt_btn_html, $this), |
|
512 | + 'spco-'.$this->slug().'-whats-next-buttons-dv', |
|
513 | 513 | 'spco-whats-next-buttons' |
514 | 514 | ); |
515 | 515 | return $html; |
@@ -532,7 +532,7 @@ discard block |
||
532 | 532 | * @return string |
533 | 533 | */ |
534 | 534 | public function edit_lnk_url() { |
535 | - return add_query_arg( array( 'step' => $this->slug() ), $this->checkout->reg_page_base_url ); |
|
535 | + return add_query_arg(array('step' => $this->slug()), $this->checkout->reg_page_base_url); |
|
536 | 536 | |
537 | 537 | } |
538 | 538 | |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | */ |
555 | 555 | public function update_checkout() { |
556 | 556 | // grab the cart grand total and reset TXN total |
557 | - $this->checkout->transaction->set_total( $this->checkout->cart->get_cart_grand_total() ); |
|
557 | + $this->checkout->transaction->set_total($this->checkout->cart->get_cart_grand_total()); |
|
558 | 558 | $this->checkout->stash_transaction_and_checkout(); |
559 | 559 | } |
560 | 560 | |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | */ |
570 | 570 | function __sleep() { |
571 | 571 | // remove the reg form and the checkout |
572 | - return array_diff( array_keys( get_object_vars( $this )), array( 'reg_form', 'checkout' )); |
|
572 | + return array_diff(array_keys(get_object_vars($this)), array('reg_form', 'checkout')); |
|
573 | 573 | } |
574 | 574 | } |
575 | 575 |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | * |
462 | 462 | * @access public |
463 | 463 | * @access public |
464 | - * @return array or FALSE |
|
464 | + * @return boolean|null or FALSE |
|
465 | 465 | */ |
466 | 466 | public function process_ticket_selections() { |
467 | 467 | do_action( 'EED_Ticket_Selector__process_ticket_selections__before' ); |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | * @access private |
721 | 721 | * @param EE_Ticket $ticket |
722 | 722 | * @param int $qty |
723 | - * @return TRUE on success, FALSE on fail |
|
723 | + * @return boolean on success, FALSE on fail |
|
724 | 724 | */ |
725 | 725 | private static function _add_ticket_to_cart( EE_Ticket $ticket = NULL, $qty = 1 ) { |
726 | 726 | do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * Event Espresso |
4 | 6 | * |
@@ -1,29 +1,29 @@ discard block |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
2 | 2 | /** |
3 | - * Event Espresso |
|
4 | - * |
|
5 | - * Event Registration and Management Plugin for WordPress |
|
6 | - * |
|
7 | - * @ package Event Espresso |
|
8 | - * @ author Seth Shoultes |
|
9 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | - * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
11 | - * @ link http://www.eventespresso.com |
|
12 | - * @ version 4.0 |
|
13 | - * |
|
14 | - * ------------------------------------------------------------------------ |
|
15 | - */ |
|
3 | + * Event Espresso |
|
4 | + * |
|
5 | + * Event Registration and Management Plugin for WordPress |
|
6 | + * |
|
7 | + * @ package Event Espresso |
|
8 | + * @ author Seth Shoultes |
|
9 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | + * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
11 | + * @ link http://www.eventespresso.com |
|
12 | + * @ version 4.0 |
|
13 | + * |
|
14 | + * ------------------------------------------------------------------------ |
|
15 | + */ |
|
16 | 16 | /** |
17 | - * ------------------------------------------------------------------------ |
|
18 | - * |
|
19 | - * Ticket Selector class |
|
20 | - * |
|
21 | - * @package Event Espresso |
|
22 | - * @subpackage includes/classes/EE_Ticket_Selector.class.php |
|
23 | - * @author Brent Christensen |
|
24 | - * |
|
25 | - * ------------------------------------------------------------------------ |
|
26 | - */ |
|
17 | + * ------------------------------------------------------------------------ |
|
18 | + * |
|
19 | + * Ticket Selector class |
|
20 | + * |
|
21 | + * @package Event Espresso |
|
22 | + * @subpackage includes/classes/EE_Ticket_Selector.class.php |
|
23 | + * @author Brent Christensen |
|
24 | + * |
|
25 | + * ------------------------------------------------------------------------ |
|
26 | + */ |
|
27 | 27 | class EED_Ticket_Selector extends EED_Module { |
28 | 28 | |
29 | 29 | /** |
@@ -35,11 +35,11 @@ discard block |
||
35 | 35 | protected static $_event = NULL; |
36 | 36 | |
37 | 37 | /** |
38 | - * array of datetimes and the spaces available for them |
|
39 | - * |
|
40 | - * @access private |
|
41 | - * @var array |
|
42 | - */ |
|
38 | + * array of datetimes and the spaces available for them |
|
39 | + * |
|
40 | + * @access private |
|
41 | + * @var array |
|
42 | + */ |
|
43 | 43 | private static $_available_spaces = array(); |
44 | 44 | |
45 | 45 | |
@@ -900,11 +900,11 @@ discard block |
||
900 | 900 | |
901 | 901 | |
902 | 902 | /** |
903 | - * load js |
|
904 | - * |
|
905 | - * @access public |
|
906 | - * @return void |
|
907 | - */ |
|
903 | + * load js |
|
904 | + * |
|
905 | + * @access public |
|
906 | + * @return void |
|
907 | + */ |
|
908 | 908 | public static function load_tckt_slctr_assets() { |
909 | 909 | // add some style |
910 | 910 | if ( apply_filters( 'FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', FALSE ) ) { |
@@ -57,15 +57,15 @@ discard block |
||
57 | 57 | * @return EED_Ticket_Selector |
58 | 58 | */ |
59 | 59 | public static function instance() { |
60 | - return parent::get_instance( __CLASS__ ); |
|
60 | + return parent::get_instance(__CLASS__); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | |
64 | 64 | |
65 | - protected function set_config(){ |
|
66 | - $this->set_config_section( 'template_settings' ); |
|
67 | - $this->set_config_class( 'EE_Ticket_Selector_Config' ); |
|
68 | - $this->set_config_name( 'EED_Ticket_Selector' ); |
|
65 | + protected function set_config() { |
|
66 | + $this->set_config_section('template_settings'); |
|
67 | + $this->set_config_class('EE_Ticket_Selector_Config'); |
|
68 | + $this->set_config_name('EED_Ticket_Selector'); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | |
@@ -80,14 +80,14 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public static function set_hooks() { |
82 | 82 | // routing |
83 | - EE_Config::register_route( 'iframe', 'EED_Ticket_Selector', 'ticket_selector_iframe', 'ticket_selector' ); |
|
84 | - EE_Config::register_route( 'process_ticket_selections', 'EED_Ticket_Selector', 'process_ticket_selections' ); |
|
85 | - add_action( 'wp_loaded', array( 'EED_Ticket_Selector', 'set_definitions' ), 2 ); |
|
83 | + EE_Config::register_route('iframe', 'EED_Ticket_Selector', 'ticket_selector_iframe', 'ticket_selector'); |
|
84 | + EE_Config::register_route('process_ticket_selections', 'EED_Ticket_Selector', 'process_ticket_selections'); |
|
85 | + add_action('wp_loaded', array('EED_Ticket_Selector', 'set_definitions'), 2); |
|
86 | 86 | //add_action( 'AHEE_event_details_before_post', array( 'EED_Ticket_Selector', 'ticket_selector_form_open' ), 10, 1 ); |
87 | - add_action( 'AHEE_event_details_header_bottom', array( 'EED_Ticket_Selector', 'display_ticket_selector' ), 10, 1 ); |
|
87 | + add_action('AHEE_event_details_header_bottom', array('EED_Ticket_Selector', 'display_ticket_selector'), 10, 1); |
|
88 | 88 | //add_action( 'AHEE__ticket_selector_chart__template__after_ticket_selector', array( 'EED_Ticket_Selector', 'display_ticket_selector_submit' ), 10, 1 ); |
89 | 89 | //add_action( 'AHEE_event_details_after_post', array( 'EED_Ticket_Selector', 'ticket_selector_form_close' ), 10 ); |
90 | - add_action( 'wp_enqueue_scripts', array( 'EED_Ticket_Selector', 'load_tckt_slctr_assets' ), 10 ); |
|
90 | + add_action('wp_enqueue_scripts', array('EED_Ticket_Selector', 'load_tckt_slctr_assets'), 10); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | |
@@ -99,10 +99,10 @@ discard block |
||
99 | 99 | * @return void |
100 | 100 | */ |
101 | 101 | public static function set_hooks_admin() { |
102 | - add_action( 'wp_loaded', array( 'EED_Ticket_Selector', 'set_definitions' ), 2 ); |
|
102 | + add_action('wp_loaded', array('EED_Ticket_Selector', 'set_definitions'), 2); |
|
103 | 103 | //add button for iframe code to event editor. |
104 | - add_filter( 'get_sample_permalink_html', array( 'EED_Ticket_Selector', 'iframe_code_button' ), 10, 4 ); |
|
105 | - add_action( 'admin_enqueue_scripts', array( 'EED_Ticket_Selector', 'load_tckt_slctr_assets_admin' ), 10 ); |
|
104 | + add_filter('get_sample_permalink_html', array('EED_Ticket_Selector', 'iframe_code_button'), 10, 4); |
|
105 | + add_action('admin_enqueue_scripts', array('EED_Ticket_Selector', 'load_tckt_slctr_assets_admin'), 10); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | |
@@ -114,15 +114,15 @@ discard block |
||
114 | 114 | * @return void |
115 | 115 | */ |
116 | 116 | public static function set_definitions() { |
117 | - define( 'TICKET_SELECTOR_ASSETS_URL', plugin_dir_url( __FILE__ ) . 'assets' . DS ); |
|
118 | - define( 'TICKET_SELECTOR_TEMPLATES_PATH', str_replace( '\\', DS, plugin_dir_path( __FILE__ )) . 'templates' . DS ); |
|
117 | + define('TICKET_SELECTOR_ASSETS_URL', plugin_dir_url(__FILE__).'assets'.DS); |
|
118 | + define('TICKET_SELECTOR_TEMPLATES_PATH', str_replace('\\', DS, plugin_dir_path(__FILE__)).'templates'.DS); |
|
119 | 119 | |
120 | 120 | //if config is not set, initialize |
121 | 121 | //If config is not set, set it. |
122 | - if ( ! isset( EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector ) ) { |
|
122 | + if ( ! isset(EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector)) { |
|
123 | 123 | EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector = new EE_Ticket_Selector_Config(); |
124 | 124 | } |
125 | - EE_Registry::$i18n_js_strings[ 'ts_embed_iframe_title' ] = __( 'Copy and Paste the following:', 'event_espresso' ); |
|
125 | + EE_Registry::$i18n_js_strings['ts_embed_iframe_title'] = __('Copy and Paste the following:', 'event_espresso'); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * @param object $WP |
134 | 134 | * @return void |
135 | 135 | */ |
136 | - public function run( $WP ) {} |
|
136 | + public function run($WP) {} |
|
137 | 137 | |
138 | 138 | |
139 | 139 | /** |
@@ -145,23 +145,23 @@ discard block |
||
145 | 145 | public function ticket_selector_iframe() { |
146 | 146 | self::$_in_iframe = true; |
147 | 147 | /** @type EEM_Event $EEM_Event */ |
148 | - $EEM_Event = EE_Registry::instance()->load_model( 'Event' ); |
|
148 | + $EEM_Event = EE_Registry::instance()->load_model('Event'); |
|
149 | 149 | $event = $EEM_Event->get_one_by_ID( |
150 | - EE_Registry::instance()->REQ->get( 'event', 0 ) |
|
150 | + EE_Registry::instance()->REQ->get('event', 0) |
|
151 | 151 | ); |
152 | - EE_Registry::instance()->REQ->set_espresso_page( true ); |
|
153 | - $template_args['ticket_selector'] = EED_Ticket_Selector::display_ticket_selector( $event ); |
|
152 | + EE_Registry::instance()->REQ->set_espresso_page(true); |
|
153 | + $template_args['ticket_selector'] = EED_Ticket_Selector::display_ticket_selector($event); |
|
154 | 154 | $template_args['css'] = apply_filters( |
155 | 155 | 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__css', |
156 | 156 | array( |
157 | - TICKET_SELECTOR_ASSETS_URL . 'ticket_selector_embed.css?ver=' . EVENT_ESPRESSO_VERSION, |
|
158 | - TICKET_SELECTOR_ASSETS_URL . 'ticket_selector.css?ver=' . EVENT_ESPRESSO_VERSION, |
|
159 | - includes_url( 'css/dashicons.min.css?ver=' . $GLOBALS['wp_version'] ), |
|
160 | - EE_GLOBAL_ASSETS_URL . 'css/espresso_default.css?ver=' . EVENT_ESPRESSO_VERSION |
|
157 | + TICKET_SELECTOR_ASSETS_URL.'ticket_selector_embed.css?ver='.EVENT_ESPRESSO_VERSION, |
|
158 | + TICKET_SELECTOR_ASSETS_URL.'ticket_selector.css?ver='.EVENT_ESPRESSO_VERSION, |
|
159 | + includes_url('css/dashicons.min.css?ver='.$GLOBALS['wp_version']), |
|
160 | + EE_GLOBAL_ASSETS_URL.'css/espresso_default.css?ver='.EVENT_ESPRESSO_VERSION |
|
161 | 161 | ) |
162 | 162 | ); |
163 | - EE_Registry::$i18n_js_strings[ 'ticket_selector_iframe' ] = true; |
|
164 | - EE_Registry::$i18n_js_strings[ 'EEDTicketSelectorMsg' ] = __( 'Please choose at least one ticket before continuing.', 'event_espresso' ); |
|
163 | + EE_Registry::$i18n_js_strings['ticket_selector_iframe'] = true; |
|
164 | + EE_Registry::$i18n_js_strings['EEDTicketSelectorMsg'] = __('Please choose at least one ticket before continuing.', 'event_espresso'); |
|
165 | 165 | $template_args['eei18n'] = apply_filters( |
166 | 166 | 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__eei18n_js_strings', |
167 | 167 | EE_Registry::localize_i18n_js_strings() |
@@ -169,18 +169,18 @@ discard block |
||
169 | 169 | $template_args['js'] = apply_filters( |
170 | 170 | 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__js', |
171 | 171 | array( |
172 | - includes_url( 'js/jquery/jquery.js?ver=' . $GLOBALS['wp_version'] ), |
|
173 | - EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js?ver=' . EVENT_ESPRESSO_VERSION, |
|
174 | - TICKET_SELECTOR_ASSETS_URL . 'ticket_selector_iframe_embed.js?ver=' . EVENT_ESPRESSO_VERSION |
|
172 | + includes_url('js/jquery/jquery.js?ver='.$GLOBALS['wp_version']), |
|
173 | + EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js?ver='.EVENT_ESPRESSO_VERSION, |
|
174 | + TICKET_SELECTOR_ASSETS_URL.'ticket_selector_iframe_embed.js?ver='.EVENT_ESPRESSO_VERSION |
|
175 | 175 | ) |
176 | 176 | ); |
177 | - $template_args[ 'notices' ] = EEH_Template::display_template( |
|
178 | - EE_TEMPLATES . 'espresso-ajax-notices.template.php', |
|
177 | + $template_args['notices'] = EEH_Template::display_template( |
|
178 | + EE_TEMPLATES.'espresso-ajax-notices.template.php', |
|
179 | 179 | array(), |
180 | 180 | true |
181 | 181 | ); |
182 | 182 | EEH_Template::display_template( |
183 | - TICKET_SELECTOR_TEMPLATES_PATH . 'ticket_selector_chart_iframe.template.php', |
|
183 | + TICKET_SELECTOR_TEMPLATES_PATH.'ticket_selector_chart_iframe.template.php', |
|
184 | 184 | $template_args |
185 | 185 | ); |
186 | 186 | exit; |
@@ -199,23 +199,23 @@ discard block |
||
199 | 199 | * |
200 | 200 | * @return string The new html string for the permalink area. |
201 | 201 | */ |
202 | - public static function iframe_code_button( $permalink_string, $id, $new_title, $new_slug ) { |
|
202 | + public static function iframe_code_button($permalink_string, $id, $new_title, $new_slug) { |
|
203 | 203 | //make sure this is ONLY when editing and the event id has been set. |
204 | - if ( ! empty( $id ) ) { |
|
205 | - $post = get_post( $id ); |
|
204 | + if ( ! empty($id)) { |
|
205 | + $post = get_post($id); |
|
206 | 206 | |
207 | 207 | //if NOT event then let's get out. |
208 | - if ( $post->post_type !== 'espresso_events' ) { |
|
208 | + if ($post->post_type !== 'espresso_events') { |
|
209 | 209 | return $permalink_string; |
210 | 210 | } |
211 | 211 | |
212 | - $ticket_selector_url = add_query_arg( array( 'ticket_selector' => 'iframe', 'event' => $id ), site_url() ); |
|
212 | + $ticket_selector_url = add_query_arg(array('ticket_selector' => 'iframe', 'event' => $id), site_url()); |
|
213 | 213 | |
214 | - $permalink_string .= '<a id="js-ticket-selector-embed-trigger" class="button button-small" href="#" tabindex="-1">' . __('Embed', 'event_espresso') . '</a> '; |
|
214 | + $permalink_string .= '<a id="js-ticket-selector-embed-trigger" class="button button-small" href="#" tabindex="-1">'.__('Embed', 'event_espresso').'</a> '; |
|
215 | 215 | $permalink_string .= ' |
216 | 216 | <div id="js-ts-iframe" style="display:none"> |
217 | 217 | <div style="width:100%; height: 500px;"> |
218 | - <iframe src="' . $ticket_selector_url . '" width="100%" height="100%"></iframe> |
|
218 | + <iframe src="' . $ticket_selector_url.'" width="100%" height="100%"></iframe> |
|
219 | 219 | </div> |
220 | 220 | </div>'; |
221 | 221 | } |
@@ -234,22 +234,22 @@ discard block |
||
234 | 234 | * @param mixed $event |
235 | 235 | * @return bool |
236 | 236 | */ |
237 | - protected static function set_event( $event = null ) { |
|
238 | - if( $event === null ) { |
|
237 | + protected static function set_event($event = null) { |
|
238 | + if ($event === null) { |
|
239 | 239 | global $post; |
240 | 240 | $event = $post; |
241 | 241 | } |
242 | - if ( $event instanceof EE_Event ) { |
|
242 | + if ($event instanceof EE_Event) { |
|
243 | 243 | self::$_event = $event; |
244 | - } else if ( $event instanceof WP_Post && isset( $event->EE_Event ) && $event->EE_Event instanceof EE_Event ) { |
|
244 | + } else if ($event instanceof WP_Post && isset($event->EE_Event) && $event->EE_Event instanceof EE_Event) { |
|
245 | 245 | self::$_event = $event->EE_Event; |
246 | - } else if ( $event instanceof WP_Post && $event->post_type == 'espresso_events' ) { |
|
247 | - $event->EE_Event = EEM_Event::instance()->instantiate_class_from_post_object( $event ); |
|
246 | + } else if ($event instanceof WP_Post && $event->post_type == 'espresso_events') { |
|
247 | + $event->EE_Event = EEM_Event::instance()->instantiate_class_from_post_object($event); |
|
248 | 248 | self::$_event = $event->EE_Event; |
249 | 249 | } else { |
250 | - $user_msg = __( 'No Event object or an invalid Event object was supplied.', 'event_espresso' ); |
|
251 | - $dev_msg = $user_msg . __( 'In order to generate a ticket selector, please ensure you are passing either an EE_Event object or a WP_Post object of the post type "espresso_event" to the EE_Ticket_Selector class constructor.', 'event_espresso' ); |
|
252 | - EE_Error::add_error( $user_msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
250 | + $user_msg = __('No Event object or an invalid Event object was supplied.', 'event_espresso'); |
|
251 | + $dev_msg = $user_msg.__('In order to generate a ticket selector, please ensure you are passing either an EE_Event object or a WP_Post object of the post type "espresso_event" to the EE_Ticket_Selector class constructor.', 'event_espresso'); |
|
252 | + EE_Error::add_error($user_msg.'||'.$dev_msg, __FILE__, __FUNCTION__, __LINE__); |
|
253 | 253 | return false; |
254 | 254 | } |
255 | 255 | return true; |
@@ -268,11 +268,11 @@ discard block |
||
268 | 268 | * @param bool $view_details |
269 | 269 | * @return string |
270 | 270 | */ |
271 | - public static function display_ticket_selector( $event = NULL, $view_details = FALSE ) { |
|
271 | + public static function display_ticket_selector($event = NULL, $view_details = FALSE) { |
|
272 | 272 | // reset filter for displaying submit button |
273 | - remove_filter( 'FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true' ); |
|
273 | + remove_filter('FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true'); |
|
274 | 274 | // poke and prod incoming event till it tells us what it is |
275 | - if ( ! EED_Ticket_Selector::set_event( $event )) { |
|
275 | + if ( ! EED_Ticket_Selector::set_event($event)) { |
|
276 | 276 | return false; |
277 | 277 | } |
278 | 278 | $event_post = self::$_event instanceof EE_Event ? self::$_event->ID() : $event; |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | && ( |
284 | 284 | ! self::$_event->display_ticket_selector() |
285 | 285 | || $view_details |
286 | - || post_password_required( $event_post ) |
|
286 | + || post_password_required($event_post) |
|
287 | 287 | || ( |
288 | 288 | $_event_active_status != EE_Datetime::active |
289 | 289 | && $_event_active_status != EE_Datetime::upcoming |
@@ -301,68 +301,68 @@ discard block |
||
301 | 301 | $template_args = array(); |
302 | 302 | $template_args['event_status'] = $_event_active_status; |
303 | 303 | |
304 | - $template_args['date_format'] = apply_filters( 'FHEE__EED_Ticket_Selector__display_ticket_selector__date_format', get_option( 'date_format' ) ); |
|
305 | - $template_args['time_format'] = apply_filters( 'FHEE__EED_Ticket_Selector__display_ticket_selector__time_format', get_option( 'time_format' ) ); |
|
304 | + $template_args['date_format'] = apply_filters('FHEE__EED_Ticket_Selector__display_ticket_selector__date_format', get_option('date_format')); |
|
305 | + $template_args['time_format'] = apply_filters('FHEE__EED_Ticket_Selector__display_ticket_selector__time_format', get_option('time_format')); |
|
306 | 306 | |
307 | 307 | $template_args['EVT_ID'] = self::$_event->ID(); |
308 | 308 | $template_args['event'] = self::$_event; |
309 | 309 | |
310 | 310 | // is the event expired ? |
311 | 311 | $template_args['event_is_expired'] = self::$_event->is_expired(); |
312 | - if ( $template_args['event_is_expired'] ) { |
|
313 | - return '<div class="ee-event-expired-notice"><span class="important-notice">' . __( 'We\'re sorry, but all tickets sales have ended because the event is expired.', 'event_espresso' ) . '</span></div>'; |
|
312 | + if ($template_args['event_is_expired']) { |
|
313 | + return '<div class="ee-event-expired-notice"><span class="important-notice">'.__('We\'re sorry, but all tickets sales have ended because the event is expired.', 'event_espresso').'</span></div>'; |
|
314 | 314 | } |
315 | 315 | |
316 | 316 | $ticket_query_args = array( |
317 | - array( 'Datetime.EVT_ID' => self::$_event->ID() ), |
|
318 | - 'order_by' => array( 'TKT_order' => 'ASC', 'TKT_required' => 'DESC', 'TKT_start_date' => 'ASC', 'TKT_end_date' => 'ASC' , 'Datetime.DTT_EVT_start' => 'DESC' ) |
|
317 | + array('Datetime.EVT_ID' => self::$_event->ID()), |
|
318 | + 'order_by' => array('TKT_order' => 'ASC', 'TKT_required' => 'DESC', 'TKT_start_date' => 'ASC', 'TKT_end_date' => 'ASC', 'Datetime.DTT_EVT_start' => 'DESC') |
|
319 | 319 | ); |
320 | 320 | |
321 | - if ( ! EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_expired_tickets ) { |
|
321 | + if ( ! EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_expired_tickets) { |
|
322 | 322 | //use the correct applicable time query depending on what version of core is being run. |
323 | - $current_time = method_exists( 'EEM_Datetime', 'current_time_for_query' ) ? time() : current_time('timestamp'); |
|
324 | - $ticket_query_args[0]['TKT_end_date'] = array( '>', $current_time ); |
|
323 | + $current_time = method_exists('EEM_Datetime', 'current_time_for_query') ? time() : current_time('timestamp'); |
|
324 | + $ticket_query_args[0]['TKT_end_date'] = array('>', $current_time); |
|
325 | 325 | } |
326 | 326 | |
327 | 327 | // get all tickets for this event ordered by the datetime |
328 | - $template_args['tickets'] = EEM_Ticket::instance()->get_all( $ticket_query_args ); |
|
328 | + $template_args['tickets'] = EEM_Ticket::instance()->get_all($ticket_query_args); |
|
329 | 329 | |
330 | - if ( count( $template_args['tickets'] ) < 1 ) { |
|
331 | - return '<div class="ee-event-expired-notice"><span class="important-notice">' . __( 'We\'re sorry, but all ticket sales have ended.', 'event_espresso' ) . '</span></div>'; |
|
330 | + if (count($template_args['tickets']) < 1) { |
|
331 | + return '<div class="ee-event-expired-notice"><span class="important-notice">'.__('We\'re sorry, but all ticket sales have ended.', 'event_espresso').'</span></div>'; |
|
332 | 332 | } |
333 | 333 | |
334 | 334 | // filter the maximum qty that can appear in the Ticket Selector qty dropdowns |
335 | - $template_args['max_atndz'] = apply_filters('FHEE__EE_Ticket_Selector__display_ticket_selector__max_tickets', self::$_event->additional_limit() ); |
|
336 | - if ( $template_args['max_atndz'] < 1 ) { |
|
337 | - $sales_closed_msg = __( 'We\'re sorry, but ticket sales have been closed at this time. Please check back again later.', 'event_espresso' ); |
|
338 | - if ( current_user_can( 'edit_post', self::$_event->ID() )) { |
|
339 | - $sales_closed_msg .= sprintf( |
|
340 | - __( '%sNote to Event Admin:%sThe "Maximum number of tickets allowed per order for this event" in the Event Registration Options has been set to "0". This effectively turns off ticket sales. %s(click to edit this event)%s', 'event_espresso' ), |
|
335 | + $template_args['max_atndz'] = apply_filters('FHEE__EE_Ticket_Selector__display_ticket_selector__max_tickets', self::$_event->additional_limit()); |
|
336 | + if ($template_args['max_atndz'] < 1) { |
|
337 | + $sales_closed_msg = __('We\'re sorry, but ticket sales have been closed at this time. Please check back again later.', 'event_espresso'); |
|
338 | + if (current_user_can('edit_post', self::$_event->ID())) { |
|
339 | + $sales_closed_msg .= sprintf( |
|
340 | + __('%sNote to Event Admin:%sThe "Maximum number of tickets allowed per order for this event" in the Event Registration Options has been set to "0". This effectively turns off ticket sales. %s(click to edit this event)%s', 'event_espresso'), |
|
341 | 341 | '<div class="ee-attention" style="text-align: left;"><b>', |
342 | 342 | '</b><br />', |
343 | - $link = '<span class="edit-link"><a class="post-edit-link" href="' . get_edit_post_link( self::$_event->ID() ) . '">', |
|
343 | + $link = '<span class="edit-link"><a class="post-edit-link" href="'.get_edit_post_link(self::$_event->ID()).'">', |
|
344 | 344 | '</a></span></div>' |
345 | 345 | ); |
346 | 346 | } |
347 | - return '<p><span class="important-notice">' . $sales_closed_msg . '</span></p>'; |
|
347 | + return '<p><span class="important-notice">'.$sales_closed_msg.'</span></p>'; |
|
348 | 348 | } |
349 | 349 | |
350 | - $templates['ticket_selector'] = TICKET_SELECTOR_TEMPLATES_PATH . 'ticket_selector_chart.template.php'; |
|
351 | - $templates['ticket_selector'] = apply_filters( 'FHEE__EE_Ticket_Selector__display_ticket_selector__template_path', $templates['ticket_selector'], self::$_event ); |
|
350 | + $templates['ticket_selector'] = TICKET_SELECTOR_TEMPLATES_PATH.'ticket_selector_chart.template.php'; |
|
351 | + $templates['ticket_selector'] = apply_filters('FHEE__EE_Ticket_Selector__display_ticket_selector__template_path', $templates['ticket_selector'], self::$_event); |
|
352 | 352 | |
353 | 353 | // redirecting to another site for registration ?? |
354 | 354 | $external_url = self::$_event->external_url() !== NULL || self::$_event->external_url() !== '' ? self::$_event->external_url() : FALSE; |
355 | 355 | // set up the form (but not for the admin) |
356 | - $ticket_selector = ! is_admin() ? EED_Ticket_Selector::ticket_selector_form_open( self::$_event->ID(), $external_url ) : ''; |
|
356 | + $ticket_selector = ! is_admin() ? EED_Ticket_Selector::ticket_selector_form_open(self::$_event->ID(), $external_url) : ''; |
|
357 | 357 | // if not redirecting to another site for registration |
358 | - if ( ! $external_url ) { |
|
358 | + if ( ! $external_url) { |
|
359 | 359 | // then display the ticket selector |
360 | - $ticket_selector .= EEH_Template::locate_template( $templates['ticket_selector'], $template_args ); |
|
360 | + $ticket_selector .= EEH_Template::locate_template($templates['ticket_selector'], $template_args); |
|
361 | 361 | } else { |
362 | 362 | // if not we still need to trigger the display of the submit button |
363 | - add_filter( 'FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true' ); |
|
363 | + add_filter('FHEE__EE_Ticket_Selector__display_ticket_selector_submit', '__return_true'); |
|
364 | 364 | //display notice to admin that registration is external |
365 | - $ticket_selector .= ! is_admin() ? '' : __( 'Registration is at an external URL for this event.', 'event_espresso' ); |
|
365 | + $ticket_selector .= ! is_admin() ? '' : __('Registration is at an external URL for this event.', 'event_espresso'); |
|
366 | 366 | } |
367 | 367 | // submit button and form close tag |
368 | 368 | $ticket_selector .= ! is_admin() ? EED_Ticket_Selector::display_ticket_selector_submit() : ''; |
@@ -382,25 +382,25 @@ discard block |
||
382 | 382 | * @param string $external_url |
383 | 383 | * @return string |
384 | 384 | */ |
385 | - public static function ticket_selector_form_open( $ID = 0, $external_url = '' ) { |
|
385 | + public static function ticket_selector_form_open($ID = 0, $external_url = '') { |
|
386 | 386 | // if redirecting, we don't need any anything else |
387 | - if ( $external_url ) { |
|
388 | - $html = '<form method="GET" action="' . EEH_URL::refactor_url( $external_url ) . '">'; |
|
389 | - $query_args = EEH_URL::get_query_string( $external_url ); |
|
390 | - foreach ( $query_args as $query_arg => $value ) { |
|
391 | - $html .= '<input type="hidden" name="' . $query_arg . '" value="' . $value . '">'; |
|
387 | + if ($external_url) { |
|
388 | + $html = '<form method="GET" action="'.EEH_URL::refactor_url($external_url).'">'; |
|
389 | + $query_args = EEH_URL::get_query_string($external_url); |
|
390 | + foreach ($query_args as $query_arg => $value) { |
|
391 | + $html .= '<input type="hidden" name="'.$query_arg.'" value="'.$value.'">'; |
|
392 | 392 | } |
393 | 393 | return $html; |
394 | 394 | } |
395 | - $checkout_url = EEH_Event_View::event_link_url( $ID ); |
|
396 | - if ( ! $checkout_url ) { |
|
397 | - EE_Error::add_error( __('The URL for the Event Details page could not be retrieved.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
395 | + $checkout_url = EEH_Event_View::event_link_url($ID); |
|
396 | + if ( ! $checkout_url) { |
|
397 | + EE_Error::add_error(__('The URL for the Event Details page could not be retrieved.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
398 | 398 | } |
399 | 399 | $extra_params = self::$_in_iframe ? ' target="_blank"' : ''; |
400 | - $html = '<form method="POST" action="' . $checkout_url . '"' . $extra_params . '>'; |
|
401 | - $html .= wp_nonce_field( 'process_ticket_selections', 'process_ticket_selections_nonce', TRUE, FALSE ); |
|
400 | + $html = '<form method="POST" action="'.$checkout_url.'"'.$extra_params.'>'; |
|
401 | + $html .= wp_nonce_field('process_ticket_selections', 'process_ticket_selections_nonce', TRUE, FALSE); |
|
402 | 402 | $html .= '<input type="hidden" name="ee" value="process_ticket_selections">'; |
403 | - $html = apply_filters( 'FHEE__EE_Ticket_Selector__ticket_selector_form_open__html', $html, self::$_event ); |
|
403 | + $html = apply_filters('FHEE__EE_Ticket_Selector__ticket_selector_form_open__html', $html, self::$_event); |
|
404 | 404 | return $html; |
405 | 405 | } |
406 | 406 | |
@@ -415,23 +415,23 @@ discard block |
||
415 | 415 | * @return string |
416 | 416 | */ |
417 | 417 | public static function display_ticket_selector_submit() { |
418 | - if ( ! is_admin() ) { |
|
419 | - if ( apply_filters( 'FHEE__EE_Ticket_Selector__display_ticket_selector_submit', FALSE ) ) { |
|
418 | + if ( ! is_admin()) { |
|
419 | + if (apply_filters('FHEE__EE_Ticket_Selector__display_ticket_selector_submit', FALSE)) { |
|
420 | 420 | $btn_text = apply_filters( |
421 | 421 | 'FHEE__EE_Ticket_Selector__display_ticket_selector_submit__btn_text', |
422 | - __('Register Now', 'event_espresso' ), |
|
422 | + __('Register Now', 'event_espresso'), |
|
423 | 423 | self::$_event |
424 | 424 | ); |
425 | 425 | $external_url = self::$_event->external_url(); |
426 | - $html = '<input id="ticket-selector-submit-'. self::$_event->ID() .'-btn"'; |
|
426 | + $html = '<input id="ticket-selector-submit-'.self::$_event->ID().'-btn"'; |
|
427 | 427 | $html .= ' class="ticket-selector-submit-btn '; |
428 | - $html .= empty( $external_url ) ? 'ticket-selector-submit-ajax"' : '"'; |
|
429 | - $html .= ' type="submit" value="' . $btn_text . '" />'; |
|
430 | - $html .= apply_filters( 'FHEE__EE_Ticket_Selector__after_ticket_selector_submit', '', self::$_event ); |
|
428 | + $html .= empty($external_url) ? 'ticket-selector-submit-ajax"' : '"'; |
|
429 | + $html .= ' type="submit" value="'.$btn_text.'" />'; |
|
430 | + $html .= apply_filters('FHEE__EE_Ticket_Selector__after_ticket_selector_submit', '', self::$_event); |
|
431 | 431 | $html .= '<div class="clear"><br/></div></form>'; |
432 | 432 | return $html; |
433 | - } else if ( is_archive() ) { |
|
434 | - return EED_Ticket_Selector::ticket_selector_form_close() . EED_Ticket_Selector::display_view_details_btn(); |
|
433 | + } else if (is_archive()) { |
|
434 | + return EED_Ticket_Selector::ticket_selector_form_close().EED_Ticket_Selector::display_view_details_btn(); |
|
435 | 435 | } |
436 | 436 | } |
437 | 437 | return ''; |
@@ -463,13 +463,13 @@ discard block |
||
463 | 463 | * @return string |
464 | 464 | */ |
465 | 465 | public static function display_view_details_btn() { |
466 | - if ( ! self::$_event->get_permalink() ) { |
|
467 | - EE_Error::add_error( __('The URL for the Event Details page could not be retrieved.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
466 | + if ( ! self::$_event->get_permalink()) { |
|
467 | + EE_Error::add_error(__('The URL for the Event Details page could not be retrieved.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
468 | 468 | } |
469 | - $view_details_btn = '<form method="POST" action="' . self::$_event->get_permalink() . '">'; |
|
470 | - $btn_text = apply_filters( 'FHEE__EE_Ticket_Selector__display_view_details_btn__btn_text', __( 'View Details', 'event_espresso' ), self::$_event ); |
|
471 | - $view_details_btn .= '<input id="ticket-selector-submit-'. self::$_event->ID() .'-btn" class="ticket-selector-submit-btn view-details-btn" type="submit" value="' . $btn_text . '" />'; |
|
472 | - $view_details_btn .= apply_filters( 'FHEE__EE_Ticket_Selector__after_view_details_btn', '', self::$_event ); |
|
469 | + $view_details_btn = '<form method="POST" action="'.self::$_event->get_permalink().'">'; |
|
470 | + $btn_text = apply_filters('FHEE__EE_Ticket_Selector__display_view_details_btn__btn_text', __('View Details', 'event_espresso'), self::$_event); |
|
471 | + $view_details_btn .= '<input id="ticket-selector-submit-'.self::$_event->ID().'-btn" class="ticket-selector-submit-btn view-details-btn" type="submit" value="'.$btn_text.'" />'; |
|
472 | + $view_details_btn .= apply_filters('FHEE__EE_Ticket_Selector__after_view_details_btn', '', self::$_event); |
|
473 | 473 | $view_details_btn .= '<div class="clear"><br/></div>'; |
474 | 474 | $view_details_btn .= '</form>'; |
475 | 475 | return $view_details_btn; |
@@ -488,11 +488,11 @@ discard block |
||
488 | 488 | * @return array or FALSE |
489 | 489 | */ |
490 | 490 | public function process_ticket_selections() { |
491 | - do_action( 'EED_Ticket_Selector__process_ticket_selections__before' ); |
|
491 | + do_action('EED_Ticket_Selector__process_ticket_selections__before'); |
|
492 | 492 | // check nonce |
493 | - if ( ! is_admin() && ( ! EE_Registry::instance()->REQ->is_set( 'process_ticket_selections_nonce' ) || ! wp_verify_nonce( EE_Registry::instance()->REQ->get( 'process_ticket_selections_nonce' ), 'process_ticket_selections' ))) { |
|
493 | + if ( ! is_admin() && ( ! EE_Registry::instance()->REQ->is_set('process_ticket_selections_nonce') || ! wp_verify_nonce(EE_Registry::instance()->REQ->get('process_ticket_selections_nonce'), 'process_ticket_selections'))) { |
|
494 | 494 | EE_Error::add_error( |
495 | - sprintf( __( 'We\'re sorry but your request failed to pass a security check.%sPlease click the back button on your browser and try again.', 'event_espresso' ), '<br/>' ), |
|
495 | + sprintf(__('We\'re sorry but your request failed to pass a security check.%sPlease click the back button on your browser and try again.', 'event_espresso'), '<br/>'), |
|
496 | 496 | __FILE__, __FUNCTION__, __LINE__ |
497 | 497 | ); |
498 | 498 | return FALSE; |
@@ -506,16 +506,16 @@ discard block |
||
506 | 506 | |
507 | 507 | //we should really only have 1 registration in the works now (ie, no MER) so clear any previous items in the cart. |
508 | 508 | // When MER happens this will probably need to be tweaked, possibly wrapped in a conditional checking for some constant defined in MER etc. |
509 | - EE_Registry::instance()->load_core( 'Session' ); |
|
509 | + EE_Registry::instance()->load_core('Session'); |
|
510 | 510 | // unless otherwise requested, clear the session |
511 | - if ( apply_filters( 'FHEE__EE_Ticket_Selector__process_ticket_selections__clear_session', TRUE )) { |
|
512 | - EE_Registry::instance()->SSN->clear_session( __CLASS__, __FUNCTION__ ); |
|
511 | + if (apply_filters('FHEE__EE_Ticket_Selector__process_ticket_selections__clear_session', TRUE)) { |
|
512 | + EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__); |
|
513 | 513 | } |
514 | 514 | //d( EE_Registry::instance()->SSN ); |
515 | 515 | |
516 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
516 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
517 | 517 | // do we have an event id? |
518 | - if ( EE_Registry::instance()->REQ->is_set( 'tkt-slctr-event-id' ) ) { |
|
518 | + if (EE_Registry::instance()->REQ->is_set('tkt-slctr-event-id')) { |
|
519 | 519 | // validate/sanitize data |
520 | 520 | $valid = self::_validate_post_data(); |
521 | 521 | |
@@ -525,43 +525,43 @@ discard block |
||
525 | 525 | //EEH_Debug_Tools::printr( $valid[ 'max_atndz' ], 'max_atndz', __FILE__, __LINE__ ); |
526 | 526 | |
527 | 527 | //check total tickets ordered vs max number of attendees that can register |
528 | - if ( $valid['total_tickets'] > $valid['max_atndz'] ) { |
|
528 | + if ($valid['total_tickets'] > $valid['max_atndz']) { |
|
529 | 529 | |
530 | 530 | // ordering too many tickets !!! |
531 | 531 | $singular = 'You have attempted to purchase %s ticket.'; |
532 | 532 | $plural = 'You have attempted to purchase %s tickets.'; |
533 | - $limit_error_1 = sprintf( _n( $singular, $plural, $valid['total_tickets'], 'event_espresso' ), $valid['total_tickets'], $valid['total_tickets'] ); |
|
533 | + $limit_error_1 = sprintf(_n($singular, $plural, $valid['total_tickets'], 'event_espresso'), $valid['total_tickets'], $valid['total_tickets']); |
|
534 | 534 | // dev only message |
535 | 535 | $singular = 'The registration limit for this event is %s ticket per registration, therefore the total number of tickets you may purchase at a time can not exceed %s.'; |
536 | 536 | $plural = 'The registration limit for this event is %s tickets per registration, therefore the total number of tickets you may purchase at a time can not exceed %s.'; |
537 | - $limit_error_2 = sprintf( _n( $singular, $plural, $valid['max_atndz'], 'event_espresso' ), $valid['max_atndz'], $valid['max_atndz'] ); |
|
538 | - EE_Error::add_error( $limit_error_1 . '<br/>' . $limit_error_2, __FILE__, __FUNCTION__, __LINE__ ); |
|
537 | + $limit_error_2 = sprintf(_n($singular, $plural, $valid['max_atndz'], 'event_espresso'), $valid['max_atndz'], $valid['max_atndz']); |
|
538 | + EE_Error::add_error($limit_error_1.'<br/>'.$limit_error_2, __FILE__, __FUNCTION__, __LINE__); |
|
539 | 539 | } else { |
540 | 540 | |
541 | 541 | // all data appears to be valid |
542 | 542 | $tckts_slctd = FALSE; |
543 | 543 | $success = TRUE; |
544 | 544 | // load cart |
545 | - EE_Registry::instance()->load_core( 'Cart' ); |
|
545 | + EE_Registry::instance()->load_core('Cart'); |
|
546 | 546 | |
547 | 547 | // cycle thru the number of data rows sent from the event listing |
548 | - for ( $x = 0; $x < $valid['rows']; $x++ ) { |
|
548 | + for ($x = 0; $x < $valid['rows']; $x++) { |
|
549 | 549 | // does this row actually contain a ticket quantity? |
550 | - if ( isset( $valid['qty'][$x] ) && $valid['qty'][$x] > 0 ) { |
|
550 | + if (isset($valid['qty'][$x]) && $valid['qty'][$x] > 0) { |
|
551 | 551 | // YES we have a ticket quantity |
552 | 552 | $tckts_slctd = TRUE; |
553 | 553 | // d( $valid['ticket_obj'][$x] ); |
554 | - if ( $valid['ticket_obj'][$x] instanceof EE_Ticket ) { |
|
554 | + if ($valid['ticket_obj'][$x] instanceof EE_Ticket) { |
|
555 | 555 | // then add ticket to cart |
556 | - $ticket_added = self::_add_ticket_to_cart( $valid['ticket_obj'][$x], $valid['qty'][$x] ); |
|
556 | + $ticket_added = self::_add_ticket_to_cart($valid['ticket_obj'][$x], $valid['qty'][$x]); |
|
557 | 557 | $success = ! $ticket_added ? FALSE : $success; |
558 | - if ( EE_Error::has_error() ) { |
|
558 | + if (EE_Error::has_error()) { |
|
559 | 559 | break; |
560 | 560 | } |
561 | 561 | } else { |
562 | 562 | // nothing added to cart retrieved |
563 | 563 | EE_Error::add_error( |
564 | - sprintf( __( 'A valid ticket could not be retrieved for the event.%sPlease click the back button on your browser and try again.', 'event_espresso' ), '<br/>' ), |
|
564 | + sprintf(__('A valid ticket could not be retrieved for the event.%sPlease click the back button on your browser and try again.', 'event_espresso'), '<br/>'), |
|
565 | 565 | __FILE__, __FUNCTION__, __LINE__ |
566 | 566 | ); |
567 | 567 | } |
@@ -570,45 +570,45 @@ discard block |
||
570 | 570 | //d( EE_Registry::instance()->CART ); |
571 | 571 | //die(); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KILL REDIRECT HERE BEFORE CART UPDATE |
572 | 572 | |
573 | - if ( $tckts_slctd ) { |
|
574 | - if ( $success ) { |
|
575 | - do_action( 'FHEE__EE_Ticket_Selector__process_ticket_selections__before_redirecting_to_checkout', EE_Registry::instance()->CART, $this ); |
|
573 | + if ($tckts_slctd) { |
|
574 | + if ($success) { |
|
575 | + do_action('FHEE__EE_Ticket_Selector__process_ticket_selections__before_redirecting_to_checkout', EE_Registry::instance()->CART, $this); |
|
576 | 576 | EE_Registry::instance()->CART->recalculate_all_cart_totals(); |
577 | - EE_Registry::instance()->CART->save_cart( FALSE ); |
|
577 | + EE_Registry::instance()->CART->save_cart(FALSE); |
|
578 | 578 | EE_Registry::instance()->SSN->update(); |
579 | 579 | //d( EE_Registry::instance()->CART ); |
580 | 580 | //die(); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< OR HERE TO KILL REDIRECT AFTER CART UPDATE |
581 | 581 | // just return TRUE for registrations being made from admin |
582 | - if ( is_admin() ) { |
|
582 | + if (is_admin()) { |
|
583 | 583 | return TRUE; |
584 | 584 | } |
585 | - wp_safe_redirect( apply_filters( 'FHEE__EE_Ticket_Selector__process_ticket_selections__success_redirect_url', EE_Registry::instance()->CFG->core->reg_page_url() )); |
|
585 | + wp_safe_redirect(apply_filters('FHEE__EE_Ticket_Selector__process_ticket_selections__success_redirect_url', EE_Registry::instance()->CFG->core->reg_page_url())); |
|
586 | 586 | exit(); |
587 | 587 | |
588 | 588 | } else { |
589 | - if ( ! EE_Error::has_error() ) { |
|
589 | + if ( ! EE_Error::has_error()) { |
|
590 | 590 | // nothing added to cart |
591 | - EE_Error::add_attention( __( 'No tickets were added for the event', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
591 | + EE_Error::add_attention(__('No tickets were added for the event', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
592 | 592 | } |
593 | 593 | } |
594 | 594 | |
595 | 595 | } else { |
596 | 596 | // no ticket quantities were selected |
597 | - EE_Error::add_error( __( 'You need to select a ticket quantity before you can proceed.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
597 | + EE_Error::add_error(__('You need to select a ticket quantity before you can proceed.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
598 | 598 | } |
599 | 599 | } |
600 | 600 | //die(); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KILL BEFORE REDIRECT |
601 | 601 | // at this point, just return if registration is being made from admin |
602 | - if ( is_admin() ) { |
|
602 | + if (is_admin()) { |
|
603 | 603 | return FALSE; |
604 | 604 | } |
605 | - if ( $valid['return_url'] ) { |
|
606 | - EE_Error::get_notices( FALSE, TRUE ); |
|
607 | - wp_safe_redirect( $valid['return_url'] ); |
|
605 | + if ($valid['return_url']) { |
|
606 | + EE_Error::get_notices(FALSE, TRUE); |
|
607 | + wp_safe_redirect($valid['return_url']); |
|
608 | 608 | exit(); |
609 | - } elseif ( isset( $event_to_add['id'] )) { |
|
610 | - EE_Error::get_notices( FALSE, TRUE ); |
|
611 | - wp_safe_redirect( get_permalink( $event_to_add['id'] )); |
|
609 | + } elseif (isset($event_to_add['id'])) { |
|
610 | + EE_Error::get_notices(FALSE, TRUE); |
|
611 | + wp_safe_redirect(get_permalink($event_to_add['id'])); |
|
612 | 612 | exit(); |
613 | 613 | } else { |
614 | 614 | echo EE_Error::get_notices(); |
@@ -617,7 +617,7 @@ discard block |
||
617 | 617 | } else { |
618 | 618 | // $_POST['tkt-slctr-event-id'] was not set ?!?!?!? |
619 | 619 | EE_Error::add_error( |
620 | - sprintf( __( 'An event id was not provided or was not received.%sPlease click the back button on your browser and try again.', 'event_espresso' ), '<br/>' ), |
|
620 | + sprintf(__('An event id was not provided or was not received.%sPlease click the back button on your browser and try again.', 'event_espresso'), '<br/>'), |
|
621 | 621 | __FILE__, __FUNCTION__, __LINE__ |
622 | 622 | ); |
623 | 623 | } |
@@ -635,18 +635,18 @@ discard block |
||
635 | 635 | * @return array or FALSE |
636 | 636 | */ |
637 | 637 | private static function _validate_post_data() { |
638 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
638 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
639 | 639 | |
640 | 640 | // start with an empty array() |
641 | 641 | $valid_data = array(); |
642 | 642 | // d( $_POST ); |
643 | 643 | //if event id is valid |
644 | - $id = absint( EE_Registry::instance()->REQ->get( 'tkt-slctr-event-id' )); |
|
645 | - if ( $id ) { |
|
644 | + $id = absint(EE_Registry::instance()->REQ->get('tkt-slctr-event-id')); |
|
645 | + if ($id) { |
|
646 | 646 | // grab valid id |
647 | 647 | $valid_data['id'] = $id; |
648 | 648 | // grab and sanitize return-url |
649 | - $valid_data['return_url'] = esc_url_raw( EE_Registry::instance()->REQ->get( 'tkt-slctr-return-url-' . $id )); |
|
649 | + $valid_data['return_url'] = esc_url_raw(EE_Registry::instance()->REQ->get('tkt-slctr-return-url-'.$id)); |
|
650 | 650 | // array of other form names |
651 | 651 | $inputs_to_clean = array( |
652 | 652 | 'event_id' => 'tkt-slctr-event-id', |
@@ -659,22 +659,22 @@ discard block |
||
659 | 659 | // let's track the total number of tickets ordered.' |
660 | 660 | $valid_data['total_tickets'] = 0; |
661 | 661 | // cycle through $inputs_to_clean array |
662 | - foreach ( $inputs_to_clean as $what => $input_to_clean ) { |
|
662 | + foreach ($inputs_to_clean as $what => $input_to_clean) { |
|
663 | 663 | // check for POST data |
664 | - if ( EE_Registry::instance()->REQ->is_set( $input_to_clean . $id )) { |
|
664 | + if (EE_Registry::instance()->REQ->is_set($input_to_clean.$id)) { |
|
665 | 665 | // grab value |
666 | - $input_value = EE_Registry::instance()->REQ->get( $input_to_clean . $id ); |
|
666 | + $input_value = EE_Registry::instance()->REQ->get($input_to_clean.$id); |
|
667 | 667 | switch ($what) { |
668 | 668 | |
669 | 669 | // integers |
670 | 670 | case 'event_id': |
671 | - $valid_data[$what] = absint( $input_value ); |
|
671 | + $valid_data[$what] = absint($input_value); |
|
672 | 672 | // get event via the event id we put in the form |
673 | - $valid_data['event'] = EE_Registry::instance()->load_model( 'Event' )->get_one_by_ID( $valid_data['event_id'] ); |
|
673 | + $valid_data['event'] = EE_Registry::instance()->load_model('Event')->get_one_by_ID($valid_data['event_id']); |
|
674 | 674 | break; |
675 | 675 | case 'rows': |
676 | 676 | case 'max_atndz': |
677 | - $valid_data[$what] = absint( $input_value ); |
|
677 | + $valid_data[$what] = absint($input_value); |
|
678 | 678 | break; |
679 | 679 | |
680 | 680 | // arrays of integers |
@@ -682,27 +682,27 @@ discard block |
||
682 | 682 | // d( $input_value ); |
683 | 683 | $row_qty = $input_value; |
684 | 684 | // if qty is coming from a radio button input, then we need to assemble an array of rows |
685 | - if( ! is_array( $row_qty )) { |
|
685 | + if ( ! is_array($row_qty)) { |
|
686 | 686 | // get number of rows |
687 | - $rows = EE_Registry::instance()->REQ->is_set( 'tkt-slctr-rows-' . $id ) ? absint( EE_Registry::instance()->REQ->get( 'tkt-slctr-rows-' . $id )) : 1; |
|
687 | + $rows = EE_Registry::instance()->REQ->is_set('tkt-slctr-rows-'.$id) ? absint(EE_Registry::instance()->REQ->get('tkt-slctr-rows-'.$id)) : 1; |
|
688 | 688 | // d( $rows ); |
689 | 689 | // explode ints by the dash |
690 | - $row_qty = explode( '-', $row_qty ); |
|
691 | - $row = isset( $row_qty[0] ) ? ( absint( $row_qty[0] )) : 1; |
|
692 | - $qty = isset( $row_qty[1] ) ? absint( $row_qty[1] ) : 0; |
|
693 | - $row_qty = array( $row => $qty ); |
|
690 | + $row_qty = explode('-', $row_qty); |
|
691 | + $row = isset($row_qty[0]) ? (absint($row_qty[0])) : 1; |
|
692 | + $qty = isset($row_qty[1]) ? absint($row_qty[1]) : 0; |
|
693 | + $row_qty = array($row => $qty); |
|
694 | 694 | // d( $row_qty ); |
695 | - for( $x = 1; $x <= $rows; $x++ ) { |
|
696 | - if ( ! isset( $row_qty[$x] )) { |
|
695 | + for ($x = 1; $x <= $rows; $x++) { |
|
696 | + if ( ! isset($row_qty[$x])) { |
|
697 | 697 | $row_qty[$x] = 0; |
698 | 698 | } |
699 | 699 | } |
700 | 700 | } |
701 | - ksort( $row_qty ); |
|
701 | + ksort($row_qty); |
|
702 | 702 | // d( $row_qty ); |
703 | 703 | // cycle thru values |
704 | - foreach ( $row_qty as $qty ) { |
|
705 | - $qty = absint( $qty ); |
|
704 | + foreach ($row_qty as $qty) { |
|
705 | + $qty = absint($qty); |
|
706 | 706 | // sanitize as integers |
707 | 707 | $valid_data[$what][] = $qty; |
708 | 708 | $valid_data['total_tickets'] += $qty; |
@@ -713,19 +713,19 @@ discard block |
||
713 | 713 | case 'ticket_id': |
714 | 714 | $value_array = array(); |
715 | 715 | // cycle thru values |
716 | - foreach ( $input_value as $key=>$value ) { |
|
716 | + foreach ($input_value as $key=>$value) { |
|
717 | 717 | // allow only numbers, letters, spaces, commas and dashes |
718 | - $value_array[ $key ] = wp_strip_all_tags( $value ); |
|
718 | + $value_array[$key] = wp_strip_all_tags($value); |
|
719 | 719 | // get ticket via the ticket id we put in the form |
720 | - $ticket_obj = EE_Registry::instance()->load_model( 'Ticket' )->get_one_by_ID( $value ); |
|
721 | - $valid_data['ticket_obj'][ $key ] = $ticket_obj; |
|
720 | + $ticket_obj = EE_Registry::instance()->load_model('Ticket')->get_one_by_ID($value); |
|
721 | + $valid_data['ticket_obj'][$key] = $ticket_obj; |
|
722 | 722 | } |
723 | - $valid_data[ $what ] = $value_array; |
|
723 | + $valid_data[$what] = $value_array; |
|
724 | 724 | break; |
725 | 725 | |
726 | 726 | case 'return_url' : |
727 | 727 | // grab and sanitize return-url |
728 | - $valid_data[$what] = esc_url_raw( $input_value ); |
|
728 | + $valid_data[$what] = esc_url_raw($input_value); |
|
729 | 729 | break; |
730 | 730 | |
731 | 731 | } // end switch $what |
@@ -733,7 +733,7 @@ discard block |
||
733 | 733 | } // end foreach $inputs_to_clean |
734 | 734 | |
735 | 735 | } else { |
736 | - EE_Error::add_error( __('The event id provided was not valid.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
736 | + EE_Error::add_error(__('The event id provided was not valid.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
737 | 737 | return FALSE; |
738 | 738 | } |
739 | 739 | |
@@ -751,28 +751,28 @@ discard block |
||
751 | 751 | * @param int $qty |
752 | 752 | * @return TRUE on success, FALSE on fail |
753 | 753 | */ |
754 | - private static function _add_ticket_to_cart( EE_Ticket $ticket = NULL, $qty = 1 ) { |
|
755 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
754 | + private static function _add_ticket_to_cart(EE_Ticket $ticket = NULL, $qty = 1) { |
|
755 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
756 | 756 | // get the number of spaces left for this datetime ticket |
757 | - $available_spaces = self::_ticket_datetime_availability( $ticket ); |
|
757 | + $available_spaces = self::_ticket_datetime_availability($ticket); |
|
758 | 758 | // compare available spaces against the number of tickets being purchased |
759 | - if ( $available_spaces >= $qty ) { |
|
759 | + if ($available_spaces >= $qty) { |
|
760 | 760 | // allow addons to prevent a ticket from being added to cart |
761 | - if ( ! apply_filters( 'FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_add_to_cart', true, $ticket, $qty, $available_spaces ) ) { |
|
761 | + if ( ! apply_filters('FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_add_to_cart', true, $ticket, $qty, $available_spaces)) { |
|
762 | 762 | return false; |
763 | 763 | } |
764 | 764 | // add event to cart |
765 | - if( EE_Registry::instance()->CART->add_ticket_to_cart( $ticket, $qty )) { |
|
766 | - self::_recalculate_ticket_datetime_availability( $ticket, $qty ); |
|
765 | + if (EE_Registry::instance()->CART->add_ticket_to_cart($ticket, $qty)) { |
|
766 | + self::_recalculate_ticket_datetime_availability($ticket, $qty); |
|
767 | 767 | return true; |
768 | 768 | } else { |
769 | 769 | return false; |
770 | 770 | } |
771 | 771 | } else { |
772 | 772 | // tickets can not be purchased but let's find the exact number left for the last ticket selected PRIOR to subtracting tickets |
773 | - $available_spaces = self::_ticket_datetime_availability( $ticket, true ); |
|
773 | + $available_spaces = self::_ticket_datetime_availability($ticket, true); |
|
774 | 774 | // greedy greedy greedy eh? |
775 | - if ( $available_spaces > 0 ) { |
|
775 | + if ($available_spaces > 0) { |
|
776 | 776 | // add error messaging - we're using the _n function that will generate the appropriate singular or plural message based on the number of $available_spaces |
777 | 777 | EE_Error::add_error( |
778 | 778 | sprintf( |
@@ -788,7 +788,7 @@ discard block |
||
788 | 788 | __FILE__, __FUNCTION__, __LINE__ |
789 | 789 | ); |
790 | 790 | } else { |
791 | - EE_Error::add_error( __('We\'re sorry, but there are no available spaces left for this event at this particular date and time.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
791 | + EE_Error::add_error(__('We\'re sorry, but there are no available spaces left for this event at this particular date and time.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
792 | 792 | } |
793 | 793 | return false; |
794 | 794 | } |
@@ -806,22 +806,22 @@ discard block |
||
806 | 806 | * @param bool $get_original_ticket_spaces |
807 | 807 | * @return int |
808 | 808 | */ |
809 | - private static function _ticket_datetime_availability( EE_Ticket $ticket, $get_original_ticket_spaces = FALSE ) { |
|
809 | + private static function _ticket_datetime_availability(EE_Ticket $ticket, $get_original_ticket_spaces = FALSE) { |
|
810 | 810 | // if the $_available_spaces array has not been set up yet... |
811 | - if ( ! isset( self::$_available_spaces['tickets'][ $ticket->ID() ] )) { |
|
812 | - self::_set_initial_ticket_datetime_availability( $ticket ); |
|
811 | + if ( ! isset(self::$_available_spaces['tickets'][$ticket->ID()])) { |
|
812 | + self::_set_initial_ticket_datetime_availability($ticket); |
|
813 | 813 | } |
814 | 814 | $available_spaces = $ticket->qty() - $ticket->sold(); |
815 | - if ( isset( self::$_available_spaces['tickets'][ $ticket->ID() ] )) { |
|
815 | + if (isset(self::$_available_spaces['tickets'][$ticket->ID()])) { |
|
816 | 816 | // loop thru tickets, which will ALSO include individual ticket records AND a total |
817 | - foreach ( self::$_available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces ) { |
|
817 | + foreach (self::$_available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) { |
|
818 | 818 | // if we want the original datetime availability BEFORE we started subtracting tickets ? |
819 | - if ( $get_original_ticket_spaces ) { |
|
819 | + if ($get_original_ticket_spaces) { |
|
820 | 820 | // then grab the available spaces from the "tickets" array and compare with the above to get the lowest number |
821 | - $available_spaces = min( $available_spaces, self::$_available_spaces['tickets'][ $ticket->ID() ][ $DTD_ID ] ); |
|
821 | + $available_spaces = min($available_spaces, self::$_available_spaces['tickets'][$ticket->ID()][$DTD_ID]); |
|
822 | 822 | } else { |
823 | 823 | // we want the updated ticket availability as stored in the "datetimes" array |
824 | - $available_spaces = min( $available_spaces, self::$_available_spaces['datetimes'][ $DTD_ID ] ); |
|
824 | + $available_spaces = min($available_spaces, self::$_available_spaces['datetimes'][$DTD_ID]); |
|
825 | 825 | } |
826 | 826 | } |
827 | 827 | } |
@@ -837,23 +837,23 @@ discard block |
||
837 | 837 | * @param EE_Ticket $ticket |
838 | 838 | * @return int |
839 | 839 | */ |
840 | - private static function _set_initial_ticket_datetime_availability( EE_Ticket $ticket ) { |
|
840 | + private static function _set_initial_ticket_datetime_availability(EE_Ticket $ticket) { |
|
841 | 841 | // first, get all of the datetimes that are available to this ticket |
842 | 842 | $datetimes = $ticket->get_many_related( |
843 | 843 | 'Datetime', |
844 | - array( array( 'DTT_EVT_end' => array( '>=', EEM_Datetime::instance()->current_time_for_query( 'DTT_EVT_end' ) ) ), 'order_by' => array( 'DTT_EVT_start' => 'ASC' )) |
|
844 | + array(array('DTT_EVT_end' => array('>=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'))), 'order_by' => array('DTT_EVT_start' => 'ASC')) |
|
845 | 845 | ); |
846 | - if ( ! empty( $datetimes )) { |
|
846 | + if ( ! empty($datetimes)) { |
|
847 | 847 | // now loop thru all of the datetimes |
848 | - foreach ( $datetimes as $datetime ) { |
|
849 | - if ( $datetime instanceof EE_Datetime ) { |
|
848 | + foreach ($datetimes as $datetime) { |
|
849 | + if ($datetime instanceof EE_Datetime) { |
|
850 | 850 | // the number of spaces available for the datetime without considering individual ticket quantities |
851 | 851 | $spaces_remaining = $datetime->spaces_remaining(); |
852 | 852 | // save the total available spaces ( the lesser of the ticket qty minus the number of tickets sold or the datetime spaces remaining) to this ticket using the datetime ID as the key |
853 | - self::$_available_spaces['tickets'][ $ticket->ID() ][ $datetime->ID() ] = min(( $ticket->qty() - $ticket->sold() ), $spaces_remaining ); |
|
853 | + self::$_available_spaces['tickets'][$ticket->ID()][$datetime->ID()] = min(($ticket->qty() - $ticket->sold()), $spaces_remaining); |
|
854 | 854 | // if the remaining spaces for this datetime is already set, then compare that against the datetime spaces remaining, and take the lowest number, |
855 | 855 | // else just take the datetime spaces remaining, and assign to the datetimes array |
856 | - self::$_available_spaces['datetimes'][ $datetime->ID() ] = isset( self::$_available_spaces['datetimes'][ $datetime->ID() ] ) ? min( self::$_available_spaces['datetimes'][ $datetime->ID() ], $spaces_remaining ) : $spaces_remaining; |
|
856 | + self::$_available_spaces['datetimes'][$datetime->ID()] = isset(self::$_available_spaces['datetimes'][$datetime->ID()]) ? min(self::$_available_spaces['datetimes'][$datetime->ID()], $spaces_remaining) : $spaces_remaining; |
|
857 | 857 | } |
858 | 858 | } |
859 | 859 | } |
@@ -869,12 +869,12 @@ discard block |
||
869 | 869 | * @param int $qty |
870 | 870 | * @return int |
871 | 871 | */ |
872 | - private static function _recalculate_ticket_datetime_availability( EE_Ticket $ticket, $qty = 0 ) { |
|
873 | - if ( isset( self::$_available_spaces['tickets'][ $ticket->ID() ] )) { |
|
872 | + private static function _recalculate_ticket_datetime_availability(EE_Ticket $ticket, $qty = 0) { |
|
873 | + if (isset(self::$_available_spaces['tickets'][$ticket->ID()])) { |
|
874 | 874 | // loop thru tickets, which will ALSO include individual ticket records AND a total |
875 | - foreach ( self::$_available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces ) { |
|
875 | + foreach (self::$_available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) { |
|
876 | 876 | // subtract the qty of selected tickets from each datetime's available spaces this ticket has access to, |
877 | - self::$_available_spaces['datetimes'][ $DTD_ID ] = self::$_available_spaces['datetimes'][ $DTD_ID ] - $qty; |
|
877 | + self::$_available_spaces['datetimes'][$DTD_ID] = self::$_available_spaces['datetimes'][$DTD_ID] - $qty; |
|
878 | 878 | } |
879 | 879 | } |
880 | 880 | } |
@@ -891,8 +891,8 @@ discard block |
||
891 | 891 | */ |
892 | 892 | public static function load_tckt_slctr_assets() { |
893 | 893 | // add some style |
894 | - if ( apply_filters( 'FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', FALSE ) ) { |
|
895 | - wp_register_style('ticket_selector', TICKET_SELECTOR_ASSETS_URL . 'ticket_selector.css'); |
|
894 | + if (apply_filters('FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', FALSE)) { |
|
895 | + wp_register_style('ticket_selector', TICKET_SELECTOR_ASSETS_URL.'ticket_selector.css'); |
|
896 | 896 | wp_enqueue_style('ticket_selector'); |
897 | 897 | // make it dance |
898 | 898 | // wp_register_script('ticket_selector', TICKET_SELECTOR_ASSETS_URL . 'ticket_selector.js', array('espresso_core'), '', TRUE); |
@@ -906,9 +906,9 @@ discard block |
||
906 | 906 | |
907 | 907 | public static function load_tckt_slctr_assets_admin() { |
908 | 908 | //iframe button js on admin event editor page |
909 | - if ( EE_Registry::instance()->REQ->get('page') == 'espresso_events' && EE_Registry::instance()->REQ->get('action') == 'edit' ) { |
|
910 | - wp_register_script( 'ticket_selector_embed', TICKET_SELECTOR_ASSETS_URL . 'ticket-selector-embed.js', array( 'ee-dialog' ), EVENT_ESPRESSO_VERSION, true ); |
|
911 | - wp_enqueue_script( 'ticket_selector_embed' ); |
|
909 | + if (EE_Registry::instance()->REQ->get('page') == 'espresso_events' && EE_Registry::instance()->REQ->get('action') == 'edit') { |
|
910 | + wp_register_script('ticket_selector_embed', TICKET_SELECTOR_ASSETS_URL.'ticket-selector-embed.js', array('ee-dialog'), EVENT_ESPRESSO_VERSION, true); |
|
911 | + wp_enqueue_script('ticket_selector_embed'); |
|
912 | 912 | } |
913 | 913 | } |
914 | 914 |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * |
98 | 98 | * @access public |
99 | 99 | * @param string $title |
100 | - * @return void |
|
100 | + * @return string |
|
101 | 101 | */ |
102 | 102 | public function the_title( $title = '', $id = '' ) { |
103 | 103 | return $title; |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * |
138 | 138 | * @access public |
139 | 139 | * @param string $content |
140 | - * @return void |
|
140 | + * @return string |
|
141 | 141 | */ |
142 | 142 | public function venue_location( $content ) { |
143 | 143 | return $content . EEH_Template::locate_template( 'content-espresso_venues-location.php' ); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * @return EED_Venues_Archive |
28 | 28 | */ |
29 | 29 | public static function instance() { |
30 | - return parent::get_instance( __CLASS__ ); |
|
30 | + return parent::get_instance(__CLASS__); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @return void |
38 | 38 | */ |
39 | 39 | public static function set_hooks() { |
40 | - EE_Config::register_route( 'venues', 'Venues_Archive', 'run' ); |
|
40 | + EE_Config::register_route('venues', 'Venues_Archive', 'run'); |
|
41 | 41 | // EE_Config::register_view( 'venues', 0, EE_TEMPLATES . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.php' ); |
42 | 42 | } |
43 | 43 | |
@@ -58,10 +58,10 @@ discard block |
||
58 | 58 | * @access public |
59 | 59 | * @return void |
60 | 60 | */ |
61 | - public function run( $WP ) { |
|
61 | + public function run($WP) { |
|
62 | 62 | // check what template is loaded |
63 | - add_filter( 'template_include', array( $this, 'template_include' ), 999, 1 ); |
|
64 | - add_action('wp_enqueue_scripts', array( $this, 'wp_enqueue_scripts' ), 10 ); |
|
63 | + add_filter('template_include', array($this, 'template_include'), 999, 1); |
|
64 | + add_action('wp_enqueue_scripts', array($this, 'wp_enqueue_scripts'), 10); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | |
@@ -72,20 +72,20 @@ discard block |
||
72 | 72 | * @access public |
73 | 73 | * @return void |
74 | 74 | */ |
75 | - public function template_include( $template ) { |
|
75 | + public function template_include($template) { |
|
76 | 76 | // not a custom template? |
77 | - if ( EE_Front_Controller::instance()->get_selected_template() != 'archive-espresso_venues.php' ) { |
|
77 | + if (EE_Front_Controller::instance()->get_selected_template() != 'archive-espresso_venues.php') { |
|
78 | 78 | EEH_Template::load_espresso_theme_functions(); |
79 | 79 | // then add extra event data via hooks |
80 | - add_filter( 'the_title', array( $this, 'the_title' ), 100, 2 ); |
|
80 | + add_filter('the_title', array($this, 'the_title'), 100, 2); |
|
81 | 81 | // don't know if theme uses the_excerpt |
82 | - add_filter( 'the_excerpt', array( $this, 'venue_details' ), 100 ); |
|
83 | - add_filter( 'the_excerpt', array( $this, 'venue_location' ), 110 ); |
|
82 | + add_filter('the_excerpt', array($this, 'venue_details'), 100); |
|
83 | + add_filter('the_excerpt', array($this, 'venue_location'), 110); |
|
84 | 84 | // or the_content |
85 | - add_filter( 'the_content', array( $this, 'venue_details' ), 100 ); |
|
86 | - add_filter( 'the_content', array( $this, 'venue_location' ), 110 ); |
|
85 | + add_filter('the_content', array($this, 'venue_details'), 100); |
|
86 | + add_filter('the_content', array($this, 'venue_location'), 110); |
|
87 | 87 | // don't diplay entry meta because the existing theme will take car of that |
88 | - add_filter( 'FHEE__content_espresso_venues_details_template__display_entry_meta', '__return_false' ); |
|
88 | + add_filter('FHEE__content_espresso_venues_details_template__display_entry_meta', '__return_false'); |
|
89 | 89 | } |
90 | 90 | return $template; |
91 | 91 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * @param string $title |
100 | 100 | * @return void |
101 | 101 | */ |
102 | - public function the_title( $title = '', $id = '' ) { |
|
102 | + public function the_title($title = '', $id = '') { |
|
103 | 103 | return $title; |
104 | 104 | // global $post; |
105 | 105 | // return in_the_loop() && $post->ID == $id ? espresso_event_status_banner( $post->ID ) . $title : $title; |
@@ -113,21 +113,21 @@ discard block |
||
113 | 113 | * @param string $content |
114 | 114 | * @return void |
115 | 115 | */ |
116 | - public function venue_details( $content ) { |
|
116 | + public function venue_details($content) { |
|
117 | 117 | global $post; |
118 | 118 | // since the 'content-espresso_venues-details.php' template might be used directly from within a theme, |
119 | 119 | // it uses the_content() for displaying the $post->post_content |
120 | 120 | // so in order to load a template that uses the_content() from within a callback being used to filter the_content(), |
121 | 121 | // we need to first remove this callback from being applied to the_content() (otherwise it will recurse and blow up the interweb) |
122 | - remove_filter( 'the_excerpt', array( $this, 'venue_details' ), 100 ); |
|
123 | - remove_filter( 'the_content', array( $this, 'venue_details' ), 100 ); |
|
122 | + remove_filter('the_excerpt', array($this, 'venue_details'), 100); |
|
123 | + remove_filter('the_content', array($this, 'venue_details'), 100); |
|
124 | 124 | // now load our template |
125 | - $template = EEH_Template::locate_template( 'content-espresso_venues-details.php' ); |
|
125 | + $template = EEH_Template::locate_template('content-espresso_venues-details.php'); |
|
126 | 126 | //now add our filter back in, plus some others |
127 | - add_filter( 'the_excerpt', array( $this, 'venue_details' ), 100 ); |
|
128 | - add_filter( 'the_content', array( $this, 'venue_details' ), 100 ); |
|
127 | + add_filter('the_excerpt', array($this, 'venue_details'), 100); |
|
128 | + add_filter('the_content', array($this, 'venue_details'), 100); |
|
129 | 129 | // we're not returning the $content directly because the template we are loading uses the_content (or the_excerpt) |
130 | - return ! empty( $template ) ? $template : $content; |
|
130 | + return ! empty($template) ? $template : $content; |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | * @param string $content |
140 | 140 | * @return void |
141 | 141 | */ |
142 | - public function venue_location( $content ) { |
|
143 | - return $content . EEH_Template::locate_template( 'content-espresso_venues-location.php' ); |
|
142 | + public function venue_location($content) { |
|
143 | + return $content.EEH_Template::locate_template('content-espresso_venues-location.php'); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
@@ -154,19 +154,19 @@ discard block |
||
154 | 154 | */ |
155 | 155 | public function wp_enqueue_scripts() { |
156 | 156 | // get some style |
157 | - if ( apply_filters( 'FHEE_enable_default_espresso_css', TRUE ) && is_archive() ) { |
|
157 | + if (apply_filters('FHEE_enable_default_espresso_css', TRUE) && is_archive()) { |
|
158 | 158 | // first check theme folder |
159 | - if ( is_readable( get_stylesheet_directory() . $this->theme . DS . 'style.css' )) { |
|
160 | - wp_register_style( $this->theme, get_stylesheet_directory_uri() . $this->theme . DS . 'style.css', array( 'dashicons', 'espresso_default' ) ); |
|
161 | - } else if ( is_readable( EE_TEMPLATES . $this->theme . DS . 'style.css' )) { |
|
162 | - wp_register_style( $this->theme, EE_TEMPLATES_URL . $this->theme . DS . 'style.css', array( 'dashicons', 'espresso_default' ) ); |
|
159 | + if (is_readable(get_stylesheet_directory().$this->theme.DS.'style.css')) { |
|
160 | + wp_register_style($this->theme, get_stylesheet_directory_uri().$this->theme.DS.'style.css', array('dashicons', 'espresso_default')); |
|
161 | + } else if (is_readable(EE_TEMPLATES.$this->theme.DS.'style.css')) { |
|
162 | + wp_register_style($this->theme, EE_TEMPLATES_URL.$this->theme.DS.'style.css', array('dashicons', 'espresso_default')); |
|
163 | 163 | } |
164 | 164 | // if ( is_readable( get_stylesheet_directory() . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js' )) { |
165 | 165 | // wp_register_script( 'archive-espresso_venues', get_stylesheet_directory_uri() . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js', array('espresso_core'), '1.0', TRUE ); |
166 | 166 | // } else if ( is_readable( EE_TEMPLATES . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js' )) { |
167 | 167 | // wp_register_script( 'archive-espresso_venues', EE_TEMPLATES_URL . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js', array('espresso_core'), '1.0', TRUE ); |
168 | 168 | // } |
169 | - wp_enqueue_style( $this->theme ); |
|
169 | + wp_enqueue_style($this->theme); |
|
170 | 170 | // wp_enqueue_script( 'archive-espresso_venues' ); |
171 | 171 | |
172 | 172 | } |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * Event Espresso |
4 | 6 | * |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | * can_use_espresso_conditionals |
148 | 148 | * tests whether the Espresso Conditional tags like is_espresso_event_single() can be called |
149 | 149 | * |
150 | - * @param $conditional_tag |
|
150 | + * @param string $conditional_tag |
|
151 | 151 | * @return bool |
152 | 152 | */ |
153 | 153 | function can_use_espresso_conditionals( $conditional_tag ) { |
@@ -875,7 +875,7 @@ discard block |
||
875 | 875 | /** |
876 | 876 | * espresso_event_venues |
877 | 877 | * |
878 | - * @return array all venues related to an event |
|
878 | + * @return EE_Venue[] all venues related to an event |
|
879 | 879 | */ |
880 | 880 | function espresso_event_venues() { |
881 | 881 | EE_Registry::instance()->load_helper( 'Venue_View' ); |
@@ -910,7 +910,7 @@ discard block |
||
910 | 910 | * |
911 | 911 | * @param int $VNU_ID optional, the venue id to check. |
912 | 912 | * |
913 | - * @return bool | null |
|
913 | + * @return null|boolean | null |
|
914 | 914 | */ |
915 | 915 | function espresso_is_venue_private( $VNU_ID = 0 ) { |
916 | 916 | EE_Registry::instance()->load_helper( 'Venue_View' ); |
@@ -1,19 +1,19 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | //echo '<br/><h6 style="color:#2EA2CC;">' . __FILE__ . ' <span style="font-weight:normal;color:#E76700"> Line #: ' . __LINE__ . '</span></h6>'; |
3 | 3 | /** |
4 | - * Event Espresso |
|
5 | - * |
|
6 | - * Event Registration and Ticketing Management Plugin for WordPress |
|
7 | - * |
|
8 | - * @ package Event Espresso |
|
9 | - * @ author Event Espresso |
|
10 | - * @ copyright (c) 2008-2014 Event Espresso All Rights Reserved. |
|
11 | - * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
12 | - * @ link http://www.eventespresso.com |
|
13 | - * @ version $VID:$ |
|
14 | - * |
|
15 | - * ------------------------------------------------------------------------ |
|
16 | - */ |
|
4 | + * Event Espresso |
|
5 | + * |
|
6 | + * Event Registration and Ticketing Management Plugin for WordPress |
|
7 | + * |
|
8 | + * @ package Event Espresso |
|
9 | + * @ author Event Espresso |
|
10 | + * @ copyright (c) 2008-2014 Event Espresso All Rights Reserved. |
|
11 | + * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
12 | + * @ link http://www.eventespresso.com |
|
13 | + * @ version $VID:$ |
|
14 | + * |
|
15 | + * ------------------------------------------------------------------------ |
|
16 | + */ |
|
17 | 17 | |
18 | 18 | |
19 | 19 |
@@ -27,12 +27,12 @@ discard block |
||
27 | 27 | * @param int | \EE_Event $event |
28 | 28 | * @return bool |
29 | 29 | */ |
30 | -function is_espresso_event( $event = NULL ) { |
|
31 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
30 | +function is_espresso_event($event = NULL) { |
|
31 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
32 | 32 | // extract EE_Event object from passed param regardless of what it is (within reason of course) |
33 | - $event = EEH_Event_View::get_event( $event ); |
|
33 | + $event = EEH_Event_View::get_event($event); |
|
34 | 34 | // do we have a valid event ? |
35 | - return $event instanceof EE_Event ? TRUE : FALSE; |
|
35 | + return $event instanceof EE_Event ? TRUE : FALSE; |
|
36 | 36 | } |
37 | 37 | return FALSE; |
38 | 38 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * @return bool |
45 | 45 | */ |
46 | 46 | function is_espresso_event_single() { |
47 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
47 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
48 | 48 | global $wp_query; |
49 | 49 | // return conditionals set by CPTs |
50 | 50 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_single : FALSE; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * @return bool |
60 | 60 | */ |
61 | 61 | function is_espresso_event_archive() { |
62 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
62 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
63 | 63 | global $wp_query; |
64 | 64 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_archive : FALSE; |
65 | 65 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * @return bool |
74 | 74 | */ |
75 | 75 | function is_espresso_event_taxonomy() { |
76 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
76 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
77 | 77 | global $wp_query; |
78 | 78 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_taxonomy : FALSE; |
79 | 79 | } |
@@ -87,10 +87,10 @@ discard block |
||
87 | 87 | * @param int | \EE_Venue $venue |
88 | 88 | * @return bool |
89 | 89 | */ |
90 | -function is_espresso_venue( $venue = NULL ) { |
|
91 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
90 | +function is_espresso_venue($venue = NULL) { |
|
91 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
92 | 92 | // extract EE_Venue object from passed param regardless of what it is (within reason of course) |
93 | - $venue = EEH_Venue_View::get_venue( $venue, FALSE ); |
|
93 | + $venue = EEH_Venue_View::get_venue($venue, FALSE); |
|
94 | 94 | // do we have a valid event ? |
95 | 95 | return $venue instanceof EE_Venue ? TRUE : FALSE; |
96 | 96 | } |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * @return bool |
105 | 105 | */ |
106 | 106 | function is_espresso_venue_single() { |
107 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
107 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
108 | 108 | global $wp_query; |
109 | 109 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_single : FALSE; |
110 | 110 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | * @return bool |
119 | 119 | */ |
120 | 120 | function is_espresso_venue_archive() { |
121 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
121 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
122 | 122 | global $wp_query; |
123 | 123 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_archive : FALSE; |
124 | 124 | } |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * @return bool |
133 | 133 | */ |
134 | 134 | function is_espresso_venue_taxonomy() { |
135 | - if ( can_use_espresso_conditionals( __FUNCTION__ )) { |
|
135 | + if (can_use_espresso_conditionals(__FUNCTION__)) { |
|
136 | 136 | global $wp_query; |
137 | 137 | return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_taxonomy : FALSE; |
138 | 138 | } |
@@ -146,12 +146,12 @@ discard block |
||
146 | 146 | * @param $conditional_tag |
147 | 147 | * @return bool |
148 | 148 | */ |
149 | -function can_use_espresso_conditionals( $conditional_tag ) { |
|
150 | - if ( ! did_action( 'AHEE__EE_System__initialize' )) { |
|
149 | +function can_use_espresso_conditionals($conditional_tag) { |
|
150 | + if ( ! did_action('AHEE__EE_System__initialize')) { |
|
151 | 151 | EE_Error::doing_it_wrong( |
152 | 152 | __FUNCTION__, |
153 | 153 | sprintf( |
154 | - __( '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'), |
|
154 | + __('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'), |
|
155 | 155 | $conditional_tag |
156 | 156 | ), |
157 | 157 | '4.4.0' |
@@ -166,13 +166,13 @@ discard block |
||
166 | 166 | |
167 | 167 | /*************************** Event Queries ***************************/ |
168 | 168 | |
169 | -if ( ! function_exists( 'espresso_get_events' )) { |
|
169 | +if ( ! function_exists('espresso_get_events')) { |
|
170 | 170 | /** |
171 | 171 | * espresso_get_events |
172 | 172 | * @param array $params |
173 | 173 | * @return array |
174 | 174 | */ |
175 | - function espresso_get_events( $params = array() ) { |
|
175 | + function espresso_get_events($params = array()) { |
|
176 | 176 | //set default params |
177 | 177 | $default_espresso_events_params = array( |
178 | 178 | 'limit' => 10, |
@@ -183,18 +183,18 @@ discard block |
||
183 | 183 | 'sort' => 'ASC' |
184 | 184 | ); |
185 | 185 | // allow the defaults to be filtered |
186 | - $default_espresso_events_params = apply_filters( 'espresso_get_events__default_espresso_events_params', $default_espresso_events_params ); |
|
186 | + $default_espresso_events_params = apply_filters('espresso_get_events__default_espresso_events_params', $default_espresso_events_params); |
|
187 | 187 | // grab params and merge with defaults, then extract |
188 | - $params = array_merge( $default_espresso_events_params, $params ); |
|
188 | + $params = array_merge($default_espresso_events_params, $params); |
|
189 | 189 | // run the query |
190 | - $events_query = new EE_Event_List_Query( $params ); |
|
190 | + $events_query = new EE_Event_List_Query($params); |
|
191 | 191 | // assign results to a variable so we can return it |
192 | 192 | $events = $events_query->have_posts() ? $events_query->posts : array(); |
193 | 193 | // but first reset the query and postdata |
194 | 194 | wp_reset_query(); |
195 | 195 | wp_reset_postdata(); |
196 | 196 | EED_Events_Archive::remove_all_events_archive_filters(); |
197 | - unset( $events_query ); |
|
197 | + unset($events_query); |
|
198 | 198 | return $events; |
199 | 199 | } |
200 | 200 | } |
@@ -208,32 +208,32 @@ discard block |
||
208 | 208 | * espresso_load_ticket_selector |
209 | 209 | */ |
210 | 210 | function espresso_load_ticket_selector() { |
211 | - EE_Registry::instance()->load_file( EE_MODULES . 'ticket_selector', 'EED_Ticket_Selector', 'module' ); |
|
211 | + EE_Registry::instance()->load_file(EE_MODULES.'ticket_selector', 'EED_Ticket_Selector', 'module'); |
|
212 | 212 | } |
213 | 213 | |
214 | -if ( ! function_exists( 'espresso_ticket_selector' )) { |
|
214 | +if ( ! function_exists('espresso_ticket_selector')) { |
|
215 | 215 | /** |
216 | 216 | * espresso_ticket_selector |
217 | 217 | * @param null $event |
218 | 218 | */ |
219 | - function espresso_ticket_selector( $event = NULL ) { |
|
220 | - if ( ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) { |
|
219 | + function espresso_ticket_selector($event = NULL) { |
|
220 | + if ( ! apply_filters('FHEE_disable_espresso_ticket_selector', FALSE)) { |
|
221 | 221 | espresso_load_ticket_selector(); |
222 | - echo EED_Ticket_Selector::display_ticket_selector( $event ); |
|
222 | + echo EED_Ticket_Selector::display_ticket_selector($event); |
|
223 | 223 | } |
224 | 224 | } |
225 | 225 | } |
226 | 226 | |
227 | 227 | |
228 | - if ( ! function_exists( 'espresso_view_details_btn' )) { |
|
228 | + if ( ! function_exists('espresso_view_details_btn')) { |
|
229 | 229 | /** |
230 | 230 | * espresso_view_details_btn |
231 | 231 | * @param null $event |
232 | 232 | */ |
233 | - function espresso_view_details_btn( $event = NULL ) { |
|
234 | - if ( ! apply_filters( 'FHEE_disable_espresso_view_details_btn', FALSE ) ) { |
|
233 | + function espresso_view_details_btn($event = NULL) { |
|
234 | + if ( ! apply_filters('FHEE_disable_espresso_view_details_btn', FALSE)) { |
|
235 | 235 | espresso_load_ticket_selector(); |
236 | - echo EED_Ticket_Selector::display_ticket_selector( $event, TRUE ); |
|
236 | + echo EED_Ticket_Selector::display_ticket_selector($event, TRUE); |
|
237 | 237 | } |
238 | 238 | } |
239 | 239 | } |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | |
244 | 244 | /*************************** EEH_Event_View ***************************/ |
245 | 245 | |
246 | -if ( ! function_exists( 'espresso_load_event_list_assets' )) { |
|
246 | +if ( ! function_exists('espresso_load_event_list_assets')) { |
|
247 | 247 | /** |
248 | 248 | * espresso_load_event_list_assets |
249 | 249 | * ensures that event list styles and scripts are loaded |
@@ -252,13 +252,13 @@ discard block |
||
252 | 252 | */ |
253 | 253 | function espresso_load_event_list_assets() { |
254 | 254 | $event_list = EED_Events_Archive::instance(); |
255 | - add_action( 'AHEE__EE_System__initialize_last', array( $event_list, 'load_event_list_assets' ), 10 ); |
|
256 | - add_filter( 'FHEE_enable_default_espresso_css', '__return_true' ); |
|
255 | + add_action('AHEE__EE_System__initialize_last', array($event_list, 'load_event_list_assets'), 10); |
|
256 | + add_filter('FHEE_enable_default_espresso_css', '__return_true'); |
|
257 | 257 | } |
258 | 258 | } |
259 | 259 | |
260 | 260 | |
261 | -if ( ! function_exists( 'espresso_event_reg_button' )) { |
|
261 | +if ( ! function_exists('espresso_event_reg_button')) { |
|
262 | 262 | /** |
263 | 263 | * espresso_event_reg_button |
264 | 264 | * returns the "Register Now" button if event is active, |
@@ -270,9 +270,9 @@ discard block |
||
270 | 270 | * @param bool $EVT_ID |
271 | 271 | * @return string |
272 | 272 | */ |
273 | - function espresso_event_reg_button( $btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE ) { |
|
274 | - $event_status = EEH_Event_View::event_active_status( $EVT_ID ); |
|
275 | - switch ( $event_status ) { |
|
273 | + function espresso_event_reg_button($btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE) { |
|
274 | + $event_status = EEH_Event_View::event_active_status($EVT_ID); |
|
275 | + switch ($event_status) { |
|
276 | 276 | case EE_Datetime::sold_out : |
277 | 277 | $btn_text = __('Sold Out', 'event_espresso'); |
278 | 278 | $class = 'ee-pink'; |
@@ -288,10 +288,10 @@ discard block |
||
288 | 288 | case EE_Datetime::upcoming : |
289 | 289 | case EE_Datetime::active : |
290 | 290 | default : |
291 | - $btn_text =! empty( $btn_text_if_active ) ? $btn_text_if_active : __( 'Register Now', 'event_espresso' ); |
|
291 | + $btn_text = ! empty($btn_text_if_active) ? $btn_text_if_active : __('Register Now', 'event_espresso'); |
|
292 | 292 | $class = 'ee-green'; |
293 | 293 | } |
294 | - if ( $event_status < 1 && ! empty( $btn_text_if_inactive )) { |
|
294 | + if ($event_status < 1 && ! empty($btn_text_if_inactive)) { |
|
295 | 295 | $btn_text = $btn_text_if_inactive; |
296 | 296 | $class = 'ee-grey'; |
297 | 297 | } |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | |
306 | 306 | |
307 | 307 | |
308 | -if ( ! function_exists( 'espresso_display_ticket_selector' )) { |
|
308 | +if ( ! function_exists('espresso_display_ticket_selector')) { |
|
309 | 309 | /** |
310 | 310 | * espresso_display_ticket_selector |
311 | 311 | * whether or not to display the Ticket Selector for an event |
@@ -313,14 +313,14 @@ discard block |
||
313 | 313 | * @param bool $EVT_ID |
314 | 314 | * @return boolean |
315 | 315 | */ |
316 | - function espresso_display_ticket_selector( $EVT_ID = FALSE ) { |
|
317 | - return EEH_Event_View::display_ticket_selector( $EVT_ID ); |
|
316 | + function espresso_display_ticket_selector($EVT_ID = FALSE) { |
|
317 | + return EEH_Event_View::display_ticket_selector($EVT_ID); |
|
318 | 318 | } |
319 | 319 | } |
320 | 320 | |
321 | 321 | |
322 | 322 | |
323 | -if ( ! function_exists( 'espresso_event_status_banner' )) { |
|
323 | +if ( ! function_exists('espresso_event_status_banner')) { |
|
324 | 324 | /** |
325 | 325 | * espresso_event_status |
326 | 326 | * returns a banner showing the event status if it is sold out, expired, or inactive |
@@ -328,13 +328,13 @@ discard block |
||
328 | 328 | * @param bool $EVT_ID |
329 | 329 | * @return string |
330 | 330 | */ |
331 | - function espresso_event_status_banner( $EVT_ID = FALSE ) { |
|
332 | - return EEH_Event_View::event_status( $EVT_ID ); |
|
331 | + function espresso_event_status_banner($EVT_ID = FALSE) { |
|
332 | + return EEH_Event_View::event_status($EVT_ID); |
|
333 | 333 | } |
334 | 334 | } |
335 | 335 | |
336 | 336 | |
337 | -if ( ! function_exists( 'espresso_event_status' )) { |
|
337 | +if ( ! function_exists('espresso_event_status')) { |
|
338 | 338 | /** |
339 | 339 | * espresso_event_status |
340 | 340 | * returns the event status if it is sold out, expired, or inactive |
@@ -343,17 +343,17 @@ discard block |
||
343 | 343 | * @param bool $echo |
344 | 344 | * @return string |
345 | 345 | */ |
346 | - function espresso_event_status( $EVT_ID = 0, $echo = TRUE ) { |
|
347 | - if ( $echo ) { |
|
348 | - echo EEH_Event_View::event_active_status( $EVT_ID ); |
|
346 | + function espresso_event_status($EVT_ID = 0, $echo = TRUE) { |
|
347 | + if ($echo) { |
|
348 | + echo EEH_Event_View::event_active_status($EVT_ID); |
|
349 | 349 | return ''; |
350 | 350 | } |
351 | - return EEH_Event_View::event_active_status( $EVT_ID ); |
|
351 | + return EEH_Event_View::event_active_status($EVT_ID); |
|
352 | 352 | } |
353 | 353 | } |
354 | 354 | |
355 | 355 | |
356 | -if ( ! function_exists( 'espresso_event_categories' )) { |
|
356 | +if ( ! function_exists('espresso_event_categories')) { |
|
357 | 357 | /** |
358 | 358 | * espresso_event_categories |
359 | 359 | * returns the terms associated with an event |
@@ -363,17 +363,17 @@ discard block |
||
363 | 363 | * @param bool $echo |
364 | 364 | * @return string |
365 | 365 | */ |
366 | - function espresso_event_categories( $EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE ) { |
|
367 | - if ( $echo ) { |
|
368 | - echo EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized ); |
|
366 | + function espresso_event_categories($EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) { |
|
367 | + if ($echo) { |
|
368 | + echo EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized); |
|
369 | 369 | return ''; |
370 | 370 | } |
371 | - return EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized ); |
|
371 | + return EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized); |
|
372 | 372 | } |
373 | 373 | } |
374 | 374 | |
375 | 375 | |
376 | -if ( ! function_exists( 'espresso_event_tickets_available' )) { |
|
376 | +if ( ! function_exists('espresso_event_tickets_available')) { |
|
377 | 377 | /** |
378 | 378 | * espresso_event_tickets_available |
379 | 379 | * returns the ticket types available for purchase for an event |
@@ -383,26 +383,26 @@ discard block |
||
383 | 383 | * @param bool $format |
384 | 384 | * @return string |
385 | 385 | */ |
386 | - function espresso_event_tickets_available( $EVT_ID = 0, $echo = TRUE, $format = TRUE ) { |
|
387 | - $tickets = EEH_Event_View::event_tickets_available( $EVT_ID ); |
|
388 | - if ( is_array( $tickets ) && ! empty( $tickets )) { |
|
386 | + function espresso_event_tickets_available($EVT_ID = 0, $echo = TRUE, $format = TRUE) { |
|
387 | + $tickets = EEH_Event_View::event_tickets_available($EVT_ID); |
|
388 | + if (is_array($tickets) && ! empty($tickets)) { |
|
389 | 389 | // if formatting then $html will be a string, else it will be an array of ticket objects |
390 | - $html = $format ? '<ul id="ee-event-tickets-ul-' . $EVT_ID . '" class="ee-event-tickets-ul">' : array(); |
|
391 | - foreach ( $tickets as $ticket ) { |
|
392 | - if ( $ticket instanceof EE_Ticket ) { |
|
393 | - if ( $format ) { |
|
394 | - $html .= '<li id="ee-event-tickets-li-' . $ticket->ID() . '" class="ee-event-tickets-li">'; |
|
395 | - $html .= $ticket->name() . ' ' . EEH_Template::format_currency( $ticket->get_ticket_total_with_taxes() ); |
|
390 | + $html = $format ? '<ul id="ee-event-tickets-ul-'.$EVT_ID.'" class="ee-event-tickets-ul">' : array(); |
|
391 | + foreach ($tickets as $ticket) { |
|
392 | + if ($ticket instanceof EE_Ticket) { |
|
393 | + if ($format) { |
|
394 | + $html .= '<li id="ee-event-tickets-li-'.$ticket->ID().'" class="ee-event-tickets-li">'; |
|
395 | + $html .= $ticket->name().' '.EEH_Template::format_currency($ticket->get_ticket_total_with_taxes()); |
|
396 | 396 | $html .= '</li>'; |
397 | 397 | } else { |
398 | 398 | $html[] = $ticket; |
399 | 399 | } |
400 | 400 | } |
401 | 401 | } |
402 | - if ( $format ) { |
|
402 | + if ($format) { |
|
403 | 403 | $html .= '</ul>'; |
404 | 404 | } |
405 | - if ( $echo && ! $format ) { |
|
405 | + if ($echo && ! $format) { |
|
406 | 406 | echo $html; |
407 | 407 | return ''; |
408 | 408 | } |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | } |
413 | 413 | } |
414 | 414 | |
415 | -if ( ! function_exists( 'espresso_event_date_obj' )) { |
|
415 | +if ( ! function_exists('espresso_event_date_obj')) { |
|
416 | 416 | /** |
417 | 417 | * espresso_event_date_obj |
418 | 418 | * returns the primary date object for an event |
@@ -420,13 +420,13 @@ discard block |
||
420 | 420 | * @param bool $EVT_ID |
421 | 421 | * @return object |
422 | 422 | */ |
423 | - function espresso_event_date_obj( $EVT_ID = FALSE ) { |
|
424 | - return EEH_Event_View::get_primary_date_obj( $EVT_ID ); |
|
423 | + function espresso_event_date_obj($EVT_ID = FALSE) { |
|
424 | + return EEH_Event_View::get_primary_date_obj($EVT_ID); |
|
425 | 425 | } |
426 | 426 | } |
427 | 427 | |
428 | 428 | |
429 | -if ( ! function_exists( 'espresso_event_date' )) { |
|
429 | +if ( ! function_exists('espresso_event_date')) { |
|
430 | 430 | /** |
431 | 431 | * espresso_event_date |
432 | 432 | * returns the primary date for an event |
@@ -437,22 +437,22 @@ discard block |
||
437 | 437 | * @param bool $echo |
438 | 438 | * @return string |
439 | 439 | */ |
440 | - function espresso_event_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) { |
|
441 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
442 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
443 | - $date_format = apply_filters( 'FHEE__espresso_event_date__date_format', $date_format ); |
|
444 | - $time_format = apply_filters( 'FHEE__espresso_event_date__time_format', $time_format ); |
|
445 | - if($echo){ |
|
446 | - echo EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID ); |
|
440 | + function espresso_event_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) { |
|
441 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
442 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
443 | + $date_format = apply_filters('FHEE__espresso_event_date__date_format', $date_format); |
|
444 | + $time_format = apply_filters('FHEE__espresso_event_date__time_format', $time_format); |
|
445 | + if ($echo) { |
|
446 | + echo EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID); |
|
447 | 447 | return ''; |
448 | 448 | } |
449 | - return EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID ); |
|
449 | + return EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID); |
|
450 | 450 | |
451 | 451 | } |
452 | 452 | } |
453 | 453 | |
454 | 454 | |
455 | -if ( ! function_exists( 'espresso_list_of_event_dates' )) { |
|
455 | +if ( ! function_exists('espresso_list_of_event_dates')) { |
|
456 | 456 | /** |
457 | 457 | * espresso_list_of_event_dates |
458 | 458 | * returns a unordered list of dates for an event |
@@ -467,40 +467,40 @@ discard block |
||
467 | 467 | * @param null $limit |
468 | 468 | * @return string |
469 | 469 | */ |
470 | - 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 ) { |
|
471 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
472 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
473 | - $date_format = apply_filters( 'FHEE__espresso_list_of_event_dates__date_format', $date_format ); |
|
474 | - $time_format = apply_filters( 'FHEE__espresso_list_of_event_dates__time_format', $time_format ); |
|
475 | - $datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, $show_expired, FALSE, $limit ); |
|
476 | - if ( ! $format ) { |
|
477 | - return apply_filters( 'FHEE__espresso_list_of_event_dates__datetimes', $datetimes ); |
|
470 | + 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) { |
|
471 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
472 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
473 | + $date_format = apply_filters('FHEE__espresso_list_of_event_dates__date_format', $date_format); |
|
474 | + $time_format = apply_filters('FHEE__espresso_list_of_event_dates__time_format', $time_format); |
|
475 | + $datetimes = EEH_Event_View::get_all_date_obj($EVT_ID, $show_expired, FALSE, $limit); |
|
476 | + if ( ! $format) { |
|
477 | + return apply_filters('FHEE__espresso_list_of_event_dates__datetimes', $datetimes); |
|
478 | 478 | } |
479 | 479 | //d( $datetimes ); |
480 | - if ( is_array( $datetimes ) && ! empty( $datetimes )) { |
|
480 | + if (is_array($datetimes) && ! empty($datetimes)) { |
|
481 | 481 | global $post; |
482 | - $html = $format ? '<ul id="ee-event-datetimes-ul-' . $post->ID . '" class="ee-event-datetimes-ul">' : ''; |
|
483 | - foreach ( $datetimes as $datetime ) { |
|
484 | - if ( $datetime instanceof EE_Datetime ) { |
|
485 | - $html .= '<li id="ee-event-datetimes-li-' . $datetime->ID(); |
|
486 | - $html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-' . $datetime->get_active_status() . '">'; |
|
482 | + $html = $format ? '<ul id="ee-event-datetimes-ul-'.$post->ID.'" class="ee-event-datetimes-ul">' : ''; |
|
483 | + foreach ($datetimes as $datetime) { |
|
484 | + if ($datetime instanceof EE_Datetime) { |
|
485 | + $html .= '<li id="ee-event-datetimes-li-'.$datetime->ID(); |
|
486 | + $html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-'.$datetime->get_active_status().'">'; |
|
487 | 487 | $datetime_name = $datetime->name(); |
488 | - $html .= ! empty( $datetime_name ) ? '<strong>' . $datetime_name . '</strong>' : ''; |
|
489 | - $html .= ! empty( $datetime_name ) && $add_breaks ? '<br />' : ''; |
|
490 | - $html .= '<span class="dashicons dashicons-calendar"></span>' . $datetime->date_range( $date_format ) . '<br/>'; |
|
491 | - $html .= '<span class="dashicons dashicons-clock"></span>' . $datetime->time_range( $time_format ); |
|
488 | + $html .= ! empty($datetime_name) ? '<strong>'.$datetime_name.'</strong>' : ''; |
|
489 | + $html .= ! empty($datetime_name) && $add_breaks ? '<br />' : ''; |
|
490 | + $html .= '<span class="dashicons dashicons-calendar"></span>'.$datetime->date_range($date_format).'<br/>'; |
|
491 | + $html .= '<span class="dashicons dashicons-clock"></span>'.$datetime->time_range($time_format); |
|
492 | 492 | $datetime_description = $datetime->description(); |
493 | - $html .= ! empty( $datetime_description ) && $add_breaks ? '<br />' : ''; |
|
494 | - $html .= ! empty( $datetime_description ) ? ' - ' . $datetime_description : ''; |
|
495 | - $html = apply_filters( 'FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime ); |
|
493 | + $html .= ! empty($datetime_description) && $add_breaks ? '<br />' : ''; |
|
494 | + $html .= ! empty($datetime_description) ? ' - '.$datetime_description : ''; |
|
495 | + $html = apply_filters('FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime); |
|
496 | 496 | $html .= '</li>'; |
497 | 497 | } |
498 | 498 | } |
499 | 499 | $html .= $format ? '</ul>' : ''; |
500 | 500 | } else { |
501 | - $html = $format ? '<p><span class="dashicons dashicons-marker pink-text"></span>' . __( 'There are no upcoming dates for this event.', 'event_espresso' ) . '</p><br/>' : ''; |
|
501 | + $html = $format ? '<p><span class="dashicons dashicons-marker pink-text"></span>'.__('There are no upcoming dates for this event.', 'event_espresso').'</p><br/>' : ''; |
|
502 | 502 | } |
503 | - if ( $echo ) { |
|
503 | + if ($echo) { |
|
504 | 504 | echo $html; |
505 | 505 | return ''; |
506 | 506 | } |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | } |
510 | 510 | |
511 | 511 | |
512 | -if ( ! function_exists( 'espresso_event_end_date' )) { |
|
512 | +if ( ! function_exists('espresso_event_end_date')) { |
|
513 | 513 | /** |
514 | 514 | * espresso_event_end_date |
515 | 515 | * returns the last date for an event |
@@ -520,20 +520,20 @@ discard block |
||
520 | 520 | * @param bool $echo |
521 | 521 | * @return string |
522 | 522 | */ |
523 | - function espresso_event_end_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) { |
|
524 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
525 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
526 | - $date_format = apply_filters( 'FHEE__espresso_event_end_date__date_format', $date_format ); |
|
527 | - $time_format = apply_filters( 'FHEE__espresso_event_end_date__time_format', $time_format ); |
|
528 | - if($echo){ |
|
529 | - echo EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID ); |
|
523 | + function espresso_event_end_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) { |
|
524 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
525 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
526 | + $date_format = apply_filters('FHEE__espresso_event_end_date__date_format', $date_format); |
|
527 | + $time_format = apply_filters('FHEE__espresso_event_end_date__time_format', $time_format); |
|
528 | + if ($echo) { |
|
529 | + echo EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID); |
|
530 | 530 | return ''; |
531 | 531 | } |
532 | - return EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID ); |
|
532 | + return EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID); |
|
533 | 533 | } |
534 | 534 | } |
535 | 535 | |
536 | -if ( ! function_exists( 'espresso_event_date_range' )) { |
|
536 | +if ( ! function_exists('espresso_event_date_range')) { |
|
537 | 537 | /** |
538 | 538 | * espresso_event_date_range |
539 | 539 | * returns the first and last chronologically ordered dates for an event (if different) |
@@ -545,31 +545,31 @@ discard block |
||
545 | 545 | * @param bool $EVT_ID |
546 | 546 | * @return string |
547 | 547 | */ |
548 | - function espresso_event_date_range( $date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE ) { |
|
548 | + function espresso_event_date_range($date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE) { |
|
549 | 549 | // set and filter date and time formats when a range is returned |
550 | - $date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' ); |
|
551 | - $date_format = apply_filters( 'FHEE__espresso_event_date_range__date_format', $date_format ); |
|
550 | + $date_format = ! empty($date_format) ? $date_format : get_option('date_format'); |
|
551 | + $date_format = apply_filters('FHEE__espresso_event_date_range__date_format', $date_format); |
|
552 | 552 | // get the start and end date with NO time portion |
553 | - $the_event_date = EEH_Event_View::the_earliest_event_date( $date_format, '', $EVT_ID ); |
|
554 | - $the_event_end_date = EEH_Event_View::the_latest_event_date( $date_format, '', $EVT_ID ); |
|
553 | + $the_event_date = EEH_Event_View::the_earliest_event_date($date_format, '', $EVT_ID); |
|
554 | + $the_event_end_date = EEH_Event_View::the_latest_event_date($date_format, '', $EVT_ID); |
|
555 | 555 | // now we can determine if date range spans more than one day |
556 | - if ( $the_event_date != $the_event_end_date ) { |
|
557 | - $time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' ); |
|
558 | - $time_format = apply_filters( 'FHEE__espresso_event_date_range__time_format', $time_format ); |
|
556 | + if ($the_event_date != $the_event_end_date) { |
|
557 | + $time_format = ! empty($time_format) ? $time_format : get_option('time_format'); |
|
558 | + $time_format = apply_filters('FHEE__espresso_event_date_range__time_format', $time_format); |
|
559 | 559 | $html = sprintf( |
560 | - __( '%1$s - %2$s', 'event_espresso' ), |
|
561 | - EEH_Event_View::the_earliest_event_date( $date_format, $time_format, $EVT_ID ), |
|
562 | - EEH_Event_View::the_latest_event_date( $date_format, $time_format, $EVT_ID ) |
|
560 | + __('%1$s - %2$s', 'event_espresso'), |
|
561 | + EEH_Event_View::the_earliest_event_date($date_format, $time_format, $EVT_ID), |
|
562 | + EEH_Event_View::the_latest_event_date($date_format, $time_format, $EVT_ID) |
|
563 | 563 | ); |
564 | 564 | } else { |
565 | 565 | // set and filter date and time formats when only a single datetime is returned |
566 | - $single_date_format = ! empty( $single_date_format ) ? $single_date_format : get_option( 'date_format' ); |
|
567 | - $single_time_format = ! empty( $single_time_format ) ? $single_time_format : get_option( 'time_format' ); |
|
568 | - $single_date_format = apply_filters( 'FHEE__espresso_event_date_range__single_date_format', $single_date_format ); |
|
569 | - $single_time_format = apply_filters( 'FHEE__espresso_event_date_range__single_time_format', $single_time_format ); |
|
570 | - $html = EEH_Event_View::the_earliest_event_date( $single_date_format, $single_time_format, $EVT_ID ); |
|
566 | + $single_date_format = ! empty($single_date_format) ? $single_date_format : get_option('date_format'); |
|
567 | + $single_time_format = ! empty($single_time_format) ? $single_time_format : get_option('time_format'); |
|
568 | + $single_date_format = apply_filters('FHEE__espresso_event_date_range__single_date_format', $single_date_format); |
|
569 | + $single_time_format = apply_filters('FHEE__espresso_event_date_range__single_time_format', $single_time_format); |
|
570 | + $html = EEH_Event_View::the_earliest_event_date($single_date_format, $single_time_format, $EVT_ID); |
|
571 | 571 | } |
572 | - if ( $echo ) { |
|
572 | + if ($echo) { |
|
573 | 573 | echo $html; |
574 | 574 | return ''; |
575 | 575 | } |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | } |
579 | 579 | |
580 | 580 | |
581 | -if ( ! function_exists( 'espresso_event_date_as_calendar_page' )) { |
|
581 | +if ( ! function_exists('espresso_event_date_as_calendar_page')) { |
|
582 | 582 | /** |
583 | 583 | * espresso_event_date_as_calendar_page |
584 | 584 | * returns the primary date for an event, stylized to appear as the page of a calendar |
@@ -586,15 +586,15 @@ discard block |
||
586 | 586 | * @param bool $EVT_ID |
587 | 587 | * @return string |
588 | 588 | */ |
589 | - function espresso_event_date_as_calendar_page( $EVT_ID = FALSE ) { |
|
590 | - EEH_Event_View::event_date_as_calendar_page( $EVT_ID ); |
|
589 | + function espresso_event_date_as_calendar_page($EVT_ID = FALSE) { |
|
590 | + EEH_Event_View::event_date_as_calendar_page($EVT_ID); |
|
591 | 591 | } |
592 | 592 | } |
593 | 593 | |
594 | 594 | |
595 | 595 | |
596 | 596 | |
597 | -if ( ! function_exists( 'espresso_event_link_url' )) { |
|
597 | +if ( ! function_exists('espresso_event_link_url')) { |
|
598 | 598 | /** |
599 | 599 | * espresso_event_link_url |
600 | 600 | * |
@@ -602,18 +602,18 @@ discard block |
||
602 | 602 | * @param bool $echo |
603 | 603 | * @return string |
604 | 604 | */ |
605 | - function espresso_event_link_url( $EVT_ID = 0, $echo = TRUE ) { |
|
606 | - if ( $echo ) { |
|
607 | - echo EEH_Event_View::event_link_url( $EVT_ID ); |
|
605 | + function espresso_event_link_url($EVT_ID = 0, $echo = TRUE) { |
|
606 | + if ($echo) { |
|
607 | + echo EEH_Event_View::event_link_url($EVT_ID); |
|
608 | 608 | return ''; |
609 | 609 | } |
610 | - return EEH_Event_View::event_link_url( $EVT_ID ); |
|
610 | + return EEH_Event_View::event_link_url($EVT_ID); |
|
611 | 611 | } |
612 | 612 | } |
613 | 613 | |
614 | 614 | |
615 | 615 | |
616 | -if ( ! function_exists( 'espresso_event_has_content_or_excerpt' )) { |
|
616 | +if ( ! function_exists('espresso_event_has_content_or_excerpt')) { |
|
617 | 617 | /** |
618 | 618 | * espresso_event_has_content_or_excerpt |
619 | 619 | * |
@@ -621,15 +621,15 @@ discard block |
||
621 | 621 | * @param bool $EVT_ID |
622 | 622 | * @return boolean |
623 | 623 | */ |
624 | - function espresso_event_has_content_or_excerpt( $EVT_ID = FALSE ) { |
|
625 | - return EEH_Event_View::event_has_content_or_excerpt( $EVT_ID ); |
|
624 | + function espresso_event_has_content_or_excerpt($EVT_ID = FALSE) { |
|
625 | + return EEH_Event_View::event_has_content_or_excerpt($EVT_ID); |
|
626 | 626 | } |
627 | 627 | } |
628 | 628 | |
629 | 629 | |
630 | 630 | |
631 | 631 | |
632 | -if ( ! function_exists( 'espresso_event_content_or_excerpt' )) { |
|
632 | +if ( ! function_exists('espresso_event_content_or_excerpt')) { |
|
633 | 633 | /** |
634 | 634 | * espresso_event_content_or_excerpt |
635 | 635 | * |
@@ -638,18 +638,18 @@ discard block |
||
638 | 638 | * @param bool $echo |
639 | 639 | * @return string |
640 | 640 | */ |
641 | - function espresso_event_content_or_excerpt( $num_words = 55, $more = NULL, $echo = TRUE ) { |
|
642 | - if ( $echo ) { |
|
643 | - echo EEH_Event_View::event_content_or_excerpt( $num_words, $more ); |
|
641 | + function espresso_event_content_or_excerpt($num_words = 55, $more = NULL, $echo = TRUE) { |
|
642 | + if ($echo) { |
|
643 | + echo EEH_Event_View::event_content_or_excerpt($num_words, $more); |
|
644 | 644 | return ''; |
645 | 645 | } |
646 | - return EEH_Event_View::event_content_or_excerpt( $num_words, $more ); |
|
646 | + return EEH_Event_View::event_content_or_excerpt($num_words, $more); |
|
647 | 647 | } |
648 | 648 | } |
649 | 649 | |
650 | 650 | |
651 | 651 | |
652 | -if ( ! function_exists( 'espresso_event_phone' )) { |
|
652 | +if ( ! function_exists('espresso_event_phone')) { |
|
653 | 653 | /** |
654 | 654 | * espresso_event_phone |
655 | 655 | * |
@@ -657,18 +657,18 @@ discard block |
||
657 | 657 | * @param bool $echo |
658 | 658 | * @return string |
659 | 659 | */ |
660 | - function espresso_event_phone( $EVT_ID = 0, $echo = TRUE ) { |
|
661 | - if ( $echo ) { |
|
662 | - echo EEH_Event_View::event_phone( $EVT_ID ); |
|
660 | + function espresso_event_phone($EVT_ID = 0, $echo = TRUE) { |
|
661 | + if ($echo) { |
|
662 | + echo EEH_Event_View::event_phone($EVT_ID); |
|
663 | 663 | return ''; |
664 | 664 | } |
665 | - return EEH_Event_View::event_phone( $EVT_ID ); |
|
665 | + return EEH_Event_View::event_phone($EVT_ID); |
|
666 | 666 | } |
667 | 667 | } |
668 | 668 | |
669 | 669 | |
670 | 670 | |
671 | -if ( ! function_exists( 'espresso_edit_event_link' )) { |
|
671 | +if ( ! function_exists('espresso_edit_event_link')) { |
|
672 | 672 | /** |
673 | 673 | * espresso_edit_event_link |
674 | 674 | * returns a link to edit an event |
@@ -677,39 +677,39 @@ discard block |
||
677 | 677 | * @param bool $echo |
678 | 678 | * @return string |
679 | 679 | */ |
680 | - function espresso_edit_event_link( $EVT_ID = 0, $echo = TRUE ) { |
|
681 | - if ( $echo ) { |
|
682 | - echo EEH_Event_View::edit_event_link( $EVT_ID ); |
|
680 | + function espresso_edit_event_link($EVT_ID = 0, $echo = TRUE) { |
|
681 | + if ($echo) { |
|
682 | + echo EEH_Event_View::edit_event_link($EVT_ID); |
|
683 | 683 | return ''; |
684 | 684 | } |
685 | - return EEH_Event_View::edit_event_link( $EVT_ID ); |
|
685 | + return EEH_Event_View::edit_event_link($EVT_ID); |
|
686 | 686 | } |
687 | 687 | } |
688 | 688 | |
689 | 689 | |
690 | -if ( ! function_exists( 'espresso_organization_name' )) { |
|
690 | +if ( ! function_exists('espresso_organization_name')) { |
|
691 | 691 | /** |
692 | 692 | * espresso_organization_name |
693 | 693 | * @param bool $echo |
694 | 694 | * @return string |
695 | 695 | */ |
696 | 696 | function espresso_organization_name($echo = TRUE) { |
697 | - if($echo){ |
|
698 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'name' ); |
|
697 | + if ($echo) { |
|
698 | + echo EE_Registry::instance()->CFG->organization->get_pretty('name'); |
|
699 | 699 | return ''; |
700 | 700 | } |
701 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'name' ); |
|
701 | + return EE_Registry::instance()->CFG->organization->get_pretty('name'); |
|
702 | 702 | } |
703 | 703 | } |
704 | 704 | |
705 | -if ( ! function_exists( 'espresso_organization_address' )) { |
|
705 | +if ( ! function_exists('espresso_organization_address')) { |
|
706 | 706 | /** |
707 | 707 | * espresso_organization_address |
708 | 708 | * @param string $type |
709 | 709 | * @return string |
710 | 710 | */ |
711 | - function espresso_organization_address( $type = 'inline' ) { |
|
712 | - if ( EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config ) { |
|
711 | + function espresso_organization_address($type = 'inline') { |
|
712 | + if (EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config) { |
|
713 | 713 | $address = new EventEspresso\core\entities\GenericAddress( |
714 | 714 | EE_Registry::instance()->CFG->organization->address_1, |
715 | 715 | EE_Registry::instance()->CFG->organization->address_2, |
@@ -718,129 +718,129 @@ discard block |
||
718 | 718 | EE_Registry::instance()->CFG->organization->zip, |
719 | 719 | EE_Registry::instance()->CFG->organization->CNT_ISO |
720 | 720 | ); |
721 | - return EEH_Address::format( $address, $type ); |
|
721 | + return EEH_Address::format($address, $type); |
|
722 | 722 | } |
723 | 723 | return ''; |
724 | 724 | } |
725 | 725 | } |
726 | 726 | |
727 | -if ( ! function_exists( 'espresso_organization_email' )) { |
|
727 | +if ( ! function_exists('espresso_organization_email')) { |
|
728 | 728 | /** |
729 | 729 | * espresso_organization_email |
730 | 730 | * @param bool $echo |
731 | 731 | * @return string |
732 | 732 | */ |
733 | - function espresso_organization_email( $echo = TRUE ) { |
|
734 | - if($echo){ |
|
735 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'email' ); |
|
733 | + function espresso_organization_email($echo = TRUE) { |
|
734 | + if ($echo) { |
|
735 | + echo EE_Registry::instance()->CFG->organization->get_pretty('email'); |
|
736 | 736 | return ''; |
737 | 737 | } |
738 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'email' ); |
|
738 | + return EE_Registry::instance()->CFG->organization->get_pretty('email'); |
|
739 | 739 | } |
740 | 740 | } |
741 | 741 | |
742 | -if ( ! function_exists( 'espresso_organization_logo_url' )) { |
|
742 | +if ( ! function_exists('espresso_organization_logo_url')) { |
|
743 | 743 | /** |
744 | 744 | * espresso_organization_logo_url |
745 | 745 | * @param bool $echo |
746 | 746 | * @return string |
747 | 747 | */ |
748 | - function espresso_organization_logo_url( $echo = TRUE ) { |
|
749 | - if($echo){ |
|
750 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' ); |
|
748 | + function espresso_organization_logo_url($echo = TRUE) { |
|
749 | + if ($echo) { |
|
750 | + echo EE_Registry::instance()->CFG->organization->get_pretty('logo_url'); |
|
751 | 751 | return ''; |
752 | 752 | } |
753 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' ); |
|
753 | + return EE_Registry::instance()->CFG->organization->get_pretty('logo_url'); |
|
754 | 754 | } |
755 | 755 | } |
756 | 756 | |
757 | -if ( ! function_exists( 'espresso_organization_facebook' )) { |
|
757 | +if ( ! function_exists('espresso_organization_facebook')) { |
|
758 | 758 | /** |
759 | 759 | * espresso_organization_facebook |
760 | 760 | * @param bool $echo |
761 | 761 | * @return string |
762 | 762 | */ |
763 | - function espresso_organization_facebook( $echo = TRUE ) { |
|
764 | - if($echo){ |
|
765 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' ); |
|
763 | + function espresso_organization_facebook($echo = TRUE) { |
|
764 | + if ($echo) { |
|
765 | + echo EE_Registry::instance()->CFG->organization->get_pretty('facebook'); |
|
766 | 766 | return ''; |
767 | 767 | } |
768 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' ); |
|
768 | + return EE_Registry::instance()->CFG->organization->get_pretty('facebook'); |
|
769 | 769 | } |
770 | 770 | } |
771 | 771 | |
772 | -if ( ! function_exists( 'espresso_organization_twitter' )) { |
|
772 | +if ( ! function_exists('espresso_organization_twitter')) { |
|
773 | 773 | /** |
774 | 774 | * espresso_organization_twitter |
775 | 775 | * @param bool $echo |
776 | 776 | * @return string |
777 | 777 | */ |
778 | - function espresso_organization_twitter( $echo = TRUE ) { |
|
779 | - if($echo){ |
|
780 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' ); |
|
778 | + function espresso_organization_twitter($echo = TRUE) { |
|
779 | + if ($echo) { |
|
780 | + echo EE_Registry::instance()->CFG->organization->get_pretty('twitter'); |
|
781 | 781 | return ''; |
782 | 782 | } |
783 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' ); |
|
783 | + return EE_Registry::instance()->CFG->organization->get_pretty('twitter'); |
|
784 | 784 | } |
785 | 785 | } |
786 | 786 | |
787 | -if ( ! function_exists( 'espresso_organization_linkedin' )) { |
|
787 | +if ( ! function_exists('espresso_organization_linkedin')) { |
|
788 | 788 | /** |
789 | 789 | * espresso_organization_linkedin |
790 | 790 | * @param bool $echo |
791 | 791 | * @return string |
792 | 792 | */ |
793 | - function espresso_organization_linkedin( $echo = TRUE ) { |
|
794 | - if($echo){ |
|
795 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' ); |
|
793 | + function espresso_organization_linkedin($echo = TRUE) { |
|
794 | + if ($echo) { |
|
795 | + echo EE_Registry::instance()->CFG->organization->get_pretty('linkedin'); |
|
796 | 796 | return ''; |
797 | 797 | } |
798 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' ); |
|
798 | + return EE_Registry::instance()->CFG->organization->get_pretty('linkedin'); |
|
799 | 799 | } |
800 | 800 | } |
801 | 801 | |
802 | -if ( ! function_exists( 'espresso_organization_pinterest' )) { |
|
802 | +if ( ! function_exists('espresso_organization_pinterest')) { |
|
803 | 803 | /** |
804 | 804 | * espresso_organization_pinterest |
805 | 805 | * @param bool $echo |
806 | 806 | * @return string |
807 | 807 | */ |
808 | - function espresso_organization_pinterest( $echo = TRUE ) { |
|
809 | - if($echo){ |
|
810 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' ); |
|
808 | + function espresso_organization_pinterest($echo = TRUE) { |
|
809 | + if ($echo) { |
|
810 | + echo EE_Registry::instance()->CFG->organization->get_pretty('pinterest'); |
|
811 | 811 | return ''; |
812 | 812 | } |
813 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' ); |
|
813 | + return EE_Registry::instance()->CFG->organization->get_pretty('pinterest'); |
|
814 | 814 | } |
815 | 815 | } |
816 | 816 | |
817 | -if ( ! function_exists( 'espresso_organization_google' )) { |
|
817 | +if ( ! function_exists('espresso_organization_google')) { |
|
818 | 818 | /** |
819 | 819 | * espresso_organization_google |
820 | 820 | * @param bool $echo |
821 | 821 | * @return string |
822 | 822 | */ |
823 | - function espresso_organization_google( $echo = TRUE ) { |
|
824 | - if($echo){ |
|
825 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'google' ); |
|
823 | + function espresso_organization_google($echo = TRUE) { |
|
824 | + if ($echo) { |
|
825 | + echo EE_Registry::instance()->CFG->organization->get_pretty('google'); |
|
826 | 826 | return ''; |
827 | 827 | } |
828 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'google' ); |
|
828 | + return EE_Registry::instance()->CFG->organization->get_pretty('google'); |
|
829 | 829 | } |
830 | 830 | } |
831 | 831 | |
832 | -if ( ! function_exists( 'espresso_organization_instagram' )) { |
|
832 | +if ( ! function_exists('espresso_organization_instagram')) { |
|
833 | 833 | /** |
834 | 834 | * espresso_organization_instagram |
835 | 835 | * @param bool $echo |
836 | 836 | * @return string |
837 | 837 | */ |
838 | - function espresso_organization_instagram( $echo = TRUE ) { |
|
839 | - if($echo){ |
|
840 | - echo EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' ); |
|
838 | + function espresso_organization_instagram($echo = TRUE) { |
|
839 | + if ($echo) { |
|
840 | + echo EE_Registry::instance()->CFG->organization->get_pretty('instagram'); |
|
841 | 841 | return ''; |
842 | 842 | } |
843 | - return EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' ); |
|
843 | + return EE_Registry::instance()->CFG->organization->get_pretty('instagram'); |
|
844 | 844 | } |
845 | 845 | } |
846 | 846 | |
@@ -850,7 +850,7 @@ discard block |
||
850 | 850 | |
851 | 851 | |
852 | 852 | |
853 | -if ( ! function_exists( 'espresso_event_venues' )) { |
|
853 | +if ( ! function_exists('espresso_event_venues')) { |
|
854 | 854 | /** |
855 | 855 | * espresso_event_venues |
856 | 856 | * |
@@ -864,7 +864,7 @@ discard block |
||
864 | 864 | |
865 | 865 | |
866 | 866 | |
867 | -if ( ! function_exists( 'espresso_venue_id' )) { |
|
867 | +if ( ! function_exists('espresso_venue_id')) { |
|
868 | 868 | /** |
869 | 869 | * espresso_venue_name |
870 | 870 | * |
@@ -872,15 +872,15 @@ discard block |
||
872 | 872 | * @param int $EVT_ID |
873 | 873 | * @return string |
874 | 874 | */ |
875 | - function espresso_venue_id( $EVT_ID = 0 ) { |
|
876 | - $venue = EEH_Venue_View::get_venue( $EVT_ID ); |
|
875 | + function espresso_venue_id($EVT_ID = 0) { |
|
876 | + $venue = EEH_Venue_View::get_venue($EVT_ID); |
|
877 | 877 | return $venue instanceof EE_Venue ? $venue->ID() : 0; |
878 | 878 | } |
879 | 879 | } |
880 | 880 | |
881 | 881 | |
882 | 882 | |
883 | -if ( ! function_exists( 'espresso_is_venue_private' ) ) { |
|
883 | +if ( ! function_exists('espresso_is_venue_private')) { |
|
884 | 884 | /** |
885 | 885 | * Return whether a venue is private or not. |
886 | 886 | * @see EEH_Venue_View::get_venue() for more info on expected return results. |
@@ -889,15 +889,15 @@ discard block |
||
889 | 889 | * |
890 | 890 | * @return bool | null |
891 | 891 | */ |
892 | - function espresso_is_venue_private( $VNU_ID = 0 ) { |
|
893 | - return EEH_Venue_View::is_venue_private( $VNU_ID ); |
|
892 | + function espresso_is_venue_private($VNU_ID = 0) { |
|
893 | + return EEH_Venue_View::is_venue_private($VNU_ID); |
|
894 | 894 | } |
895 | 895 | } |
896 | 896 | |
897 | 897 | |
898 | 898 | |
899 | 899 | |
900 | -if ( ! function_exists( 'espresso_venue_name' )) { |
|
900 | +if ( ! function_exists('espresso_venue_name')) { |
|
901 | 901 | /** |
902 | 902 | * espresso_venue_name |
903 | 903 | * |
@@ -907,19 +907,19 @@ discard block |
||
907 | 907 | * @param bool $echo |
908 | 908 | * @return string |
909 | 909 | */ |
910 | - function espresso_venue_name( $VNU_ID = 0, $link_to = 'details', $echo = TRUE ) { |
|
911 | - if($echo){ |
|
912 | - echo EEH_Venue_View::venue_name( $link_to, $VNU_ID ); |
|
910 | + function espresso_venue_name($VNU_ID = 0, $link_to = 'details', $echo = TRUE) { |
|
911 | + if ($echo) { |
|
912 | + echo EEH_Venue_View::venue_name($link_to, $VNU_ID); |
|
913 | 913 | return ''; |
914 | 914 | } |
915 | - return EEH_Venue_View::venue_name( $link_to, $VNU_ID ); |
|
915 | + return EEH_Venue_View::venue_name($link_to, $VNU_ID); |
|
916 | 916 | } |
917 | 917 | } |
918 | 918 | |
919 | 919 | |
920 | 920 | |
921 | 921 | |
922 | -if ( ! function_exists( 'espresso_venue_link' )) { |
|
922 | +if ( ! function_exists('espresso_venue_link')) { |
|
923 | 923 | /** |
924 | 924 | * espresso_venue_link |
925 | 925 | * |
@@ -928,14 +928,14 @@ discard block |
||
928 | 928 | * @param string $text |
929 | 929 | * @return string |
930 | 930 | */ |
931 | - function espresso_venue_link( $VNU_ID = 0, $text = '' ) { |
|
932 | - return EEH_Venue_View::venue_details_link( $VNU_ID, $text ); |
|
931 | + function espresso_venue_link($VNU_ID = 0, $text = '') { |
|
932 | + return EEH_Venue_View::venue_details_link($VNU_ID, $text); |
|
933 | 933 | } |
934 | 934 | } |
935 | 935 | |
936 | 936 | |
937 | 937 | |
938 | -if ( ! function_exists( 'espresso_venue_description' )) { |
|
938 | +if ( ! function_exists('espresso_venue_description')) { |
|
939 | 939 | /** |
940 | 940 | * espresso_venue_description |
941 | 941 | * |
@@ -944,17 +944,17 @@ discard block |
||
944 | 944 | * @param bool $echo |
945 | 945 | * @return string |
946 | 946 | */ |
947 | - function espresso_venue_description( $VNU_ID = FALSE, $echo = TRUE ) { |
|
948 | - if($echo){ |
|
949 | - echo EEH_Venue_View::venue_description( $VNU_ID ); |
|
947 | + function espresso_venue_description($VNU_ID = FALSE, $echo = TRUE) { |
|
948 | + if ($echo) { |
|
949 | + echo EEH_Venue_View::venue_description($VNU_ID); |
|
950 | 950 | return ''; |
951 | 951 | } |
952 | - return EEH_Venue_View::venue_description( $VNU_ID ); |
|
952 | + return EEH_Venue_View::venue_description($VNU_ID); |
|
953 | 953 | } |
954 | 954 | } |
955 | 955 | |
956 | 956 | |
957 | -if ( ! function_exists( 'espresso_venue_excerpt' )) { |
|
957 | +if ( ! function_exists('espresso_venue_excerpt')) { |
|
958 | 958 | /** |
959 | 959 | * espresso_venue_excerpt |
960 | 960 | * |
@@ -963,18 +963,18 @@ discard block |
||
963 | 963 | * @param bool $echo |
964 | 964 | * @return string |
965 | 965 | */ |
966 | - function espresso_venue_excerpt( $VNU_ID = 0, $echo = TRUE ) { |
|
967 | - if ( $echo ) { |
|
968 | - echo EEH_Venue_View::venue_excerpt( $VNU_ID ); |
|
966 | + function espresso_venue_excerpt($VNU_ID = 0, $echo = TRUE) { |
|
967 | + if ($echo) { |
|
968 | + echo EEH_Venue_View::venue_excerpt($VNU_ID); |
|
969 | 969 | return ''; |
970 | 970 | } |
971 | - return EEH_Venue_View::venue_excerpt( $VNU_ID ); |
|
971 | + return EEH_Venue_View::venue_excerpt($VNU_ID); |
|
972 | 972 | } |
973 | 973 | } |
974 | 974 | |
975 | 975 | |
976 | 976 | |
977 | -if ( ! function_exists( 'espresso_venue_categories' )) { |
|
977 | +if ( ! function_exists('espresso_venue_categories')) { |
|
978 | 978 | /** |
979 | 979 | * espresso_venue_categories |
980 | 980 | * returns the terms associated with a venue |
@@ -984,17 +984,17 @@ discard block |
||
984 | 984 | * @param bool $echo |
985 | 985 | * @return string |
986 | 986 | */ |
987 | - function espresso_venue_categories( $VNU_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE ) { |
|
988 | - if ( $echo ) { |
|
989 | - echo EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized ); |
|
987 | + function espresso_venue_categories($VNU_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) { |
|
988 | + if ($echo) { |
|
989 | + echo EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized); |
|
990 | 990 | return ''; |
991 | 991 | } |
992 | - return EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized ); |
|
992 | + return EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized); |
|
993 | 993 | } |
994 | 994 | } |
995 | 995 | |
996 | 996 | |
997 | -if ( ! function_exists( 'espresso_venue_address' )) { |
|
997 | +if ( ! function_exists('espresso_venue_address')) { |
|
998 | 998 | /** |
999 | 999 | * espresso_venue_address |
1000 | 1000 | * returns a formatted block of html for displaying a venue's address |
@@ -1004,17 +1004,17 @@ discard block |
||
1004 | 1004 | * @param bool $echo |
1005 | 1005 | * @return string |
1006 | 1006 | */ |
1007 | - function espresso_venue_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) { |
|
1008 | - if ( $echo ) { |
|
1009 | - echo EEH_Venue_View::venue_address( $type, $VNU_ID ); |
|
1007 | + function espresso_venue_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) { |
|
1008 | + if ($echo) { |
|
1009 | + echo EEH_Venue_View::venue_address($type, $VNU_ID); |
|
1010 | 1010 | return ''; |
1011 | 1011 | } |
1012 | - return EEH_Venue_View::venue_address( $type, $VNU_ID ); |
|
1012 | + return EEH_Venue_View::venue_address($type, $VNU_ID); |
|
1013 | 1013 | } |
1014 | 1014 | } |
1015 | 1015 | |
1016 | 1016 | |
1017 | -if ( ! function_exists( 'espresso_venue_raw_address' )) { |
|
1017 | +if ( ! function_exists('espresso_venue_raw_address')) { |
|
1018 | 1018 | /** |
1019 | 1019 | * espresso_venue_address |
1020 | 1020 | * returns an UN-formatted string containing a venue's address |
@@ -1024,17 +1024,17 @@ discard block |
||
1024 | 1024 | * @param bool $echo |
1025 | 1025 | * @return string |
1026 | 1026 | */ |
1027 | - function espresso_venue_raw_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) { |
|
1028 | - if ( $echo ) { |
|
1029 | - echo EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE ); |
|
1027 | + function espresso_venue_raw_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) { |
|
1028 | + if ($echo) { |
|
1029 | + echo EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE); |
|
1030 | 1030 | return ''; |
1031 | 1031 | } |
1032 | - return EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE ); |
|
1032 | + return EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE); |
|
1033 | 1033 | } |
1034 | 1034 | } |
1035 | 1035 | |
1036 | 1036 | |
1037 | -if ( ! function_exists( 'espresso_venue_has_address' )) { |
|
1037 | +if ( ! function_exists('espresso_venue_has_address')) { |
|
1038 | 1038 | /** |
1039 | 1039 | * espresso_venue_has_address |
1040 | 1040 | * returns TRUE or FALSE if a Venue has address information |
@@ -1042,13 +1042,13 @@ discard block |
||
1042 | 1042 | * @param int $VNU_ID |
1043 | 1043 | * @return bool |
1044 | 1044 | */ |
1045 | - function espresso_venue_has_address( $VNU_ID = 0 ) { |
|
1046 | - return EEH_Venue_View::venue_has_address( $VNU_ID ); |
|
1045 | + function espresso_venue_has_address($VNU_ID = 0) { |
|
1046 | + return EEH_Venue_View::venue_has_address($VNU_ID); |
|
1047 | 1047 | } |
1048 | 1048 | } |
1049 | 1049 | |
1050 | 1050 | |
1051 | -if ( ! function_exists( 'espresso_venue_gmap' )) { |
|
1051 | +if ( ! function_exists('espresso_venue_gmap')) { |
|
1052 | 1052 | /** |
1053 | 1053 | * espresso_venue_gmap |
1054 | 1054 | * returns a google map for the venue address |
@@ -1059,17 +1059,17 @@ discard block |
||
1059 | 1059 | * @param bool $echo |
1060 | 1060 | * @return string |
1061 | 1061 | */ |
1062 | - function espresso_venue_gmap( $VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE ) { |
|
1063 | - if ( $echo ) { |
|
1064 | - echo EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap ); |
|
1062 | + function espresso_venue_gmap($VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE) { |
|
1063 | + if ($echo) { |
|
1064 | + echo EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap); |
|
1065 | 1065 | return ''; |
1066 | 1066 | } |
1067 | - return EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap ); |
|
1067 | + return EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap); |
|
1068 | 1068 | } |
1069 | 1069 | } |
1070 | 1070 | |
1071 | 1071 | |
1072 | -if ( ! function_exists( 'espresso_venue_phone' )) { |
|
1072 | +if ( ! function_exists('espresso_venue_phone')) { |
|
1073 | 1073 | /** |
1074 | 1074 | * espresso_venue_phone |
1075 | 1075 | * |
@@ -1077,18 +1077,18 @@ discard block |
||
1077 | 1077 | * @param bool $echo |
1078 | 1078 | * @return string |
1079 | 1079 | */ |
1080 | - function espresso_venue_phone( $VNU_ID = 0, $echo = TRUE ) { |
|
1081 | - if ( $echo ) { |
|
1082 | - echo EEH_Venue_View::venue_phone( $VNU_ID ); |
|
1080 | + function espresso_venue_phone($VNU_ID = 0, $echo = TRUE) { |
|
1081 | + if ($echo) { |
|
1082 | + echo EEH_Venue_View::venue_phone($VNU_ID); |
|
1083 | 1083 | return ''; |
1084 | 1084 | } |
1085 | - return EEH_Venue_View::venue_phone( $VNU_ID ); |
|
1085 | + return EEH_Venue_View::venue_phone($VNU_ID); |
|
1086 | 1086 | } |
1087 | 1087 | } |
1088 | 1088 | |
1089 | 1089 | |
1090 | 1090 | |
1091 | -if ( ! function_exists( 'espresso_venue_website' )) { |
|
1091 | +if ( ! function_exists('espresso_venue_website')) { |
|
1092 | 1092 | /** |
1093 | 1093 | * espresso_venue_website |
1094 | 1094 | * |
@@ -1096,18 +1096,18 @@ discard block |
||
1096 | 1096 | * @param bool $echo |
1097 | 1097 | * @return string |
1098 | 1098 | */ |
1099 | - function espresso_venue_website( $VNU_ID = 0, $echo = TRUE ) { |
|
1100 | - if ( $echo ) { |
|
1101 | - echo EEH_Venue_View::venue_website_link( $VNU_ID ); |
|
1099 | + function espresso_venue_website($VNU_ID = 0, $echo = TRUE) { |
|
1100 | + if ($echo) { |
|
1101 | + echo EEH_Venue_View::venue_website_link($VNU_ID); |
|
1102 | 1102 | return ''; |
1103 | 1103 | } |
1104 | - return EEH_Venue_View::venue_website_link( $VNU_ID ); |
|
1104 | + return EEH_Venue_View::venue_website_link($VNU_ID); |
|
1105 | 1105 | } |
1106 | 1106 | } |
1107 | 1107 | |
1108 | 1108 | |
1109 | 1109 | |
1110 | -if ( ! function_exists( 'espresso_edit_venue_link' )) { |
|
1110 | +if ( ! function_exists('espresso_edit_venue_link')) { |
|
1111 | 1111 | /** |
1112 | 1112 | * espresso_edit_venue_link |
1113 | 1113 | * |
@@ -1115,12 +1115,12 @@ discard block |
||
1115 | 1115 | * @param bool $echo |
1116 | 1116 | * @return string |
1117 | 1117 | */ |
1118 | - function espresso_edit_venue_link( $VNU_ID = 0, $echo = TRUE ) { |
|
1119 | - if($echo){ |
|
1120 | - echo EEH_Venue_View::edit_venue_link( $VNU_ID ); |
|
1118 | + function espresso_edit_venue_link($VNU_ID = 0, $echo = TRUE) { |
|
1119 | + if ($echo) { |
|
1120 | + echo EEH_Venue_View::edit_venue_link($VNU_ID); |
|
1121 | 1121 | return ''; |
1122 | 1122 | } |
1123 | - return EEH_Venue_View::edit_venue_link( $VNU_ID ); |
|
1123 | + return EEH_Venue_View::edit_venue_link($VNU_ID); |
|
1124 | 1124 | } |
1125 | 1125 | } |
1126 | 1126 |
@@ -229,7 +229,7 @@ |
||
229 | 229 | * |
230 | 230 | * @access public |
231 | 231 | * @param string $event_list_css |
232 | - * @return array |
|
232 | + * @return string |
|
233 | 233 | */ |
234 | 234 | public function event_list_css( $event_list_css = '' ) { |
235 | 235 | $event_list_css .= ! empty( $event_list_css ) ? ' ' : ''; |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * Event Espresso |
4 | 6 | * |
@@ -50,14 +50,14 @@ discard block |
||
50 | 50 | * @param WP $WP |
51 | 51 | * @return void |
52 | 52 | */ |
53 | - public function run( WP $WP ) { |
|
54 | - if ( did_action( 'pre_get_posts' ) && did_action( 'send_headers' ) ) { |
|
53 | + public function run(WP $WP) { |
|
54 | + if (did_action('pre_get_posts') && did_action('send_headers')) { |
|
55 | 55 | EED_Events_Archive::instance()->event_list(); |
56 | 56 | } else { |
57 | 57 | // this will trigger the EED_Events_Archive module's event_list() method during the pre_get_posts hook point, |
58 | 58 | // this allows us to initialize things, enqueue assets, etc, |
59 | 59 | // as well, this saves an instantiation of the module in an array using 'espresso_events' as the key, so that we can retrieve it |
60 | - add_action( 'pre_get_posts', array( EED_Events_Archive::instance(), 'event_list' ) ); |
|
60 | + add_action('pre_get_posts', array(EED_Events_Archive::instance(), 'event_list')); |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
@@ -79,13 +79,13 @@ discard block |
||
79 | 79 | * @param array $attributes |
80 | 80 | * @return string |
81 | 81 | */ |
82 | - public function process_shortcode( $attributes = array() ) { |
|
82 | + public function process_shortcode($attributes = array()) { |
|
83 | 83 | // make sure EED_Events_Archive is setup properly |
84 | - if ( apply_filters( 'FHEE__fallback_shortcode_processor__EES_Espresso_Events', FALSE )) { |
|
84 | + if (apply_filters('FHEE__fallback_shortcode_processor__EES_Espresso_Events', FALSE)) { |
|
85 | 85 | EED_Events_Archive::instance()->event_list(); |
86 | 86 | } |
87 | 87 | // merge in any attributes passed via fallback shortcode processor |
88 | - $attributes = array_merge( (array)$attributes, (array)$this->_attributes ); |
|
88 | + $attributes = array_merge((array) $attributes, (array) $this->_attributes); |
|
89 | 89 | //set default attributes |
90 | 90 | $default_espresso_events_shortcode_atts = array( |
91 | 91 | 'title' => NULL, |
@@ -99,26 +99,26 @@ discard block |
||
99 | 99 | 'fallback_shortcode_processor' => FALSE |
100 | 100 | ); |
101 | 101 | // allow the defaults to be filtered |
102 | - $default_espresso_events_shortcode_atts = apply_filters( 'EES_Espresso_Events__process_shortcode__default_espresso_events_shortcode_atts', $default_espresso_events_shortcode_atts ); |
|
102 | + $default_espresso_events_shortcode_atts = apply_filters('EES_Espresso_Events__process_shortcode__default_espresso_events_shortcode_atts', $default_espresso_events_shortcode_atts); |
|
103 | 103 | // grab attributes and merge with defaults, then extract |
104 | - $attributes = array_merge( $default_espresso_events_shortcode_atts, $attributes ); |
|
104 | + $attributes = array_merge($default_espresso_events_shortcode_atts, $attributes); |
|
105 | 105 | // make sure we use the_excerpt() |
106 | - add_filter( 'FHEE__EES_Espresso_Events__process_shortcode__true', '__return_true' ); |
|
106 | + add_filter('FHEE__EES_Espresso_Events__process_shortcode__true', '__return_true'); |
|
107 | 107 | // apply query filters |
108 | - add_filter( 'FHEE__EEH_Event_Query__apply_query_filters', '__return_true' ); |
|
108 | + add_filter('FHEE__EEH_Event_Query__apply_query_filters', '__return_true'); |
|
109 | 109 | // run the query |
110 | 110 | global $wp_query; |
111 | - $wp_query = new EE_Event_List_Query( $attributes ); |
|
111 | + $wp_query = new EE_Event_List_Query($attributes); |
|
112 | 112 | // check what template is loaded and load filters accordingly |
113 | - EED_Events_Archive::instance()->template_include( 'loop-espresso_events.php' ); |
|
113 | + EED_Events_Archive::instance()->template_include('loop-espresso_events.php'); |
|
114 | 114 | // load our template |
115 | - $event_list = EEH_Template::locate_template( 'loop-espresso_events.php', array(), TRUE, TRUE ); |
|
115 | + $event_list = EEH_Template::locate_template('loop-espresso_events.php', array(), TRUE, TRUE); |
|
116 | 116 | // now reset the query and postdata |
117 | 117 | wp_reset_query(); |
118 | 118 | wp_reset_postdata(); |
119 | 119 | EED_Events_Archive::remove_all_events_archive_filters(); |
120 | 120 | // remove query filters |
121 | - remove_filter( 'FHEE__EEH_Event_Query__apply_query_filters', '__return_true' ); |
|
121 | + remove_filter('FHEE__EEH_Event_Query__apply_query_filters', '__return_true'); |
|
122 | 122 | // pull our content from the output buffer and return it |
123 | 123 | return $event_list; |
124 | 124 | } |
@@ -163,44 +163,44 @@ discard block |
||
163 | 163 | * @param array $args |
164 | 164 | * @return \EE_Event_List_Query |
165 | 165 | */ |
166 | - function __construct( $args = array() ) { |
|
166 | + function __construct($args = array()) { |
|
167 | 167 | // EEH_Debug_Tools::printr( $args, '$args <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
168 | 168 | // incoming args could be a mix of WP query args + EE shortcode args |
169 | - foreach ( $args as $key =>$value ) { |
|
170 | - $property = '_' . $key; |
|
169 | + foreach ($args as $key =>$value) { |
|
170 | + $property = '_'.$key; |
|
171 | 171 | // if the arg is a property of this class, then it's an EE shortcode arg |
172 | - if ( property_exists( $this, $property )) { |
|
172 | + if (property_exists($this, $property)) { |
|
173 | 173 | // set the property value |
174 | 174 | $this->{$property} = $value; |
175 | 175 | // then remove it from the array of args that will later be passed to WP_Query() |
176 | - unset( $args[ $key ] ); |
|
176 | + unset($args[$key]); |
|
177 | 177 | } |
178 | 178 | } |
179 | 179 | //add query filters |
180 | 180 | EEH_Event_Query::add_query_filters(); |
181 | 181 | // set params that will get used by the filters |
182 | - EEH_Event_Query::set_query_params( $this->_month, $this->_category_slug, $this->_show_expired, $this->_order_by, $this->_sort ); |
|
182 | + EEH_Event_Query::set_query_params($this->_month, $this->_category_slug, $this->_show_expired, $this->_order_by, $this->_sort); |
|
183 | 183 | // first off, let's remove any filters from previous queries |
184 | - remove_filter( 'FHEE__archive_espresso_events_template__upcoming_events_h1', array( $this, 'event_list_title' )); |
|
185 | - remove_all_filters( 'FHEE__content_espresso_events__event_class' ); |
|
184 | + remove_filter('FHEE__archive_espresso_events_template__upcoming_events_h1', array($this, 'event_list_title')); |
|
185 | + remove_all_filters('FHEE__content_espresso_events__event_class'); |
|
186 | 186 | // Event List Title ? |
187 | - add_filter( 'FHEE__archive_espresso_events_template__upcoming_events_h1', array( $this, 'event_list_title' ), 10, 1 ); |
|
187 | + add_filter('FHEE__archive_espresso_events_template__upcoming_events_h1', array($this, 'event_list_title'), 10, 1); |
|
188 | 188 | // add the css class |
189 | - add_filter( 'FHEE__content_espresso_events__event_class', array( $this, 'event_list_css' ), 10, 1 ); |
|
189 | + add_filter('FHEE__content_espresso_events__event_class', array($this, 'event_list_css'), 10, 1); |
|
190 | 190 | // the current "page" we are viewing |
191 | - $paged = max( 1, get_query_var( 'paged' )); |
|
191 | + $paged = max(1, get_query_var('paged')); |
|
192 | 192 | // Force these args |
193 | - $args = array_merge( $args, array( |
|
193 | + $args = array_merge($args, array( |
|
194 | 194 | 'post_type' => 'espresso_events', |
195 | 195 | 'posts_per_page' => $this->_limit, |
196 | 196 | 'update_post_term_cache' => FALSE, |
197 | 197 | 'update_post_meta_cache' => FALSE, |
198 | 198 | 'paged' => $paged, |
199 | - 'offset' => ( $paged - 1 ) * $this->_limit |
|
199 | + 'offset' => ($paged - 1) * $this->_limit |
|
200 | 200 | )); |
201 | 201 | |
202 | 202 | // run the query |
203 | - parent::__construct( $args ); |
|
203 | + parent::__construct($args); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | |
@@ -213,8 +213,8 @@ discard block |
||
213 | 213 | * @param string $event_list_title |
214 | 214 | * @return string |
215 | 215 | */ |
216 | - public function event_list_title( $event_list_title = '' ) { |
|
217 | - if ( ! empty( $this->_title )) { |
|
216 | + public function event_list_title($event_list_title = '') { |
|
217 | + if ( ! empty($this->_title)) { |
|
218 | 218 | return $this->_title; |
219 | 219 | } |
220 | 220 | return $event_list_title; |
@@ -229,11 +229,11 @@ discard block |
||
229 | 229 | * @param string $event_list_css |
230 | 230 | * @return array |
231 | 231 | */ |
232 | - public function event_list_css( $event_list_css = '' ) { |
|
233 | - $event_list_css .= ! empty( $event_list_css ) ? ' ' : ''; |
|
234 | - $event_list_css .= ! empty( $this->_css_class ) ? $this->_css_class : ''; |
|
235 | - $event_list_css .= ! empty( $event_list_css ) ? ' ' : ''; |
|
236 | - $event_list_css .= ! empty( $this->_category_slug ) ? $this->_category_slug : ''; |
|
232 | + public function event_list_css($event_list_css = '') { |
|
233 | + $event_list_css .= ! empty($event_list_css) ? ' ' : ''; |
|
234 | + $event_list_css .= ! empty($this->_css_class) ? $this->_css_class : ''; |
|
235 | + $event_list_css .= ! empty($event_list_css) ? ' ' : ''; |
|
236 | + $event_list_css .= ! empty($this->_category_slug) ? $this->_category_slug : ''; |
|
237 | 237 | return $event_list_css; |
238 | 238 | } |
239 | 239 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -117,11 +117,11 @@ discard block |
||
117 | 117 | //Copied from _whats_new() |
118 | 118 | $steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ? $this->_get_started_steps() : FALSE; |
119 | 119 | $steps = $steps !== FALSE ? $steps : ''; |
120 | - $this->_admin_page_title = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
|
120 | + $this->_admin_page_title = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); |
|
121 | 121 | $settings_message = $steps; |
122 | - $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso' ) . $settings_message; |
|
123 | - $template = EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php'; |
|
124 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
122 | + $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso').$settings_message; |
|
123 | + $template = EE_ABOUT_TEMPLATE_PATH.'ee4-overview.template.php'; |
|
124 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
125 | 125 | $this->display_about_admin_page(); |
126 | 126 | } |
127 | 127 | |
@@ -129,36 +129,36 @@ discard block |
||
129 | 129 | |
130 | 130 | protected function _get_started_steps() { |
131 | 131 | $steps = '<h3>'.__('Getting Started').'</h3>'; |
132 | - $step_one = '<p>'.sprintf( __('%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_general_settings">', '</a>') .'</strong></p>'; |
|
133 | - $step_two = '<p>'.sprintf( __('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_payment_settings">', '</a>') .'</strong></p>'; |
|
134 | - $step_three = '<p>'.sprintf( __('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_events&action=create_new">', '</a>') .'</strong></p>'; |
|
132 | + $step_one = '<p>'.sprintf(__('%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_general_settings">', '</a>').'</strong></p>'; |
|
133 | + $step_two = '<p>'.sprintf(__('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_payment_settings">', '</a>').'</strong></p>'; |
|
134 | + $step_three = '<p>'.sprintf(__('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_events&action=create_new">', '</a>').'</strong></p>'; |
|
135 | 135 | |
136 | 136 | //done? |
137 | 137 | $done_step_one = EE_Registry::instance()->CFG->organization->address_1 == '123 Onna Road' ? FALSE : TRUE; |
138 | - $active_invoice_pm = EEM_Payment_Method::instance()->get_one_active( EEM_Payment_Method::scope_cart, array( array( 'PMD_type' => 'Invoice' ) ) ); |
|
139 | - $active_pms_count = EEM_Payment_Method::instance()->count_active( EEM_Payment_Method::scope_cart ); |
|
138 | + $active_invoice_pm = EEM_Payment_Method::instance()->get_one_active(EEM_Payment_Method::scope_cart, array(array('PMD_type' => 'Invoice'))); |
|
139 | + $active_pms_count = EEM_Payment_Method::instance()->count_active(EEM_Payment_Method::scope_cart); |
|
140 | 140 | //done step two if a non-invoice paymetn method is active; or there is more than one PM active, or |
141 | 141 | //if only teh invoice is active but it's clearly been updated |
142 | - $done_step_two = $active_pms_count > 1 || |
|
143 | - ( $active_pms_count === 1 && ! $active_invoice_pm ) || |
|
144 | - ( $active_invoice_pm instanceof EE_Payment_Method && ( |
|
145 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_name', TRUE, '' ) || |
|
146 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_email', TRUE, '' ) || |
|
147 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_tax_number', TRUE, '' ) || |
|
148 | - $active_invoice_pm->get_extra_meta( 'pdf_payee_address', TRUE, '' ) || |
|
149 | - $active_invoice_pm->get_extra_meta( 'page_extra_info', TRUE, '' ) |
|
142 | + $done_step_two = $active_pms_count > 1 || |
|
143 | + ($active_pms_count === 1 && ! $active_invoice_pm) || |
|
144 | + ($active_invoice_pm instanceof EE_Payment_Method && ( |
|
145 | + $active_invoice_pm->get_extra_meta('pdf_payee_name', TRUE, '') || |
|
146 | + $active_invoice_pm->get_extra_meta('pdf_payee_email', TRUE, '') || |
|
147 | + $active_invoice_pm->get_extra_meta('pdf_payee_tax_number', TRUE, '') || |
|
148 | + $active_invoice_pm->get_extra_meta('pdf_payee_address', TRUE, '') || |
|
149 | + $active_invoice_pm->get_extra_meta('page_extra_info', TRUE, '') |
|
150 | 150 | ) |
151 | 151 | ); |
152 | 152 | $done_step_three = EE_Registry::instance()->load_model('Event')->count() > 0 ? TRUE : FALSE; |
153 | 153 | |
154 | 154 | //if ALL steps are done, let's just return FALSE so we don't display anything |
155 | - if ( $done_step_one && $done_step_two && $done_step_three ) |
|
155 | + if ($done_step_one && $done_step_two && $done_step_three) |
|
156 | 156 | return FALSE; |
157 | 157 | |
158 | 158 | //now let's put it together |
159 | - $steps .= sprintf( '%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>': '' ); |
|
160 | - $steps .= sprintf( '%s' . $step_two . '%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>': '' ); |
|
161 | - $steps .= sprintf( '%s' . $step_three . '%s', $done_step_three ? '<strike>' : '', $done_step_three ? '</strike>': '' ); |
|
159 | + $steps .= sprintf('%s'.$step_one.'%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>' : ''); |
|
160 | + $steps .= sprintf('%s'.$step_two.'%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>' : ''); |
|
161 | + $steps .= sprintf('%s'.$step_three.'%s', $done_step_three ? '<strike>' : '', $done_step_three ? '</strike>' : ''); |
|
162 | 162 | |
163 | 163 | return $steps; |
164 | 164 | } |
@@ -166,10 +166,10 @@ discard block |
||
166 | 166 | |
167 | 167 | |
168 | 168 | protected function _credits() { |
169 | - $this->_template_args['admin_page_title'] = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
|
169 | + $this->_template_args['admin_page_title'] = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); |
|
170 | 170 | $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso Decaf, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso'); |
171 | - $template = EE_ABOUT_TEMPLATE_PATH . 'credits.template.php'; |
|
172 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
|
171 | + $template = EE_ABOUT_TEMPLATE_PATH.'credits.template.php'; |
|
172 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE); |
|
173 | 173 | $this->display_about_admin_page(); |
174 | 174 | } |
175 | 175 |
@@ -1,6 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | +} |
|
4 | 5 | |
5 | 6 | /** |
6 | 7 | * |
@@ -152,8 +153,9 @@ discard block |
||
152 | 153 | $done_step_three = EE_Registry::instance()->load_model('Event')->count() > 0 ? TRUE : FALSE; |
153 | 154 | |
154 | 155 | //if ALL steps are done, let's just return FALSE so we don't display anything |
155 | - if ( $done_step_one && $done_step_two && $done_step_three ) |
|
156 | - return FALSE; |
|
156 | + if ( $done_step_one && $done_step_two && $done_step_three ) { |
|
157 | + return FALSE; |
|
158 | + } |
|
157 | 159 | |
158 | 160 | //now let's put it together |
159 | 161 | $steps .= sprintf( '%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>': '' ); |
@@ -30,12 +30,12 @@ discard block |
||
30 | 30 | |
31 | 31 | public function __construct() { |
32 | 32 | //define some events related constants |
33 | - define( 'EE_ABOUT_PG_SLUG', 'espresso_about' ); |
|
34 | - define( 'EE_ABOUT_LABEL', __('About', 'event_espresso')); |
|
35 | - define( 'EE_ABOUT_ADMIN', EE_ADMIN_PAGES . 'about' . DS ); |
|
36 | - define( 'EE_ABOUT_ADMIN_URL', admin_url( 'admin.php?page=' . EE_ABOUT_PG_SLUG )); |
|
37 | - define( 'EE_ABOUT_TEMPLATE_PATH', EE_ABOUT_ADMIN . 'templates' . DS ); |
|
38 | - define( 'EE_ABOUT_ASSETS_URL', EE_ADMIN_PAGES_URL . 'about/assets/' ); |
|
33 | + define('EE_ABOUT_PG_SLUG', 'espresso_about'); |
|
34 | + define('EE_ABOUT_LABEL', __('About', 'event_espresso')); |
|
35 | + define('EE_ABOUT_ADMIN', EE_ADMIN_PAGES.'about'.DS); |
|
36 | + define('EE_ABOUT_ADMIN_URL', admin_url('admin.php?page='.EE_ABOUT_PG_SLUG)); |
|
37 | + define('EE_ABOUT_TEMPLATE_PATH', EE_ABOUT_ADMIN.'templates'.DS); |
|
38 | + define('EE_ABOUT_ASSETS_URL', EE_ADMIN_PAGES_URL.'about/assets/'); |
|
39 | 39 | parent::__construct(); |
40 | 40 | } |
41 | 41 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | protected function _set_menu_map() { |
47 | - $this->_menu_map = new EE_Admin_Page_Sub_Menu( array( |
|
47 | + $this->_menu_map = new EE_Admin_Page_Sub_Menu(array( |
|
48 | 48 | 'menu_group' => 'extras', |
49 | 49 | 'menu_order' => 40, |
50 | 50 | 'show_on_menu' => EE_Admin_Page_Menu_Map::BLOG_AND_NETWORK_ADMIN, |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * Event Espresso |
4 | 6 | * |
@@ -1,18 +1,18 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
2 | 2 | /** |
3 | - * Event Espresso |
|
4 | - * |
|
5 | - * Event Registration and Management Plugin for WordPress |
|
6 | - * |
|
7 | - * @ package Event Espresso |
|
8 | - * @ author Seth Shoultes |
|
9 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | - * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
11 | - * @ link {@link http://www.eventespresso.com} |
|
12 | - * @ since 4.0 |
|
13 | - * |
|
14 | - * ------------------------------------------------------------------------ |
|
15 | - */ |
|
3 | + * Event Espresso |
|
4 | + * |
|
5 | + * Event Registration and Management Plugin for WordPress |
|
6 | + * |
|
7 | + * @ package Event Espresso |
|
8 | + * @ author Seth Shoultes |
|
9 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | + * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
11 | + * @ link {@link http://www.eventespresso.com} |
|
12 | + * @ since 4.0 |
|
13 | + * |
|
14 | + * ------------------------------------------------------------------------ |
|
15 | + */ |
|
16 | 16 | |
17 | 17 | /** |
18 | 18 | * EE_Admin_Page_Init |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | <ul class="wp-people-group" id="ee-people-group-owners"> |
4 | 4 | <li class="wp-person" id="ee-person-sshoultes"> |
5 | 5 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
6 | - <?php echo esp_gravatar_image( '[email protected]', 'Seth Shoultes' ); ?> |
|
6 | + <?php echo esp_gravatar_image('[email protected]', 'Seth Shoultes'); ?> |
|
7 | 7 | </a> |
8 | 8 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
9 | 9 | Seth Shoultes |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | </li> |
13 | 13 | <li class="wp-person" id="ee-person-gkoyle"> |
14 | 14 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
15 | - <?php echo esp_gravatar_image( '[email protected]', 'Garth Koyle' ); ?> |
|
15 | + <?php echo esp_gravatar_image('[email protected]', 'Garth Koyle'); ?> |
|
16 | 16 | </a> |
17 | 17 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
18 | 18 | Garth Koyle |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | <ul class="wp-people-group" id="ee-people-group-core-developers"> |
25 | 25 | <li class="wp-person" id="ee-person-bchristensen"> |
26 | 26 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
27 | - <?php echo esp_gravatar_image( '[email protected]', 'Brent Christensen' ); ?> |
|
27 | + <?php echo esp_gravatar_image('[email protected]', 'Brent Christensen'); ?> |
|
28 | 28 | </a> |
29 | 29 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
30 | 30 | Brent Christensen |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | </li> |
34 | 34 | <li class="wp-person" id="ee-person-dethier"> |
35 | 35 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
36 | - <?php echo esp_gravatar_image( '[email protected]', 'Darren Ethier' ); ?> |
|
36 | + <?php echo esp_gravatar_image('[email protected]', 'Darren Ethier'); ?> |
|
37 | 37 | </a> |
38 | 38 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
39 | 39 | Darren Ethier |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | </li> |
43 | 43 | <li class="wp-person" id="ee-person-mnelson"> |
44 | 44 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
45 | - <?php echo esp_gravatar_image( '[email protected]', 'Michael Nelson' ); ?> |
|
45 | + <?php echo esp_gravatar_image('[email protected]', 'Michael Nelson'); ?> |
|
46 | 46 | </a> |
47 | 47 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
48 | 48 | Michael Nelson |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | </li> |
52 | 52 | <li class="wp-person" id="ee-person-nkolivoshka"> |
53 | 53 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
54 | - <?php echo esp_gravatar_image( '[email protected]', 'Nazar Kolivoshka' ); ?> |
|
54 | + <?php echo esp_gravatar_image('[email protected]', 'Nazar Kolivoshka'); ?> |
|
55 | 55 | </a> |
56 | 56 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
57 | 57 | Nazar Kolivoshka |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | <ul class="wp-people-group" id="ee-people-group-support-staff"> |
64 | 64 | <li class="wp-person" id="ee-person-jfeck"> |
65 | 65 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
66 | - <?php echo esp_gravatar_image( '[email protected]', 'Josh Feck' ); ?> |
|
66 | + <?php echo esp_gravatar_image('[email protected]', 'Josh Feck'); ?> |
|
67 | 67 | </a> |
68 | 68 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
69 | 69 | Josh Feck |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | </li> |
72 | 72 | <li class="wp-person" id="ee-person-drobinson"> |
73 | 73 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
74 | - <?php echo esp_gravatar_image( '[email protected]', 'Dean Robinson' ); ?> |
|
74 | + <?php echo esp_gravatar_image('[email protected]', 'Dean Robinson'); ?> |
|
75 | 75 | </a> |
76 | 76 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
77 | 77 | Dean Robinson |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | </li> |
80 | 80 | <li class="wp-person" id="ee-person-jwilson"> |
81 | 81 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
82 | - <?php echo esp_gravatar_image( '[email protected]', 'Jonathan Wilson' ); ?> |
|
82 | + <?php echo esp_gravatar_image('[email protected]', 'Jonathan Wilson'); ?> |
|
83 | 83 | </a> |
84 | 84 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
85 | 85 | Jonathan Wilson |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | </li> |
88 | 88 | <li class="wp-person" id="ee-person-twarwick"> |
89 | 89 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
90 | - <?php echo esp_gravatar_image( '[email protected]', 'Tony Warwick' ); ?> |
|
90 | + <?php echo esp_gravatar_image('[email protected]', 'Tony Warwick'); ?> |
|
91 | 91 | </a> |
92 | 92 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
93 | 93 | Tony Warwick |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | </li> |
96 | 96 | <li class="wp-person" id="ee-person-lcaum"> |
97 | 97 | <a href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
98 | - <?php echo esp_gravatar_image( '[email protected]', 'Lorenzo Caum' ); ?> |
|
98 | + <?php echo esp_gravatar_image('[email protected]', 'Lorenzo Caum'); ?> |
|
99 | 99 | </a> |
100 | 100 | <a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>"> |
101 | 101 | Lorenzo Caum |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | </ul> |
106 | 106 | <h4 class="wp-people-group"><?php _e('Contributor Recognition', 'event_espresso'); ?></h4> |
107 | 107 | <p class="description"> |
108 | - <?php printf( __('For every major release we want to recognize the people who contributed to the release via a GitHub pull request. Want to see your name listed here? %sWhen you submit a pull request that gets included in a major release%s, we\'ll add your name here linked to your GitHub profile.', 'event_espresso'), '<a href="https://github.com/eventespresso/event-espresso-core" title="Contribute to Event Espresso by making a pull request via GitHub">', '</a>' ); ?> |
|
108 | + <?php printf(__('For every major release we want to recognize the people who contributed to the release via a GitHub pull request. Want to see your name listed here? %sWhen you submit a pull request that gets included in a major release%s, we\'ll add your name here linked to your GitHub profile.', 'event_espresso'), '<a href="https://github.com/eventespresso/event-espresso-core" title="Contribute to Event Espresso by making a pull request via GitHub">', '</a>'); ?> |
|
109 | 109 | </p> |
110 | 110 | <p class="wp-credits-list"> |
111 | 111 | <ul> |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | </p> |
120 | 120 | <h4 class="wp-people-group"><?php _e('External Libraries', 'event_espresso'); ?></h4> |
121 | 121 | <p class="description"> |
122 | - <?php printf( __('Along with the libraries %sincluded with WordPress%s, Event Espresso utilizes the following third party libraries:', 'event_espresso'), '<a href="credits.php">', '</a>' ); ?> |
|
122 | + <?php printf(__('Along with the libraries %sincluded with WordPress%s, Event Espresso utilizes the following third party libraries:', 'event_espresso'), '<a href="credits.php">', '</a>'); ?> |
|
123 | 123 | </p> |
124 | 124 | <p class="wp-credits-list"> |
125 | 125 | <a href="http://josscrowcroft.github.io/accounting.js/"><?php _e('accounting.js', 'event_espresso'); ?></a>, |
@@ -135,10 +135,10 @@ discard block |
||
135 | 135 | |
136 | 136 | <?php |
137 | 137 | function esp_gravatar_profile($email) { |
138 | - echo 'http://www.gravatar.com/' . md5($email); |
|
138 | + echo 'http://www.gravatar.com/'.md5($email); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | function esp_gravatar_image($email, $name) { |
142 | - echo '<img src="http://0.gravatar.com/avatar/' . md5($email) . '?s=60" class="gravatar" alt="' . $name . '"/>'; |
|
142 | + echo '<img src="http://0.gravatar.com/avatar/'.md5($email).'?s=60" class="gravatar" alt="'.$name.'"/>'; |
|
143 | 143 | } |
144 | 144 | ?> |