Completed
Pull Request — master (#1356)
by
unknown
17:27 queued 46s
created
public/template_tags.php 1 patch
Spacing   +291 added lines, -291 removed lines patch added patch discarded remove patch
@@ -14,12 +14,12 @@  discard block
 block discarded – undo
14 14
  * @param int | \EE_Event $event
15 15
  * @return bool
16 16
  */
17
-function is_espresso_event( $event = NULL ) {
18
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
17
+function is_espresso_event($event = NULL) {
18
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
19 19
 		// extract EE_Event object from passed param regardless of what it is (within reason of course)
20
-		$event = EEH_Event_View::get_event( $event );
20
+		$event = EEH_Event_View::get_event($event);
21 21
 		// do we have a valid event ?
22
-		return $event instanceof EE_Event  ? TRUE : FALSE;
22
+		return $event instanceof EE_Event ? TRUE : FALSE;
23 23
 	}
24 24
 	return FALSE;
25 25
 }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  * @return bool
32 32
  */
33 33
 function is_espresso_event_single() {
34
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
34
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
35 35
 		global $wp_query;
36 36
 		// return conditionals set by CPTs
37 37
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_single : FALSE;
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
  * @return bool
47 47
  */
48 48
 function is_espresso_event_archive() {
49
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
49
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
50 50
 		global $wp_query;
51 51
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_archive : FALSE;
52 52
 	}
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
  * @return bool
61 61
  */
62 62
 function is_espresso_event_taxonomy() {
63
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
63
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
64 64
 		global $wp_query;
65 65
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_taxonomy : FALSE;
66 66
 	}
@@ -74,10 +74,10 @@  discard block
 block discarded – undo
74 74
  * @param int | \EE_Venue $venue
75 75
  * @return bool
76 76
  */
77
-function is_espresso_venue( $venue = NULL ) {
78
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
77
+function is_espresso_venue($venue = NULL) {
78
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
79 79
 		// extract EE_Venue object from passed param regardless of what it is (within reason of course)
80
-		$venue = EEH_Venue_View::get_venue( $venue, FALSE );
80
+		$venue = EEH_Venue_View::get_venue($venue, FALSE);
81 81
 		// do we have a valid event ?
82 82
 		return $venue instanceof EE_Venue ? TRUE : FALSE;
83 83
 	}
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
  * @return bool
92 92
  */
93 93
 function is_espresso_venue_single() {
94
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
94
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
95 95
 		global $wp_query;
96 96
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_single : FALSE;
97 97
 	}
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
  * @return bool
106 106
  */
107 107
 function is_espresso_venue_archive() {
108
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
108
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
109 109
 		global $wp_query;
110 110
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_archive : FALSE;
111 111
 	}
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
  * @return bool
120 120
  */
121 121
 function is_espresso_venue_taxonomy() {
122
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
122
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
123 123
 		global $wp_query;
124 124
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_taxonomy : FALSE;
125 125
 	}
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
  * @param $conditional_tag
134 134
  * @return bool
135 135
  */
136
-function can_use_espresso_conditionals( $conditional_tag ) {
137
-	if ( ! did_action( 'AHEE__EE_System__initialize' )) {
136
+function can_use_espresso_conditionals($conditional_tag) {
137
+	if ( ! did_action('AHEE__EE_System__initialize')) {
138 138
 		EE_Error::doing_it_wrong(
139 139
 			__FUNCTION__,
140 140
 			sprintf(
141
-				esc_html__( 'The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.','event_espresso'),
141
+				esc_html__('The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.', 'event_espresso'),
142 142
 				$conditional_tag
143 143
 			),
144 144
 			'4.4.0'
@@ -153,13 +153,13 @@  discard block
 block discarded – undo
153 153
 
154 154
 /*************************** Event Queries ***************************/
155 155
 
156
-if ( ! function_exists( 'espresso_get_events' )) {
156
+if ( ! function_exists('espresso_get_events')) {
157 157
 	/**
158 158
 	 * 	espresso_get_events
159 159
 	 * @param array $params
160 160
 	 * @return array
161 161
 	 */
162
-	function espresso_get_events( $params = array() ) {
162
+	function espresso_get_events($params = array()) {
163 163
 		//set default params
164 164
 		$default_espresso_events_params = array(
165 165
 			'limit' => 10,
@@ -170,18 +170,18 @@  discard block
 block discarded – undo
170 170
 			'sort' => 'ASC'
171 171
 		);
172 172
 		// allow the defaults to be filtered
173
-		$default_espresso_events_params = apply_filters( 'espresso_get_events__default_espresso_events_params', $default_espresso_events_params );
173
+		$default_espresso_events_params = apply_filters('espresso_get_events__default_espresso_events_params', $default_espresso_events_params);
174 174
 		// grab params and merge with defaults, then extract
175
-		$params = array_merge( $default_espresso_events_params, $params );
175
+		$params = array_merge($default_espresso_events_params, $params);
176 176
 		// run the query
177
-		$events_query = new EventEspresso\core\domain\services\wp_queries\EventListQuery( $params );
177
+		$events_query = new EventEspresso\core\domain\services\wp_queries\EventListQuery($params);
178 178
 		// assign results to a variable so we can return it
179 179
 		$events = $events_query->have_posts() ? $events_query->posts : array();
180 180
 		// but first reset the query and postdata
181 181
 		wp_reset_query();
182 182
 		wp_reset_postdata();
183 183
 		EED_Events_Archive::remove_all_events_archive_filters();
184
-		unset( $events_query );
184
+		unset($events_query);
185 185
 		return $events;
186 186
 	}
187 187
 }
@@ -195,33 +195,33 @@  discard block
 block discarded – undo
195 195
  * espresso_load_ticket_selector
196 196
  */
197 197
 function espresso_load_ticket_selector() {
198
-	EE_Registry::instance()->load_file( EE_MODULES . 'ticket_selector', 'EED_Ticket_Selector', 'module' );
198
+	EE_Registry::instance()->load_file(EE_MODULES.'ticket_selector', 'EED_Ticket_Selector', 'module');
199 199
 }
200 200
 
201
-if ( ! function_exists( 'espresso_ticket_selector' )) {
201
+if ( ! function_exists('espresso_ticket_selector')) {
202 202
 	/**
203 203
 	 * espresso_ticket_selector
204 204
 	 * @param null $event
205 205
 	 */
206
-	function espresso_ticket_selector( $event = NULL ) {
207
-		if (  ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) {
206
+	function espresso_ticket_selector($event = NULL) {
207
+		if ( ! apply_filters('FHEE_disable_espresso_ticket_selector', FALSE)) {
208 208
 			espresso_load_ticket_selector();
209 209
             \EED_Ticket_Selector::set_definitions();
210
-			echo EED_Ticket_Selector::display_ticket_selector( $event );
210
+			echo EED_Ticket_Selector::display_ticket_selector($event);
211 211
 		}
212 212
 	}
213 213
 }
214 214
 
215 215
 
216
-	if ( ! function_exists( 'espresso_view_details_btn' )) {
216
+	if ( ! function_exists('espresso_view_details_btn')) {
217 217
 	/**
218 218
 	 * espresso_view_details_btn
219 219
 	 * @param null $event
220 220
 	 */
221
-	function espresso_view_details_btn( $event = NULL ) {
222
-		if (  ! apply_filters( 'FHEE_disable_espresso_view_details_btn', FALSE ) ) {
221
+	function espresso_view_details_btn($event = NULL) {
222
+		if ( ! apply_filters('FHEE_disable_espresso_view_details_btn', FALSE)) {
223 223
 			espresso_load_ticket_selector();
224
-			echo EED_Ticket_Selector::display_ticket_selector( $event, TRUE );
224
+			echo EED_Ticket_Selector::display_ticket_selector($event, TRUE);
225 225
 		}
226 226
 	}
227 227
 }
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
 
232 232
 /*************************** EEH_Event_View ***************************/
233 233
 
234
-if ( ! function_exists( 'espresso_load_event_list_assets' )) {
234
+if ( ! function_exists('espresso_load_event_list_assets')) {
235 235
 	/**
236 236
 	 * espresso_load_event_list_assets
237 237
 	 * ensures that event list styles and scripts are loaded
@@ -240,13 +240,13 @@  discard block
 block discarded – undo
240 240
 	 */
241 241
 	function espresso_load_event_list_assets() {
242 242
 		$event_list = EED_Events_Archive::instance();
243
-		add_action( 'AHEE__EE_System__initialize_last', array( $event_list, 'load_event_list_assets' ), 10 );
244
-		add_filter( 'FHEE_enable_default_espresso_css', '__return_true' );
243
+		add_action('AHEE__EE_System__initialize_last', array($event_list, 'load_event_list_assets'), 10);
244
+		add_filter('FHEE_enable_default_espresso_css', '__return_true');
245 245
 	}
246 246
 }
247 247
 
248 248
 
249
-if ( ! function_exists( 'espresso_event_reg_button' )) {
249
+if ( ! function_exists('espresso_event_reg_button')) {
250 250
 	/**
251 251
 	 * espresso_event_reg_button
252 252
 	 * returns the "Register Now" button if event is active,
@@ -258,13 +258,13 @@  discard block
 block discarded – undo
258 258
 	 * @param bool $EVT_ID
259 259
 	 * @return string
260 260
 	 */
261
-	function espresso_event_reg_button( $btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE ) {
262
-		$event = EEH_Event_View::get_event( $EVT_ID );
263
-		if ( ! $event instanceof EE_Event ) {
261
+	function espresso_event_reg_button($btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE) {
262
+		$event = EEH_Event_View::get_event($EVT_ID);
263
+		if ( ! $event instanceof EE_Event) {
264 264
 			return;
265 265
 		}
266 266
 		$event_status = $event->get_active_status();
267
-		switch ( $event_status ) {
267
+		switch ($event_status) {
268 268
 			case EE_Datetime::sold_out :
269 269
 				$btn_text = esc_html__('Sold Out', 'event_espresso');
270 270
 				$class = 'ee-pink';
@@ -284,15 +284,15 @@  discard block
 block discarded – undo
284 284
 			case EE_Datetime::upcoming :
285 285
 			case EE_Datetime::active :
286 286
 			default :
287
-				$btn_text =! empty( $btn_text_if_active ) ? $btn_text_if_active : esc_html__( 'Register Now', 'event_espresso' );
287
+				$btn_text = ! empty($btn_text_if_active) ? $btn_text_if_active : esc_html__('Register Now', 'event_espresso');
288 288
 				$class = 'ee-green';
289 289
 		}
290
-		if ( $event_status < 1 && ! empty( $btn_text_if_inactive )) {
290
+		if ($event_status < 1 && ! empty($btn_text_if_inactive)) {
291 291
 			$btn_text = $btn_text_if_inactive;
292 292
 			$class = 'ee-grey';
293 293
 		}
294 294
 		?>
295
-		<a class="ee-button ee-register-button <?php echo $class; ?>" href="<?php espresso_event_link_url( $EVT_ID ); ?>"<?php echo \EED_Events_Archive::link_target(); ?>>
295
+		<a class="ee-button ee-register-button <?php echo $class; ?>" href="<?php espresso_event_link_url($EVT_ID); ?>"<?php echo \EED_Events_Archive::link_target(); ?>>
296 296
 			<?php echo $btn_text; ?>
297 297
 		</a>
298 298
 	<?php
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 
302 302
 
303 303
 
304
-if ( ! function_exists( 'espresso_display_ticket_selector' )) {
304
+if ( ! function_exists('espresso_display_ticket_selector')) {
305 305
 	/**
306 306
 	 * espresso_display_ticket_selector
307 307
 	 * whether or not to display the Ticket Selector for an event
@@ -309,14 +309,14 @@  discard block
 block discarded – undo
309 309
 	 * @param bool $EVT_ID
310 310
 	 * @return boolean
311 311
 	 */
312
-	function espresso_display_ticket_selector( $EVT_ID = FALSE ) {
313
-		return EEH_Event_View::display_ticket_selector( $EVT_ID );
312
+	function espresso_display_ticket_selector($EVT_ID = FALSE) {
313
+		return EEH_Event_View::display_ticket_selector($EVT_ID);
314 314
 	}
315 315
 }
316 316
 
317 317
 
318 318
 
319
-if ( ! function_exists( 'espresso_event_status_banner' )) {
319
+if ( ! function_exists('espresso_event_status_banner')) {
320 320
 	/**
321 321
 	 * espresso_event_status
322 322
 	 * returns a banner showing the event status if it is sold out, expired, or inactive
@@ -324,13 +324,13 @@  discard block
 block discarded – undo
324 324
 	 * @param bool $EVT_ID
325 325
 	 * @return string
326 326
 	 */
327
-	function espresso_event_status_banner( $EVT_ID = FALSE ) {
328
-		return EEH_Event_View::event_status( $EVT_ID );
327
+	function espresso_event_status_banner($EVT_ID = FALSE) {
328
+		return EEH_Event_View::event_status($EVT_ID);
329 329
 	}
330 330
 }
331 331
 
332 332
 
333
-if ( ! function_exists( 'espresso_event_status' )) {
333
+if ( ! function_exists('espresso_event_status')) {
334 334
 	/**
335 335
 	 * espresso_event_status
336 336
 	 * returns the event status if it is sold out, expired, or inactive
@@ -339,13 +339,13 @@  discard block
 block discarded – undo
339 339
 	 * @param bool $echo
340 340
 	 * @return string
341 341
 	 */
342
-	function espresso_event_status( $EVT_ID = 0, $echo = TRUE ) {
343
-		return EEH_Event_View::event_active_status( $EVT_ID, $echo );
342
+	function espresso_event_status($EVT_ID = 0, $echo = TRUE) {
343
+		return EEH_Event_View::event_active_status($EVT_ID, $echo);
344 344
 	}
345 345
 }
346 346
 
347 347
 
348
-if ( ! function_exists( 'espresso_event_categories' )) {
348
+if ( ! function_exists('espresso_event_categories')) {
349 349
 	/**
350 350
 	 * espresso_event_categories
351 351
 	 * returns the terms associated with an event
@@ -355,17 +355,17 @@  discard block
 block discarded – undo
355 355
 	 * @param bool $echo
356 356
 	 * @return string
357 357
 	 */
358
-	function espresso_event_categories( $EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE ) {
359
-		if ( $echo ) {
360
-			echo EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized );
358
+	function espresso_event_categories($EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) {
359
+		if ($echo) {
360
+			echo EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized);
361 361
 			return '';
362 362
 		}
363
-		return EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized );
363
+		return EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized);
364 364
 	}
365 365
 }
366 366
 
367 367
 
368
-if ( ! function_exists( 'espresso_event_tickets_available' )) {
368
+if ( ! function_exists('espresso_event_tickets_available')) {
369 369
 	/**
370 370
 	 * espresso_event_tickets_available
371 371
 	 * returns the ticket types available for purchase for an event
@@ -375,26 +375,26 @@  discard block
 block discarded – undo
375 375
 	 * @param bool $format
376 376
 	 * @return string
377 377
 	 */
378
-	function espresso_event_tickets_available( $EVT_ID = 0, $echo = TRUE, $format = TRUE ) {
379
-		$tickets = EEH_Event_View::event_tickets_available( $EVT_ID );
380
-		if ( is_array( $tickets ) && ! empty( $tickets )) {
378
+	function espresso_event_tickets_available($EVT_ID = 0, $echo = TRUE, $format = TRUE) {
379
+		$tickets = EEH_Event_View::event_tickets_available($EVT_ID);
380
+		if (is_array($tickets) && ! empty($tickets)) {
381 381
 			// if formatting then $html will be a string, else it will be an array of ticket objects
382
-			$html = $format ? '<ul id="ee-event-tickets-ul-' . $EVT_ID . '" class="ee-event-tickets-ul">' : array();
383
-			foreach ( $tickets as $ticket ) {
384
-				if ( $ticket instanceof EE_Ticket ) {
385
-					if ( $format ) {
386
-						$html .= '<li id="ee-event-tickets-li-' . $ticket->ID() . '" class="ee-event-tickets-li">';
387
-						$html .= $ticket->name() . ' ' . EEH_Template::format_currency( $ticket->get_ticket_total_with_taxes() );
382
+			$html = $format ? '<ul id="ee-event-tickets-ul-'.$EVT_ID.'" class="ee-event-tickets-ul">' : array();
383
+			foreach ($tickets as $ticket) {
384
+				if ($ticket instanceof EE_Ticket) {
385
+					if ($format) {
386
+						$html .= '<li id="ee-event-tickets-li-'.$ticket->ID().'" class="ee-event-tickets-li">';
387
+						$html .= $ticket->name().' '.EEH_Template::format_currency($ticket->get_ticket_total_with_taxes());
388 388
 						$html .= '</li>';
389 389
 					} else {
390 390
 						$html[] = $ticket;
391 391
 					}
392 392
 				}
393 393
 			}
394
-			if ( $format ) {
394
+			if ($format) {
395 395
 				$html .= '</ul>';
396 396
 			}
397
-			if ( $echo && $format ) {
397
+			if ($echo && $format) {
398 398
 				echo $html;
399 399
 				return '';
400 400
 			}
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
 	}
405 405
 }
406 406
 
407
-if ( ! function_exists( 'espresso_event_date_obj' )) {
407
+if ( ! function_exists('espresso_event_date_obj')) {
408 408
 	/**
409 409
 	 * espresso_event_date_obj
410 410
 	 * returns the primary date object for an event
@@ -412,13 +412,13 @@  discard block
 block discarded – undo
412 412
 	 * @param bool $EVT_ID
413 413
 	 * @return object
414 414
 	 */
415
-	function espresso_event_date_obj( $EVT_ID = FALSE ) {
416
-		return EEH_Event_View::get_primary_date_obj( $EVT_ID );
415
+	function espresso_event_date_obj($EVT_ID = FALSE) {
416
+		return EEH_Event_View::get_primary_date_obj($EVT_ID);
417 417
 	}
418 418
 }
419 419
 
420 420
 
421
-if ( ! function_exists( 'espresso_event_date' )) {
421
+if ( ! function_exists('espresso_event_date')) {
422 422
 	/**
423 423
 	 * espresso_event_date
424 424
 	 * returns the primary date for an event
@@ -429,22 +429,22 @@  discard block
 block discarded – undo
429 429
 	 * @param bool $echo
430 430
 	 * @return string
431 431
 	 */
432
-	function espresso_event_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
433
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
434
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
435
-		$date_format = apply_filters( 'FHEE__espresso_event_date__date_format', $date_format );
436
-		$time_format = apply_filters( 'FHEE__espresso_event_date__time_format', $time_format );
437
-		if($echo){
438
-			echo EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID );
432
+	function espresso_event_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
433
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
434
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
435
+		$date_format = apply_filters('FHEE__espresso_event_date__date_format', $date_format);
436
+		$time_format = apply_filters('FHEE__espresso_event_date__time_format', $time_format);
437
+		if ($echo) {
438
+			echo EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID);
439 439
 			return '';
440 440
 		}
441
-		return EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID );
441
+		return EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID);
442 442
 
443 443
 	}
444 444
 }
445 445
 
446 446
 
447
-if ( ! function_exists( 'espresso_list_of_event_dates' )) {
447
+if ( ! function_exists('espresso_list_of_event_dates')) {
448 448
 	/**
449 449
 	 * espresso_list_of_event_dates
450 450
 	 * returns a unordered list of dates for an event
@@ -459,40 +459,40 @@  discard block
 block discarded – undo
459 459
 	 * @param null   $limit
460 460
 	 * @return string
461 461
 	 */
462
-	function espresso_list_of_event_dates( $EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL ) {
463
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
464
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
465
-		$date_format = apply_filters( 'FHEE__espresso_list_of_event_dates__date_format', $date_format );
466
-		$time_format = apply_filters( 'FHEE__espresso_list_of_event_dates__time_format', $time_format );
467
-		$datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, $show_expired, FALSE, $limit );
468
-		if ( ! $format ) {
469
-			return apply_filters( 'FHEE__espresso_list_of_event_dates__datetimes', $datetimes );
462
+	function espresso_list_of_event_dates($EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL) {
463
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
464
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
465
+		$date_format = apply_filters('FHEE__espresso_list_of_event_dates__date_format', $date_format);
466
+		$time_format = apply_filters('FHEE__espresso_list_of_event_dates__time_format', $time_format);
467
+		$datetimes = EEH_Event_View::get_all_date_obj($EVT_ID, $show_expired, FALSE, $limit);
468
+		if ( ! $format) {
469
+			return apply_filters('FHEE__espresso_list_of_event_dates__datetimes', $datetimes);
470 470
 		}
471 471
 		//d( $datetimes );
472
-		if ( is_array( $datetimes ) && ! empty( $datetimes )) {
472
+		if (is_array($datetimes) && ! empty($datetimes)) {
473 473
 			global $post;
474
-			$html = $format ? '<ul id="ee-event-datetimes-ul-' . $post->ID . '" class="ee-event-datetimes-ul ee-clearfix">' : '';
475
-			foreach ( $datetimes as $datetime ) {
476
-				if ( $datetime instanceof EE_Datetime ) {
477
-					$html .= '<li id="ee-event-datetimes-li-' . $datetime->ID();
478
-					$html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-' . $datetime->get_active_status() . '">';
474
+			$html = $format ? '<ul id="ee-event-datetimes-ul-'.$post->ID.'" class="ee-event-datetimes-ul ee-clearfix">' : '';
475
+			foreach ($datetimes as $datetime) {
476
+				if ($datetime instanceof EE_Datetime) {
477
+					$html .= '<li id="ee-event-datetimes-li-'.$datetime->ID();
478
+					$html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-'.$datetime->get_active_status().'">';
479 479
 					$datetime_name = $datetime->name();
480
-					$html .= ! empty( $datetime_name ) ? '<strong>' . $datetime_name . '</strong>' : '';
481
-					$html .= ! empty( $datetime_name )  && $add_breaks ? '<br />' : '';
482
-					$html .= '<span class="dashicons dashicons-calendar"></span><span class="ee-event-datetimes-li-daterange">' . $datetime->date_range( $date_format ) . '</span><br/>';
483
-					$html .= '<span class="dashicons dashicons-clock"></span><span class="ee-event-datetimes-li-timerange">' . $datetime->time_range( $time_format ) . '</span>';
480
+					$html .= ! empty($datetime_name) ? '<strong>'.$datetime_name.'</strong>' : '';
481
+					$html .= ! empty($datetime_name) && $add_breaks ? '<br />' : '';
482
+					$html .= '<span class="dashicons dashicons-calendar"></span><span class="ee-event-datetimes-li-daterange">'.$datetime->date_range($date_format).'</span><br/>';
483
+					$html .= '<span class="dashicons dashicons-clock"></span><span class="ee-event-datetimes-li-timerange">'.$datetime->time_range($time_format).'</span>';
484 484
 					$datetime_description = $datetime->description();
485
-					$html .= ! empty( $datetime_description )  && $add_breaks ? '<br />' : '';
486
-					$html .= ! empty( $datetime_description ) ? ' - ' . $datetime_description : '';
487
-					$html = apply_filters( 'FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime );
485
+					$html .= ! empty($datetime_description) && $add_breaks ? '<br />' : '';
486
+					$html .= ! empty($datetime_description) ? ' - '.$datetime_description : '';
487
+					$html = apply_filters('FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime);
488 488
 					$html .= '</li>';
489 489
 				}
490 490
 			}
491 491
 			$html .= $format ? '</ul>' : '';
492 492
 		} else {
493
-			$html = $format ?  '<p><span class="dashicons dashicons-marker pink-text"></span>' . esc_html__( 'There are no upcoming dates for this event.', 'event_espresso' ) . '</p><br/>' : '';
493
+			$html = $format ? '<p><span class="dashicons dashicons-marker pink-text"></span>'.esc_html__('There are no upcoming dates for this event.', 'event_espresso').'</p><br/>' : '';
494 494
 		}
495
-		if ( $echo ) {
495
+		if ($echo) {
496 496
 			echo $html;
497 497
 			return '';
498 498
 		}
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
 }
502 502
 
503 503
 
504
-if ( ! function_exists( 'espresso_event_end_date' )) {
504
+if ( ! function_exists('espresso_event_end_date')) {
505 505
 	/**
506 506
 	 * espresso_event_end_date
507 507
 	 * returns the last date for an event
@@ -512,20 +512,20 @@  discard block
 block discarded – undo
512 512
 	 * @param bool   $echo
513 513
 	 * @return string
514 514
 	 */
515
-	function espresso_event_end_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
516
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
517
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
518
-		$date_format = apply_filters( 'FHEE__espresso_event_end_date__date_format', $date_format );
519
-		$time_format = apply_filters( 'FHEE__espresso_event_end_date__time_format', $time_format );
520
-		if($echo){
521
-			echo EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID );
515
+	function espresso_event_end_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
516
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
517
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
518
+		$date_format = apply_filters('FHEE__espresso_event_end_date__date_format', $date_format);
519
+		$time_format = apply_filters('FHEE__espresso_event_end_date__time_format', $time_format);
520
+		if ($echo) {
521
+			echo EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID);
522 522
 			return '';
523 523
 		}
524
-		return EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID );
524
+		return EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID);
525 525
 	}
526 526
 }
527 527
 
528
-if ( ! function_exists( 'espresso_event_date_range' )) {
528
+if ( ! function_exists('espresso_event_date_range')) {
529 529
 	/**
530 530
 	 * espresso_event_date_range
531 531
 	 * returns the first and last chronologically ordered dates for an event (if different)
@@ -538,31 +538,31 @@  discard block
 block discarded – undo
538 538
 	 * @param bool   $echo
539 539
 	 * @return string
540 540
 	 */
541
-	function espresso_event_date_range( $date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
541
+	function espresso_event_date_range($date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
542 542
 		// set and filter date and time formats when a range is returned
543
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
544
-		$date_format = apply_filters( 'FHEE__espresso_event_date_range__date_format', $date_format );
543
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
544
+		$date_format = apply_filters('FHEE__espresso_event_date_range__date_format', $date_format);
545 545
 		// get the start and end date with NO time portion
546
-		$the_event_date = EEH_Event_View::the_earliest_event_date( $date_format, '', $EVT_ID );
547
-		$the_event_end_date = EEH_Event_View::the_latest_event_date( $date_format, '', $EVT_ID );
546
+		$the_event_date = EEH_Event_View::the_earliest_event_date($date_format, '', $EVT_ID);
547
+		$the_event_end_date = EEH_Event_View::the_latest_event_date($date_format, '', $EVT_ID);
548 548
 		// now we can determine if date range spans more than one day
549
-		if ( $the_event_date != $the_event_end_date ) {
550
-			$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
551
-			$time_format = apply_filters( 'FHEE__espresso_event_date_range__time_format', $time_format );
549
+		if ($the_event_date != $the_event_end_date) {
550
+			$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
551
+			$time_format = apply_filters('FHEE__espresso_event_date_range__time_format', $time_format);
552 552
 			$html = sprintf(
553
-				esc_html__( '%1$s - %2$s', 'event_espresso' ),
554
-				EEH_Event_View::the_earliest_event_date( $date_format, $time_format, $EVT_ID ),
555
-				EEH_Event_View::the_latest_event_date( $date_format, $time_format, $EVT_ID )
553
+				esc_html__('%1$s - %2$s', 'event_espresso'),
554
+				EEH_Event_View::the_earliest_event_date($date_format, $time_format, $EVT_ID),
555
+				EEH_Event_View::the_latest_event_date($date_format, $time_format, $EVT_ID)
556 556
 			);
557 557
 		} else {
558 558
 			// set and filter date and time formats when only a single datetime is returned
559
-			$single_date_format = ! empty( $single_date_format ) ? $single_date_format : get_option( 'date_format' );
560
-			$single_time_format = ! empty( $single_time_format ) ? $single_time_format : get_option( 'time_format' );
561
-			$single_date_format = apply_filters( 'FHEE__espresso_event_date_range__single_date_format', $single_date_format );
562
-			$single_time_format = apply_filters( 'FHEE__espresso_event_date_range__single_time_format', $single_time_format );
563
-			$html = EEH_Event_View::the_earliest_event_date( $single_date_format, $single_time_format, $EVT_ID );
559
+			$single_date_format = ! empty($single_date_format) ? $single_date_format : get_option('date_format');
560
+			$single_time_format = ! empty($single_time_format) ? $single_time_format : get_option('time_format');
561
+			$single_date_format = apply_filters('FHEE__espresso_event_date_range__single_date_format', $single_date_format);
562
+			$single_time_format = apply_filters('FHEE__espresso_event_date_range__single_time_format', $single_time_format);
563
+			$html = EEH_Event_View::the_earliest_event_date($single_date_format, $single_time_format, $EVT_ID);
564 564
 		}
565
-		if ( $echo ) {
565
+		if ($echo) {
566 566
 			echo $html;
567 567
 			return '';
568 568
 		}
@@ -570,7 +570,7 @@  discard block
 block discarded – undo
570 570
 	}
571 571
 }
572 572
 
573
-if ( ! function_exists( 'espresso_next_upcoming_datetime_obj' )) {
573
+if ( ! function_exists('espresso_next_upcoming_datetime_obj')) {
574 574
 	/**
575 575
 	 * espresso_next_upcoming_datetime_obj
576 576
 	 * returns the next upcoming datetime object for an event
@@ -578,12 +578,12 @@  discard block
 block discarded – undo
578 578
 	 * @param int $EVT_ID
579 579
 	 * @return EE_Datetime|null
580 580
 	 */
581
-	function espresso_next_upcoming_datetime_obj( $EVT_ID = 0 ) {
582
-		return EEH_Event_View::get_next_upcoming_date_obj( $EVT_ID );
581
+	function espresso_next_upcoming_datetime_obj($EVT_ID = 0) {
582
+		return EEH_Event_View::get_next_upcoming_date_obj($EVT_ID);
583 583
 	}
584 584
 }
585 585
 
586
-if ( ! function_exists( 'espresso_next_upcoming_datetime' ) ) {
586
+if ( ! function_exists('espresso_next_upcoming_datetime')) {
587 587
 	/**
588 588
 	 * espresso_next_upcoming_datetime
589 589
 	 * returns the start date and time for the next upcoming event.
@@ -594,30 +594,30 @@  discard block
 block discarded – undo
594 594
 	 * @param bool $echo
595 595
 	 * @return string
596 596
 	 */
597
-	function espresso_next_upcoming_datetime( $date_format = '', $time_format = '', $EVT_ID = 0, $echo = true ) {
597
+	function espresso_next_upcoming_datetime($date_format = '', $time_format = '', $EVT_ID = 0, $echo = true) {
598 598
 
599
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
600
-		$date_format = apply_filters( 'FHEE__espresso_next_upcoming_datetime__date_format', $date_format );
599
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
600
+		$date_format = apply_filters('FHEE__espresso_next_upcoming_datetime__date_format', $date_format);
601 601
 
602
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
603
-		$time_format = apply_filters( 'FHEE__espresso_next_upcoming_datetime__time_format', $time_format );
602
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
603
+		$time_format = apply_filters('FHEE__espresso_next_upcoming_datetime__time_format', $time_format);
604 604
 
605
-		$datetime_format = trim( $date_format . ' ' . $time_format);
605
+		$datetime_format = trim($date_format.' '.$time_format);
606 606
 
607
-		$datetime = espresso_next_upcoming_datetime_obj( $EVT_ID );
607
+		$datetime = espresso_next_upcoming_datetime_obj($EVT_ID);
608 608
 
609
-		if( ! $datetime instanceof EE_Datetime ) {
609
+		if ( ! $datetime instanceof EE_Datetime) {
610 610
 			return '';
611 611
 		}
612
-		if ( $echo ){
613
-			echo $datetime->get_i18n_datetime( 'DTT_EVT_start', $datetime_format );
612
+		if ($echo) {
613
+			echo $datetime->get_i18n_datetime('DTT_EVT_start', $datetime_format);
614 614
 			return '';
615 615
 		}
616
-		return $datetime->get_i18n_datetime( 'DTT_EVT_start', $datetime_format );
616
+		return $datetime->get_i18n_datetime('DTT_EVT_start', $datetime_format);
617 617
 	}
618 618
 }
619 619
 
620
-if ( ! function_exists( 'espresso_event_date_as_calendar_page' )) {
620
+if ( ! function_exists('espresso_event_date_as_calendar_page')) {
621 621
 	/**
622 622
 	 * espresso_event_date_as_calendar_page
623 623
 	 * returns the primary date for an event, stylized to appear as the page of a calendar
@@ -625,15 +625,15 @@  discard block
 block discarded – undo
625 625
 	 * @param bool $EVT_ID
626 626
 	 * @return string
627 627
 	 */
628
-	function espresso_event_date_as_calendar_page( $EVT_ID = FALSE ) {
629
-		EEH_Event_View::event_date_as_calendar_page( $EVT_ID );
628
+	function espresso_event_date_as_calendar_page($EVT_ID = FALSE) {
629
+		EEH_Event_View::event_date_as_calendar_page($EVT_ID);
630 630
 	}
631 631
 }
632 632
 
633 633
 
634 634
 
635 635
 
636
-if ( ! function_exists( 'espresso_event_link_url' )) {
636
+if ( ! function_exists('espresso_event_link_url')) {
637 637
 	/**
638 638
 	 * espresso_event_link_url
639 639
 	 *
@@ -641,18 +641,18 @@  discard block
 block discarded – undo
641 641
 	 * @param bool $echo
642 642
 	 * @return string
643 643
 	 */
644
-	function espresso_event_link_url( $EVT_ID = 0, $echo = TRUE ) {
645
-		if ( $echo ) {
646
-			echo EEH_Event_View::event_link_url( $EVT_ID );
644
+	function espresso_event_link_url($EVT_ID = 0, $echo = TRUE) {
645
+		if ($echo) {
646
+			echo EEH_Event_View::event_link_url($EVT_ID);
647 647
 			return '';
648 648
 		}
649
-		return EEH_Event_View::event_link_url( $EVT_ID );
649
+		return EEH_Event_View::event_link_url($EVT_ID);
650 650
 	}
651 651
 }
652 652
 
653 653
 
654 654
 
655
-if ( ! function_exists( 'espresso_event_has_content_or_excerpt' )) {
655
+if ( ! function_exists('espresso_event_has_content_or_excerpt')) {
656 656
 	/**
657 657
 	 *    espresso_event_has_content_or_excerpt
658 658
 	 *
@@ -660,15 +660,15 @@  discard block
 block discarded – undo
660 660
 	 * @param bool $EVT_ID
661 661
 	 * @return    boolean
662 662
 	 */
663
-	function espresso_event_has_content_or_excerpt( $EVT_ID = FALSE ) {
664
-		return EEH_Event_View::event_has_content_or_excerpt( $EVT_ID );
663
+	function espresso_event_has_content_or_excerpt($EVT_ID = FALSE) {
664
+		return EEH_Event_View::event_has_content_or_excerpt($EVT_ID);
665 665
 	}
666 666
 }
667 667
 
668 668
 
669 669
 
670 670
 
671
-if ( ! function_exists( 'espresso_event_content_or_excerpt' )) {
671
+if ( ! function_exists('espresso_event_content_or_excerpt')) {
672 672
 	/**
673 673
 	 * espresso_event_content_or_excerpt
674 674
 	 *
@@ -677,18 +677,18 @@  discard block
 block discarded – undo
677 677
 	 * @param bool $echo
678 678
 	 * @return string
679 679
 	 */
680
-	function espresso_event_content_or_excerpt( $num_words = 55, $more = NULL, $echo = TRUE ) {
681
-		if ( $echo ) {
682
-			echo EEH_Event_View::event_content_or_excerpt( $num_words, $more );
680
+	function espresso_event_content_or_excerpt($num_words = 55, $more = NULL, $echo = TRUE) {
681
+		if ($echo) {
682
+			echo EEH_Event_View::event_content_or_excerpt($num_words, $more);
683 683
 			return '';
684 684
 		}
685
-		return EEH_Event_View::event_content_or_excerpt( $num_words, $more );
685
+		return EEH_Event_View::event_content_or_excerpt($num_words, $more);
686 686
 	}
687 687
 }
688 688
 
689 689
 
690 690
 
691
-if ( ! function_exists( 'espresso_event_phone' )) {
691
+if ( ! function_exists('espresso_event_phone')) {
692 692
 	/**
693 693
 	 * espresso_event_phone
694 694
 	 *
@@ -696,18 +696,18 @@  discard block
 block discarded – undo
696 696
 	 * @param bool $echo
697 697
 	 * @return string
698 698
 	 */
699
-	function espresso_event_phone( $EVT_ID = 0, $echo = TRUE ) {
700
-		if ( $echo ) {
701
-			echo EEH_Event_View::event_phone( $EVT_ID );
699
+	function espresso_event_phone($EVT_ID = 0, $echo = TRUE) {
700
+		if ($echo) {
701
+			echo EEH_Event_View::event_phone($EVT_ID);
702 702
 			return '';
703 703
 		}
704
-		return EEH_Event_View::event_phone( $EVT_ID );
704
+		return EEH_Event_View::event_phone($EVT_ID);
705 705
 	}
706 706
 }
707 707
 
708 708
 
709 709
 
710
-if ( ! function_exists( 'espresso_edit_event_link' )) {
710
+if ( ! function_exists('espresso_edit_event_link')) {
711 711
 	/**
712 712
 	 * espresso_edit_event_link
713 713
 	 * returns a link to edit an event
@@ -716,39 +716,39 @@  discard block
 block discarded – undo
716 716
 	 * @param bool $echo
717 717
 	 * @return string
718 718
 	 */
719
-	function espresso_edit_event_link( $EVT_ID = 0, $echo = TRUE ) {
720
-		if ( $echo ) {
721
-			echo EEH_Event_View::edit_event_link( $EVT_ID );
719
+	function espresso_edit_event_link($EVT_ID = 0, $echo = TRUE) {
720
+		if ($echo) {
721
+			echo EEH_Event_View::edit_event_link($EVT_ID);
722 722
 			return '';
723 723
 		}
724
-		return EEH_Event_View::edit_event_link( $EVT_ID );
724
+		return EEH_Event_View::edit_event_link($EVT_ID);
725 725
 	}
726 726
 }
727 727
 
728 728
 
729
-if ( ! function_exists( 'espresso_organization_name' )) {
729
+if ( ! function_exists('espresso_organization_name')) {
730 730
 	/**
731 731
 	 * espresso_organization_name
732 732
 	 * @param bool $echo
733 733
 	 * @return string
734 734
 	 */
735 735
 	function espresso_organization_name($echo = TRUE) {
736
-		if($echo){
737
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'name' );
736
+		if ($echo) {
737
+			echo EE_Registry::instance()->CFG->organization->get_pretty('name');
738 738
 			return '';
739 739
 		}
740
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'name' );
740
+		return EE_Registry::instance()->CFG->organization->get_pretty('name');
741 741
 	}
742 742
 }
743 743
 
744
-if ( ! function_exists( 'espresso_organization_address' )) {
744
+if ( ! function_exists('espresso_organization_address')) {
745 745
 	/**
746 746
 	 * espresso_organization_address
747 747
 	 * @param string $type
748 748
 	 * @return string
749 749
 	 */
750
-	function espresso_organization_address( $type = 'inline' ) {
751
-		if ( EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config ) {
750
+	function espresso_organization_address($type = 'inline') {
751
+		if (EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config) {
752 752
 			$address = new EventEspresso\core\domain\entities\GenericAddress(
753 753
 				EE_Registry::instance()->CFG->organization->address_1,
754 754
 				EE_Registry::instance()->CFG->organization->address_2,
@@ -757,129 +757,129 @@  discard block
 block discarded – undo
757 757
 				EE_Registry::instance()->CFG->organization->zip,
758 758
 				EE_Registry::instance()->CFG->organization->CNT_ISO
759 759
 			);
760
-			return EEH_Address::format( $address, $type );
760
+			return EEH_Address::format($address, $type);
761 761
 		}
762 762
 		return '';
763 763
 	}
764 764
 }
765 765
 
766
-if ( ! function_exists( 'espresso_organization_email' )) {
766
+if ( ! function_exists('espresso_organization_email')) {
767 767
 	/**
768 768
 	 * espresso_organization_email
769 769
 	 * @param bool $echo
770 770
 	 * @return string
771 771
 	 */
772
-	function espresso_organization_email( $echo = TRUE ) {
773
-		if($echo){
774
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'email' );
772
+	function espresso_organization_email($echo = TRUE) {
773
+		if ($echo) {
774
+			echo EE_Registry::instance()->CFG->organization->get_pretty('email');
775 775
 			return '';
776 776
 		}
777
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'email' );
777
+		return EE_Registry::instance()->CFG->organization->get_pretty('email');
778 778
 	}
779 779
 }
780 780
 
781
-if ( ! function_exists( 'espresso_organization_logo_url' )) {
781
+if ( ! function_exists('espresso_organization_logo_url')) {
782 782
 	/**
783 783
 	 * espresso_organization_logo_url
784 784
 	 * @param bool $echo
785 785
 	 * @return string
786 786
 	 */
787
-	function espresso_organization_logo_url( $echo = TRUE ) {
788
-		if($echo){
789
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' );
787
+	function espresso_organization_logo_url($echo = TRUE) {
788
+		if ($echo) {
789
+			echo EE_Registry::instance()->CFG->organization->get_pretty('logo_url');
790 790
 			return '';
791 791
 		}
792
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' );
792
+		return EE_Registry::instance()->CFG->organization->get_pretty('logo_url');
793 793
 	}
794 794
 }
795 795
 
796
-if ( ! function_exists( 'espresso_organization_facebook' )) {
796
+if ( ! function_exists('espresso_organization_facebook')) {
797 797
 	/**
798 798
 	 * espresso_organization_facebook
799 799
 	 * @param bool $echo
800 800
 	 * @return string
801 801
 	 */
802
-	function espresso_organization_facebook( $echo = TRUE ) {
803
-		if($echo){
804
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' );
802
+	function espresso_organization_facebook($echo = TRUE) {
803
+		if ($echo) {
804
+			echo EE_Registry::instance()->CFG->organization->get_pretty('facebook');
805 805
 			return '';
806 806
 		}
807
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' );
807
+		return EE_Registry::instance()->CFG->organization->get_pretty('facebook');
808 808
 	}
809 809
 }
810 810
 
811
-if ( ! function_exists( 'espresso_organization_twitter' )) {
811
+if ( ! function_exists('espresso_organization_twitter')) {
812 812
 	/**
813 813
 	 * espresso_organization_twitter
814 814
 	 * @param bool $echo
815 815
 	 * @return string
816 816
 	 */
817
-	function espresso_organization_twitter( $echo = TRUE ) {
818
-		if($echo){
819
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' );
817
+	function espresso_organization_twitter($echo = TRUE) {
818
+		if ($echo) {
819
+			echo EE_Registry::instance()->CFG->organization->get_pretty('twitter');
820 820
 			return '';
821 821
 		}
822
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' );
822
+		return EE_Registry::instance()->CFG->organization->get_pretty('twitter');
823 823
 	}
824 824
 }
825 825
 
826
-if ( ! function_exists( 'espresso_organization_linkedin' )) {
826
+if ( ! function_exists('espresso_organization_linkedin')) {
827 827
 	/**
828 828
 	 * espresso_organization_linkedin
829 829
 	 * @param bool $echo
830 830
 	 * @return string
831 831
 	 */
832
-	function espresso_organization_linkedin( $echo = TRUE ) {
833
-		if($echo){
834
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' );
832
+	function espresso_organization_linkedin($echo = TRUE) {
833
+		if ($echo) {
834
+			echo EE_Registry::instance()->CFG->organization->get_pretty('linkedin');
835 835
 			return '';
836 836
 		}
837
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' );
837
+		return EE_Registry::instance()->CFG->organization->get_pretty('linkedin');
838 838
 	}
839 839
 }
840 840
 
841
-if ( ! function_exists( 'espresso_organization_pinterest' )) {
841
+if ( ! function_exists('espresso_organization_pinterest')) {
842 842
 	/**
843 843
 	 * espresso_organization_pinterest
844 844
 	 * @param bool $echo
845 845
 	 * @return string
846 846
 	 */
847
-	function espresso_organization_pinterest( $echo = TRUE ) {
848
-		if($echo){
849
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' );
847
+	function espresso_organization_pinterest($echo = TRUE) {
848
+		if ($echo) {
849
+			echo EE_Registry::instance()->CFG->organization->get_pretty('pinterest');
850 850
 			return '';
851 851
 		}
852
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' );
852
+		return EE_Registry::instance()->CFG->organization->get_pretty('pinterest');
853 853
 	}
854 854
 }
855 855
 
856
-if ( ! function_exists( 'espresso_organization_google' )) {
856
+if ( ! function_exists('espresso_organization_google')) {
857 857
 	/**
858 858
 	 * espresso_organization_google
859 859
 	 * @param bool $echo
860 860
 	 * @return string
861 861
 	 */
862
-	function espresso_organization_google( $echo = TRUE ) {
863
-		if($echo){
864
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'google' );
862
+	function espresso_organization_google($echo = TRUE) {
863
+		if ($echo) {
864
+			echo EE_Registry::instance()->CFG->organization->get_pretty('google');
865 865
 			return '';
866 866
 		}
867
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'google' );
867
+		return EE_Registry::instance()->CFG->organization->get_pretty('google');
868 868
 	}
869 869
 }
870 870
 
871
-if ( ! function_exists( 'espresso_organization_instagram' )) {
871
+if ( ! function_exists('espresso_organization_instagram')) {
872 872
 	/**
873 873
 	 * espresso_organization_instagram
874 874
 	 * @param bool $echo
875 875
 	 * @return string
876 876
 	 */
877
-	function espresso_organization_instagram( $echo = TRUE ) {
878
-		if($echo){
879
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' );
877
+	function espresso_organization_instagram($echo = TRUE) {
878
+		if ($echo) {
879
+			echo EE_Registry::instance()->CFG->organization->get_pretty('instagram');
880 880
 			return '';
881 881
 		}
882
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' );
882
+		return EE_Registry::instance()->CFG->organization->get_pretty('instagram');
883 883
 	}
884 884
 }
885 885
 
@@ -889,7 +889,7 @@  discard block
 block discarded – undo
889 889
 
890 890
 
891 891
 
892
-if ( ! function_exists( 'espresso_event_venues' )) {
892
+if ( ! function_exists('espresso_event_venues')) {
893 893
 	/**
894 894
 	 * espresso_event_venues
895 895
 	 *
@@ -903,7 +903,7 @@  discard block
 block discarded – undo
903 903
 
904 904
 
905 905
 
906
-if ( ! function_exists( 'espresso_venue_id' )) {
906
+if ( ! function_exists('espresso_venue_id')) {
907 907
 	/**
908 908
 	 *    espresso_venue_name
909 909
 	 *
@@ -911,15 +911,15 @@  discard block
 block discarded – undo
911 911
 	 * @param     int $EVT_ID
912 912
 	 * @return    string
913 913
 	 */
914
-	function espresso_venue_id( $EVT_ID = 0 ) {
915
-		$venue = EEH_Venue_View::get_venue( $EVT_ID );
914
+	function espresso_venue_id($EVT_ID = 0) {
915
+		$venue = EEH_Venue_View::get_venue($EVT_ID);
916 916
 		return $venue instanceof EE_Venue ? $venue->ID() : 0;
917 917
 	}
918 918
 }
919 919
 
920 920
 
921 921
 
922
-if ( ! function_exists( 'espresso_is_venue_private' ) ) {
922
+if ( ! function_exists('espresso_is_venue_private')) {
923 923
 	/**
924 924
 	 * Return whether a venue is private or not.
925 925
 	 * @see EEH_Venue_View::get_venue() for more info on expected return results.
@@ -928,45 +928,45 @@  discard block
 block discarded – undo
928 928
 	 *
929 929
 	 * @return bool | null
930 930
 	 */
931
-	function espresso_is_venue_private( $VNU_ID = 0 ) {
932
-		return EEH_Venue_View::is_venue_private( $VNU_ID );
931
+	function espresso_is_venue_private($VNU_ID = 0) {
932
+		return EEH_Venue_View::is_venue_private($VNU_ID);
933 933
 	}
934 934
 }
935 935
 
936 936
 
937 937
 
938
-if ( ! function_exists( 'espresso_venue_is_password_protected' ) ) {
938
+if ( ! function_exists('espresso_venue_is_password_protected')) {
939 939
 	/**
940 940
 	 * returns true or false if a venue is password protected or not
941 941
 	 *
942 942
 	 * @param int     $VNU_ID optional, the venue id to check.
943 943
 	 * @return string
944 944
 	 */
945
-	function espresso_venue_is_password_protected( $VNU_ID = 0 ) {
946
-		EE_Registry::instance()->load_helper( 'Venue_View' );
947
-		return EEH_Venue_View::is_venue_password_protected( $VNU_ID );
945
+	function espresso_venue_is_password_protected($VNU_ID = 0) {
946
+		EE_Registry::instance()->load_helper('Venue_View');
947
+		return EEH_Venue_View::is_venue_password_protected($VNU_ID);
948 948
 	}
949 949
 }
950 950
 
951 951
 
952 952
 
953
-if ( ! function_exists( 'espresso_password_protected_venue_form' ) ) {
953
+if ( ! function_exists('espresso_password_protected_venue_form')) {
954 954
 	/**
955 955
 	 * Returns a password form if venue is password protected.
956 956
 	 *
957 957
 	 * @param int     $VNU_ID optional, the venue id to check.
958 958
 	 * @return string
959 959
 	 */
960
-	function espresso_password_protected_venue_form( $VNU_ID = 0 ) {
961
-		EE_Registry::instance()->load_helper( 'Venue_View' );
962
-		return EEH_Venue_View::password_protected_venue_form( $VNU_ID );
960
+	function espresso_password_protected_venue_form($VNU_ID = 0) {
961
+		EE_Registry::instance()->load_helper('Venue_View');
962
+		return EEH_Venue_View::password_protected_venue_form($VNU_ID);
963 963
 	}
964 964
 }
965 965
 
966 966
 
967 967
 
968 968
 
969
-if ( ! function_exists( 'espresso_venue_name' )) {
969
+if ( ! function_exists('espresso_venue_name')) {
970 970
 	/**
971 971
 	 *    espresso_venue_name
972 972
 	 *
@@ -976,19 +976,19 @@  discard block
 block discarded – undo
976 976
 	 * @param bool   $echo
977 977
 	 * @return    string
978 978
 	 */
979
-	function espresso_venue_name( $VNU_ID = 0, $link_to = 'details', $echo = TRUE ) {
980
-		if($echo){
981
-			echo EEH_Venue_View::venue_name( $link_to, $VNU_ID );
979
+	function espresso_venue_name($VNU_ID = 0, $link_to = 'details', $echo = TRUE) {
980
+		if ($echo) {
981
+			echo EEH_Venue_View::venue_name($link_to, $VNU_ID);
982 982
 			return '';
983 983
 		}
984
-		return EEH_Venue_View::venue_name( $link_to, $VNU_ID );
984
+		return EEH_Venue_View::venue_name($link_to, $VNU_ID);
985 985
 	}
986 986
 }
987 987
 
988 988
 
989 989
 
990 990
 
991
-if ( ! function_exists( 'espresso_venue_link' )) {
991
+if ( ! function_exists('espresso_venue_link')) {
992 992
 	/**
993 993
 	 * 	espresso_venue_link
994 994
 	 *
@@ -997,14 +997,14 @@  discard block
 block discarded – undo
997 997
 	 *  @param 	string 	$text
998 998
 	 *  @return 	string
999 999
 	 */
1000
-	function espresso_venue_link( $VNU_ID = 0, $text = '' ) {
1001
-		return EEH_Venue_View::venue_details_link( $VNU_ID, $text );
1000
+	function espresso_venue_link($VNU_ID = 0, $text = '') {
1001
+		return EEH_Venue_View::venue_details_link($VNU_ID, $text);
1002 1002
 	}
1003 1003
 }
1004 1004
 
1005 1005
 
1006 1006
 
1007
-if ( ! function_exists( 'espresso_venue_description' )) {
1007
+if ( ! function_exists('espresso_venue_description')) {
1008 1008
 	/**
1009 1009
 	 *    espresso_venue_description
1010 1010
 	 *
@@ -1013,17 +1013,17 @@  discard block
 block discarded – undo
1013 1013
 	 * @param bool $echo
1014 1014
 	 * @return    string
1015 1015
 	 */
1016
-	function espresso_venue_description( $VNU_ID = FALSE, $echo = TRUE ) {
1017
-		if($echo){
1018
-			echo EEH_Venue_View::venue_description( $VNU_ID );
1016
+	function espresso_venue_description($VNU_ID = FALSE, $echo = TRUE) {
1017
+		if ($echo) {
1018
+			echo EEH_Venue_View::venue_description($VNU_ID);
1019 1019
 			return '';
1020 1020
 		}
1021
-		return EEH_Venue_View::venue_description( $VNU_ID );
1021
+		return EEH_Venue_View::venue_description($VNU_ID);
1022 1022
 	}
1023 1023
 }
1024 1024
 
1025 1025
 
1026
-if ( ! function_exists( 'espresso_venue_excerpt' )) {
1026
+if ( ! function_exists('espresso_venue_excerpt')) {
1027 1027
 	/**
1028 1028
 	 *    espresso_venue_excerpt
1029 1029
 	 *
@@ -1032,18 +1032,18 @@  discard block
 block discarded – undo
1032 1032
 	 * @param bool $echo
1033 1033
 	 * @return    string
1034 1034
 	 */
1035
-	function espresso_venue_excerpt( $VNU_ID = 0,  $echo = TRUE ) {
1036
-		if ( $echo ) {
1037
-			echo EEH_Venue_View::venue_excerpt( $VNU_ID );
1035
+	function espresso_venue_excerpt($VNU_ID = 0, $echo = TRUE) {
1036
+		if ($echo) {
1037
+			echo EEH_Venue_View::venue_excerpt($VNU_ID);
1038 1038
 			return '';
1039 1039
 		}
1040
-		return EEH_Venue_View::venue_excerpt( $VNU_ID );
1040
+		return EEH_Venue_View::venue_excerpt($VNU_ID);
1041 1041
 	}
1042 1042
 }
1043 1043
 
1044 1044
 
1045 1045
 
1046
-if ( ! function_exists( 'espresso_venue_categories' )) {
1046
+if ( ! function_exists('espresso_venue_categories')) {
1047 1047
 	/**
1048 1048
 	 * espresso_venue_categories
1049 1049
 	 * returns the terms associated with a venue
@@ -1053,17 +1053,17 @@  discard block
 block discarded – undo
1053 1053
 	 * @param bool $echo
1054 1054
 	 * @return string
1055 1055
 	 */
1056
-	function espresso_venue_categories( $VNU_ID = 0, $hide_uncategorized = TRUE,  $echo = TRUE ) {
1057
-		if ( $echo ) {
1058
-			echo EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized );
1056
+	function espresso_venue_categories($VNU_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) {
1057
+		if ($echo) {
1058
+			echo EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized);
1059 1059
 			return '';
1060 1060
 		}
1061
-		return EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized );
1061
+		return EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized);
1062 1062
 	}
1063 1063
 }
1064 1064
 
1065 1065
 
1066
-if ( ! function_exists( 'espresso_venue_address' )) {
1066
+if ( ! function_exists('espresso_venue_address')) {
1067 1067
 	/**
1068 1068
 	 * espresso_venue_address
1069 1069
 	 * returns a formatted block of html  for displaying a venue's address
@@ -1073,17 +1073,17 @@  discard block
 block discarded – undo
1073 1073
 	 * @param bool   $echo
1074 1074
 	 * @return string
1075 1075
 	 */
1076
-	function espresso_venue_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) {
1077
-		if ( $echo ) {
1078
-			echo EEH_Venue_View::venue_address( $type, $VNU_ID );
1076
+	function espresso_venue_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) {
1077
+		if ($echo) {
1078
+			echo EEH_Venue_View::venue_address($type, $VNU_ID);
1079 1079
 			return '';
1080 1080
 		}
1081
-		return EEH_Venue_View::venue_address( $type, $VNU_ID );
1081
+		return EEH_Venue_View::venue_address($type, $VNU_ID);
1082 1082
 	}
1083 1083
 }
1084 1084
 
1085 1085
 
1086
-if ( ! function_exists( 'espresso_venue_raw_address' )) {
1086
+if ( ! function_exists('espresso_venue_raw_address')) {
1087 1087
 	/**
1088 1088
 	 * espresso_venue_address
1089 1089
 	 * returns an UN-formatted string containing a venue's address
@@ -1093,17 +1093,17 @@  discard block
 block discarded – undo
1093 1093
 	 * @param bool     $echo
1094 1094
 	 * @return string
1095 1095
 	 */
1096
-	function espresso_venue_raw_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) {
1097
-		if ( $echo ) {
1098
-			echo EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE );
1096
+	function espresso_venue_raw_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) {
1097
+		if ($echo) {
1098
+			echo EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE);
1099 1099
 			return '';
1100 1100
 		}
1101
-		return EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE );
1101
+		return EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE);
1102 1102
 	}
1103 1103
 }
1104 1104
 
1105 1105
 
1106
-if ( ! function_exists( 'espresso_venue_has_address' )) {
1106
+if ( ! function_exists('espresso_venue_has_address')) {
1107 1107
 	/**
1108 1108
 	 * espresso_venue_has_address
1109 1109
 	 * returns TRUE or FALSE if a Venue has address information
@@ -1111,13 +1111,13 @@  discard block
 block discarded – undo
1111 1111
 	 * @param int $VNU_ID
1112 1112
 	 * @return bool
1113 1113
 	 */
1114
-	function espresso_venue_has_address( $VNU_ID = 0 ) {
1115
-		return EEH_Venue_View::venue_has_address( $VNU_ID );
1114
+	function espresso_venue_has_address($VNU_ID = 0) {
1115
+		return EEH_Venue_View::venue_has_address($VNU_ID);
1116 1116
 	}
1117 1117
 }
1118 1118
 
1119 1119
 
1120
-if ( ! function_exists( 'espresso_venue_gmap' )) {
1120
+if ( ! function_exists('espresso_venue_gmap')) {
1121 1121
 	/**
1122 1122
 	 * espresso_venue_gmap
1123 1123
 	 * returns a google map for the venue address
@@ -1128,17 +1128,17 @@  discard block
 block discarded – undo
1128 1128
 	 * @param bool     $echo
1129 1129
 	 * @return string
1130 1130
 	 */
1131
-	function espresso_venue_gmap( $VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE  ) {
1132
-		if ( $echo ) {
1133
-			echo EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap );
1131
+	function espresso_venue_gmap($VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE) {
1132
+		if ($echo) {
1133
+			echo EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap);
1134 1134
 			return '';
1135 1135
 		}
1136
-		return EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap );
1136
+		return EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap);
1137 1137
 	}
1138 1138
 }
1139 1139
 
1140 1140
 
1141
-if ( ! function_exists( 'espresso_venue_phone' )) {
1141
+if ( ! function_exists('espresso_venue_phone')) {
1142 1142
 	/**
1143 1143
 	 * espresso_venue_phone
1144 1144
 	 *
@@ -1146,18 +1146,18 @@  discard block
 block discarded – undo
1146 1146
 	 * @param bool $echo
1147 1147
 	 * @return string
1148 1148
 	 */
1149
-	function espresso_venue_phone( $VNU_ID = 0, $echo = TRUE ) {
1150
-		if ( $echo ) {
1151
-			echo EEH_Venue_View::venue_phone( $VNU_ID );
1149
+	function espresso_venue_phone($VNU_ID = 0, $echo = TRUE) {
1150
+		if ($echo) {
1151
+			echo EEH_Venue_View::venue_phone($VNU_ID);
1152 1152
 			return '';
1153 1153
 		}
1154
-		return EEH_Venue_View::venue_phone( $VNU_ID );
1154
+		return EEH_Venue_View::venue_phone($VNU_ID);
1155 1155
 	}
1156 1156
 }
1157 1157
 
1158 1158
 
1159 1159
 
1160
-if ( ! function_exists( 'espresso_venue_website' )) {
1160
+if ( ! function_exists('espresso_venue_website')) {
1161 1161
 	/**
1162 1162
 	 * espresso_venue_website
1163 1163
 	 *
@@ -1165,18 +1165,18 @@  discard block
 block discarded – undo
1165 1165
 	 * @param bool $echo
1166 1166
 	 * @return string
1167 1167
 	 */
1168
-	function espresso_venue_website( $VNU_ID = 0, $echo = TRUE ) {
1169
-		if ( $echo ) {
1170
-			echo EEH_Venue_View::venue_website_link( $VNU_ID );
1168
+	function espresso_venue_website($VNU_ID = 0, $echo = TRUE) {
1169
+		if ($echo) {
1170
+			echo EEH_Venue_View::venue_website_link($VNU_ID);
1171 1171
 			return '';
1172 1172
 		}
1173
-		return EEH_Venue_View::venue_website_link( $VNU_ID );
1173
+		return EEH_Venue_View::venue_website_link($VNU_ID);
1174 1174
 	}
1175 1175
 }
1176 1176
 
1177 1177
 
1178 1178
 
1179
-if ( ! function_exists( 'espresso_edit_venue_link' )) {
1179
+if ( ! function_exists('espresso_edit_venue_link')) {
1180 1180
 	/**
1181 1181
 	 * espresso_edit_venue_link
1182 1182
 	 *
@@ -1184,12 +1184,12 @@  discard block
 block discarded – undo
1184 1184
 	 * @param bool $echo
1185 1185
 	 * @return string
1186 1186
 	 */
1187
-	function espresso_edit_venue_link( $VNU_ID = 0, $echo = TRUE ) {
1188
-		if($echo){
1189
-			echo EEH_Venue_View::edit_venue_link( $VNU_ID );
1187
+	function espresso_edit_venue_link($VNU_ID = 0, $echo = TRUE) {
1188
+		if ($echo) {
1189
+			echo EEH_Venue_View::edit_venue_link($VNU_ID);
1190 1190
 			return '';
1191 1191
 		}
1192
-		return EEH_Venue_View::edit_venue_link( $VNU_ID );
1192
+		return EEH_Venue_View::edit_venue_link($VNU_ID);
1193 1193
 	}
1194 1194
 }
1195 1195
 
Please login to merge, or discard this patch.