@@ -40,27 +40,27 @@ discard block |
||
| 40 | 40 | * @param int $EVT_ID |
| 41 | 41 | * @return object |
| 42 | 42 | */ |
| 43 | - public static function get_event( $EVT_ID = 0 ) { |
|
| 44 | - $EVT_ID = $EVT_ID instanceof WP_Post ? $EVT_ID->ID : absint( $EVT_ID ); |
|
| 43 | + public static function get_event($EVT_ID = 0) { |
|
| 44 | + $EVT_ID = $EVT_ID instanceof WP_Post ? $EVT_ID->ID : absint($EVT_ID); |
|
| 45 | 45 | // do we already have the Event you are looking for? |
| 46 | - if ( EEH_Event_View::$_event instanceof EE_Event && $EVT_ID && EEH_Event_View::$_event->ID() === $EVT_ID ) { |
|
| 46 | + if (EEH_Event_View::$_event instanceof EE_Event && $EVT_ID && EEH_Event_View::$_event->ID() === $EVT_ID) { |
|
| 47 | 47 | return EEH_Event_View::$_event; |
| 48 | 48 | } |
| 49 | 49 | EEH_Event_View::$_event = NULL; |
| 50 | 50 | // international newspaper? |
| 51 | 51 | global $post; |
| 52 | 52 | // if this is being called from an EE_Event post, then we can just grab the attached EE_Event object |
| 53 | - if ( isset( $post->post_type ) && $post->post_type == 'espresso_events' || $EVT_ID ) { |
|
| 53 | + if (isset($post->post_type) && $post->post_type == 'espresso_events' || $EVT_ID) { |
|
| 54 | 54 | // d( $post ); |
| 55 | 55 | // grab the event we're looking for |
| 56 | - if ( isset( $post->EE_Event ) && ( $EVT_ID == 0 || ( $EVT_ID == $post->ID ))) { |
|
| 56 | + if (isset($post->EE_Event) && ($EVT_ID == 0 || ($EVT_ID == $post->ID))) { |
|
| 57 | 57 | EEH_Event_View::$_event = $post->EE_Event; |
| 58 | 58 | // d( EEH_Event_View::$_event ); |
| 59 | 59 | } |
| 60 | 60 | // now if we STILL do NOT have an EE_Event model object, BUT we have an Event ID... |
| 61 | - if ( ! EEH_Event_View::$_event instanceof EE_Event && $EVT_ID ) { |
|
| 61 | + if ( ! EEH_Event_View::$_event instanceof EE_Event && $EVT_ID) { |
|
| 62 | 62 | // sigh... pull it from the db |
| 63 | - EEH_Event_View::$_event = EEM_Event::instance()->get_one_by_ID( $EVT_ID ); |
|
| 63 | + EEH_Event_View::$_event = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
| 64 | 64 | // d( EEH_Event_View::$_event ); |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -76,8 +76,8 @@ discard block |
||
| 76 | 76 | * @param int $EVT_ID |
| 77 | 77 | * @return boolean |
| 78 | 78 | */ |
| 79 | - public static function display_ticket_selector( $EVT_ID = 0 ) { |
|
| 80 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 79 | + public static function display_ticket_selector($EVT_ID = 0) { |
|
| 80 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 81 | 81 | return $event instanceof EE_Event ? $event->display_ticket_selector() : FALSE; |
| 82 | 82 | } |
| 83 | 83 | |
@@ -90,9 +90,9 @@ discard block |
||
| 90 | 90 | * @param int $EVT_ID |
| 91 | 91 | * @return string |
| 92 | 92 | */ |
| 93 | - public static function event_status( $EVT_ID = 0 ) { |
|
| 94 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 95 | - return $event instanceof EE_Event ? $event->pretty_active_status( FALSE ) : ''; |
|
| 93 | + public static function event_status($EVT_ID = 0) { |
|
| 94 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 95 | + return $event instanceof EE_Event ? $event->pretty_active_status(FALSE) : ''; |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | * @param int $EVT_ID |
| 105 | 105 | * @return string |
| 106 | 106 | */ |
| 107 | - public static function event_active_status( $EVT_ID = 0 ) { |
|
| 108 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 107 | + public static function event_active_status($EVT_ID = 0) { |
|
| 108 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 109 | 109 | return $event instanceof EE_Event ? $event->pretty_active_status() : 'inactive'; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -118,13 +118,13 @@ discard block |
||
| 118 | 118 | * @param int $EVT_ID |
| 119 | 119 | * @return string |
| 120 | 120 | */ |
| 121 | - public static function event_has_content_or_excerpt( $EVT_ID = 0 ) { |
|
| 122 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 121 | + public static function event_has_content_or_excerpt($EVT_ID = 0) { |
|
| 122 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 123 | 123 | $has_content_or_excerpt = FALSE; |
| 124 | - if ( $event instanceof EE_Event ) { |
|
| 125 | - $has_content_or_excerpt = $event->description() != '' || $event->short_description( NULL, NULL, TRUE ) != '' ? TRUE : FALSE; |
|
| 124 | + if ($event instanceof EE_Event) { |
|
| 125 | + $has_content_or_excerpt = $event->description() != '' || $event->short_description(NULL, NULL, TRUE) != '' ? TRUE : FALSE; |
|
| 126 | 126 | } |
| 127 | - if ( is_archive() && ! ( espresso_display_full_description_in_event_list() || espresso_display_excerpt_in_event_list() )) { |
|
| 127 | + if (is_archive() && ! (espresso_display_full_description_in_event_list() || espresso_display_excerpt_in_event_list())) { |
|
| 128 | 128 | $has_content_or_excerpt = FALSE; |
| 129 | 129 | } |
| 130 | 130 | return $has_content_or_excerpt; |
@@ -140,45 +140,45 @@ discard block |
||
| 140 | 140 | * @param null $more |
| 141 | 141 | * @return string |
| 142 | 142 | */ |
| 143 | - public static function event_content_or_excerpt( $num_words = NULL, $more = NULL ) { |
|
| 143 | + public static function event_content_or_excerpt($num_words = NULL, $more = NULL) { |
|
| 144 | 144 | global $post; |
| 145 | 145 | |
| 146 | 146 | ob_start(); |
| 147 | - if (( is_single() ) || ( is_archive() && espresso_display_full_description_in_event_list() )) { |
|
| 147 | + if ((is_single()) || (is_archive() && espresso_display_full_description_in_event_list())) { |
|
| 148 | 148 | |
| 149 | 149 | // admin has chosen "full description" for the "Event Espresso - Events > Templates > Display Description" option |
| 150 | 150 | the_content(); |
| 151 | 151 | |
| 152 | - } else if (( is_archive() && has_excerpt( $post->ID ) && espresso_display_excerpt_in_event_list() ) ) { |
|
| 152 | + } else if ((is_archive() && has_excerpt($post->ID) && espresso_display_excerpt_in_event_list())) { |
|
| 153 | 153 | |
| 154 | 154 | // admin has chosen "excerpt (short desc)" for the "Event Espresso - Events > Templates > Display Description" option |
| 155 | 155 | // AND an excerpt actually exists |
| 156 | 156 | the_excerpt(); |
| 157 | 157 | |
| 158 | - } else if (( is_archive() && ! has_excerpt( $post->ID ) && espresso_display_excerpt_in_event_list() )) { |
|
| 158 | + } else if ((is_archive() && ! has_excerpt($post->ID) && espresso_display_excerpt_in_event_list())) { |
|
| 159 | 159 | |
| 160 | 160 | // admin has chosen "excerpt (short desc)" for the "Event Espresso - Events > Templates > Display Description" option |
| 161 | 161 | // but NO excerpt actually exists, so we need to create one |
| 162 | - if ( ! empty( $num_words )) { |
|
| 163 | - if ( empty( $more )) { |
|
| 164 | - $more_link_text = __( '(more…)' ); |
|
| 165 | - $more = ' <a href="' . get_permalink() . '" class="more-link">' . $more_link_text . '</a>'; |
|
| 166 | - $more = apply_filters( 'the_content_more_link', $more, $more_link_text ); |
|
| 162 | + if ( ! empty($num_words)) { |
|
| 163 | + if (empty($more)) { |
|
| 164 | + $more_link_text = __('(more…)'); |
|
| 165 | + $more = ' <a href="'.get_permalink().'" class="more-link">'.$more_link_text.'</a>'; |
|
| 166 | + $more = apply_filters('the_content_more_link', $more, $more_link_text); |
|
| 167 | 167 | } |
| 168 | - $content = str_replace( 'NOMORELINK', '', get_the_content( 'NOMORELINK' )); |
|
| 168 | + $content = str_replace('NOMORELINK', '', get_the_content('NOMORELINK')); |
|
| 169 | 169 | |
| 170 | - $content = wp_trim_words( $content, $num_words, ' ' ) . $more; |
|
| 170 | + $content = wp_trim_words($content, $num_words, ' ').$more; |
|
| 171 | 171 | } else { |
| 172 | - $content = get_the_content(); |
|
| 172 | + $content = get_the_content(); |
|
| 173 | 173 | } |
| 174 | 174 | global $allowedtags; |
| 175 | - $content = wp_kses( $content, $allowedtags ); |
|
| 176 | - $content = strip_shortcodes( $content ); |
|
| 177 | - echo apply_filters( 'the_content', $content ); |
|
| 175 | + $content = wp_kses($content, $allowedtags); |
|
| 176 | + $content = strip_shortcodes($content); |
|
| 177 | + echo apply_filters('the_content', $content); |
|
| 178 | 178 | |
| 179 | 179 | } else { |
| 180 | 180 | // admin has chosen "none" for the "Event Espresso - Events > Templates > Display Description" option |
| 181 | - echo apply_filters( 'the_content', '' ); |
|
| 181 | + echo apply_filters('the_content', ''); |
|
| 182 | 182 | } |
| 183 | 183 | return ob_get_clean(); |
| 184 | 184 | } |
@@ -192,13 +192,13 @@ discard block |
||
| 192 | 192 | * @param int $EVT_ID |
| 193 | 193 | * @return EE_Ticket[] |
| 194 | 194 | */ |
| 195 | - public static function event_tickets_available( $EVT_ID = 0 ) { |
|
| 196 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 195 | + public static function event_tickets_available($EVT_ID = 0) { |
|
| 196 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 197 | 197 | $tickets_available_for_purchase = array(); |
| 198 | - if( $event instanceof EE_Event ) { |
|
| 199 | - $datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, FALSE ); |
|
| 200 | - foreach( $datetimes as $datetime ) { |
|
| 201 | - $tickets_available_for_purchase = array_merge( $tickets_available_for_purchase, $datetime->ticket_types_available_for_purchase() ); |
|
| 198 | + if ($event instanceof EE_Event) { |
|
| 199 | + $datetimes = EEH_Event_View::get_all_date_obj($EVT_ID, FALSE); |
|
| 200 | + foreach ($datetimes as $datetime) { |
|
| 201 | + $tickets_available_for_purchase = array_merge($tickets_available_for_purchase, $datetime->ticket_types_available_for_purchase()); |
|
| 202 | 202 | } |
| 203 | 203 | } |
| 204 | 204 | return $tickets_available_for_purchase; |
@@ -214,22 +214,22 @@ discard block |
||
| 214 | 214 | * @param bool $hide_uncategorized |
| 215 | 215 | * @return string |
| 216 | 216 | */ |
| 217 | - public static function event_categories( $EVT_ID = 0, $hide_uncategorized = TRUE ) { |
|
| 217 | + public static function event_categories($EVT_ID = 0, $hide_uncategorized = TRUE) { |
|
| 218 | 218 | $category_links = array(); |
| 219 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 220 | - if ( $event instanceof EE_Event ) { |
|
| 221 | - $event_categories = get_the_terms( $event->ID(), 'espresso_event_categories' ); |
|
| 222 | - if ( $event_categories ) { |
|
| 219 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 220 | + if ($event instanceof EE_Event) { |
|
| 221 | + $event_categories = get_the_terms($event->ID(), 'espresso_event_categories'); |
|
| 222 | + if ($event_categories) { |
|
| 223 | 223 | // loop thru terms and create links |
| 224 | - foreach ( $event_categories as $term ) { |
|
| 225 | - $url = get_term_link( $term, 'espresso_venue_categories' ); |
|
| 226 | - if ( ! is_wp_error( $url ) && (( $hide_uncategorized && strtolower( $term->name ) != __( 'uncategorized', 'event_espresso' )) || ! $hide_uncategorized )) { |
|
| 227 | - $category_links[] = '<a href="' . esc_url( $url ) . '" rel="tag">' . $term->name . '</a>'; |
|
| 224 | + foreach ($event_categories as $term) { |
|
| 225 | + $url = get_term_link($term, 'espresso_venue_categories'); |
|
| 226 | + if ( ! is_wp_error($url) && (($hide_uncategorized && strtolower($term->name) != __('uncategorized', 'event_espresso')) || ! $hide_uncategorized)) { |
|
| 227 | + $category_links[] = '<a href="'.esc_url($url).'" rel="tag">'.$term->name.'</a>'; |
|
| 228 | 228 | } |
| 229 | 229 | } |
| 230 | 230 | } |
| 231 | 231 | } |
| 232 | - return implode( ', ', $category_links ); |
|
| 232 | + return implode(', ', $category_links); |
|
| 233 | 233 | } |
| 234 | 234 | |
| 235 | 235 | |
@@ -243,10 +243,10 @@ discard block |
||
| 243 | 243 | * @param int $EVT_ID |
| 244 | 244 | * @return string |
| 245 | 245 | */ |
| 246 | - public static function the_event_date( $dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0 ) { |
|
| 247 | - $datetime = EEH_Event_View::get_primary_date_obj( $EVT_ID ); |
|
| 248 | - $format = ! empty( $dt_frmt ) && ! empty( $tm_frmt ) ? $dt_frmt . ' ' . $tm_frmt : $dt_frmt . $tm_frmt; |
|
| 249 | - return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime( 'DTT_EVT_start', $format ) : ''; |
|
| 246 | + public static function the_event_date($dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0) { |
|
| 247 | + $datetime = EEH_Event_View::get_primary_date_obj($EVT_ID); |
|
| 248 | + $format = ! empty($dt_frmt) && ! empty($tm_frmt) ? $dt_frmt.' '.$tm_frmt : $dt_frmt.$tm_frmt; |
|
| 249 | + return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime('DTT_EVT_start', $format) : ''; |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | |
@@ -260,10 +260,10 @@ discard block |
||
| 260 | 260 | * @param int $EVT_ID |
| 261 | 261 | * @return string |
| 262 | 262 | */ |
| 263 | - public static function the_event_end_date( $dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0 ) { |
|
| 264 | - $datetime = EEH_Event_View::get_last_date_obj( $EVT_ID ); |
|
| 265 | - $format = ! empty( $dt_frmt ) && ! empty( $tm_frmt ) ? $dt_frmt . ' ' . $tm_frmt : $dt_frmt . $tm_frmt; |
|
| 266 | - return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime( 'DTT_EVT_end', $format ) : ''; |
|
| 263 | + public static function the_event_end_date($dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0) { |
|
| 264 | + $datetime = EEH_Event_View::get_last_date_obj($EVT_ID); |
|
| 265 | + $format = ! empty($dt_frmt) && ! empty($tm_frmt) ? $dt_frmt.' '.$tm_frmt : $dt_frmt.$tm_frmt; |
|
| 266 | + return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime('DTT_EVT_end', $format) : ''; |
|
| 267 | 267 | } |
| 268 | 268 | |
| 269 | 269 | |
@@ -277,10 +277,10 @@ discard block |
||
| 277 | 277 | * @param int $EVT_ID |
| 278 | 278 | * @return string |
| 279 | 279 | */ |
| 280 | - public static function the_earliest_event_date( $dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0 ) { |
|
| 281 | - $datetime = EEH_Event_View::get_earliest_date_obj( $EVT_ID ); |
|
| 282 | - $format = ! empty( $dt_frmt ) && ! empty( $tm_frmt ) ? $dt_frmt . ' ' . $tm_frmt : $dt_frmt . $tm_frmt; |
|
| 283 | - return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime( 'DTT_EVT_start', $format ) : ''; |
|
| 280 | + public static function the_earliest_event_date($dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0) { |
|
| 281 | + $datetime = EEH_Event_View::get_earliest_date_obj($EVT_ID); |
|
| 282 | + $format = ! empty($dt_frmt) && ! empty($tm_frmt) ? $dt_frmt.' '.$tm_frmt : $dt_frmt.$tm_frmt; |
|
| 283 | + return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime('DTT_EVT_start', $format) : ''; |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | |
@@ -294,10 +294,10 @@ discard block |
||
| 294 | 294 | * @param int $EVT_ID |
| 295 | 295 | * @return string |
| 296 | 296 | */ |
| 297 | - public static function the_latest_event_date( $dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0 ) { |
|
| 298 | - $datetime = EEH_Event_View::get_last_date_obj( $EVT_ID ); |
|
| 299 | - $format = ! empty( $dt_frmt ) && ! empty( $tm_frmt ) ? $dt_frmt . ' ' . $tm_frmt : $dt_frmt . $tm_frmt; |
|
| 300 | - return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime( 'DTT_EVT_end', $format ) : ''; |
|
| 297 | + public static function the_latest_event_date($dt_frmt = 'D M jS', $tm_frmt = 'g:i a', $EVT_ID = 0) { |
|
| 298 | + $datetime = EEH_Event_View::get_last_date_obj($EVT_ID); |
|
| 299 | + $format = ! empty($dt_frmt) && ! empty($tm_frmt) ? $dt_frmt.' '.$tm_frmt : $dt_frmt.$tm_frmt; |
|
| 300 | + return $datetime instanceof EE_Datetime ? $datetime->get_i18n_datetime('DTT_EVT_end', $format) : ''; |
|
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | |
@@ -309,13 +309,13 @@ discard block |
||
| 309 | 309 | * @param int $EVT_ID |
| 310 | 310 | * @return string |
| 311 | 311 | */ |
| 312 | - public static function event_date_as_calendar_page( $EVT_ID = 0 ) { |
|
| 313 | - $datetime = EEH_Event_View::get_primary_date_obj( $EVT_ID ); |
|
| 314 | - if ( $datetime instanceof EE_Datetime ) { |
|
| 312 | + public static function event_date_as_calendar_page($EVT_ID = 0) { |
|
| 313 | + $datetime = EEH_Event_View::get_primary_date_obj($EVT_ID); |
|
| 314 | + if ($datetime instanceof EE_Datetime) { |
|
| 315 | 315 | ?> |
| 316 | 316 | <div class="event-date-calendar-page-dv"> |
| 317 | - <div class="event-date-calendar-page-month-dv"><?php echo $datetime->get_i18n_datetime( 'DTT_EVT_start', 'M' );?></div> |
|
| 318 | - <div class="event-date-calendar-page-day-dv"><?php echo $datetime->start_date( 'd' );?></div> |
|
| 317 | + <div class="event-date-calendar-page-month-dv"><?php echo $datetime->get_i18n_datetime('DTT_EVT_start', 'M'); ?></div> |
|
| 318 | + <div class="event-date-calendar-page-day-dv"><?php echo $datetime->start_date('d'); ?></div> |
|
| 319 | 319 | </div> |
| 320 | 320 | <?php |
| 321 | 321 | } |
@@ -330,17 +330,17 @@ discard block |
||
| 330 | 330 | * @param int $EVT_ID |
| 331 | 331 | * @return string |
| 332 | 332 | */ |
| 333 | - public static function get_primary_date_obj( $EVT_ID = 0 ) { |
|
| 334 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 335 | - if ( $event instanceof EE_Event ) { |
|
| 333 | + public static function get_primary_date_obj($EVT_ID = 0) { |
|
| 334 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 335 | + if ($event instanceof EE_Event) { |
|
| 336 | 336 | $datetimes = $event->get_many_related( |
| 337 | 337 | 'Datetime', |
| 338 | 338 | array( |
| 339 | 339 | 'limit' => 1, |
| 340 | - 'order_by' => array( 'DTT_order' => 'ASC' ) |
|
| 340 | + 'order_by' => array('DTT_order' => 'ASC') |
|
| 341 | 341 | ) |
| 342 | 342 | ); |
| 343 | - return reset( $datetimes ); |
|
| 343 | + return reset($datetimes); |
|
| 344 | 344 | } else { |
| 345 | 345 | return FALSE; |
| 346 | 346 | } |
@@ -355,17 +355,17 @@ discard block |
||
| 355 | 355 | * @param int $EVT_ID |
| 356 | 356 | * @return string |
| 357 | 357 | */ |
| 358 | - public static function get_last_date_obj( $EVT_ID = 0 ) { |
|
| 359 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 360 | - if ( $event instanceof EE_Event ) { |
|
| 358 | + public static function get_last_date_obj($EVT_ID = 0) { |
|
| 359 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 360 | + if ($event instanceof EE_Event) { |
|
| 361 | 361 | $datetimes = $event->get_many_related( |
| 362 | 362 | 'Datetime', |
| 363 | 363 | array( |
| 364 | 364 | 'limit' => 1, |
| 365 | - 'order_by' => array( 'DTT_order' => 'DESC' ) |
|
| 365 | + 'order_by' => array('DTT_order' => 'DESC') |
|
| 366 | 366 | ) |
| 367 | 367 | ); |
| 368 | - return end( $datetimes ); |
|
| 368 | + return end($datetimes); |
|
| 369 | 369 | } else { |
| 370 | 370 | return FALSE; |
| 371 | 371 | } |
@@ -380,17 +380,17 @@ discard block |
||
| 380 | 380 | * @param int $EVT_ID |
| 381 | 381 | * @return string |
| 382 | 382 | */ |
| 383 | - public static function get_earliest_date_obj( $EVT_ID = 0 ) { |
|
| 384 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 385 | - if ( $event instanceof EE_Event ) { |
|
| 383 | + public static function get_earliest_date_obj($EVT_ID = 0) { |
|
| 384 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 385 | + if ($event instanceof EE_Event) { |
|
| 386 | 386 | $datetimes = $event->get_many_related( |
| 387 | 387 | 'Datetime', |
| 388 | 388 | array( |
| 389 | 389 | 'limit' => 1, |
| 390 | - 'order_by' => array( 'DTT_EVT_start' => 'ASC' ) |
|
| 390 | + 'order_by' => array('DTT_EVT_start' => 'ASC') |
|
| 391 | 391 | ) |
| 392 | 392 | ); |
| 393 | - return reset( $datetimes ); |
|
| 393 | + return reset($datetimes); |
|
| 394 | 394 | } else { |
| 395 | 395 | return FALSE; |
| 396 | 396 | } |
@@ -405,17 +405,17 @@ discard block |
||
| 405 | 405 | * @param int $EVT_ID |
| 406 | 406 | * @return string |
| 407 | 407 | */ |
| 408 | - public static function get_latest_date_obj( $EVT_ID = 0 ) { |
|
| 409 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 410 | - if ( $event instanceof EE_Event ) { |
|
| 408 | + public static function get_latest_date_obj($EVT_ID = 0) { |
|
| 409 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 410 | + if ($event instanceof EE_Event) { |
|
| 411 | 411 | $datetimes = $event->get_many_related( |
| 412 | 412 | 'Datetime', |
| 413 | 413 | array( |
| 414 | 414 | 'limit' => 1, |
| 415 | - 'order_by' => array( 'DTT_EVT_start' => 'DESC' ) |
|
| 415 | + 'order_by' => array('DTT_EVT_start' => 'DESC') |
|
| 416 | 416 | ) |
| 417 | 417 | ); |
| 418 | - return end( $datetimes ); |
|
| 418 | + return end($datetimes); |
|
| 419 | 419 | } else { |
| 420 | 420 | return FALSE; |
| 421 | 421 | } |
@@ -433,17 +433,17 @@ discard block |
||
| 433 | 433 | * @param null $limit |
| 434 | 434 | * @return EE_Datetime[] |
| 435 | 435 | */ |
| 436 | - public static function get_all_date_obj( $EVT_ID = 0, $include_expired = null, $include_deleted = false, $limit = NULL ) { |
|
| 437 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 438 | - if($include_expired === null){ |
|
| 439 | - if($event instanceof EE_Event && $event->is_expired()){ |
|
| 436 | + public static function get_all_date_obj($EVT_ID = 0, $include_expired = null, $include_deleted = false, $limit = NULL) { |
|
| 437 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 438 | + if ($include_expired === null) { |
|
| 439 | + if ($event instanceof EE_Event && $event->is_expired()) { |
|
| 440 | 440 | $include_expired = true; |
| 441 | - }else{ |
|
| 441 | + } else { |
|
| 442 | 442 | $include_expired = false; |
| 443 | 443 | } |
| 444 | 444 | } |
| 445 | 445 | |
| 446 | - if ( $event instanceof EE_Event ) { |
|
| 446 | + if ($event instanceof EE_Event) { |
|
| 447 | 447 | return $event->datetimes_ordered($include_expired, $include_deleted, $limit); |
| 448 | 448 | } else { |
| 449 | 449 | return array(); |
@@ -459,11 +459,11 @@ discard block |
||
| 459 | 459 | * @param int $EVT_ID |
| 460 | 460 | * @return string |
| 461 | 461 | */ |
| 462 | - public static function event_link_url( $EVT_ID = 0 ) { |
|
| 463 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 464 | - if ( $event instanceof EE_Event ) { |
|
| 465 | - $url = $event->external_url() !== NULL && $event->external_url() !== '' ? $event->external_url() : get_permalink( $event->ID() ); |
|
| 466 | - return preg_match( "~^(?:f|ht)tps?://~i", $url ) ? $url : 'http://' . $url; |
|
| 462 | + public static function event_link_url($EVT_ID = 0) { |
|
| 463 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 464 | + if ($event instanceof EE_Event) { |
|
| 465 | + $url = $event->external_url() !== NULL && $event->external_url() !== '' ? $event->external_url() : get_permalink($event->ID()); |
|
| 466 | + return preg_match("~^(?:f|ht)tps?://~i", $url) ? $url : 'http://'.$url; |
|
| 467 | 467 | } |
| 468 | 468 | return NULL; |
| 469 | 469 | } |
@@ -477,11 +477,11 @@ discard block |
||
| 477 | 477 | * @param int $EVT_ID |
| 478 | 478 | * @return string |
| 479 | 479 | */ |
| 480 | - public static function event_phone( $EVT_ID = 0 ) { |
|
| 481 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 482 | - if ( $event instanceof EE_Event ) { |
|
| 483 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
| 484 | - return EEH_Schema::telephone( $event->phone() ); |
|
| 480 | + public static function event_phone($EVT_ID = 0) { |
|
| 481 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 482 | + if ($event instanceof EE_Event) { |
|
| 483 | + EE_Registry::instance()->load_helper('Formatter'); |
|
| 484 | + return EEH_Schema::telephone($event->phone()); |
|
| 485 | 485 | } |
| 486 | 486 | return NULL; |
| 487 | 487 | } |
@@ -498,23 +498,23 @@ discard block |
||
| 498 | 498 | * @param string $after |
| 499 | 499 | * @return string |
| 500 | 500 | */ |
| 501 | - public static function edit_event_link( $EVT_ID = 0, $link = '', $before = '', $after = '' ) { |
|
| 502 | - $event = EEH_Event_View::get_event( $EVT_ID ); |
|
| 503 | - if ( $event instanceof EE_Event ) { |
|
| 501 | + public static function edit_event_link($EVT_ID = 0, $link = '', $before = '', $after = '') { |
|
| 502 | + $event = EEH_Event_View::get_event($EVT_ID); |
|
| 503 | + if ($event instanceof EE_Event) { |
|
| 504 | 504 | // can the user edit this post ? |
| 505 | - if ( current_user_can( 'edit_post', $event->ID() )) { |
|
| 505 | + if (current_user_can('edit_post', $event->ID())) { |
|
| 506 | 506 | // set link text |
| 507 | - $link = ! empty( $link ) ? $link : __('edit this event'); |
|
| 507 | + $link = ! empty($link) ? $link : __('edit this event'); |
|
| 508 | 508 | // generate nonce |
| 509 | - $nonce = wp_create_nonce( 'edit_nonce' ); |
|
| 509 | + $nonce = wp_create_nonce('edit_nonce'); |
|
| 510 | 510 | // generate url to event editor for this event |
| 511 | - $url = add_query_arg( array( 'page' => 'espresso_events', 'action' => 'edit', 'post' => $event->ID(), 'edit_nonce' => $nonce ), admin_url() ); |
|
| 511 | + $url = add_query_arg(array('page' => 'espresso_events', 'action' => 'edit', 'post' => $event->ID(), 'edit_nonce' => $nonce), admin_url()); |
|
| 512 | 512 | // get edit CPT text |
| 513 | - $post_type_obj = get_post_type_object( 'espresso_events' ); |
|
| 513 | + $post_type_obj = get_post_type_object('espresso_events'); |
|
| 514 | 514 | // build final link html |
| 515 | - $link = '<a class="post-edit-link" href="' . $url . '" title="' . esc_attr( $post_type_obj->labels->edit_item ) . '">' . $link . '</a>'; |
|
| 515 | + $link = '<a class="post-edit-link" href="'.$url.'" title="'.esc_attr($post_type_obj->labels->edit_item).'">'.$link.'</a>'; |
|
| 516 | 516 | // put it all together |
| 517 | - return $before . apply_filters( 'edit_post_link', $link, $event->ID() ) . $after; |
|
| 517 | + return $before.apply_filters('edit_post_link', $link, $event->ID()).$after; |
|
| 518 | 518 | } |
| 519 | 519 | } |
| 520 | 520 | return ''; |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * |
| 10 | 10 | * ------------------------------------------------------------------------ |
| 11 | 11 | */ |
| 12 | -class EEH_URL{ |
|
| 12 | +class EEH_URL { |
|
| 13 | 13 | |
| 14 | 14 | /** |
| 15 | 15 | * _add_query_arg |
@@ -21,28 +21,28 @@ discard block |
||
| 21 | 21 | * @param bool $exclude_nonce If true then the nonce will be excluded from the generated url. |
| 22 | 22 | * @return string |
| 23 | 23 | */ |
| 24 | - public static function add_query_args_and_nonce( $args = array(), $url = '', $exclude_nonce = false ) { |
|
| 25 | - if ( empty( $url ) ) { |
|
| 26 | - $user_msg = __('An error occurred. A URL is a required parameter for the add_query_args_and_nonce method.', 'event_espresso' ); |
|
| 27 | - $dev_msg = $user_msg . "\n" . sprintf( |
|
| 28 | - __('In order to dynamically generate nonces for your actions, you need to supply a valid URL as a second parameter for the %s::add_query_args_and_nonce method.', 'event_espresso' ), |
|
| 24 | + public static function add_query_args_and_nonce($args = array(), $url = '', $exclude_nonce = false) { |
|
| 25 | + if (empty($url)) { |
|
| 26 | + $user_msg = __('An error occurred. A URL is a required parameter for the add_query_args_and_nonce method.', 'event_espresso'); |
|
| 27 | + $dev_msg = $user_msg."\n".sprintf( |
|
| 28 | + __('In order to dynamically generate nonces for your actions, you need to supply a valid URL as a second parameter for the %s::add_query_args_and_nonce method.', 'event_espresso'), |
|
| 29 | 29 | __CLASS__ |
| 30 | 30 | ); |
| 31 | - EE_Error::add_error( $user_msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
| 31 | + EE_Error::add_error($user_msg.'||'.$dev_msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 32 | 32 | } |
| 33 | 33 | // check that an action exists and add nonce |
| 34 | - if ( ! $exclude_nonce ) { |
|
| 35 | - if ( isset( $args['action'] ) && ! empty( $args['action'] ) ) { |
|
| 36 | - $args = array_merge( $args, array( $args['action'] . '_nonce' => wp_create_nonce( $args['action'] . '_nonce' ) ) ); |
|
| 34 | + if ( ! $exclude_nonce) { |
|
| 35 | + if (isset($args['action']) && ! empty($args['action'])) { |
|
| 36 | + $args = array_merge($args, array($args['action'].'_nonce' => wp_create_nonce($args['action'].'_nonce'))); |
|
| 37 | 37 | } else { |
| 38 | - $args = array_merge( $args, array( 'action' => 'default', 'default_nonce' => wp_create_nonce( 'default_nonce' ) ) ); |
|
| 38 | + $args = array_merge($args, array('action' => 'default', 'default_nonce' => wp_create_nonce('default_nonce'))); |
|
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | //finally, let's always add a return address (if present) :) |
| 43 | - $args = ! empty( $_REQUEST['action'] ) ? array_merge( $args, array( 'return' => $_REQUEST['action'] ) ) : $args; |
|
| 43 | + $args = ! empty($_REQUEST['action']) ? array_merge($args, array('return' => $_REQUEST['action'])) : $args; |
|
| 44 | 44 | |
| 45 | - return add_query_arg( $args, $url ); |
|
| 45 | + return add_query_arg($args, $url); |
|
| 46 | 46 | |
| 47 | 47 | } |
| 48 | 48 | |
@@ -55,17 +55,17 @@ discard block |
||
| 55 | 55 | * @param boolean $sslverify whether we care if the SSL certificate for the requested site is setup properly |
| 56 | 56 | * @return boolean |
| 57 | 57 | */ |
| 58 | - public static function remote_file_exists( $url, $args = array() ){ |
|
| 59 | - $results = wp_remote_request($url,array_merge( array( |
|
| 58 | + public static function remote_file_exists($url, $args = array()) { |
|
| 59 | + $results = wp_remote_request($url, array_merge(array( |
|
| 60 | 60 | 'method'=>'GET', |
| 61 | 61 | 'redirection'=>1 |
| 62 | - ), $args ) ); |
|
| 63 | - if( ! $results instanceof WP_Error && |
|
| 62 | + ), $args)); |
|
| 63 | + if ( ! $results instanceof WP_Error && |
|
| 64 | 64 | isset($results['response']) && |
| 65 | 65 | isset($results['response']['code']) && |
| 66 | - $results['response']['code'] == '200'){ |
|
| 66 | + $results['response']['code'] == '200') { |
|
| 67 | 67 | return true; |
| 68 | - }else{ |
|
| 68 | + } else { |
|
| 69 | 69 | return false; |
| 70 | 70 | } |
| 71 | 71 | } |
@@ -81,29 +81,29 @@ discard block |
||
| 81 | 81 | * @param bool $base_url_only - TRUE will only return the scheme and host with no other parameters |
| 82 | 82 | * @return string |
| 83 | 83 | */ |
| 84 | - public static function refactor_url( $url = '', $remove_query = TRUE, $base_url_only = FALSE ) { |
|
| 84 | + public static function refactor_url($url = '', $remove_query = TRUE, $base_url_only = FALSE) { |
|
| 85 | 85 | // break apart incoming URL |
| 86 | - $url_bits = parse_url( $url ); |
|
| 86 | + $url_bits = parse_url($url); |
|
| 87 | 87 | // HTTP or HTTPS ? |
| 88 | - $scheme = isset( $url_bits[ 'scheme' ] ) ? $url_bits[ 'scheme' ] . '://' : 'http://'; |
|
| 88 | + $scheme = isset($url_bits['scheme']) ? $url_bits['scheme'].'://' : 'http://'; |
|
| 89 | 89 | // domain |
| 90 | - $host = isset( $url_bits[ 'host' ] ) ? $url_bits[ 'host' ] : ''; |
|
| 90 | + $host = isset($url_bits['host']) ? $url_bits['host'] : ''; |
|
| 91 | 91 | // if only the base URL is requested, then return that now |
| 92 | - if ( $base_url_only ) { |
|
| 93 | - return $scheme . $host; |
|
| 92 | + if ($base_url_only) { |
|
| 93 | + return $scheme.$host; |
|
| 94 | 94 | } |
| 95 | - $port = isset( $url_bits[ 'port' ] ) ? ':' . $url_bits[ 'port' ] : ''; |
|
| 96 | - $user = isset( $url_bits[ 'user' ] ) ? $url_bits[ 'user' ] : ''; |
|
| 97 | - $pass = isset( $url_bits[ 'pass' ] ) ? ':' . $url_bits[ 'pass' ] : ''; |
|
| 98 | - $pass = ( $user || $pass ) ? $pass . '@' : ''; |
|
| 99 | - $path = isset( $url_bits[ 'path' ] ) ? $url_bits[ 'path' ] : ''; |
|
| 95 | + $port = isset($url_bits['port']) ? ':'.$url_bits['port'] : ''; |
|
| 96 | + $user = isset($url_bits['user']) ? $url_bits['user'] : ''; |
|
| 97 | + $pass = isset($url_bits['pass']) ? ':'.$url_bits['pass'] : ''; |
|
| 98 | + $pass = ($user || $pass) ? $pass.'@' : ''; |
|
| 99 | + $path = isset($url_bits['path']) ? $url_bits['path'] : ''; |
|
| 100 | 100 | // if the query string is not required, then return what we have so far |
| 101 | - if ( $remove_query ) { |
|
| 102 | - return $scheme . $user . $pass . $host . $port . $path; |
|
| 101 | + if ($remove_query) { |
|
| 102 | + return $scheme.$user.$pass.$host.$port.$path; |
|
| 103 | 103 | } |
| 104 | - $query = isset( $url_bits[ 'query' ] ) ? '?' . $url_bits[ 'query' ] : ''; |
|
| 105 | - $fragment = isset( $url_bits[ 'fragment' ] ) ? '#' . $url_bits[ 'fragment' ] : ''; |
|
| 106 | - return $scheme . $user . $pass . $host . $port . $path . $query . $fragment; |
|
| 104 | + $query = isset($url_bits['query']) ? '?'.$url_bits['query'] : ''; |
|
| 105 | + $fragment = isset($url_bits['fragment']) ? '#'.$url_bits['fragment'] : ''; |
|
| 106 | + return $scheme.$user.$pass.$host.$port.$path.$query.$fragment; |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | |
@@ -116,29 +116,29 @@ discard block |
||
| 116 | 116 | * @param bool $as_array TRUE (default) will return query params as an array of key value pairs, FALSE will simply return the query string |
| 117 | 117 | * @return string|array |
| 118 | 118 | */ |
| 119 | - public static function get_query_string( $url = '', $as_array = TRUE ) { |
|
| 119 | + public static function get_query_string($url = '', $as_array = TRUE) { |
|
| 120 | 120 | // break apart incoming URL |
| 121 | - $url_bits = parse_url( $url ); |
|
| 121 | + $url_bits = parse_url($url); |
|
| 122 | 122 | // grab query string from URL |
| 123 | - $query = isset( $url_bits[ 'query' ] ) ? $url_bits[ 'query' ] : ''; |
|
| 123 | + $query = isset($url_bits['query']) ? $url_bits['query'] : ''; |
|
| 124 | 124 | // if we don't want the query string formatted into an array of key => value pairs, then just return it as is |
| 125 | - if ( ! $as_array ) { |
|
| 125 | + if ( ! $as_array) { |
|
| 126 | 126 | return $query; |
| 127 | 127 | } |
| 128 | 128 | // if no query string exists then just return an empty array now |
| 129 | - if ( empty( $query )) { |
|
| 129 | + if (empty($query)) { |
|
| 130 | 130 | return array(); |
| 131 | 131 | } |
| 132 | 132 | // empty array to hold results |
| 133 | 133 | $query_params = array(); |
| 134 | 134 | // now break apart the query string into separate params |
| 135 | - $query = explode( '&', $query ); |
|
| 135 | + $query = explode('&', $query); |
|
| 136 | 136 | // loop thru our query params |
| 137 | - foreach ( $query as $query_args ) { |
|
| 137 | + foreach ($query as $query_args) { |
|
| 138 | 138 | // break apart the key value pairs |
| 139 | - $query_args = explode( '=', $query_args ); |
|
| 139 | + $query_args = explode('=', $query_args); |
|
| 140 | 140 | // and add to our results array |
| 141 | - $query_params[ $query_args[0] ] = $query_args[1]; |
|
| 141 | + $query_params[$query_args[0]] = $query_args[1]; |
|
| 142 | 142 | } |
| 143 | 143 | return $query_params; |
| 144 | 144 | } |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | * prevent_prefetching |
| 150 | 150 | * @return void |
| 151 | 151 | */ |
| 152 | - public static function prevent_prefetching(){ |
|
| 152 | + public static function prevent_prefetching() { |
|
| 153 | 153 | // prevent browsers from prefetching of the rel='next' link, because it may contain content that interferes with the registration process |
| 154 | 154 | remove_action('wp_head', 'adjacent_posts_rel_link_wp_head'); |
| 155 | 155 | } |
@@ -164,9 +164,9 @@ discard block |
||
| 164 | 164 | * @param string $prefix Use this to prefix the string with something. |
| 165 | 165 | * @return string |
| 166 | 166 | */ |
| 167 | - public static function generate_unique_token( $prefix = '' ) { |
|
| 168 | - $token = md5( uniqid() . mt_rand() ); |
|
| 169 | - return $prefix ? $prefix . '_' . $token : $token; |
|
| 167 | + public static function generate_unique_token($prefix = '') { |
|
| 168 | + $token = md5(uniqid().mt_rand()); |
|
| 169 | + return $prefix ? $prefix.'_'.$token : $token; |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | * add_nocache_headers |
| 176 | 176 | * @return void |
| 177 | 177 | */ |
| 178 | - public static function add_nocache_headers(){ |
|
| 178 | + public static function add_nocache_headers() { |
|
| 179 | 179 | // add no cache headers |
| 180 | 180 | // add_action( 'wp_head' , array( 'EED_Single_Page_Checkout', 'nocache_headers' ), 10 ); |
| 181 | 181 | // plus a little extra for nginx |
@@ -192,19 +192,19 @@ discard block |
||
| 192 | 192 | * @param string $server_variable |
| 193 | 193 | * @return string |
| 194 | 194 | */ |
| 195 | - public static function filter_input_server_url( $server_variable = 'REQUEST_URI' ){ |
|
| 195 | + public static function filter_input_server_url($server_variable = 'REQUEST_URI') { |
|
| 196 | 196 | $URL = ''; |
| 197 | 197 | $server_variables = array( |
| 198 | 198 | 'REQUEST_URI' => 1, |
| 199 | 199 | 'HTTP_HOST' => 1, |
| 200 | 200 | 'PHP_SELF' => 1, |
| 201 | 201 | ); |
| 202 | - $server_variable = strtoupper( $server_variable ); |
|
| 202 | + $server_variable = strtoupper($server_variable); |
|
| 203 | 203 | // whitelist INPUT_SERVER var |
| 204 | - if ( isset( $server_variables[ $server_variable ] ) ) { |
|
| 205 | - $URL = filter_input( INPUT_SERVER, $server_variable, FILTER_SANITIZE_URL, FILTER_NULL_ON_FAILURE ); |
|
| 206 | - if ( empty( $URL ) ) { |
|
| 207 | - $URL = esc_url( $_SERVER[ $server_variable ] ); |
|
| 204 | + if (isset($server_variables[$server_variable])) { |
|
| 205 | + $URL = filter_input(INPUT_SERVER, $server_variable, FILTER_SANITIZE_URL, FILTER_NULL_ON_FAILURE); |
|
| 206 | + if (empty($URL)) { |
|
| 207 | + $URL = esc_url($_SERVER[$server_variable]); |
|
| 208 | 208 | } |
| 209 | 209 | } |
| 210 | 210 | return $URL; |
@@ -5,16 +5,16 @@ |
||
| 5 | 5 | exit( 'No direct script access allowed' ); |
| 6 | 6 | } |
| 7 | 7 | /** |
| 8 | - * Class EE_Template_Part |
|
| 9 | - * |
|
| 10 | - * class for holding details about a template part |
|
| 11 | - * |
|
| 12 | - * @package Event Espresso |
|
| 13 | - * @subpackage core |
|
| 14 | - * @author Brent Christensen |
|
| 15 | - * @since $VID:$ |
|
| 16 | - * |
|
| 17 | - */ |
|
| 8 | + * Class EE_Template_Part |
|
| 9 | + * |
|
| 10 | + * class for holding details about a template part |
|
| 11 | + * |
|
| 12 | + * @package Event Espresso |
|
| 13 | + * @subpackage core |
|
| 14 | + * @author Brent Christensen |
|
| 15 | + * @since $VID:$ |
|
| 16 | + * |
|
| 17 | + */ |
|
| 18 | 18 | class EE_Template_Part { |
| 19 | 19 | |
| 20 | 20 | |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | //namespace EventEspresso\core\libraries\templates; |
| 3 | 3 | |
| 4 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
| 5 | - exit( 'No direct script access allowed' ); |
|
| 4 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 5 | + exit('No direct script access allowed'); |
|
| 6 | 6 | } |
| 7 | 7 | /** |
| 8 | 8 | * Class EE_Template_Part |
@@ -47,11 +47,11 @@ discard block |
||
| 47 | 47 | * @param string $template |
| 48 | 48 | * @param int $priority |
| 49 | 49 | */ |
| 50 | - public function __construct( $name, $label, $template, $priority = 100 ) { |
|
| 51 | - $this->set_name( $name ); |
|
| 52 | - $this->set_label( $label ); |
|
| 53 | - $this->set_template( $template ); |
|
| 54 | - $this->set_priority( $priority ); |
|
| 50 | + public function __construct($name, $label, $template, $priority = 100) { |
|
| 51 | + $this->set_name($name); |
|
| 52 | + $this->set_label($label); |
|
| 53 | + $this->set_template($template); |
|
| 54 | + $this->set_priority($priority); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | /** |
| 69 | 69 | * @param mixed $name |
| 70 | 70 | */ |
| 71 | - public function set_name( $name ) { |
|
| 71 | + public function set_name($name) { |
|
| 72 | 72 | $this->name = $name; |
| 73 | 73 | } |
| 74 | 74 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | /** |
| 87 | 87 | * @param string $label |
| 88 | 88 | */ |
| 89 | - public function set_label( $label ) { |
|
| 89 | + public function set_label($label) { |
|
| 90 | 90 | $this->label = $label; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | /** |
| 105 | 105 | * @param string $template |
| 106 | 106 | */ |
| 107 | - public function set_template( $template ) { |
|
| 107 | + public function set_template($template) { |
|
| 108 | 108 | $this->template = $template; |
| 109 | 109 | } |
| 110 | 110 | |
@@ -122,8 +122,8 @@ discard block |
||
| 122 | 122 | /** |
| 123 | 123 | * @param int $priority |
| 124 | 124 | */ |
| 125 | - public function set_priority( $priority ) { |
|
| 126 | - $this->priority = intval( $priority ); |
|
| 125 | + public function set_priority($priority) { |
|
| 126 | + $this->priority = intval($priority); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | //namespace EventEspresso\core\libraries\templates; |
| 3 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
| 4 | - exit( 'No direct script access allowed' ); |
|
| 3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 4 | + exit('No direct script access allowed'); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | |
@@ -70,23 +70,23 @@ discard block |
||
| 70 | 70 | * @param string $template - name or path of template to be used by EEH_Template::locate_template() |
| 71 | 71 | * @param int $priority - order in which template parts should be applied |
| 72 | 72 | */ |
| 73 | - public function add_template_part( $name, $label, $template, $priority ) { |
|
| 73 | + public function add_template_part($name, $label, $template, $priority) { |
|
| 74 | 74 | // SplPriorityQueue doesn't play nice with multiple items having the same priority |
| 75 | 75 | // so if the incoming priority is already occupied, then let's increment it by one, |
| 76 | 76 | // and then pass everything back into this method and try again with the new priority |
| 77 | - if ( isset( $this->priorities[ $priority ] ) ) { |
|
| 77 | + if (isset($this->priorities[$priority])) { |
|
| 78 | 78 | $priority++; |
| 79 | - $this->add_template_part( $name, $label, $template, $priority ); |
|
| 79 | + $this->add_template_part($name, $label, $template, $priority); |
|
| 80 | 80 | return; |
| 81 | 81 | } |
| 82 | 82 | // kk now we can mark this priority as being occupied |
| 83 | - $this->priorities[ $priority ] = true; |
|
| 83 | + $this->priorities[$priority] = true; |
|
| 84 | 84 | // create the template part and add to the queue |
| 85 | 85 | $this->template_parts->insert( |
| 86 | - new EE_Template_Part( $name, $label, $template, $priority ), |
|
| 86 | + new EE_Template_Part($name, $label, $template, $priority), |
|
| 87 | 87 | $priority |
| 88 | 88 | ); |
| 89 | - if ( $name == 'event' ) { |
|
| 89 | + if ($name == 'event') { |
|
| 90 | 90 | $this->event_desc_priority = $priority; |
| 91 | 91 | } |
| 92 | 92 | } |
@@ -103,10 +103,10 @@ discard block |
||
| 103 | 103 | * @param string $content |
| 104 | 104 | * @return string |
| 105 | 105 | */ |
| 106 | - public function apply_template_part_filters( $content = '' ) { |
|
| 106 | + public function apply_template_part_filters($content = '') { |
|
| 107 | 107 | $this->template_parts->rewind(); |
| 108 | 108 | // loop through template parts and position content |
| 109 | - while ( $this->template_parts->valid() ) { |
|
| 109 | + while ($this->template_parts->valid()) { |
|
| 110 | 110 | $this->_position_template_part( |
| 111 | 111 | $content, |
| 112 | 112 | $this->template_parts->current()->template(), |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | $this->template_parts->next(); |
| 116 | 116 | } |
| 117 | 117 | // now simply add our three strings of content together |
| 118 | - return $this->before_event_content . $this->event_content . $this->after_event_content; |
|
| 118 | + return $this->before_event_content.$this->event_content.$this->after_event_content; |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | |
@@ -136,16 +136,16 @@ discard block |
||
| 136 | 136 | * @param int $priority |
| 137 | 137 | * @return string |
| 138 | 138 | */ |
| 139 | - protected function _position_template_part( $content, $template, $priority ) { |
|
| 139 | + protected function _position_template_part($content, $template, $priority) { |
|
| 140 | 140 | // Event Description content is the actual incoming content itself |
| 141 | - if ( $priority === $this->event_desc_priority ) { |
|
| 141 | + if ($priority === $this->event_desc_priority) { |
|
| 142 | 142 | $this->event_content = $content; |
| 143 | - } else if ( $priority < $this->event_desc_priority ) { |
|
| 143 | + } else if ($priority < $this->event_desc_priority) { |
|
| 144 | 144 | // everything BEFORE the Event Description |
| 145 | - $this->before_event_content .= EEH_Template::locate_template( $template ); |
|
| 146 | - } else if ( $priority > $this->event_desc_priority ) { |
|
| 145 | + $this->before_event_content .= EEH_Template::locate_template($template); |
|
| 146 | + } else if ($priority > $this->event_desc_priority) { |
|
| 147 | 147 | // everything AFTER the Event Description |
| 148 | - $this->after_event_content .= EEH_Template::locate_template( $template ); |
|
| 148 | + $this->after_event_content .= EEH_Template::locate_template($template); |
|
| 149 | 149 | } |
| 150 | 150 | } |
| 151 | 151 | |
@@ -170,16 +170,16 @@ discard block |
||
| 170 | 170 | $list_item_css_class = '', |
| 171 | 171 | $list_item_css_id_prefix = '' |
| 172 | 172 | ) { |
| 173 | - EE_Registry::instance()->load_helper( 'HTML' ); |
|
| 174 | - $event_archive_display_order = EEH_HTML::ul( $list_css_id, $list_css_class ); |
|
| 173 | + EE_Registry::instance()->load_helper('HTML'); |
|
| 174 | + $event_archive_display_order = EEH_HTML::ul($list_css_id, $list_css_class); |
|
| 175 | 175 | $this->template_parts->rewind(); |
| 176 | 176 | // loop through template parts and add template content |
| 177 | - while ( $this->template_parts->valid() ) { |
|
| 177 | + while ($this->template_parts->valid()) { |
|
| 178 | 178 | $event_archive_display_order .= EEH_HTML::li( |
| 179 | - EEH_HTML::span( '', '', 'dashicons dashicons-arrow-up-alt2' ) . |
|
| 180 | - EEH_HTML::span( '', '', 'dashicons dashicons-arrow-down-alt2' ) . |
|
| 179 | + EEH_HTML::span('', '', 'dashicons dashicons-arrow-up-alt2'). |
|
| 180 | + EEH_HTML::span('', '', 'dashicons dashicons-arrow-down-alt2'). |
|
| 181 | 181 | $this->template_parts->current()->label(), |
| 182 | - $list_item_css_id_prefix . $this->template_parts->current()->name(), |
|
| 182 | + $list_item_css_id_prefix.$this->template_parts->current()->name(), |
|
| 183 | 183 | $list_item_css_class |
| 184 | 184 | ); |
| 185 | 185 | $this->template_parts->next(); |
@@ -199,10 +199,10 @@ discard block |
||
| 199 | 199 | * @return string |
| 200 | 200 | */ |
| 201 | 201 | public function display_template_parts() { |
| 202 | - if ( WP_DEBUG ) { |
|
| 202 | + if (WP_DEBUG) { |
|
| 203 | 203 | $this->template_parts->rewind(); |
| 204 | - while ( $this->template_parts->valid() ) { |
|
| 205 | - EEH_Debug_Tools::printr( $this->template_parts->current(), 'template_part', __FILE__, __LINE__ ); |
|
| 204 | + while ($this->template_parts->valid()) { |
|
| 205 | + EEH_Debug_Tools::printr($this->template_parts->current(), 'template_part', __FILE__, __LINE__); |
|
| 206 | 206 | $this->template_parts->next(); |
| 207 | 207 | } |
| 208 | 208 | } |
@@ -5,17 +5,17 @@ |
||
| 5 | 5 | exit( 'No direct script access allowed' ); |
| 6 | 6 | } |
| 7 | 7 | /** |
| 8 | - * Class EE_Template_Part_PriorityQueue |
|
| 9 | - * |
|
| 10 | - * SplPriorityQueue class configured to only accept instances of EE_Template_Part |
|
| 11 | - * sorts list in ascending order based on priority set when adding template parts |
|
| 12 | - * |
|
| 13 | - * @package Event Espresso |
|
| 14 | - * @subpackage core |
|
| 15 | - * @author Brent Christensen |
|
| 16 | - * @since $VID:$ |
|
| 17 | - * |
|
| 18 | - */ |
|
| 8 | + * Class EE_Template_Part_PriorityQueue |
|
| 9 | + * |
|
| 10 | + * SplPriorityQueue class configured to only accept instances of EE_Template_Part |
|
| 11 | + * sorts list in ascending order based on priority set when adding template parts |
|
| 12 | + * |
|
| 13 | + * @package Event Espresso |
|
| 14 | + * @subpackage core |
|
| 15 | + * @author Brent Christensen |
|
| 16 | + * @since $VID:$ |
|
| 17 | + * |
|
| 18 | + */ |
|
| 19 | 19 | class EE_Template_Part_PriorityQueue extends \SplPriorityQueue { |
| 20 | 20 | |
| 21 | 21 | |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | //namespace EventEspresso\core\libraries\templates; |
| 3 | 3 | |
| 4 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
| 5 | - exit( 'No direct script access allowed' ); |
|
| 4 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 5 | + exit('No direct script access allowed'); |
|
| 6 | 6 | } |
| 7 | 7 | /** |
| 8 | 8 | * Class EE_Template_Part_PriorityQueue |
@@ -31,9 +31,9 @@ discard block |
||
| 31 | 31 | * @param int $priority |
| 32 | 32 | * @return bool |
| 33 | 33 | */ |
| 34 | - public function insert( $object, $priority = 100 ) { |
|
| 35 | - if ( $object instanceof EE_Template_Part ) { |
|
| 36 | - parent::insert( $object, $priority ); |
|
| 34 | + public function insert($object, $priority = 100) { |
|
| 35 | + if ($object instanceof EE_Template_Part) { |
|
| 36 | + parent::insert($object, $priority); |
|
| 37 | 37 | return true; |
| 38 | 38 | } else { |
| 39 | 39 | return false; |
@@ -52,8 +52,8 @@ discard block |
||
| 52 | 52 | * @param int $priority2 |
| 53 | 53 | * @return bool |
| 54 | 54 | */ |
| 55 | - public function compare( $priority1, $priority2 ) { |
|
| 56 | - if ( $priority1 === $priority2 ) { |
|
| 55 | + public function compare($priority1, $priority2) { |
|
| 56 | + if ($priority1 === $priority2) { |
|
| 57 | 57 | return 0; |
| 58 | 58 | } |
| 59 | 59 | return $priority1 > $priority2 ? -1 : 1; |
@@ -21,11 +21,11 @@ discard block |
||
| 21 | 21 | * @param EE_Response $response |
| 22 | 22 | * @return EE_Response |
| 23 | 23 | */ |
| 24 | - public function handle_request( EE_Request $request, EE_Response $response ) { |
|
| 24 | + public function handle_request(EE_Request $request, EE_Response $response) { |
|
| 25 | 25 | $this->_request = $request; |
| 26 | 26 | $this->_response = $response; |
| 27 | 27 | $this->display_alpha_banner_warning(); |
| 28 | - $this->_response = $this->process_request_stack( $this->_request, $this->_response ); |
|
| 28 | + $this->_response = $this->process_request_stack($this->_request, $this->_response); |
|
| 29 | 29 | return $this->_response; |
| 30 | 30 | } |
| 31 | 31 | |
@@ -41,22 +41,22 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | public function display_alpha_banner_warning() { |
| 43 | 43 | // skip AJAX requests |
| 44 | - if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { |
|
| 44 | + if (defined('DOING_AJAX') && DOING_AJAX) { |
|
| 45 | 45 | return; |
| 46 | 46 | } |
| 47 | 47 | // skip stable releases |
| 48 | - if ( strpos( EVENT_ESPRESSO_VERSION, '.alpha' ) === false ) { |
|
| 48 | + if (strpos(EVENT_ESPRESSO_VERSION, '.alpha') === false) { |
|
| 49 | 49 | return; |
| 50 | 50 | } |
| 51 | 51 | // post release candidate warning |
| 52 | - if ( is_admin() ) { |
|
| 53 | - add_action( 'admin_notices', array( $this, 'alpha_banner_admin_notice' ), -999 ); |
|
| 52 | + if (is_admin()) { |
|
| 53 | + add_action('admin_notices', array($this, 'alpha_banner_admin_notice'), -999); |
|
| 54 | 54 | } else { |
| 55 | 55 | // site admin has authorized use of non-stable release candidate for production |
| 56 | - if ( defined( 'ALLOW_NON_STABLE_RELEASE_ON_LIVE_SITE' ) && ALLOW_NON_STABLE_RELEASE_ON_LIVE_SITE ) { |
|
| 56 | + if (defined('ALLOW_NON_STABLE_RELEASE_ON_LIVE_SITE') && ALLOW_NON_STABLE_RELEASE_ON_LIVE_SITE) { |
|
| 57 | 57 | return; |
| 58 | 58 | } |
| 59 | - add_action( 'shutdown', array( $this, 'alpha_banner_warning_notice' ), 10 ); |
|
| 59 | + add_action('shutdown', array($this, 'alpha_banner_warning_notice'), 10); |
|
| 60 | 60 | } |
| 61 | 61 | } |
| 62 | 62 | |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | public function alpha_banner_admin_notice() { |
| 73 | 73 | EE_Error::add_attention( |
| 74 | 74 | sprintf( |
| 75 | - __( 'This version of Event Espresso is for testing and/or evaluation purposes only. It is %1$snot%2$s considered a stable release and should therefore %1$snot%2$s be activated on a live or production website.', 'event_espresso' ), |
|
| 75 | + __('This version of Event Espresso is for testing and/or evaluation purposes only. It is %1$snot%2$s considered a stable release and should therefore %1$snot%2$s be activated on a live or production website.', 'event_espresso'), |
|
| 76 | 76 | '<strong>', |
| 77 | 77 | '</strong>' |
| 78 | 78 | ), |
@@ -91,11 +91,11 @@ discard block |
||
| 91 | 91 | */ |
| 92 | 92 | public function alpha_banner_warning_notice() { |
| 93 | 93 | global $pagenow; |
| 94 | - if ( in_array( $pagenow, array( 'wp-login.php', 'wp-register.php' ) ) ) { |
|
| 94 | + if (in_array($pagenow, array('wp-login.php', 'wp-register.php'))) { |
|
| 95 | 95 | return; |
| 96 | 96 | } |
| 97 | 97 | printf( |
| 98 | - __( '%1$sThis version of Event Espresso is for testing and/or evaluation purposes only. It is %2$snot%3$s considered a stable release and should therefore %2$snot%3$s be activated on a live or production website.%4$s', 'event_espresso' ), |
|
| 98 | + __('%1$sThis version of Event Espresso is for testing and/or evaluation purposes only. It is %2$snot%3$s considered a stable release and should therefore %2$snot%3$s be activated on a live or production website.%4$s', 'event_espresso'), |
|
| 99 | 99 | '<div id="ee-release-candidate-notice-dv" class="ee-really-important-notice-dv"><p>', |
| 100 | 100 | '<strong>', |
| 101 | 101 | '</strong>', |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @access public |
| 44 | 44 | * @param \EEI_Request_Decorator $request_stack |
| 45 | 45 | */ |
| 46 | - public function __construct( EEI_Request_Decorator $request_stack ) { |
|
| 46 | + public function __construct(EEI_Request_Decorator $request_stack) { |
|
| 47 | 47 | $this->request_stack = $request_stack; |
| 48 | 48 | } |
| 49 | 49 | |
@@ -57,13 +57,13 @@ discard block |
||
| 57 | 57 | * @param EE_Response $response |
| 58 | 58 | * @return EE_Response |
| 59 | 59 | */ |
| 60 | - protected function process_request_stack( EE_Request $request, EE_Response $response ) { |
|
| 60 | + protected function process_request_stack(EE_Request $request, EE_Response $response) { |
|
| 61 | 61 | $this->_request = $request; |
| 62 | 62 | $this->_response = $response; |
| 63 | - if ( ! $this->_response->request_terminated() ) { |
|
| 64 | - $this->_response = $this->request_stack->handle_request( $this->_request, $this->_response ); |
|
| 63 | + if ( ! $this->_response->request_terminated()) { |
|
| 64 | + $this->_response = $this->request_stack->handle_request($this->_request, $this->_response); |
|
| 65 | 65 | } else { |
| 66 | - espresso_deactivate_plugin( EE_PLUGIN_BASENAME ); |
|
| 66 | + espresso_deactivate_plugin(EE_PLUGIN_BASENAME); |
|
| 67 | 67 | } |
| 68 | 68 | return $this->_response; |
| 69 | 69 | } |
@@ -22,34 +22,34 @@ discard block |
||
| 22 | 22 | * @param EE_Response $response |
| 23 | 23 | * @return EE_Response |
| 24 | 24 | */ |
| 25 | - public function handle_request( EE_Request $request, EE_Response $response ) { |
|
| 25 | + public function handle_request(EE_Request $request, EE_Response $response) { |
|
| 26 | 26 | $this->_request = $request; |
| 27 | 27 | $this->_response = $response; |
| 28 | 28 | //$this->_response->add_output( "\n\t IN >> " . __CLASS__ ); |
| 29 | 29 | //$this->_response->set_notice( 1, 'hey look at this' ); |
| 30 | 30 | // check required WP version |
| 31 | - if ( ! $this->_minimum_wp_version_required() ) { |
|
| 32 | - $this->_request->un_set( 'activate', true ); |
|
| 33 | - add_action( 'admin_notices', array( $this, 'minimum_wp_version_error' ), 1 ); |
|
| 31 | + if ( ! $this->_minimum_wp_version_required()) { |
|
| 32 | + $this->_request->un_set('activate', true); |
|
| 33 | + add_action('admin_notices', array($this, 'minimum_wp_version_error'), 1); |
|
| 34 | 34 | //$this->_response->add_output( "\n<br />" . 'minimum_wp_version_error' ); |
| 35 | 35 | $this->_response->terminate_request(); |
| 36 | 36 | } |
| 37 | 37 | // check required PHP version |
| 38 | - if ( ! $this->_minimum_php_version_required() ) { |
|
| 39 | - $this->_request->un_set( 'activate', true ); |
|
| 40 | - add_action( 'admin_notices', array( $this, 'minimum_php_version_error' ), 1 ); |
|
| 38 | + if ( ! $this->_minimum_php_version_required()) { |
|
| 39 | + $this->_request->un_set('activate', true); |
|
| 40 | + add_action('admin_notices', array($this, 'minimum_php_version_error'), 1); |
|
| 41 | 41 | //$this->_response->add_output( "\n<br />" . 'minimum_php_version_error' ); |
| 42 | 42 | $this->_response->terminate_request(); |
| 43 | 43 | } |
| 44 | 44 | // check recommended WP version |
| 45 | - if ( ! $this->_minimum_wp_version_recommended() ) { |
|
| 45 | + if ( ! $this->_minimum_wp_version_recommended()) { |
|
| 46 | 46 | $this->_display_minimum_recommended_wp_version_notice(); |
| 47 | 47 | } |
| 48 | 48 | // check recommended PHP version |
| 49 | - if ( ! $this->_minimum_php_version_recommended() ) { |
|
| 49 | + if ( ! $this->_minimum_php_version_recommended()) { |
|
| 50 | 50 | $this->_display_minimum_recommended_php_version_notice(); |
| 51 | 51 | } |
| 52 | - $this->_response = $this->process_request_stack( $this->_request, $this->_response ); |
|
| 52 | + $this->_response = $this->process_request_stack($this->_request, $this->_response); |
|
| 53 | 53 | //$this->_response->add_output( "\n\t OUT << " . __CLASS__ ); |
| 54 | 54 | return $this->_response; |
| 55 | 55 | } |
@@ -63,9 +63,9 @@ discard block |
||
| 63 | 63 | * @param string $min_version |
| 64 | 64 | * @return boolean |
| 65 | 65 | */ |
| 66 | - private function _check_wp_version( $min_version = EE_MIN_WP_VER_REQUIRED ) { |
|
| 66 | + private function _check_wp_version($min_version = EE_MIN_WP_VER_REQUIRED) { |
|
| 67 | 67 | global $wp_version; |
| 68 | - return version_compare( $wp_version, $min_version, '>=' ) ? true : false; |
|
| 68 | + return version_compare($wp_version, $min_version, '>=') ? true : false; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * @return boolean |
| 78 | 78 | */ |
| 79 | 79 | private function _minimum_wp_version_required() { |
| 80 | - return $this->_check_wp_version( EE_MIN_WP_VER_REQUIRED ); |
|
| 80 | + return $this->_check_wp_version(EE_MIN_WP_VER_REQUIRED); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | * @return boolean |
| 90 | 90 | */ |
| 91 | 91 | private function _minimum_wp_version_recommended() { |
| 92 | - return $this->_check_wp_version( EE_MIN_WP_VER_RECOMMENDED ); |
|
| 92 | + return $this->_check_wp_version(EE_MIN_WP_VER_RECOMMENDED); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | |
@@ -101,8 +101,8 @@ discard block |
||
| 101 | 101 | * @param string $min_version |
| 102 | 102 | * @return boolean |
| 103 | 103 | */ |
| 104 | - private function _check_php_version( $min_version = EE_MIN_PHP_VER_RECOMMENDED ) { |
|
| 105 | - return version_compare( PHP_VERSION, $min_version, '>=' ) ? true : false; |
|
| 104 | + private function _check_php_version($min_version = EE_MIN_PHP_VER_RECOMMENDED) { |
|
| 105 | + return version_compare(PHP_VERSION, $min_version, '>=') ? true : false; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * @return boolean |
| 115 | 115 | */ |
| 116 | 116 | private function _minimum_php_version_required() { |
| 117 | - return $this->_check_php_version( EE_MIN_PHP_VER_REQUIRED ); |
|
| 117 | + return $this->_check_php_version(EE_MIN_PHP_VER_REQUIRED); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @return boolean |
| 127 | 127 | */ |
| 128 | 128 | private function _minimum_php_version_recommended() { |
| 129 | - return $this->_check_php_version( EE_MIN_PHP_VER_RECOMMENDED ); |
|
| 129 | + return $this->_check_php_version(EE_MIN_PHP_VER_RECOMMENDED); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | <p> |
| 144 | 144 | <?php |
| 145 | 145 | printf( |
| 146 | - __( 'We\'re sorry, but Event Espresso requires WordPress version %1$s or greater in order to operate. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso' ), |
|
| 146 | + __('We\'re sorry, but Event Espresso requires WordPress version %1$s or greater in order to operate. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso'), |
|
| 147 | 147 | EE_MIN_WP_VER_REQUIRED, |
| 148 | 148 | $wp_version, |
| 149 | 149 | '<br/>', |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | <p> |
| 169 | 169 | <?php |
| 170 | 170 | printf( |
| 171 | - __( 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso' ), |
|
| 171 | + __('We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso'), |
|
| 172 | 172 | EE_MIN_PHP_VER_REQUIRED, |
| 173 | 173 | PHP_VERSION, |
| 174 | 174 | '<br/>', |
@@ -191,9 +191,9 @@ discard block |
||
| 191 | 191 | private function _display_minimum_recommended_wp_version_notice() { |
| 192 | 192 | global $wp_version; |
| 193 | 193 | EE_Error::add_persistent_admin_notice( |
| 194 | - 'wp_version_' . str_replace( '.', '-', EE_MIN_WP_VER_RECOMMENDED ) . '_recommended', |
|
| 194 | + 'wp_version_'.str_replace('.', '-', EE_MIN_WP_VER_RECOMMENDED).'_recommended', |
|
| 195 | 195 | sprintf( |
| 196 | - __( 'Event Espresso recommends WordPress version %1$s or greater in order for everything to operate properly. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso' ), |
|
| 196 | + __('Event Espresso recommends WordPress version %1$s or greater in order for everything to operate properly. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso'), |
|
| 197 | 197 | EE_MIN_WP_VER_RECOMMENDED, |
| 198 | 198 | $wp_version, |
| 199 | 199 | '<br/>', |
@@ -212,9 +212,9 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | private function _display_minimum_recommended_php_version_notice() { |
| 214 | 214 | EE_Error::add_persistent_admin_notice( |
| 215 | - 'php_version_' . str_replace( '.', '-', EE_MIN_PHP_VER_RECOMMENDED ) . '_recommended', |
|
| 215 | + 'php_version_'.str_replace('.', '-', EE_MIN_PHP_VER_RECOMMENDED).'_recommended', |
|
| 216 | 216 | sprintf( |
| 217 | - __( 'Event Espresso recommends PHP version %1$s or greater for optimal performance. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso' ), |
|
| 217 | + __('Event Espresso recommends PHP version %1$s or greater for optimal performance. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso'), |
|
| 218 | 218 | EE_MIN_PHP_VER_RECOMMENDED, |
| 219 | 219 | PHP_VERSION, |
| 220 | 220 | '<br/>', |
@@ -38,12 +38,12 @@ discard block |
||
| 38 | 38 | * @access public |
| 39 | 39 | * @param array $request |
| 40 | 40 | */ |
| 41 | - public function __construct( $request ) { |
|
| 41 | + public function __construct($request) { |
|
| 42 | 42 | // grab request vars |
| 43 | 43 | $this->_params = $request; |
| 44 | 44 | // AJAX ??? |
| 45 | - $this->ajax = defined( 'DOING_AJAX' ) ? TRUE : FALSE; |
|
| 46 | - $this->front_ajax = $this->is_set( 'ee_front_ajax' ) && $this->get( 'ee_front_ajax' ) == 1 ? TRUE : FALSE; |
|
| 45 | + $this->ajax = defined('DOING_AJAX') ? TRUE : FALSE; |
|
| 46 | + $this->front_ajax = $this->is_set('ee_front_ajax') && $this->get('ee_front_ajax') == 1 ? TRUE : FALSE; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | |
@@ -67,10 +67,10 @@ discard block |
||
| 67 | 67 | * @param bool $override_ee |
| 68 | 68 | * @return void |
| 69 | 69 | */ |
| 70 | - public function set( $key, $value, $override_ee = FALSE ) { |
|
| 70 | + public function set($key, $value, $override_ee = FALSE) { |
|
| 71 | 71 | // don't allow "ee" to be overwritten unless explicitly instructed to do so |
| 72 | - if ( $key != 'ee' || ( $key == 'ee' && empty( $this->_params['ee'] )) || ( $key == 'ee' && ! empty( $this->_params['ee'] ) && $override_ee )) { |
|
| 73 | - $this->_params[ $key ] = $value; |
|
| 72 | + if ($key != 'ee' || ($key == 'ee' && empty($this->_params['ee'])) || ($key == 'ee' && ! empty($this->_params['ee']) && $override_ee)) { |
|
| 73 | + $this->_params[$key] = $value; |
|
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
@@ -84,8 +84,8 @@ discard block |
||
| 84 | 84 | * @param null $default |
| 85 | 85 | * @return mixed |
| 86 | 86 | */ |
| 87 | - public function get( $key, $default = NULL ) { |
|
| 88 | - return isset( $this->_params[ $key ] ) ? $this->_params[ $key ] : $default; |
|
| 87 | + public function get($key, $default = NULL) { |
|
| 88 | + return isset($this->_params[$key]) ? $this->_params[$key] : $default; |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | |
@@ -97,8 +97,8 @@ discard block |
||
| 97 | 97 | * @param $key |
| 98 | 98 | * @return boolean |
| 99 | 99 | */ |
| 100 | - public function is_set( $key ) { |
|
| 101 | - return isset( $this->_params[ $key ] ) ? TRUE : FALSE; |
|
| 100 | + public function is_set($key) { |
|
| 101 | + return isset($this->_params[$key]) ? TRUE : FALSE; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | |
@@ -110,10 +110,10 @@ discard block |
||
| 110 | 110 | * @param $key |
| 111 | 111 | * @param bool $unset_from_global_too |
| 112 | 112 | */ |
| 113 | - public function un_set( $key, $unset_from_global_too = false ) { |
|
| 114 | - unset( $this->_params[ $key ] ); |
|
| 115 | - if ( $unset_from_global_too ) { |
|
| 116 | - unset( $_REQUEST[ $key ] ); |
|
| 113 | + public function un_set($key, $unset_from_global_too = false) { |
|
| 114 | + unset($this->_params[$key]); |
|
| 115 | + if ($unset_from_global_too) { |
|
| 116 | + unset($_REQUEST[$key]); |
|
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | 119 | |