@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * @ link http://www.eventespresso.com |
10 | 10 | * @ version 4+ |
11 | 11 | */ |
12 | -define( 'EE_THEME_FUNCTIONS_LOADED', TRUE ); |
|
12 | +define('EE_THEME_FUNCTIONS_LOADED', TRUE); |
|
13 | 13 | |
14 | 14 | /** |
15 | 15 | * espresso_pagination |
@@ -20,20 +20,20 @@ discard block |
||
20 | 20 | function espresso_pagination() { |
21 | 21 | global $wp_query; |
22 | 22 | $big = 999999999; // need an unlikely integer |
23 | - $pagination = paginate_links( array( |
|
24 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
23 | + $pagination = paginate_links(array( |
|
24 | + 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), |
|
25 | 25 | 'format' => '?paged=%#%', |
26 | - 'current' => max( 1, get_query_var('paged') ), |
|
26 | + 'current' => max(1, get_query_var('paged')), |
|
27 | 27 | 'total' => $wp_query->max_num_pages, |
28 | 28 | 'show_all' => TRUE, |
29 | 29 | 'end_size' => 10, |
30 | 30 | 'mid_size' => 6, |
31 | 31 | 'prev_next' => TRUE, |
32 | - 'prev_text' => __( '‹ PREV', 'event_espresso' ), |
|
33 | - 'next_text' => __( 'NEXT ›', 'event_espresso' ), |
|
32 | + 'prev_text' => __('‹ PREV', 'event_espresso'), |
|
33 | + 'next_text' => __('NEXT ›', 'event_espresso'), |
|
34 | 34 | 'type' => 'plain', |
35 | 35 | 'add_args' => FALSE, |
36 | 36 | 'add_fragment' => '' |
37 | 37 | )); |
38 | - echo ! empty( $pagination ) ? '<div class="ee-pagination-dv clear">' . $pagination . '</div>' : ''; |
|
38 | + echo ! empty($pagination) ? '<div class="ee-pagination-dv clear">'.$pagination.'</div>' : ''; |
|
39 | 39 | } |
40 | 40 | \ No newline at end of file |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Espresso Template functions |
|
4 | - * |
|
5 | - * @ package Event Espresso |
|
6 | - * @ author Seth Shoultes |
|
7 | - * @ copyright (c) 2008-2014 Event Espresso All Rights Reserved. |
|
8 | - * @ license http://venueespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
9 | - * @ link http://www.eventespresso.com |
|
10 | - * @ version 4+ |
|
11 | - */ |
|
3 | + * Espresso Template functions |
|
4 | + * |
|
5 | + * @ package Event Espresso |
|
6 | + * @ author Seth Shoultes |
|
7 | + * @ copyright (c) 2008-2014 Event Espresso All Rights Reserved. |
|
8 | + * @ license http://venueespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
9 | + * @ link http://www.eventespresso.com |
|
10 | + * @ version 4+ |
|
11 | + */ |
|
12 | 12 | define( 'EE_THEME_FUNCTIONS_LOADED', TRUE ); |
13 | 13 | |
14 | 14 | /** |
@@ -15,21 +15,21 @@ |
||
15 | 15 | * @type bool $show_gravatar whether to show gravatar or not. |
16 | 16 | */ |
17 | 17 | |
18 | -$no_attendees_message = apply_filters( 'FHEE__loop-espresso_attendees-shortcode__template__no_attendees_message', __('No Attendees Yet', 'event_espresso' ) ); |
|
18 | +$no_attendees_message = apply_filters('FHEE__loop-espresso_attendees-shortcode__template__no_attendees_message', __('No Attendees Yet', 'event_espresso')); |
|
19 | 19 | |
20 | 20 | |
21 | 21 | ?> |
22 | 22 | |
23 | 23 | <div class="event-attendees"> |
24 | - <?php do_action( 'AHEE__loop-espresso_event_attendees__before', $contacts, $event, $datetime, $ticket, $show_gravatar ); ?> |
|
25 | - <?php if ( $contacts ) : ?> |
|
24 | + <?php do_action('AHEE__loop-espresso_event_attendees__before', $contacts, $event, $datetime, $ticket, $show_gravatar); ?> |
|
25 | + <?php if ($contacts) : ?> |
|
26 | 26 | <ul class="event-attendees-list"> |
27 | - <?php foreach( $contacts as $contact ) : |
|
28 | - EEH_Template::get_template_part( 'content', 'espresso_event_attendees', array( 'contact' => $contact, 'show_gravatar' => $show_gravatar ) ); |
|
27 | + <?php foreach ($contacts as $contact) : |
|
28 | + EEH_Template::get_template_part('content', 'espresso_event_attendees', array('contact' => $contact, 'show_gravatar' => $show_gravatar)); |
|
29 | 29 | endforeach; ?> |
30 | 30 | </ul> |
31 | 31 | <?php else : ?> |
32 | 32 | <p><?php echo $no_attendees_message; ?></p> |
33 | 33 | <?php endif; ?> |
34 | - <?php do_action( 'AHEE__loop-espresso_event_attendees__after', $contacts, $event, $datetime, $ticket, $show_gravatar ); ?> |
|
34 | + <?php do_action('AHEE__loop-espresso_event_attendees__after', $contacts, $event, $datetime, $ticket, $show_gravatar); ?> |
|
35 | 35 | </div> |
36 | 36 | \ No newline at end of file |
@@ -28,8 +28,11 @@ |
||
28 | 28 | EEH_Template::get_template_part( 'content', 'espresso_event_attendees', array( 'contact' => $contact, 'show_gravatar' => $show_gravatar ) ); |
29 | 29 | endforeach; ?> |
30 | 30 | </ul> |
31 | - <?php else : ?> |
|
32 | - <p><?php echo $no_attendees_message; ?></p> |
|
31 | + <?php else { |
|
32 | + : ?> |
|
33 | + <p><?php echo $no_attendees_message; |
|
34 | +} |
|
35 | +?></p> |
|
33 | 36 | <?php endif; ?> |
34 | 37 | <?php do_action( 'AHEE__loop-espresso_event_attendees__after', $contacts, $event, $datetime, $ticket, $show_gravatar ); ?> |
35 | 38 | </div> |
36 | 39 | \ No newline at end of file |
@@ -24,8 +24,10 @@ discard block |
||
24 | 24 | elseif ( is_year() ) : |
25 | 25 | printf( __( 'Events This Year: %s', 'event_espresso' ), get_the_date( _x( 'Y', 'yearly archives date format', 'event_espresso' ) ) ); |
26 | 26 | |
27 | - else : |
|
27 | + else { |
|
28 | + : |
|
28 | 29 | echo apply_filters( 'FHEE__archive_espresso_events_template__upcoming_events_h1', __( 'Upcoming Events', 'event_espresso' )); |
30 | + } |
|
29 | 31 | |
30 | 32 | endif; |
31 | 33 | ?> |
@@ -45,9 +47,11 @@ discard block |
||
45 | 47 | // allow moar other stuff |
46 | 48 | do_action( 'AHEE__archive_espresso_events_template__after_loop' ); |
47 | 49 | |
48 | - else : |
|
50 | + else { |
|
51 | + : |
|
49 | 52 | // If no content, include the "No posts found" template. |
50 | 53 | espresso_get_template_part( 'content', 'none' ); |
54 | + } |
|
51 | 55 | |
52 | 56 | endif; |
53 | 57 |
@@ -11,22 +11,22 @@ discard block |
||
11 | 11 | * @ version 4+ |
12 | 12 | */ |
13 | 13 | |
14 | - if ( have_posts() ) : ?> |
|
14 | + if (have_posts()) : ?> |
|
15 | 15 | |
16 | 16 | <header class="page-header"> |
17 | 17 | <h1 class="page-title"> |
18 | 18 | <?php |
19 | - if ( is_day() ) : |
|
20 | - printf( __( 'Today\'s Events: %s', 'event_espresso' ), get_the_date() ); |
|
19 | + if (is_day()) : |
|
20 | + printf(__('Today\'s Events: %s', 'event_espresso'), get_the_date()); |
|
21 | 21 | |
22 | - elseif ( is_month() ) : |
|
23 | - printf( __( 'Events This Month: %s', 'event_espresso' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'event_espresso' ) ) ); |
|
22 | + elseif (is_month()) : |
|
23 | + printf(__('Events This Month: %s', 'event_espresso'), get_the_date(_x('F Y', 'monthly archives date format', 'event_espresso'))); |
|
24 | 24 | |
25 | - elseif ( is_year() ) : |
|
26 | - printf( __( 'Events This Year: %s', 'event_espresso' ), get_the_date( _x( 'Y', 'yearly archives date format', 'event_espresso' ) ) ); |
|
25 | + elseif (is_year()) : |
|
26 | + printf(__('Events This Year: %s', 'event_espresso'), get_the_date(_x('Y', 'yearly archives date format', 'event_espresso'))); |
|
27 | 27 | |
28 | 28 | else : |
29 | - echo apply_filters( 'FHEE__archive_espresso_events_template__upcoming_events_h1', __( 'Upcoming Events', 'event_espresso' )); |
|
29 | + echo apply_filters('FHEE__archive_espresso_events_template__upcoming_events_h1', __('Upcoming Events', 'event_espresso')); |
|
30 | 30 | |
31 | 31 | endif; |
32 | 32 | ?> |
@@ -36,20 +36,20 @@ discard block |
||
36 | 36 | |
37 | 37 | <?php |
38 | 38 | // allow other stuff |
39 | - do_action( 'AHEE__archive_espresso_events_template__before_loop' ); |
|
39 | + do_action('AHEE__archive_espresso_events_template__before_loop'); |
|
40 | 40 | // Start the Loop. |
41 | - while ( have_posts() ) : the_post(); |
|
41 | + while (have_posts()) : the_post(); |
|
42 | 42 | // Include the post TYPE-specific template for the content. |
43 | - espresso_get_template_part( 'content', 'espresso_events-shortcode' ); |
|
43 | + espresso_get_template_part('content', 'espresso_events-shortcode'); |
|
44 | 44 | endwhile; |
45 | 45 | // Previous/next page navigation. |
46 | 46 | espresso_pagination(); |
47 | 47 | // allow moar other stuff |
48 | - do_action( 'AHEE__archive_espresso_events_template__after_loop' ); |
|
48 | + do_action('AHEE__archive_espresso_events_template__after_loop'); |
|
49 | 49 | |
50 | 50 | else : |
51 | 51 | // If no content, include the "No posts found" template. |
52 | - espresso_get_template_part( 'content', 'none' ); |
|
52 | + espresso_get_template_part('content', 'none'); |
|
53 | 53 | |
54 | 54 | endif; |
55 | 55 |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This template will display The Loop that displays your events |
|
4 | - * DO NOT COPY THIS TEMPLATE TO YOUR THEMES FOLDER |
|
5 | - * |
|
6 | - * @ package Event Espresso |
|
7 | - * @ author Seth Shoultes |
|
8 | - * @ copyright (c) 2008-2013 Event Espresso All Rights Reserved. |
|
9 | - * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
10 | - * @ link http://www.eventespresso.com |
|
11 | - * @ version 4+ |
|
12 | - */ |
|
3 | + * This template will display The Loop that displays your events |
|
4 | + * DO NOT COPY THIS TEMPLATE TO YOUR THEMES FOLDER |
|
5 | + * |
|
6 | + * @ package Event Espresso |
|
7 | + * @ author Seth Shoultes |
|
8 | + * @ copyright (c) 2008-2013 Event Espresso All Rights Reserved. |
|
9 | + * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
10 | + * @ link http://www.eventespresso.com |
|
11 | + * @ version 4+ |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | if ( have_posts() ) : ?> |
15 | 15 |
@@ -10,30 +10,30 @@ |
||
10 | 10 | * @ version 4+ |
11 | 11 | */ |
12 | 12 | |
13 | -if ( have_posts() ) : ?> |
|
13 | +if (have_posts()) : ?> |
|
14 | 14 | |
15 | 15 | <header class="page-header"> |
16 | 16 | <h1 class="page-title"> |
17 | - <?php echo __( 'Event Venues', 'event_espresso' ); ?> |
|
17 | + <?php echo __('Event Venues', 'event_espresso'); ?> |
|
18 | 18 | </h1> |
19 | 19 | </header><!-- .page-header --> |
20 | 20 | |
21 | 21 | <?php |
22 | 22 | // allow other stuff |
23 | - do_action( 'AHEE__archive_espresso_venues_template__before_loop' ); |
|
23 | + do_action('AHEE__archive_espresso_venues_template__before_loop'); |
|
24 | 24 | // Start the Loop. |
25 | - while ( have_posts() ) : the_post(); |
|
25 | + while (have_posts()) : the_post(); |
|
26 | 26 | // Include the post TYPE-specific template for the content. |
27 | - espresso_get_template_part( 'content', 'espresso_venues' ); |
|
27 | + espresso_get_template_part('content', 'espresso_venues'); |
|
28 | 28 | endwhile; |
29 | 29 | // Previous/next page navigation. |
30 | 30 | espresso_pagination(); |
31 | 31 | // allow moar other stuff |
32 | - do_action( 'AHEE__archive_espresso_venues_template__after_loop' ); |
|
32 | + do_action('AHEE__archive_espresso_venues_template__after_loop'); |
|
33 | 33 | |
34 | 34 | |
35 | 35 | else : |
36 | 36 | // If no content, include the "No posts found" template. |
37 | - espresso_get_template_part( 'content', 'none' ); |
|
37 | + espresso_get_template_part('content', 'none'); |
|
38 | 38 | |
39 | 39 | endif; |
@@ -32,8 +32,10 @@ |
||
32 | 32 | do_action( 'AHEE__archive_espresso_venues_template__after_loop' ); |
33 | 33 | |
34 | 34 | |
35 | -else : |
|
35 | +else { |
|
36 | + : |
|
36 | 37 | // If no content, include the "No posts found" template. |
37 | 38 | espresso_get_template_part( 'content', 'none' ); |
39 | +} |
|
38 | 40 | |
39 | 41 | endif; |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | <div id="espresso-event-details-dv" class="" > |
19 | 19 | <?php |
20 | 20 | // Start the Loop. |
21 | - while ( have_posts() ) : the_post(); |
|
21 | + while (have_posts()) : the_post(); |
|
22 | 22 | // Include the post TYPE-specific template for the content. |
23 | - espresso_get_template_part( 'content', 'espresso_events' ); |
|
23 | + espresso_get_template_part('content', 'espresso_events'); |
|
24 | 24 | // If comments are open or we have at least one comment, load up the comment template. |
25 | - if ( comments_open() || get_comments_number() ) { |
|
25 | + if (comments_open() || get_comments_number()) { |
|
26 | 26 | comments_template(); |
27 | 27 | } |
28 | 28 | endwhile; |
@@ -34,6 +34,6 @@ discard block |
||
34 | 34 | </div><!-- #primary --> |
35 | 35 | |
36 | 36 | <?php |
37 | -get_sidebar( 'content' ); |
|
37 | +get_sidebar('content'); |
|
38 | 38 | get_sidebar(); |
39 | 39 | get_footer(); |
40 | 40 | \ No newline at end of file |
@@ -1,13 +1,13 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Template Name: Event Details |
|
4 | - * |
|
5 | - * This is template will display all of your event's details |
|
6 | - * |
|
7 | - * @ package Event Espresso - Event Registration and Management Plugin for WordPress |
|
8 | - * @ link http://www.eventespresso.com |
|
9 | - * @ version EE4+ |
|
10 | - */ |
|
3 | + * Template Name: Event Details |
|
4 | + * |
|
5 | + * This is template will display all of your event's details |
|
6 | + * |
|
7 | + * @ package Event Espresso - Event Registration and Management Plugin for WordPress |
|
8 | + * @ link http://www.eventespresso.com |
|
9 | + * @ version EE4+ |
|
10 | + */ |
|
11 | 11 | get_header(); |
12 | 12 | //echo '<br/><h6 style="color:#2EA2CC;">' . __FILE__ . ' <span style="font-weight:normal;color:#E76700"> Line #: ' . __LINE__ . '</span></h6>'; |
13 | 13 | ?> |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | <div id="espresso-venue-details-dv" class="" > |
19 | 19 | <?php |
20 | 20 | // Start the Loop. |
21 | - while ( have_posts() ) : the_post(); |
|
21 | + while (have_posts()) : the_post(); |
|
22 | 22 | // Include the post TYPE-specific template for the content. |
23 | - espresso_get_template_part( 'content', 'espresso_venues' ); |
|
23 | + espresso_get_template_part('content', 'espresso_venues'); |
|
24 | 24 | // If comments are open or we have at least one comment, load up the comment template. |
25 | - if ( comments_open() || get_comments_number() ) { |
|
25 | + if (comments_open() || get_comments_number()) { |
|
26 | 26 | comments_template(); |
27 | 27 | } |
28 | 28 | endwhile; |
@@ -34,6 +34,6 @@ discard block |
||
34 | 34 | </div><!-- #primary --> |
35 | 35 | |
36 | 36 | <?php |
37 | -get_sidebar( 'content' ); |
|
37 | +get_sidebar('content'); |
|
38 | 38 | get_sidebar(); |
39 | 39 | get_footer(); |
40 | 40 | \ No newline at end of file |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * @param WP $WP |
52 | 52 | * @return void |
53 | 53 | */ |
54 | - public function run( WP $WP ) { |
|
54 | + public function run(WP $WP) { |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -61,28 +61,28 @@ discard block |
||
61 | 61 | * @param array $attributes |
62 | 62 | * @return string |
63 | 63 | */ |
64 | - public function process_shortcode( $attributes = array() ) { |
|
65 | - EE_Registry::instance()->load_core( 'Session' ); |
|
66 | - $transaction = EE_Registry::instance()->SSN->get_session_data( 'transaction' ); |
|
67 | - if ( $transaction instanceof EE_Transaction ) { |
|
68 | - do_action( 'AHEE__EES_Espresso_Cancelled__process_shortcode__transaction', $transaction ); |
|
64 | + public function process_shortcode($attributes = array()) { |
|
65 | + EE_Registry::instance()->load_core('Session'); |
|
66 | + $transaction = EE_Registry::instance()->SSN->get_session_data('transaction'); |
|
67 | + if ($transaction instanceof EE_Transaction) { |
|
68 | + do_action('AHEE__EES_Espresso_Cancelled__process_shortcode__transaction', $transaction); |
|
69 | 69 | $registrations = $transaction->registrations(); |
70 | - foreach( $registrations as $registration ) { |
|
71 | - if ( $registration instanceof EE_Registration ) { |
|
72 | - do_action( 'AHEE__EES_Espresso_Cancelled__process_shortcode__registration', $registration ); |
|
70 | + foreach ($registrations as $registration) { |
|
71 | + if ($registration instanceof EE_Registration) { |
|
72 | + do_action('AHEE__EES_Espresso_Cancelled__process_shortcode__registration', $registration); |
|
73 | 73 | } |
74 | 74 | } |
75 | 75 | } |
76 | - do_action( 'AHEE__EES_Espresso_Cancelled__process_shortcode__clear_session' ); |
|
76 | + do_action('AHEE__EES_Espresso_Cancelled__process_shortcode__clear_session'); |
|
77 | 77 | // remove all unwanted records from the db |
78 | - if ( EE_Registry::instance()->CART instanceof EE_Cart ) { |
|
78 | + if (EE_Registry::instance()->CART instanceof EE_Cart) { |
|
79 | 79 | EE_Registry::instance()->CART->delete_cart(); |
80 | 80 | } |
81 | 81 | EE_Registry::instance()->SSN->reset_cart(); |
82 | 82 | EE_Registry::instance()->SSN->reset_checkout(); |
83 | 83 | EE_Registry::instance()->SSN->reset_transaction(); |
84 | - EE_Registry::instance()->SSN->clear_session( __CLASS__, __FUNCTION__ ); |
|
85 | - return sprintf( __( '%sAll unsaved registration information entered during this session has been deleted.%s', 'event_espresso' ) , '<p class="ee-registrations-cancelled-pg ee-attention">', '</p>' ); |
|
84 | + EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__); |
|
85 | + return sprintf(__('%sAll unsaved registration information entered during this session has been deleted.%s', 'event_espresso'), '<p class="ee-registrations-cancelled-pg ee-attention">', '</p>'); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | } |
@@ -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 | * |
@@ -117,10 +117,10 @@ |
||
117 | 117 | } else { |
118 | 118 | //try getting the earliest active event if none then get the |
119 | 119 | $events = EEM_Event::instance()->get_active_events( array( 'limit' => 1, |
120 | - 'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' ) |
|
120 | + 'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' ) |
|
121 | 121 | ) ); |
122 | 122 | $events = empty( $events ) ? EEM_Event::instance()->get_upcoming_events( array( 'limit' => 1, |
123 | - 'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' ) |
|
123 | + 'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' ) |
|
124 | 124 | ) ) : array(); |
125 | 125 | $event = reset( $events ); |
126 | 126 | if ( $event instanceof EE_Event ) { |
@@ -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 | * |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * @param WP $WP |
20 | 20 | * @return void |
21 | 21 | */ |
22 | - public function run( WP $WP ) {} |
|
22 | + public function run(WP $WP) {} |
|
23 | 23 | |
24 | 24 | |
25 | 25 | /** |
@@ -69,14 +69,14 @@ discard block |
||
69 | 69 | * @param array $attributes |
70 | 70 | * @return string |
71 | 71 | */ |
72 | - public function process_shortcode( $attributes = array() ) { |
|
72 | + public function process_shortcode($attributes = array()) { |
|
73 | 73 | |
74 | 74 | //load helpers |
75 | - EE_Registry::instance()->load_helper( 'Event_View' ); |
|
76 | - EE_Registry::instance()->load_helper( 'Template' ); |
|
75 | + EE_Registry::instance()->load_helper('Event_View'); |
|
76 | + EE_Registry::instance()->load_helper('Template'); |
|
77 | 77 | |
78 | 78 | // merge in any attributes passed via fallback shortcode processor |
79 | - $attributes = array_merge( (array) $attributes, (array) $this->_attributes ); |
|
79 | + $attributes = array_merge((array) $attributes, (array) $this->_attributes); |
|
80 | 80 | |
81 | 81 | //set default attributes |
82 | 82 | $default_shortcode_attributes = array( |
@@ -88,9 +88,9 @@ discard block |
||
88 | 88 | ); |
89 | 89 | |
90 | 90 | // allow the defaults to be filtered |
91 | - $default_shortcode_attributes = apply_filters( 'EES_Espresso_Event_Attendees__process_shortcode__default_shortcode_atts', $default_shortcode_attributes ); |
|
91 | + $default_shortcode_attributes = apply_filters('EES_Espresso_Event_Attendees__process_shortcode__default_shortcode_atts', $default_shortcode_attributes); |
|
92 | 92 | // grab attributes and merge with defaults, then extract |
93 | - $attributes = array_merge( $default_shortcode_attributes, $attributes ); |
|
93 | + $attributes = array_merge($default_shortcode_attributes, $attributes); |
|
94 | 94 | |
95 | 95 | $template_args = array( |
96 | 96 | 'contacts' => array(), |
@@ -106,31 +106,31 @@ discard block |
||
106 | 106 | $error = false; |
107 | 107 | |
108 | 108 | //what event? |
109 | - if ( empty( $attributes['event_id'] ) && empty( $attributes['datetime_id'] ) && empty( $attributes['ticket_id'] ) ) { |
|
109 | + if (empty($attributes['event_id']) && empty($attributes['datetime_id']) && empty($attributes['ticket_id'])) { |
|
110 | 110 | //seems like is_espresso_event_single() isn't working as expected. So using alternate method. |
111 | - if ( is_single() && is_espresso_event() ) { |
|
111 | + if (is_single() && is_espresso_event()) { |
|
112 | 112 | $event = EEH_Event_View::get_event(); |
113 | - if ( $event instanceof EE_Event ) { |
|
113 | + if ($event instanceof EE_Event) { |
|
114 | 114 | $template_args['event'] = $event; |
115 | 115 | $query[0]['Registration.EVT_ID'] = $event->ID(); |
116 | 116 | } |
117 | 117 | } else { |
118 | 118 | //try getting the earliest active event if none then get the |
119 | - $events = EEM_Event::instance()->get_active_events( array( 'limit' => 1, |
|
120 | - 'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' ) |
|
121 | - ) ); |
|
122 | - $events = empty( $events ) ? EEM_Event::instance()->get_upcoming_events( array( 'limit' => 1, |
|
123 | - 'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' ) |
|
124 | - ) ) : $events; |
|
125 | - $event = reset( $events ); |
|
126 | - if ( $event instanceof EE_Event ) { |
|
119 | + $events = EEM_Event::instance()->get_active_events(array('limit' => 1, |
|
120 | + 'order_by' => array('Datetime.DTT_EVT_start' => 'ASC') |
|
121 | + )); |
|
122 | + $events = empty($events) ? EEM_Event::instance()->get_upcoming_events(array('limit' => 1, |
|
123 | + 'order_by' => array('Datetime.DTT_EVT_start' => 'ASC') |
|
124 | + )) : $events; |
|
125 | + $event = reset($events); |
|
126 | + if ($event instanceof EE_Event) { |
|
127 | 127 | $query[0]['Registration.EVT_ID'] = $event->ID(); |
128 | 128 | $template_args['event'] = $event; |
129 | 129 | } |
130 | 130 | } |
131 | - } elseif ( ! empty( $attributes['event_id'] ) ) { |
|
132 | - $event = EEM_Event::instance()->get_one_by_ID( $attributes['event_id'] ); |
|
133 | - if ( $event instanceof EE_Event ) { |
|
131 | + } elseif ( ! empty($attributes['event_id'])) { |
|
132 | + $event = EEM_Event::instance()->get_one_by_ID($attributes['event_id']); |
|
133 | + if ($event instanceof EE_Event) { |
|
134 | 134 | $query[0]['Registration.EVT_ID'] = $attributes['event_id']; |
135 | 135 | $template_args['event'] = $event; |
136 | 136 | } else { |
@@ -139,9 +139,9 @@ discard block |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | //datetime? |
142 | - if ( ! empty( $attributes['datetime_id'] ) && empty( $attributes['event_id'] ) ) { |
|
143 | - $datetime = EEM_Datetime::instance()->get_one_by_ID( $attributes['datetime_id'] ); |
|
144 | - if ( $datetime instanceof EE_Datetime ) { |
|
142 | + if ( ! empty($attributes['datetime_id']) && empty($attributes['event_id'])) { |
|
143 | + $datetime = EEM_Datetime::instance()->get_one_by_ID($attributes['datetime_id']); |
|
144 | + if ($datetime instanceof EE_Datetime) { |
|
145 | 145 | $query[0]['Registration.Ticket.Datetime.DTT_ID'] = $attributes['datetime_id']; |
146 | 146 | $query['default_where_conditions'] = 'this_model_only'; |
147 | 147 | $template_args['datetime'] = $datetime; |
@@ -152,9 +152,9 @@ discard block |
||
152 | 152 | } |
153 | 153 | |
154 | 154 | //ticket?just |
155 | - if ( ! empty( $attributes['ticket_id'] ) && empty( $attributes['event_id'] ) && empty( $attributes['datetime_id'] ) ) { |
|
156 | - $ticket = EEM_Ticket::instance()->get_one_by_ID( $attributes['ticket_id'] ); |
|
157 | - if ( $ticket instanceof EE_Ticket ) { |
|
155 | + if ( ! empty($attributes['ticket_id']) && empty($attributes['event_id']) && empty($attributes['datetime_id'])) { |
|
156 | + $ticket = EEM_Ticket::instance()->get_one_by_ID($attributes['ticket_id']); |
|
157 | + if ($ticket instanceof EE_Ticket) { |
|
158 | 158 | $query[0]['Registration.TKT_ID'] = $attributes['ticket_id']; |
159 | 159 | $template_args['ticket'] = $ticket; |
160 | 160 | $template_args['event'] = $ticket->first_datetime() instanceof EE_Datetime ? $ticket->first_datetime()->event() : null; |
@@ -165,17 +165,17 @@ discard block |
||
165 | 165 | |
166 | 166 | //status |
167 | 167 | $reg_status_array = EEM_Registration::reg_status_array(); |
168 | - if ( $attributes['status'] != 'all' && isset( $reg_status_array[$attributes['status']] ) ) { |
|
168 | + if ($attributes['status'] != 'all' && isset($reg_status_array[$attributes['status']])) { |
|
169 | 169 | $query[0]['Registration.STS_ID'] = $attributes['status']; |
170 | 170 | } |
171 | - $query['group_by'] = array( 'ATT_ID' ); |
|
172 | - $query['order_by'] = apply_filters( 'FHEE__EES_Espresso_Event_Attendees__process_shortcode__order_by', array( 'ATT_lname' => 'ASC', 'ATT_fname' => 'ASC' ) ); |
|
171 | + $query['group_by'] = array('ATT_ID'); |
|
172 | + $query['order_by'] = apply_filters('FHEE__EES_Espresso_Event_Attendees__process_shortcode__order_by', array('ATT_lname' => 'ASC', 'ATT_fname' => 'ASC')); |
|
173 | 173 | |
174 | 174 | //if we have NO query where conditions, then there was an invalid parameter or the shortcode was used incorrectly |
175 | 175 | //so when WP_DEBUG is set and true, we'll show a message, otherwise we'll just return an empty string. |
176 | - if ( ( ! isset( $query[0] ) || ! is_array( $query[0] ) ) || $error ) { |
|
177 | - if ( WP_DEBUG ) { |
|
178 | - return '<div class="important-notice ee-attention">' . __( 'The [ESPRESSO_EVENT_ATTENDEES] shortcode has been used incorrectly. Please double check the arguments you used for any typos. In the case of ID type arguments, its possible the given ID does not correspond to existing data in the database.', 'event_espresso' ) . '</div>'; |
|
176 | + if (( ! isset($query[0]) || ! is_array($query[0])) || $error) { |
|
177 | + if (WP_DEBUG) { |
|
178 | + return '<div class="important-notice ee-attention">'.__('The [ESPRESSO_EVENT_ATTENDEES] shortcode has been used incorrectly. Please double check the arguments you used for any typos. In the case of ID type arguments, its possible the given ID does not correspond to existing data in the database.', 'event_espresso').'</div>'; |
|
179 | 179 | } else { |
180 | 180 | return ''; |
181 | 181 | } |
@@ -183,11 +183,11 @@ discard block |
||
183 | 183 | |
184 | 184 | |
185 | 185 | //get contacts! |
186 | - $template_args['contacts'] = EEM_Attendee::instance()->get_all( $query ); |
|
186 | + $template_args['contacts'] = EEM_Attendee::instance()->get_all($query); |
|
187 | 187 | |
188 | 188 | |
189 | 189 | //all set let's load up the template and return. |
190 | - return EEH_Template::locate_template( 'loop-espresso_event_attendees.php', $template_args, true, true ); |
|
190 | + return EEH_Template::locate_template('loop-espresso_event_attendees.php', $template_args, true, true); |
|
191 | 191 | |
192 | 192 | } |
193 | 193 |
@@ -1,8 +1,8 @@ discard block |
||
1 | -<?php do_action( 'AHEE__thank_you_page_overview_template__top', $transaction ); ?> |
|
1 | +<?php do_action('AHEE__thank_you_page_overview_template__top', $transaction); ?> |
|
2 | 2 | |
3 | 3 | <div id="espresso-thank-you-page-overview-dv" class="width-100" > |
4 | 4 | |
5 | - <?php if ( ! $revisit ) : ?> |
|
5 | + <?php if ( ! $revisit) : ?> |
|
6 | 6 | <div class="ee-attention"> |
7 | 7 | <div class="extra-padding-sides"> |
8 | 8 | <p class="bigger-text"> |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | ); |
19 | 19 | ?> |
20 | 20 | </p> |
21 | - <?php if ( ! empty( $TXN_receipt_url )) : ?> |
|
21 | + <?php if ( ! empty($TXN_receipt_url)) : ?> |
|
22 | 22 | <div class="jst-rght"> |
23 | - <a class="ee-button ee-roundish indented-text big-text" href="<?php echo $TXN_receipt_url;?>"><span class="ee-icon ee-icon-PDF-file-type"></span><?php echo apply_filters( 'FHEE__thank_you_page_overview_template__order_conf_button_text', __( 'View Full Order Confirmation Receipt', 'event_espresso' )); ?></a> |
|
23 | + <a class="ee-button ee-roundish indented-text big-text" href="<?php echo $TXN_receipt_url; ?>"><span class="ee-icon ee-icon-PDF-file-type"></span><?php echo apply_filters('FHEE__thank_you_page_overview_template__order_conf_button_text', __('View Full Order Confirmation Receipt', 'event_espresso')); ?></a> |
|
24 | 24 | </div> |
25 | 25 | <?php endif; ?> |
26 | 26 | </div> |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | <?php endif; ?> |
30 | 30 | <br/> |
31 | 31 | |
32 | - <?php do_action( 'AHEE__thank_you_page_overview_template__content', $transaction ); ?> |
|
32 | + <?php do_action('AHEE__thank_you_page_overview_template__content', $transaction); ?> |
|
33 | 33 | |
34 | 34 | </div> |
35 | 35 | <!-- end of espresso-thank-you-page-overview-dv --> |
36 | 36 | |
37 | -<?php do_action( 'AHEE__thank_you_page_overview_template__bottom', $transaction ); ?> |
|
37 | +<?php do_action('AHEE__thank_you_page_overview_template__bottom', $transaction); ?> |