@@ -88,6 +88,7 @@ discard block |
||
88 | 88 | /** |
89 | 89 | * [ee_tep_not_null description] |
90 | 90 | * @param string | array $value [description] |
91 | + * @param string $value |
|
91 | 92 | * @return bool [description] |
92 | 93 | */ |
93 | 94 | static public function ee_tep_not_null($value) { |
@@ -573,6 +574,8 @@ discard block |
||
573 | 574 | * @param EE_State | string $state |
574 | 575 | * @param EE_Country | string $country |
575 | 576 | * @param string $zip |
577 | + * @param integer $state |
|
578 | + * @param string $country |
|
576 | 579 | * @return EE_Generic_Address |
577 | 580 | */ |
578 | 581 | public function __construct( $address, $address2, $city, $state, $country, $zip ) { |
@@ -660,7 +663,7 @@ discard block |
||
660 | 663 | |
661 | 664 | |
662 | 665 | /** |
663 | - * @return \EE_State |
|
666 | + * @return string |
|
664 | 667 | */ |
665 | 668 | public function state_obj() { |
666 | 669 | return $this->_state_obj; |
@@ -709,7 +712,7 @@ discard block |
||
709 | 712 | |
710 | 713 | |
711 | 714 | /** |
712 | - * @return \EE_Country |
|
715 | + * @return string |
|
713 | 716 | */ |
714 | 717 | public function country_obj() { |
715 | 718 | return $this->_country_obj; |
@@ -297,12 +297,12 @@ discard block |
||
297 | 297 | |
298 | 298 | |
299 | 299 | /** |
300 | - * _get_formatter - obtain the requester formatter class |
|
301 | - * |
|
302 | - * @access private |
|
303 | - * @param string $type how the address is formatted. for example: 'multiline' or 'inline' |
|
304 | - * @return EEI_Address_Formatter |
|
305 | - */ |
|
300 | + * _get_formatter - obtain the requester formatter class |
|
301 | + * |
|
302 | + * @access private |
|
303 | + * @param string $type how the address is formatted. for example: 'multiline' or 'inline' |
|
304 | + * @return EEI_Address_Formatter |
|
305 | + */ |
|
306 | 306 | private static function _get_formatter( $type ) { |
307 | 307 | switch( $type ) { |
308 | 308 | |
@@ -348,14 +348,14 @@ discard block |
||
348 | 348 | |
349 | 349 | |
350 | 350 | /** |
351 | - * _schema_formatting |
|
352 | - * adds schema.org formatting to an address |
|
353 | - * |
|
354 | - * @access private |
|
355 | - * @param object EEI_Address_Formatter $formatter |
|
356 | - * @param object EEI_Address $obj_with_address |
|
357 | - * @return string |
|
358 | - */ |
|
351 | + * _schema_formatting |
|
352 | + * adds schema.org formatting to an address |
|
353 | + * |
|
354 | + * @access private |
|
355 | + * @param object EEI_Address_Formatter $formatter |
|
356 | + * @param object EEI_Address $obj_with_address |
|
357 | + * @return string |
|
358 | + */ |
|
359 | 359 | private static function _schema_formatting( EEI_Address_Formatter $formatter, EEI_Address $obj_with_address ){ |
360 | 360 | $formatted_address = '<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">'; |
361 | 361 | $formatted_address .= $formatter->format( |
@@ -396,50 +396,50 @@ discard block |
||
396 | 396 | |
397 | 397 | |
398 | 398 | /** |
399 | - * location |
|
400 | - * The location of the event, organization or action. |
|
401 | - * Should include the Venue name AND schema formatted address info |
|
402 | - * |
|
403 | - * @access public |
|
404 | - * @param string $location |
|
405 | - * @return string |
|
406 | - */ |
|
399 | + * location |
|
400 | + * The location of the event, organization or action. |
|
401 | + * Should include the Venue name AND schema formatted address info |
|
402 | + * |
|
403 | + * @access public |
|
404 | + * @param string $location |
|
405 | + * @return string |
|
406 | + */ |
|
407 | 407 | public static function location ( $location = NULL ) { |
408 | 408 | return ! empty( $location ) ? '<div itemprop="location" itemscope itemtype="http://schema.org/Place">' . $location . '</div>' : ''; |
409 | 409 | } |
410 | 410 | |
411 | 411 | /** |
412 | - * name |
|
413 | - * The name of the Event or Venue. |
|
414 | - * |
|
415 | - * @access public |
|
416 | - * @param string $name |
|
417 | - * @return string |
|
418 | - */ |
|
412 | + * name |
|
413 | + * The name of the Event or Venue. |
|
414 | + * |
|
415 | + * @access public |
|
416 | + * @param string $name |
|
417 | + * @return string |
|
418 | + */ |
|
419 | 419 | public static function name ( $name = NULL ) { |
420 | 420 | return ! empty( $name ) ? '<span itemprop="name">' . $name . '</span>' : ''; |
421 | 421 | } |
422 | 422 | |
423 | 423 | /** |
424 | - * streetAddress |
|
425 | - * The street address. For example, 1600 Amphitheatre Pkwy. |
|
426 | - * |
|
427 | - * @access public |
|
428 | - * @param EEI_Address $obj_with_address |
|
429 | - * @return string |
|
430 | - */ |
|
424 | + * streetAddress |
|
425 | + * The street address. For example, 1600 Amphitheatre Pkwy. |
|
426 | + * |
|
427 | + * @access public |
|
428 | + * @param EEI_Address $obj_with_address |
|
429 | + * @return string |
|
430 | + */ |
|
431 | 431 | public static function streetAddress ( EEI_Address $obj_with_address = NULL ) { |
432 | 432 | return $obj_with_address->address() !== NULL && $obj_with_address->address() !== '' ? '<span itemprop="streetAddress">' . $obj_with_address->address() . '</span>' : ''; |
433 | 433 | } |
434 | 434 | |
435 | 435 | /** |
436 | - * postOfficeBoxNumber |
|
437 | - * The post office box number for PO box addresses. |
|
438 | - * |
|
439 | - * @access public |
|
440 | - * @param EEI_Address $obj_with_address |
|
441 | - * @return string |
|
442 | - */ |
|
436 | + * postOfficeBoxNumber |
|
437 | + * The post office box number for PO box addresses. |
|
438 | + * |
|
439 | + * @access public |
|
440 | + * @param EEI_Address $obj_with_address |
|
441 | + * @return string |
|
442 | + */ |
|
443 | 443 | public static function postOfficeBoxNumber ( EEI_Address $obj_with_address = NULL ) { |
444 | 444 | // regex check for some form of PO Box or P.O. Box, etc, etc, etc |
445 | 445 | if ( preg_match("/^\s*((P(OST)?.?\s*(O(FF(ICE)?)?)?.?\s+(B(IN|OX))?)|B(IN|OX))/i", $obj_with_address->address2() )) { |
@@ -450,25 +450,25 @@ discard block |
||
450 | 450 | } |
451 | 451 | |
452 | 452 | /** |
453 | - * addressLocality |
|
454 | - * The locality (city, town, etc). For example, Mountain View. |
|
455 | - * |
|
456 | - * @access public |
|
457 | - * @param EEI_Address $obj_with_address |
|
458 | - * @return string |
|
459 | - */ |
|
453 | + * addressLocality |
|
454 | + * The locality (city, town, etc). For example, Mountain View. |
|
455 | + * |
|
456 | + * @access public |
|
457 | + * @param EEI_Address $obj_with_address |
|
458 | + * @return string |
|
459 | + */ |
|
460 | 460 | public static function addressLocality ( EEI_Address $obj_with_address = NULL ) { |
461 | 461 | return $obj_with_address->city() !== NULL && $obj_with_address->city() !== '' ? '<span itemprop="addressLocality">' . $obj_with_address->city() . '</span>' : ''; |
462 | 462 | } |
463 | 463 | |
464 | 464 | /** |
465 | - * addressRegion |
|
466 | - * The region (state, province, etc). For example, CA. |
|
467 | - * |
|
468 | - * @access public |
|
469 | - * @param EEI_Address $obj_with_address |
|
470 | - * @return string |
|
471 | - */ |
|
465 | + * addressRegion |
|
466 | + * The region (state, province, etc). For example, CA. |
|
467 | + * |
|
468 | + * @access public |
|
469 | + * @param EEI_Address $obj_with_address |
|
470 | + * @return string |
|
471 | + */ |
|
472 | 472 | public static function addressRegion ( EEI_Address $obj_with_address = NULL ) { |
473 | 473 | $state = $obj_with_address->state(); |
474 | 474 | if ( ! empty( $state ) ) { |
@@ -479,13 +479,13 @@ discard block |
||
479 | 479 | } |
480 | 480 | |
481 | 481 | /** |
482 | - * addressCountry |
|
483 | - * The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code. |
|
484 | - * |
|
485 | - * @access public |
|
486 | - * @param EEI_Address $obj_with_address |
|
487 | - * @return string |
|
488 | - */ |
|
482 | + * addressCountry |
|
483 | + * The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code. |
|
484 | + * |
|
485 | + * @access public |
|
486 | + * @param EEI_Address $obj_with_address |
|
487 | + * @return string |
|
488 | + */ |
|
489 | 489 | public static function addressCountry ( EEI_Address $obj_with_address = NULL ) { |
490 | 490 | $country = $obj_with_address->country(); |
491 | 491 | if ( ! empty( $country ) ) { |
@@ -496,39 +496,39 @@ discard block |
||
496 | 496 | } |
497 | 497 | |
498 | 498 | /** |
499 | - * postalCode |
|
500 | - * The postal code. For example, 94043. |
|
501 | - * |
|
502 | - * @access public |
|
503 | - * @param EEI_Address $obj_with_address |
|
504 | - * @return string |
|
505 | - */ |
|
499 | + * postalCode |
|
500 | + * The postal code. For example, 94043. |
|
501 | + * |
|
502 | + * @access public |
|
503 | + * @param EEI_Address $obj_with_address |
|
504 | + * @return string |
|
505 | + */ |
|
506 | 506 | public static function postalCode ( EEI_Address $obj_with_address = NULL ) { |
507 | 507 | return $obj_with_address->zip() !== NULL && $obj_with_address->zip() !== '' ? '<span itemprop="postalCode">' . $obj_with_address->zip() . '</span>' : ''; |
508 | 508 | } |
509 | 509 | |
510 | 510 | /** |
511 | - * telephone |
|
512 | - * The telephone number. |
|
513 | - * |
|
514 | - * @access public |
|
515 | - * @param string $phone_nmbr |
|
516 | - * @return string |
|
517 | - */ |
|
511 | + * telephone |
|
512 | + * The telephone number. |
|
513 | + * |
|
514 | + * @access public |
|
515 | + * @param string $phone_nmbr |
|
516 | + * @return string |
|
517 | + */ |
|
518 | 518 | public static function telephone ( $phone_nmbr = NULL ) { |
519 | 519 | return $phone_nmbr !== NULL && $phone_nmbr !== '' ? '<span itemprop="telephone">' . $phone_nmbr . '</span>' : ''; |
520 | 520 | } |
521 | 521 | |
522 | 522 | /** |
523 | - * URL |
|
524 | - * URL of the item as a clickable link |
|
525 | - * |
|
526 | - * @access public |
|
527 | - * @param string $url - the URL that the link will resolve to |
|
528 | - * @param string $text - the text that will be used for the visible link |
|
529 | - * @param array $attributes - array of additional link attributes in attribute_name => value pairs. ie: array( 'title' => 'click here', 'class' => 'link-class' ) |
|
530 | - * @return string (link) |
|
531 | - */ |
|
523 | + * URL |
|
524 | + * URL of the item as a clickable link |
|
525 | + * |
|
526 | + * @access public |
|
527 | + * @param string $url - the URL that the link will resolve to |
|
528 | + * @param string $text - the text that will be used for the visible link |
|
529 | + * @param array $attributes - array of additional link attributes in attribute_name => value pairs. ie: array( 'title' => 'click here', 'class' => 'link-class' ) |
|
530 | + * @return string (link) |
|
531 | + */ |
|
532 | 532 | public static function url ( $url = NULL, $text = NULL, $attributes = array() ) { |
533 | 533 | $atts = ''; |
534 | 534 | foreach ( $attributes as $attribute => $value ) { |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * @param string $content content to format |
40 | 40 | * @return string formatted content |
41 | 41 | */ |
42 | - static public function admin_format_content($content='') { |
|
42 | + static public function admin_format_content($content = '') { |
|
43 | 43 | return wpautop(stripslashes_deep(html_entity_decode($content, ENT_QUOTES, "UTF-8"))); |
44 | 44 | } |
45 | 45 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @return string |
80 | 80 | */ |
81 | 81 | static public function ee_tep_parse_input_field_data($data, $parse) { |
82 | - return strtr( trim($data), $parse); |
|
82 | + return strtr(trim($data), $parse); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | |
@@ -116,17 +116,17 @@ discard block |
||
116 | 116 | * @return string |
117 | 117 | * @deprecated v4.6.21 |
118 | 118 | */ |
119 | - static public function event_date_display( $date, $format = '' ) { |
|
119 | + static public function event_date_display($date, $format = '') { |
|
120 | 120 | EE_Error::doing_it_wrong( |
121 | 121 | 'EEH_Formatter::event_date_display()', |
122 | - __( 'This method is deprecated. If you wish to display an Event date in a theme template, then there are better alternatives such as EEH_Event_View::the_event_date() which can be found in \core\helpers\EEH_Event_View.helper.php', 'event_espresso' ), |
|
122 | + __('This method is deprecated. If you wish to display an Event date in a theme template, then there are better alternatives such as EEH_Event_View::the_event_date() which can be found in \core\helpers\EEH_Event_View.helper.php', 'event_espresso'), |
|
123 | 123 | '4.6.21' |
124 | 124 | ); |
125 | - if ( empty( $date )) { |
|
125 | + if (empty($date)) { |
|
126 | 126 | return ''; |
127 | 127 | } else { |
128 | 128 | $format = $format == '' ? get_option('date_format') : $format; |
129 | - return date_i18n( $format, strtotime( $date )); |
|
129 | + return date_i18n($format, strtotime($date)); |
|
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
@@ -163,14 +163,14 @@ discard block |
||
163 | 163 | * @param string $zip |
164 | 164 | * @return string |
165 | 165 | */ |
166 | - public function format( $address, $address2, $city, $state, $country, $zip ) { |
|
166 | + public function format($address, $address2, $city, $state, $country, $zip) { |
|
167 | 167 | $formatted_address = $address; |
168 | - $formatted_address .= ! empty( $address2 ) ? '<br/>' . $address2 : ''; |
|
169 | - $formatted_address .= ! empty( $city ) ? '<br/>' . $city : ''; |
|
170 | - $formatted_address .= ! empty( $city ) && ! empty( $state ) ? ', ' : ''; |
|
171 | - $formatted_address .= ! empty( $state ) ? $state : ''; |
|
172 | - $formatted_address .= ! empty( $zip ) ? '<br/>' . $zip : ''; |
|
173 | - $formatted_address .= ! empty( $country ) ? '<br/>' . $country : ''; |
|
168 | + $formatted_address .= ! empty($address2) ? '<br/>'.$address2 : ''; |
|
169 | + $formatted_address .= ! empty($city) ? '<br/>'.$city : ''; |
|
170 | + $formatted_address .= ! empty($city) && ! empty($state) ? ', ' : ''; |
|
171 | + $formatted_address .= ! empty($state) ? $state : ''; |
|
172 | + $formatted_address .= ! empty($zip) ? '<br/>'.$zip : ''; |
|
173 | + $formatted_address .= ! empty($country) ? '<br/>'.$country : ''; |
|
174 | 174 | return $formatted_address; |
175 | 175 | } |
176 | 176 | } |
@@ -202,18 +202,18 @@ discard block |
||
202 | 202 | * @param string $zip |
203 | 203 | * @return string |
204 | 204 | */ |
205 | - public function format( $address, $address2, $city, $state, $country, $zip ) { |
|
205 | + public function format($address, $address2, $city, $state, $country, $zip) { |
|
206 | 206 | $formatted_address = $address; |
207 | - $formatted_address .= substr( $formatted_address, -2 ) != ', ' ? ', ' : ''; |
|
208 | - $formatted_address .= ! empty( $address2 ) ? $address2 : ''; |
|
209 | - $formatted_address .= substr( $formatted_address, -2 ) != ', ' ? ', ' : ''; |
|
210 | - $formatted_address .= ! empty( $city ) ? $city : ''; |
|
211 | - $formatted_address .= substr( $formatted_address, -2 ) != ', ' ? ', ' : ''; |
|
212 | - $formatted_address .= ! empty( $state ) ? $state : ''; |
|
213 | - $formatted_address .= substr( $formatted_address, -2 ) != ', ' ? ', ' : ''; |
|
214 | - $formatted_address .= ! empty( $country ) ? $country : ''; |
|
215 | - $formatted_address .= substr( $formatted_address, -2 ) != ', ' ? ', ' : ''; |
|
216 | - $formatted_address .= ! empty( $zip ) ? $zip : ''; |
|
207 | + $formatted_address .= substr($formatted_address, -2) != ', ' ? ', ' : ''; |
|
208 | + $formatted_address .= ! empty($address2) ? $address2 : ''; |
|
209 | + $formatted_address .= substr($formatted_address, -2) != ', ' ? ', ' : ''; |
|
210 | + $formatted_address .= ! empty($city) ? $city : ''; |
|
211 | + $formatted_address .= substr($formatted_address, -2) != ', ' ? ', ' : ''; |
|
212 | + $formatted_address .= ! empty($state) ? $state : ''; |
|
213 | + $formatted_address .= substr($formatted_address, -2) != ', ' ? ', ' : ''; |
|
214 | + $formatted_address .= ! empty($country) ? $country : ''; |
|
215 | + $formatted_address .= substr($formatted_address, -2) != ', ' ? ', ' : ''; |
|
216 | + $formatted_address .= ! empty($zip) ? $zip : ''; |
|
217 | 217 | return $formatted_address; |
218 | 218 | } |
219 | 219 | } |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @param string $zip |
247 | 247 | * @return string |
248 | 248 | */ |
249 | - public function format( $address, $address2, $city, $state, $country, $zip ) { |
|
249 | + public function format($address, $address2, $city, $state, $country, $zip) { |
|
250 | 250 | return NULL; |
251 | 251 | } |
252 | 252 | } |
@@ -282,20 +282,20 @@ discard block |
||
282 | 282 | * @param bool $add_wrapper |
283 | 283 | * @return string |
284 | 284 | */ |
285 | - public static function format ( $obj_with_address = null, $type = 'multiline', $use_schema = true, $add_wrapper = true ) { |
|
285 | + public static function format($obj_with_address = null, $type = 'multiline', $use_schema = true, $add_wrapper = true) { |
|
286 | 286 | // check that incoming object implements the EEI_Address interface |
287 | - if ( ! $obj_with_address instanceof EEI_Address ) { |
|
288 | - $msg = __( 'The address could not be formatted.', 'event_espresso' ); |
|
289 | - $dev_msg = __( 'The EE_Address_Formatter requires passed objects to implement the EEI_Address interface.', 'event_espresso' ); |
|
290 | - EE_Error::add_error( $msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
287 | + if ( ! $obj_with_address instanceof EEI_Address) { |
|
288 | + $msg = __('The address could not be formatted.', 'event_espresso'); |
|
289 | + $dev_msg = __('The EE_Address_Formatter requires passed objects to implement the EEI_Address interface.', 'event_espresso'); |
|
290 | + EE_Error::add_error($msg.'||'.$dev_msg, __FILE__, __FUNCTION__, __LINE__); |
|
291 | 291 | return null; |
292 | 292 | } |
293 | 293 | // obtain an address formatter |
294 | - $formatter = EEH_Address::_get_formatter( $type ); |
|
294 | + $formatter = EEH_Address::_get_formatter($type); |
|
295 | 295 | // apply schema.org formatting ? |
296 | 296 | $use_schema = ! is_admin() ? $use_schema : false; |
297 | - $formatted_address = $use_schema ? EEH_Address::_schema_formatting( $formatter, $obj_with_address ) : EEH_Address::_regular_formatting( $formatter, $obj_with_address, $add_wrapper ) ; |
|
298 | - $formatted_address = $add_wrapper && ! $use_schema ? '<div class="espresso-address-dv">' . $formatted_address . '</div>' : $formatted_address; |
|
297 | + $formatted_address = $use_schema ? EEH_Address::_schema_formatting($formatter, $obj_with_address) : EEH_Address::_regular_formatting($formatter, $obj_with_address, $add_wrapper); |
|
298 | + $formatted_address = $add_wrapper && ! $use_schema ? '<div class="espresso-address-dv">'.$formatted_address.'</div>' : $formatted_address; |
|
299 | 299 | // return the formatted address |
300 | 300 | return $formatted_address; |
301 | 301 | } |
@@ -309,8 +309,8 @@ discard block |
||
309 | 309 | * @param string $type how the address is formatted. for example: 'multiline' or 'inline' |
310 | 310 | * @return EEI_Address_Formatter |
311 | 311 | */ |
312 | - private static function _get_formatter( $type ) { |
|
313 | - switch( $type ) { |
|
312 | + private static function _get_formatter($type) { |
|
313 | + switch ($type) { |
|
314 | 314 | |
315 | 315 | case 'multiline' : |
316 | 316 | return new EE_MultiLine_Address_Formatter(); |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | * @param bool $add_wrapper |
337 | 337 | * @return string |
338 | 338 | */ |
339 | - private static function _regular_formatting( EEI_Address_Formatter $formatter, EEI_Address $obj_with_address, $add_wrapper = TRUE ){ |
|
339 | + private static function _regular_formatting(EEI_Address_Formatter $formatter, EEI_Address $obj_with_address, $add_wrapper = TRUE) { |
|
340 | 340 | $formatted_address = $add_wrapper ? '<div>' : ''; |
341 | 341 | $formatted_address .= $formatter->format( |
342 | 342 | $obj_with_address->address(), |
@@ -362,15 +362,15 @@ discard block |
||
362 | 362 | * @param object EEI_Address $obj_with_address |
363 | 363 | * @return string |
364 | 364 | */ |
365 | - private static function _schema_formatting( EEI_Address_Formatter $formatter, EEI_Address $obj_with_address ){ |
|
365 | + private static function _schema_formatting(EEI_Address_Formatter $formatter, EEI_Address $obj_with_address) { |
|
366 | 366 | $formatted_address = '<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">'; |
367 | 367 | $formatted_address .= $formatter->format( |
368 | - EEH_Schema::streetAddress( $obj_with_address ), |
|
369 | - EEH_Schema::postOfficeBoxNumber( $obj_with_address ), |
|
370 | - EEH_Schema::addressLocality( $obj_with_address ), |
|
371 | - EEH_Schema::addressRegion( $obj_with_address ), |
|
372 | - EEH_Schema::addressCountry( $obj_with_address ), |
|
373 | - EEH_Schema::postalCode( $obj_with_address ) |
|
368 | + EEH_Schema::streetAddress($obj_with_address), |
|
369 | + EEH_Schema::postOfficeBoxNumber($obj_with_address), |
|
370 | + EEH_Schema::addressLocality($obj_with_address), |
|
371 | + EEH_Schema::addressRegion($obj_with_address), |
|
372 | + EEH_Schema::addressCountry($obj_with_address), |
|
373 | + EEH_Schema::postalCode($obj_with_address) |
|
374 | 374 | ); |
375 | 375 | $formatted_address .= '</div>'; |
376 | 376 | // return the formatted address |
@@ -410,8 +410,8 @@ discard block |
||
410 | 410 | * @param string $location |
411 | 411 | * @return string |
412 | 412 | */ |
413 | - public static function location ( $location = NULL ) { |
|
414 | - return ! empty( $location ) ? '<div itemprop="location" itemscope itemtype="http://schema.org/Place">' . $location . '</div>' : ''; |
|
413 | + public static function location($location = NULL) { |
|
414 | + return ! empty($location) ? '<div itemprop="location" itemscope itemtype="http://schema.org/Place">'.$location.'</div>' : ''; |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | /** |
@@ -422,8 +422,8 @@ discard block |
||
422 | 422 | * @param string $name |
423 | 423 | * @return string |
424 | 424 | */ |
425 | - public static function name ( $name = NULL ) { |
|
426 | - return ! empty( $name ) ? '<span itemprop="name">' . $name . '</span>' : ''; |
|
425 | + public static function name($name = NULL) { |
|
426 | + return ! empty($name) ? '<span itemprop="name">'.$name.'</span>' : ''; |
|
427 | 427 | } |
428 | 428 | |
429 | 429 | /** |
@@ -434,8 +434,8 @@ discard block |
||
434 | 434 | * @param EEI_Address $obj_with_address |
435 | 435 | * @return string |
436 | 436 | */ |
437 | - public static function streetAddress ( EEI_Address $obj_with_address = NULL ) { |
|
438 | - return $obj_with_address->address() !== NULL && $obj_with_address->address() !== '' ? '<span itemprop="streetAddress">' . $obj_with_address->address() . '</span>' : ''; |
|
437 | + public static function streetAddress(EEI_Address $obj_with_address = NULL) { |
|
438 | + return $obj_with_address->address() !== NULL && $obj_with_address->address() !== '' ? '<span itemprop="streetAddress">'.$obj_with_address->address().'</span>' : ''; |
|
439 | 439 | } |
440 | 440 | |
441 | 441 | /** |
@@ -446,10 +446,10 @@ discard block |
||
446 | 446 | * @param EEI_Address $obj_with_address |
447 | 447 | * @return string |
448 | 448 | */ |
449 | - public static function postOfficeBoxNumber ( EEI_Address $obj_with_address = NULL ) { |
|
449 | + public static function postOfficeBoxNumber(EEI_Address $obj_with_address = NULL) { |
|
450 | 450 | // regex check for some form of PO Box or P.O. Box, etc, etc, etc |
451 | - if ( preg_match("/^\s*((P(OST)?.?\s*(O(FF(ICE)?)?)?.?\s+(B(IN|OX))?)|B(IN|OX))/i", $obj_with_address->address2() )) { |
|
452 | - return $obj_with_address->address2() !== NULL && $obj_with_address->address2() !== '' ? '<span itemprop="postOfficeBoxNumber">' . $obj_with_address->address2() . '</span>' : ''; |
|
451 | + if (preg_match("/^\s*((P(OST)?.?\s*(O(FF(ICE)?)?)?.?\s+(B(IN|OX))?)|B(IN|OX))/i", $obj_with_address->address2())) { |
|
452 | + return $obj_with_address->address2() !== NULL && $obj_with_address->address2() !== '' ? '<span itemprop="postOfficeBoxNumber">'.$obj_with_address->address2().'</span>' : ''; |
|
453 | 453 | } else { |
454 | 454 | return $obj_with_address->address2(); |
455 | 455 | } |
@@ -463,8 +463,8 @@ discard block |
||
463 | 463 | * @param EEI_Address $obj_with_address |
464 | 464 | * @return string |
465 | 465 | */ |
466 | - public static function addressLocality ( EEI_Address $obj_with_address = NULL ) { |
|
467 | - return $obj_with_address->city() !== NULL && $obj_with_address->city() !== '' ? '<span itemprop="addressLocality">' . $obj_with_address->city() . '</span>' : ''; |
|
466 | + public static function addressLocality(EEI_Address $obj_with_address = NULL) { |
|
467 | + return $obj_with_address->city() !== NULL && $obj_with_address->city() !== '' ? '<span itemprop="addressLocality">'.$obj_with_address->city().'</span>' : ''; |
|
468 | 468 | } |
469 | 469 | |
470 | 470 | /** |
@@ -475,10 +475,10 @@ discard block |
||
475 | 475 | * @param EEI_Address $obj_with_address |
476 | 476 | * @return string |
477 | 477 | */ |
478 | - public static function addressRegion ( EEI_Address $obj_with_address = NULL ) { |
|
478 | + public static function addressRegion(EEI_Address $obj_with_address = NULL) { |
|
479 | 479 | $state = $obj_with_address->state(); |
480 | - if ( ! empty( $state ) ) { |
|
481 | - return '<span itemprop="addressRegion">' . $state . '</span>'; |
|
480 | + if ( ! empty($state)) { |
|
481 | + return '<span itemprop="addressRegion">'.$state.'</span>'; |
|
482 | 482 | } else { |
483 | 483 | return ''; |
484 | 484 | } |
@@ -492,10 +492,10 @@ discard block |
||
492 | 492 | * @param EEI_Address $obj_with_address |
493 | 493 | * @return string |
494 | 494 | */ |
495 | - public static function addressCountry ( EEI_Address $obj_with_address = NULL ) { |
|
495 | + public static function addressCountry(EEI_Address $obj_with_address = NULL) { |
|
496 | 496 | $country = $obj_with_address->country(); |
497 | - if ( ! empty( $country ) ) { |
|
498 | - return '<span itemprop="addressCountry">' . $country . '</span>'; |
|
497 | + if ( ! empty($country)) { |
|
498 | + return '<span itemprop="addressCountry">'.$country.'</span>'; |
|
499 | 499 | } else { |
500 | 500 | return ''; |
501 | 501 | } |
@@ -509,8 +509,8 @@ discard block |
||
509 | 509 | * @param EEI_Address $obj_with_address |
510 | 510 | * @return string |
511 | 511 | */ |
512 | - public static function postalCode ( EEI_Address $obj_with_address = NULL ) { |
|
513 | - return $obj_with_address->zip() !== NULL && $obj_with_address->zip() !== '' ? '<span itemprop="postalCode">' . $obj_with_address->zip() . '</span>' : ''; |
|
512 | + public static function postalCode(EEI_Address $obj_with_address = NULL) { |
|
513 | + return $obj_with_address->zip() !== NULL && $obj_with_address->zip() !== '' ? '<span itemprop="postalCode">'.$obj_with_address->zip().'</span>' : ''; |
|
514 | 514 | } |
515 | 515 | |
516 | 516 | /** |
@@ -521,8 +521,8 @@ discard block |
||
521 | 521 | * @param string $phone_nmbr |
522 | 522 | * @return string |
523 | 523 | */ |
524 | - public static function telephone ( $phone_nmbr = NULL ) { |
|
525 | - return $phone_nmbr !== NULL && $phone_nmbr !== '' ? '<span itemprop="telephone">' . $phone_nmbr . '</span>' : ''; |
|
524 | + public static function telephone($phone_nmbr = NULL) { |
|
525 | + return $phone_nmbr !== NULL && $phone_nmbr !== '' ? '<span itemprop="telephone">'.$phone_nmbr.'</span>' : ''; |
|
526 | 526 | } |
527 | 527 | |
528 | 528 | /** |
@@ -535,13 +535,13 @@ discard block |
||
535 | 535 | * @param array $attributes - array of additional link attributes in attribute_name => value pairs. ie: array( 'title' => 'click here', 'class' => 'link-class' ) |
536 | 536 | * @return string (link) |
537 | 537 | */ |
538 | - public static function url ( $url = NULL, $text = NULL, $attributes = array() ) { |
|
538 | + public static function url($url = NULL, $text = NULL, $attributes = array()) { |
|
539 | 539 | $atts = ''; |
540 | - foreach ( $attributes as $attribute => $value ) { |
|
541 | - $atts .= ' ' . $attribute . '="' . $value . '"'; |
|
540 | + foreach ($attributes as $attribute => $value) { |
|
541 | + $atts .= ' '.$attribute.'="'.$value.'"'; |
|
542 | 542 | } |
543 | 543 | $text = $text !== NULL && $text !== '' ? $text : $url; |
544 | - return $url !== NULL && $url !== '' ? '<a itemprop="url" href="' . $url . '"' . $atts . '>' . $text . '</a>' : ''; |
|
544 | + return $url !== NULL && $url !== '' ? '<a itemprop="url" href="'.$url.'"'.$atts.'>'.$text.'</a>' : ''; |
|
545 | 545 | } |
546 | 546 | |
547 | 547 | |
@@ -581,17 +581,17 @@ discard block |
||
581 | 581 | * @param string $zip |
582 | 582 | * @return EE_Generic_Address |
583 | 583 | */ |
584 | - public function __construct( $address, $address2, $city, $state, $country, $zip ) { |
|
584 | + public function __construct($address, $address2, $city, $state, $country, $zip) { |
|
585 | 585 | $this->_address = $address; |
586 | 586 | $this->_address2 = $address2; |
587 | 587 | $this->_city = $city; |
588 | - if ( $state instanceof EE_State ) { |
|
588 | + if ($state instanceof EE_State) { |
|
589 | 589 | $this->_state_obj = $state; |
590 | 590 | } else { |
591 | 591 | $this->_state_ID = $state; |
592 | 592 | $this->_state_obj = $this->_get_state_obj(); |
593 | 593 | } |
594 | - if ( $country instanceof EE_Country ) { |
|
594 | + if ($country instanceof EE_Country) { |
|
595 | 595 | $this->_country_obj = $country; |
596 | 596 | } else { |
597 | 597 | $this->_country_ID = $country; |
@@ -633,7 +633,7 @@ discard block |
||
633 | 633 | * @return \EE_State |
634 | 634 | */ |
635 | 635 | private function _get_state_obj() { |
636 | - return $this->_state_obj instanceof EE_State ? $this->_state_obj : EE_Registry::instance()->load_model( 'State' )->get_one_by_ID( $this->_state_ID ); |
|
636 | + return $this->_state_obj instanceof EE_State ? $this->_state_obj : EE_Registry::instance()->load_model('State')->get_one_by_ID($this->_state_ID); |
|
637 | 637 | } |
638 | 638 | |
639 | 639 | |
@@ -651,7 +651,7 @@ discard block |
||
651 | 651 | * @return string |
652 | 652 | */ |
653 | 653 | public function state_abbrev() { |
654 | - return $this->state_obj() instanceof EE_State ? $this->state_obj()->abbrev() : __( 'Unknown', 'event_espresso' ); |
|
654 | + return $this->state_obj() instanceof EE_State ? $this->state_obj()->abbrev() : __('Unknown', 'event_espresso'); |
|
655 | 655 | } |
656 | 656 | |
657 | 657 | |
@@ -660,7 +660,7 @@ discard block |
||
660 | 660 | * @return string |
661 | 661 | */ |
662 | 662 | public function state_name() { |
663 | - return $this->state_obj() instanceof EE_State ? $this->state_obj()->name() : __( 'Unknown', 'event_espresso' ); |
|
663 | + return $this->state_obj() instanceof EE_State ? $this->state_obj()->name() : __('Unknown', 'event_espresso'); |
|
664 | 664 | } |
665 | 665 | |
666 | 666 | |
@@ -678,7 +678,7 @@ discard block |
||
678 | 678 | * @return string |
679 | 679 | */ |
680 | 680 | public function state() { |
681 | - if ( apply_filters( 'FHEE__EEI_Address__state__use_abbreviation', true, $this->state_obj() ) ) { |
|
681 | + if (apply_filters('FHEE__EEI_Address__state__use_abbreviation', true, $this->state_obj())) { |
|
682 | 682 | return $this->state_obj()->abbrev(); |
683 | 683 | } else { |
684 | 684 | return $this->state_name(); |
@@ -691,7 +691,7 @@ discard block |
||
691 | 691 | * @return EE_Country |
692 | 692 | */ |
693 | 693 | private function _get_country_obj() { |
694 | - return $this->_country_obj instanceof EE_Country ? $this->_country_obj : EE_Registry::instance()->load_model( 'Country' )->get_one_by_ID( $this->_country_ID ); |
|
694 | + return $this->_country_obj instanceof EE_Country ? $this->_country_obj : EE_Registry::instance()->load_model('Country')->get_one_by_ID($this->_country_ID); |
|
695 | 695 | } |
696 | 696 | |
697 | 697 | |
@@ -709,7 +709,7 @@ discard block |
||
709 | 709 | * @return string |
710 | 710 | */ |
711 | 711 | public function country_name() { |
712 | - return $this->country_obj() instanceof EE_Country ? $this->country_obj()->name() : __( 'Unknown', 'event_espresso' ); |
|
712 | + return $this->country_obj() instanceof EE_Country ? $this->country_obj()->name() : __('Unknown', 'event_espresso'); |
|
713 | 713 | } |
714 | 714 | |
715 | 715 | |
@@ -727,7 +727,7 @@ discard block |
||
727 | 727 | * @return string |
728 | 728 | */ |
729 | 729 | public function country() { |
730 | - if ( apply_filters( 'FHEE__EEI_Address__country__use_abbreviation', true, $this->country_obj() ) ) { |
|
730 | + if (apply_filters('FHEE__EEI_Address__country__use_abbreviation', true, $this->country_obj())) { |
|
731 | 731 | return $this->country_ID(); |
732 | 732 | } else { |
733 | 733 | return $this->country_name(); |
@@ -31,7 +31,6 @@ discard block |
||
31 | 31 | |
32 | 32 | /** |
33 | 33 | * google_map - creates a Google Map Link |
34 | - * @param array $atts aray of attributes required for the map link generation |
|
35 | 34 | * @return string (link to map!) |
36 | 35 | */ |
37 | 36 | public static function google_map( $ee_gmaps_opts ){ |
@@ -116,7 +115,6 @@ discard block |
||
116 | 115 | |
117 | 116 | /** |
118 | 117 | * creates a Google Map Link |
119 | - * @param array $atts aray of attributes required for the map link generation |
|
120 | 118 | * @return string (link to map!) |
121 | 119 | */ |
122 | 120 | public static function espresso_google_map_js() { |
@@ -34,20 +34,20 @@ discard block |
||
34 | 34 | * @param array $atts aray of attributes required for the map link generation |
35 | 35 | * @return string (link to map!) |
36 | 36 | */ |
37 | - public static function google_map( $ee_gmaps_opts ){ |
|
37 | + public static function google_map($ee_gmaps_opts) { |
|
38 | 38 | |
39 | 39 | //d( $ee_gmaps_opts ); |
40 | 40 | |
41 | - $ee_map_width = isset( $ee_gmaps_opts['ee_map_width'] ) && ! empty( $ee_gmaps_opts['ee_map_width'] ) ? $ee_gmaps_opts['ee_map_width'] : '300'; |
|
42 | - $ee_map_height = isset( $ee_gmaps_opts['ee_map_height'] ) && ! empty( $ee_gmaps_opts['ee_map_height'] ) ? $ee_gmaps_opts['ee_map_height'] : '185'; |
|
43 | - $ee_map_zoom = isset( $ee_gmaps_opts['ee_map_zoom'] ) && ! empty( $ee_gmaps_opts['ee_map_zoom'] ) ? $ee_gmaps_opts['ee_map_zoom'] : '12'; |
|
44 | - $ee_map_nav_display = isset( $ee_gmaps_opts['ee_map_nav_display'] ) && ! empty( $ee_gmaps_opts['ee_map_nav_display'] ) ? 'true' : 'false'; |
|
45 | - $ee_map_nav_size = isset( $ee_gmaps_opts['ee_map_nav_size'] ) && ! empty( $ee_gmaps_opts['ee_map_nav_size'] )? $ee_gmaps_opts['ee_map_nav_size'] : 'default'; |
|
46 | - $ee_map_type_control = isset( $ee_gmaps_opts['ee_map_type_control'] ) && ! empty( $ee_gmaps_opts['ee_map_type_control'] )? $ee_gmaps_opts['ee_map_type_control'] : 'default'; |
|
47 | - $static_url = isset( $ee_gmaps_opts['ee_static_url'] ) && ! empty( $ee_gmaps_opts['ee_static_url'] )? $ee_gmaps_opts['ee_static_url'] : FALSE; |
|
41 | + $ee_map_width = isset($ee_gmaps_opts['ee_map_width']) && ! empty($ee_gmaps_opts['ee_map_width']) ? $ee_gmaps_opts['ee_map_width'] : '300'; |
|
42 | + $ee_map_height = isset($ee_gmaps_opts['ee_map_height']) && ! empty($ee_gmaps_opts['ee_map_height']) ? $ee_gmaps_opts['ee_map_height'] : '185'; |
|
43 | + $ee_map_zoom = isset($ee_gmaps_opts['ee_map_zoom']) && ! empty($ee_gmaps_opts['ee_map_zoom']) ? $ee_gmaps_opts['ee_map_zoom'] : '12'; |
|
44 | + $ee_map_nav_display = isset($ee_gmaps_opts['ee_map_nav_display']) && ! empty($ee_gmaps_opts['ee_map_nav_display']) ? 'true' : 'false'; |
|
45 | + $ee_map_nav_size = isset($ee_gmaps_opts['ee_map_nav_size']) && ! empty($ee_gmaps_opts['ee_map_nav_size']) ? $ee_gmaps_opts['ee_map_nav_size'] : 'default'; |
|
46 | + $ee_map_type_control = isset($ee_gmaps_opts['ee_map_type_control']) && ! empty($ee_gmaps_opts['ee_map_type_control']) ? $ee_gmaps_opts['ee_map_type_control'] : 'default'; |
|
47 | + $static_url = isset($ee_gmaps_opts['ee_static_url']) && ! empty($ee_gmaps_opts['ee_static_url']) ? $ee_gmaps_opts['ee_static_url'] : FALSE; |
|
48 | 48 | |
49 | - if( isset( $ee_gmaps_opts['ee_map_align'] ) && ! empty( $ee_gmaps_opts['ee_map_align'] )){ |
|
50 | - switch( $ee_gmaps_opts['ee_map_align'] ){ |
|
49 | + if (isset($ee_gmaps_opts['ee_map_align']) && ! empty($ee_gmaps_opts['ee_map_align'])) { |
|
50 | + switch ($ee_gmaps_opts['ee_map_align']) { |
|
51 | 51 | case "left": |
52 | 52 | $map_align = 'ee-gmap-align-left left'; |
53 | 53 | break; |
@@ -68,18 +68,18 @@ discard block |
||
68 | 68 | |
69 | 69 | // Determine whether user has set a hardoded url to use and |
70 | 70 | // if so display a Google static iframe map else run V3 api |
71 | - if( $static_url ) { |
|
71 | + if ($static_url) { |
|
72 | 72 | |
73 | - $html = '<div class="ee-gmap-iframewrap ee-gmap-wrapper ' . $map_align . '">'; |
|
74 | - $html .= '<iframe src="' . $static_url . '&output=embed" style="width: ' . $ee_map_width .'px; height: ' . $ee_map_height . 'px;" frameborder="0" scrolling="no">'; |
|
73 | + $html = '<div class="ee-gmap-iframewrap ee-gmap-wrapper '.$map_align.'">'; |
|
74 | + $html .= '<iframe src="'.$static_url.'&output=embed" style="width: '.$ee_map_width.'px; height: '.$ee_map_height.'px;" frameborder="0" scrolling="no">'; |
|
75 | 75 | $html .= '</iframe>'; |
76 | - $html .= '<a href="' . $static_url . '">View Large map</a>'; |
|
76 | + $html .= '<a href="'.$static_url.'">View Large map</a>'; |
|
77 | 77 | $html .= '</div>'; |
78 | 78 | return $html; |
79 | 79 | |
80 | 80 | } else { |
81 | 81 | |
82 | - EEH_Maps::$gmap_vars[ $ee_gmaps_opts['map_ID'] ] = array( |
|
82 | + EEH_Maps::$gmap_vars[$ee_gmaps_opts['map_ID']] = array( |
|
83 | 83 | 'map_ID' => $ee_gmaps_opts['map_ID'], |
84 | 84 | 'ee_map_zoom' => $ee_map_zoom, |
85 | 85 | 'ee_map_nav_display' => $ee_map_nav_display, |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | ); |
90 | 90 | |
91 | 91 | $html = '<div class="ee-gmap-wrapper '.$map_align.';">'; |
92 | - $html .= '<div class="ee-gmap" id="map_canvas_' . $ee_gmaps_opts['map_ID'] .'" style="width: '.$ee_map_width.'px; height: '.$ee_map_height.'px;"></div>'; // |
|
92 | + $html .= '<div class="ee-gmap" id="map_canvas_'.$ee_gmaps_opts['map_ID'].'" style="width: '.$ee_map_width.'px; height: '.$ee_map_height.'px;"></div>'; // |
|
93 | 93 | $html .= '</div>'; |
94 | 94 | |
95 | - wp_enqueue_script( 'gmap_api' ); |
|
96 | - wp_enqueue_script( 'ee_gmap' ); |
|
97 | - add_action( 'wp_footer', array( 'EEH_Maps', 'footer_enqueue_script' )); |
|
95 | + wp_enqueue_script('gmap_api'); |
|
96 | + wp_enqueue_script('ee_gmap'); |
|
97 | + add_action('wp_footer', array('EEH_Maps', 'footer_enqueue_script')); |
|
98 | 98 | |
99 | 99 | return $html; |
100 | 100 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * @return void |
110 | 110 | */ |
111 | 111 | public static function footer_enqueue_script() { |
112 | - wp_localize_script( 'ee_gmap', 'ee_gmap_vars', EEH_Maps::$gmap_vars ); |
|
112 | + wp_localize_script('ee_gmap', 'ee_gmap_vars', EEH_Maps::$gmap_vars); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | */ |
122 | 122 | public static function espresso_google_map_js() { |
123 | 123 | $scheme = is_ssl() ? 'https://' : 'http://'; |
124 | - wp_register_script( 'gmap_api', $scheme . 'maps.google.com/maps/api/js?sensor=false', array('jquery'), NULL, TRUE ); |
|
125 | - wp_register_script( 'ee_gmap', plugin_dir_url(__FILE__) . 'assets/ee_gmap.js', array('gmap_api'), '1.0', TRUE ); |
|
124 | + wp_register_script('gmap_api', $scheme.'maps.google.com/maps/api/js?sensor=false', array('jquery'), NULL, TRUE); |
|
125 | + wp_register_script('ee_gmap', plugin_dir_url(__FILE__).'assets/ee_gmap.js', array('gmap_api'), '1.0', TRUE); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * @return string (link to map!) |
132 | 132 | */ |
133 | 133 | public static function google_map_link($atts) { |
134 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
134 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
135 | 135 | extract($atts); |
136 | 136 | |
137 | 137 | $address = "{$address}"; |
@@ -146,9 +146,9 @@ discard block |
||
146 | 146 | $id = isset($id) ? $id : 'not_set'; |
147 | 147 | $map_image_class = isset($map_image_class) ? $map_image_class : 'ee_google_map_view'; |
148 | 148 | |
149 | - $address_string = ($address != '' ? $address : '') . ($city != '' ? ',' . $city : '') . ($state != '' ? ',' . $state : '') . ($zip != '' ? ',' . $zip : '') . ($country != '' ? ',' . $country : ''); |
|
149 | + $address_string = ($address != '' ? $address : '').($city != '' ? ','.$city : '').($state != '' ? ','.$state : '').($zip != '' ? ','.$zip : '').($country != '' ? ','.$country : ''); |
|
150 | 150 | |
151 | - $google_map = htmlentities2('http://maps.google.com/maps?q=' . urlencode( $address_string )); |
|
151 | + $google_map = htmlentities2('http://maps.google.com/maps?q='.urlencode($address_string)); |
|
152 | 152 | |
153 | 153 | switch ($type) { |
154 | 154 | case 'text': |
@@ -162,10 +162,10 @@ discard block |
||
162 | 162 | |
163 | 163 | case 'map': |
164 | 164 | $scheme = is_ssl() ? 'https://' : 'http://'; |
165 | - return '<a class="a_map_image_link" href="' . $google_map . '" target="_blank">' . '<img class="map_image_link" id="venue_map_' . $id . '" ' . $map_image_class . ' src="' . htmlentities2( $scheme . 'maps.googleapis.com/maps/api/staticmap?center=' . urlencode( $address_string ) . '&zoom=14&size=' . $map_w . 'x' . $map_h . '&markers=color:green|label:|' . urlencode( $address_string ) . '&sensor=false' ) . '" /></a>'; |
|
165 | + return '<a class="a_map_image_link" href="'.$google_map.'" target="_blank">'.'<img class="map_image_link" id="venue_map_'.$id.'" '.$map_image_class.' src="'.htmlentities2($scheme.'maps.googleapis.com/maps/api/staticmap?center='.urlencode($address_string).'&zoom=14&size='.$map_w.'x'.$map_h.'&markers=color:green|label:|'.urlencode($address_string).'&sensor=false').'" /></a>'; |
|
166 | 166 | } |
167 | 167 | |
168 | - return '<a href="' . $google_map . '" target="_blank">' . $text . '</a>'; |
|
168 | + return '<a href="'.$google_map.'" target="_blank">'.$text.'</a>'; |
|
169 | 169 | } |
170 | 170 | |
171 | 171 |
@@ -109,7 +109,7 @@ |
||
109 | 109 | * - registers and enqueues the qtip scripts and styles. |
110 | 110 | * |
111 | 111 | * @access public |
112 | - * @param array $paths Array of paths to check for the EE_Qtip class. If present we check these path(s) first. If not present (empty array), then it's assumed it's either in core/libraries/qtips OR the file is already loaded. |
|
112 | + * @param string[] $paths Array of paths to check for the EE_Qtip class. If present we check these path(s) first. If not present (empty array), then it's assumed it's either in core/libraries/qtips OR the file is already loaded. |
|
113 | 113 | * @param string|array $configname name of the Qtip class (full class name is expected and will be used for looking for file, Qtip config classes must extend EE_Qtip_Config) [if this is an array, then we loop through the array to instantiate and setup the qtips] |
114 | 114 | * @return void |
115 | 115 | */ |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public static function instance() { |
34 | 34 | // check if class object is instantiated |
35 | - if ( self::$_instance === NULL or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof EEH_Qtip_Loader )) { |
|
35 | + if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof EEH_Qtip_Loader)) { |
|
36 | 36 | self::$_instance = new self(); |
37 | 37 | } |
38 | 38 | return self::$_instance; |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | */ |
49 | 49 | private function __construct() { |
50 | 50 | //let's just make sure this is instantiated in the right place. |
51 | - if ( did_action( 'wp_print_styles' ) || did_action( 'admin_head' )) { |
|
52 | - EE_Error::doing_it_wrong( 'EEH_Qtip_Loader', __('This helper must be instantiated before or within a callback for the WordPress wp_enqueue_scripts hook action hook.', 'event_espresso' ), '4.1' ); |
|
51 | + if (did_action('wp_print_styles') || did_action('admin_head')) { |
|
52 | + EE_Error::doing_it_wrong('EEH_Qtip_Loader', __('This helper must be instantiated before or within a callback for the WordPress wp_enqueue_scripts hook action hook.', 'event_espresso'), '4.1'); |
|
53 | 53 | } |
54 | 54 | } |
55 | 55 | |
@@ -61,27 +61,27 @@ discard block |
||
61 | 61 | * @return void |
62 | 62 | */ |
63 | 63 | public function register_and_enqueue() { |
64 | - $qtips_js = !defined('SCRIPT_DEBUG') ? EE_THIRD_PARTY_URL . 'qtip/jquery.qtip.min.js' : EE_THIRD_PARTY_URL . 'qtip/jquery.qtip.js'; |
|
65 | - $qtip_images_loaded = EE_THIRD_PARTY_URL . 'qtip/imagesloaded.pkg.min.js'; |
|
66 | - $qtip_map = EE_THIRD_PARTY_URL . 'qtip/jquery.qtip.min.map'; |
|
67 | - $qtipcss = !defined('SCRIPT_DEBUG') ? EE_THIRD_PARTY_URL . 'qtip/jquery.qtip.min.css' : EE_THIRD_PARTY_URL . 'qtip/jquery.qtip.css'; |
|
64 | + $qtips_js = ! defined('SCRIPT_DEBUG') ? EE_THIRD_PARTY_URL.'qtip/jquery.qtip.min.js' : EE_THIRD_PARTY_URL.'qtip/jquery.qtip.js'; |
|
65 | + $qtip_images_loaded = EE_THIRD_PARTY_URL.'qtip/imagesloaded.pkg.min.js'; |
|
66 | + $qtip_map = EE_THIRD_PARTY_URL.'qtip/jquery.qtip.min.map'; |
|
67 | + $qtipcss = ! defined('SCRIPT_DEBUG') ? EE_THIRD_PARTY_URL.'qtip/jquery.qtip.min.css' : EE_THIRD_PARTY_URL.'qtip/jquery.qtip.css'; |
|
68 | 68 | |
69 | - wp_register_script('qtip-map', $qtip_map, array(), '3', TRUE ); |
|
70 | - wp_register_script('qtip-images-loaded', $qtip_images_loaded, array(), '2.2.0', TRUE ); |
|
71 | - wp_register_script('qtip', $qtips_js, array('jquery'), '2.2.0', TRUE ); |
|
72 | - wp_register_script('ee-qtip-helper', EE_HELPERS_ASSETS . 'ee-qtip-helper.js', array('qtip', 'jquery-cookie'), EVENT_ESPRESSO_VERSION, TRUE ); |
|
69 | + wp_register_script('qtip-map', $qtip_map, array(), '3', TRUE); |
|
70 | + wp_register_script('qtip-images-loaded', $qtip_images_loaded, array(), '2.2.0', TRUE); |
|
71 | + wp_register_script('qtip', $qtips_js, array('jquery'), '2.2.0', TRUE); |
|
72 | + wp_register_script('ee-qtip-helper', EE_HELPERS_ASSETS.'ee-qtip-helper.js', array('qtip', 'jquery-cookie'), EVENT_ESPRESSO_VERSION, TRUE); |
|
73 | 73 | |
74 | - wp_register_style('qtip-css', $qtipcss, array(), '2.2' ); |
|
74 | + wp_register_style('qtip-css', $qtipcss, array(), '2.2'); |
|
75 | 75 | |
76 | 76 | //k now let's see if there are any registered qtips. If there are, then we need to setup the localized script for ee-qtip-helper.js (and enqueue ee-qtip-helper.js of course!) |
77 | - if ( !empty( $this->_qtips ) ) { |
|
77 | + if ( ! empty($this->_qtips)) { |
|
78 | 78 | wp_enqueue_script('ee-qtip-helper'); |
79 | 79 | wp_enqueue_style('qtip-css'); |
80 | 80 | $qtips = array(); |
81 | - foreach ( $this->_qtips as $qtip ) { |
|
81 | + foreach ($this->_qtips as $qtip) { |
|
82 | 82 | $qts = $qtip->get_tips(); |
83 | - foreach ( $qts as $qt ) { |
|
84 | - if ( ! $qt instanceof EE_Qtip ) |
|
83 | + foreach ($qts as $qt) { |
|
84 | + if ( ! $qt instanceof EE_Qtip) |
|
85 | 85 | continue; |
86 | 86 | $qtips[] = array( |
87 | 87 | 'content_id' => $qt->content_id, |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | ); |
91 | 91 | } |
92 | 92 | } |
93 | - if ( !empty($qtips) ) |
|
94 | - wp_localize_script('ee-qtip-helper', 'EE_QTIP_HELPER', array( 'qtips' => $qtips ) ); |
|
93 | + if ( ! empty($qtips)) |
|
94 | + wp_localize_script('ee-qtip-helper', 'EE_QTIP_HELPER', array('qtips' => $qtips)); |
|
95 | 95 | |
96 | 96 | } else { |
97 | 97 | //qtips has been requested without any registration (so assuming its just directly used in the admin). |
@@ -113,24 +113,24 @@ discard block |
||
113 | 113 | * @param string|array $configname name of the Qtip class (full class name is expected and will be used for looking for file, Qtip config classes must extend EE_Qtip_Config) [if this is an array, then we loop through the array to instantiate and setup the qtips] |
114 | 114 | * @return void |
115 | 115 | */ |
116 | - public function register( $configname, $paths = array() ) { |
|
116 | + public function register($configname, $paths = array()) { |
|
117 | 117 | |
118 | 118 | //let's just make sure this is instantiated in the right place. |
119 | - if ( did_action('wp_enqueue_scripts') || did_action('admin_enqueue_scripts') ) { |
|
120 | - EE_Error::doing_it_wrong( 'EEH_Qtip_Loader->register()', __('EE_Qtip_Config objects must be registered before wp_enqueue_scripts is called.', 'event_espresso' ), '4.1' ); |
|
119 | + if (did_action('wp_enqueue_scripts') || did_action('admin_enqueue_scripts')) { |
|
120 | + EE_Error::doing_it_wrong('EEH_Qtip_Loader->register()', __('EE_Qtip_Config objects must be registered before wp_enqueue_scripts is called.', 'event_espresso'), '4.1'); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | $configname = (array) $configname; //typecast to array |
124 | - foreach ( $configname as $config ) { |
|
125 | - $this->_register( $config, $paths ); |
|
124 | + foreach ($configname as $config) { |
|
125 | + $this->_register($config, $paths); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | //hook into appropriate footer |
129 | 129 | $footer_action = is_admin() ? 'admin_footer' : 'wp_footer'; |
130 | - add_action($footer_action, array($this, 'setup_qtip'), 10 ); |
|
130 | + add_action($footer_action, array($this, 'setup_qtip'), 10); |
|
131 | 131 | |
132 | 132 | //make sure we "turn on" qtip js. |
133 | - add_filter('FHEE_load_qtip', '__return_true' ); |
|
133 | + add_filter('FHEE_load_qtip', '__return_true'); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | |
@@ -144,15 +144,15 @@ discard block |
||
144 | 144 | * @throws EE_Error |
145 | 145 | * @return void |
146 | 146 | */ |
147 | - private function _register( $config, $paths ) { |
|
147 | + private function _register($config, $paths) { |
|
148 | 148 | //before doing anything we have to make sure that EE_Qtip_Config parent is required. |
149 | - EE_Registry::instance()->load_lib( 'Qtip_Config', array(), TRUE ); |
|
149 | + EE_Registry::instance()->load_lib('Qtip_Config', array(), TRUE); |
|
150 | 150 | |
151 | - if ( !empty( $paths ) ) { |
|
151 | + if ( ! empty($paths)) { |
|
152 | 152 | $paths = (array) $paths; |
153 | - foreach ( $paths as $path ) { |
|
154 | - $path = $path . $config . '.lib.php'; |
|
155 | - if ( !is_readable($path ) ) { |
|
153 | + foreach ($paths as $path) { |
|
154 | + $path = $path.$config.'.lib.php'; |
|
155 | + if ( ! is_readable($path)) { |
|
156 | 156 | continue; |
157 | 157 | } else { |
158 | 158 | require_once $path; |
@@ -161,26 +161,26 @@ discard block |
||
161 | 161 | } |
162 | 162 | |
163 | 163 | //does class exist at this point? If it does then let's instantiate. If it doesn't then let's continue with other paths. |
164 | - if ( !class_exists($config) ) { |
|
165 | - $path = EE_LIBRARIES . 'qtips/' . $config . '.lib.php'; |
|
166 | - if ( !is_readable($path ) ) { |
|
167 | - throw new EE_Error( sprintf( __('Unable to load the Qtip Config registered for this page (%s) because none of the file paths attempted are readable. Please check the spelling of the paths you\'ve used in the registration', 'event_espresso'), $config ) ); |
|
164 | + if ( ! class_exists($config)) { |
|
165 | + $path = EE_LIBRARIES.'qtips/'.$config.'.lib.php'; |
|
166 | + if ( ! is_readable($path)) { |
|
167 | + throw new EE_Error(sprintf(__('Unable to load the Qtip Config registered for this page (%s) because none of the file paths attempted are readable. Please check the spelling of the paths you\'ve used in the registration', 'event_espresso'), $config)); |
|
168 | 168 | } else { |
169 | 169 | require_once $path; |
170 | 170 | } |
171 | 171 | } |
172 | 172 | |
173 | 173 | //now we attempt a class_exists one more time. |
174 | - if ( !class_exists( $config ) ) |
|
175 | - throw new EE_Error( sprintf( __('The Qtip_Config class being registered (%s) does not exist, please check the spelling.', 'event_espresso'), $config ) ); |
|
174 | + if ( ! class_exists($config)) |
|
175 | + throw new EE_Error(sprintf(__('The Qtip_Config class being registered (%s) does not exist, please check the spelling.', 'event_espresso'), $config)); |
|
176 | 176 | |
177 | 177 | //made it HERE? FINALLY, let's get things setup. |
178 | 178 | $a = new ReflectionClass($config); |
179 | 179 | $qtip = $a->newInstance(); |
180 | 180 | |
181 | 181 | //verify that $qtip is a valid object |
182 | - if ( ! $qtip instanceof EE_Qtip_Config ) |
|
183 | - throw new EE_Error( sprintf( __( 'The class given for the Qtip loader (%s) is not a child of the <strong>EE_Qtip_Config</strong> class. Please make sure you are extending EE_Qtip_Config.', 'event_espresso'), $config ) ); |
|
182 | + if ( ! $qtip instanceof EE_Qtip_Config) |
|
183 | + throw new EE_Error(sprintf(__('The class given for the Qtip loader (%s) is not a child of the <strong>EE_Qtip_Config</strong> class. Please make sure you are extending EE_Qtip_Config.', 'event_espresso'), $config)); |
|
184 | 184 | |
185 | 185 | $this->_qtips[] = $a->newInstance(); |
186 | 186 | |
@@ -196,12 +196,12 @@ discard block |
||
196 | 196 | * @return void |
197 | 197 | */ |
198 | 198 | public function setup_qtip() { |
199 | - if ( empty( $this->_qtips ) ) |
|
199 | + if (empty($this->_qtips)) |
|
200 | 200 | return; //no qtips! |
201 | 201 | |
202 | 202 | $content = array(); |
203 | 203 | |
204 | - foreach ( $this->_qtips as $qtip ) { |
|
204 | + foreach ($this->_qtips as $qtip) { |
|
205 | 205 | $content[] = $this->_generate_content_container($qtip); |
206 | 206 | } |
207 | 207 | |
@@ -218,10 +218,10 @@ discard block |
||
218 | 218 | private function _generate_content_container($qtip) { |
219 | 219 | $qts = $qtip->get_tips(); |
220 | 220 | $content = array(); |
221 | - foreach ( $qts as $qt ) { |
|
222 | - if ( ! $qt instanceof EE_Qtip ) |
|
221 | + foreach ($qts as $qt) { |
|
222 | + if ( ! $qt instanceof EE_Qtip) |
|
223 | 223 | continue; |
224 | - $content[] = '<div class="ee-qtip-helper-content hidden" id="' . $qt->content_id . '">' . $qt->content . '</div>'; |
|
224 | + $content[] = '<div class="ee-qtip-helper-content hidden" id="'.$qt->content_id.'">'.$qt->content.'</div>'; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | return implode('<br />', $content); |
@@ -81,8 +81,9 @@ discard block |
||
81 | 81 | foreach ( $this->_qtips as $qtip ) { |
82 | 82 | $qts = $qtip->get_tips(); |
83 | 83 | foreach ( $qts as $qt ) { |
84 | - if ( ! $qt instanceof EE_Qtip ) |
|
85 | - continue; |
|
84 | + if ( ! $qt instanceof EE_Qtip ) { |
|
85 | + continue; |
|
86 | + } |
|
86 | 87 | $qtips[] = array( |
87 | 88 | 'content_id' => $qt->content_id, |
88 | 89 | 'options' => $qt->options, |
@@ -90,8 +91,9 @@ discard block |
||
90 | 91 | ); |
91 | 92 | } |
92 | 93 | } |
93 | - if ( !empty($qtips) ) |
|
94 | - wp_localize_script('ee-qtip-helper', 'EE_QTIP_HELPER', array( 'qtips' => $qtips ) ); |
|
94 | + if ( !empty($qtips) ) { |
|
95 | + wp_localize_script('ee-qtip-helper', 'EE_QTIP_HELPER', array( 'qtips' => $qtips ) ); |
|
96 | + } |
|
95 | 97 | |
96 | 98 | } else { |
97 | 99 | //qtips has been requested without any registration (so assuming its just directly used in the admin). |
@@ -171,16 +173,18 @@ discard block |
||
171 | 173 | } |
172 | 174 | |
173 | 175 | //now we attempt a class_exists one more time. |
174 | - if ( !class_exists( $config ) ) |
|
175 | - throw new EE_Error( sprintf( __('The Qtip_Config class being registered (%s) does not exist, please check the spelling.', 'event_espresso'), $config ) ); |
|
176 | + if ( !class_exists( $config ) ) { |
|
177 | + throw new EE_Error( sprintf( __('The Qtip_Config class being registered (%s) does not exist, please check the spelling.', 'event_espresso'), $config ) ); |
|
178 | + } |
|
176 | 179 | |
177 | 180 | //made it HERE? FINALLY, let's get things setup. |
178 | 181 | $a = new ReflectionClass($config); |
179 | 182 | $qtip = $a->newInstance(); |
180 | 183 | |
181 | 184 | //verify that $qtip is a valid object |
182 | - if ( ! $qtip instanceof EE_Qtip_Config ) |
|
183 | - throw new EE_Error( sprintf( __( 'The class given for the Qtip loader (%s) is not a child of the <strong>EE_Qtip_Config</strong> class. Please make sure you are extending EE_Qtip_Config.', 'event_espresso'), $config ) ); |
|
185 | + if ( ! $qtip instanceof EE_Qtip_Config ) { |
|
186 | + throw new EE_Error( sprintf( __( 'The class given for the Qtip loader (%s) is not a child of the <strong>EE_Qtip_Config</strong> class. Please make sure you are extending EE_Qtip_Config.', 'event_espresso'), $config ) ); |
|
187 | + } |
|
184 | 188 | |
185 | 189 | $this->_qtips[] = $a->newInstance(); |
186 | 190 | |
@@ -196,8 +200,10 @@ discard block |
||
196 | 200 | * @return void |
197 | 201 | */ |
198 | 202 | public function setup_qtip() { |
199 | - if ( empty( $this->_qtips ) ) |
|
200 | - return; //no qtips! |
|
203 | + if ( empty( $this->_qtips ) ) { |
|
204 | + return; |
|
205 | + } |
|
206 | + //no qtips! |
|
201 | 207 | |
202 | 208 | $content = array(); |
203 | 209 | |
@@ -219,8 +225,9 @@ discard block |
||
219 | 225 | $qts = $qtip->get_tips(); |
220 | 226 | $content = array(); |
221 | 227 | foreach ( $qts as $qt ) { |
222 | - if ( ! $qt instanceof EE_Qtip ) |
|
223 | - continue; |
|
228 | + if ( ! $qt instanceof EE_Qtip ) { |
|
229 | + continue; |
|
230 | + } |
|
224 | 231 | $content[] = '<div class="ee-qtip-helper-content hidden" id="' . $qt->content_id . '">' . $qt->content . '</div>'; |
225 | 232 | } |
226 | 233 |
@@ -131,7 +131,7 @@ |
||
131 | 131 | /** |
132 | 132 | * this just returns the properly formatted tab content for our tab box. |
133 | 133 | * @param string $name name of tab (used for selector) |
134 | - * @param string $content content of tab |
|
134 | + * @param string $tab_content content of tab |
|
135 | 135 | * @return string html for content area |
136 | 136 | */ |
137 | 137 | private static function tab_content($name, $tab_content, $active = false) { |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -43,22 +43,22 @@ discard block |
||
43 | 43 | * @param array $tabs_content an array of the content for each tab [required] |
44 | 44 | * @return string the assembled html string containing the tabbed content for display. |
45 | 45 | */ |
46 | - public static function display($tabs_contents, $tabs_names = array(), $small_tabs = true, $tabs_content = TRUE ) { |
|
46 | + public static function display($tabs_contents, $tabs_names = array(), $small_tabs = true, $tabs_content = TRUE) { |
|
47 | 47 | |
48 | 48 | //first check if $tabs_names is not empty then the count must match the count of $tabs_content otherwise we've got a problem houston |
49 | - if ( !empty( $tabs_names) && ( count( (array) $tabs_names) != count( (array) $tabs_content) ) ) { |
|
50 | - throw new EE_Error( __('The count for $tabs_names and $tabs_content does not match.', 'event_espresso') ); |
|
49 | + if ( ! empty($tabs_names) && (count((array) $tabs_names) != count((array) $tabs_content))) { |
|
50 | + throw new EE_Error(__('The count for $tabs_names and $tabs_content does not match.', 'event_espresso')); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | //make sure we've got incoming data setup properly |
54 | - $tabs = !empty( $tabs_names ) ? (array) $tabs_names : array_keys( (array) $tabs_contents ); |
|
55 | - $tabs_content = !empty( $tabs_names ) ? array_combine( (array) $tabs_names, (array) $tabs_content ) : $tabs_contents; |
|
54 | + $tabs = ! empty($tabs_names) ? (array) $tabs_names : array_keys((array) $tabs_contents); |
|
55 | + $tabs_content = ! empty($tabs_names) ? array_combine((array) $tabs_names, (array) $tabs_content) : $tabs_contents; |
|
56 | 56 | |
57 | - $all_tabs = '<h2 class="nav-tab-wrapper">' . "\n"; |
|
57 | + $all_tabs = '<h2 class="nav-tab-wrapper">'."\n"; |
|
58 | 58 | $all_tabs_content = ''; |
59 | 59 | |
60 | 60 | $index = 0; |
61 | - foreach ( $tabs as $tab ) { |
|
61 | + foreach ($tabs as $tab) { |
|
62 | 62 | $active = $index === 0 ? true : false; |
63 | 63 | $all_tabs .= self::tab($tab, $active); |
64 | 64 | $all_tabs_content .= self::tab_content($tab, $tabs_content[$tab], $active); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | $tab_container_class = $small_tabs ? 'ee-nav-tabs ee-nav-tabs-small' : 'ee-nav-tabs'; |
77 | 77 | |
78 | - return '<div class="'. $tab_container_class . '">' . "\n\t" . $all_tabs . $all_tabs_content . "\n" . '</div>'; |
|
78 | + return '<div class="'.$tab_container_class.'">'."\n\t".$all_tabs.$all_tabs_content."\n".'</div>'; |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | |
@@ -98,11 +98,11 @@ discard block |
||
98 | 98 | * @param array $nav_tabs tab array for nav tabs |
99 | 99 | */ |
100 | 100 | public static function display_admin_nav_tabs($nav_tabs = array()) { |
101 | - if ( empty($nav_tabs) ) |
|
102 | - throw new EE_Error( __('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso' ) ); |
|
101 | + if (empty($nav_tabs)) |
|
102 | + throw new EE_Error(__('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso')); |
|
103 | 103 | |
104 | - $all_tabs = '<h2 class="nav-tab-wrapper">' . "\n"; |
|
105 | - foreach ( $nav_tabs as $slug => $tab ) { |
|
104 | + $all_tabs = '<h2 class="nav-tab-wrapper">'."\n"; |
|
105 | + foreach ($nav_tabs as $slug => $tab) { |
|
106 | 106 | $all_tabs .= self::tab($slug, false, $tab['link_text'], $tab['url'], $tab['css_class']); |
107 | 107 | } |
108 | 108 | $all_tabs .= '</h2>'; |
@@ -118,13 +118,13 @@ discard block |
||
118 | 118 | * @param bool|string $css If string given then the generated tab will include that as the class. |
119 | 119 | * @return string html for tab |
120 | 120 | */ |
121 | - private static function tab($name, $active = false, $nice_name = FALSE, $url = FALSE, $css = FALSE ) { |
|
121 | + private static function tab($name, $active = false, $nice_name = FALSE, $url = FALSE, $css = FALSE) { |
|
122 | 122 | $name = str_replace(' ', '-', $name); |
123 | 123 | $class = $active ? 'nav-tab nav-tab-active' : 'nav-tab'; |
124 | - $class = $css ? $class . ' ' . $css : $class; |
|
125 | - $nice_name = $nice_name ? $nice_name : ucwords( preg_replace('/(-|_)/', ' ', $name) ); |
|
126 | - $url = $url ? $url : '#' . $name; |
|
127 | - $tab = '<a class="' . $class . '" rel="ee-tab-' . $name . '" href="' . $url . '">' . $nice_name . '</a>' . "\n\t"; |
|
124 | + $class = $css ? $class.' '.$css : $class; |
|
125 | + $nice_name = $nice_name ? $nice_name : ucwords(preg_replace('/(-|_)/', ' ', $name)); |
|
126 | + $url = $url ? $url : '#'.$name; |
|
127 | + $tab = '<a class="'.$class.'" rel="ee-tab-'.$name.'" href="'.$url.'">'.$nice_name.'</a>'."\n\t"; |
|
128 | 128 | return $tab; |
129 | 129 | } |
130 | 130 | |
@@ -136,9 +136,9 @@ discard block |
||
136 | 136 | */ |
137 | 137 | private static function tab_content($name, $tab_content, $active = false) { |
138 | 138 | $class = $active ? 'nav-tab-content' : 'nav-tab-content hidden'; |
139 | - $name = str_replace( ' ', '-', $name); |
|
140 | - $content = "\t" . '<div class="'. $class . '" id="ee-tab-' . $name . '">' . "\n"; |
|
141 | - $content .= "\t" . $tab_content . "\n"; |
|
139 | + $name = str_replace(' ', '-', $name); |
|
140 | + $content = "\t".'<div class="'.$class.'" id="ee-tab-'.$name.'">'."\n"; |
|
141 | + $content .= "\t".$tab_content."\n"; |
|
142 | 142 | $content .= '<div style="clear:both"></div></div>'; |
143 | 143 | return $content; |
144 | 144 | } |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | * @param string $default You can include a string for the item that will receive the "item_display" class for the js. |
165 | 165 | * @return string a html snippet of of all the formatted link elements. |
166 | 166 | */ |
167 | - public static function tab_text_links( $item_array, $container_class = '', $sep = '|', $default = '' ) { |
|
168 | - if ( !is_array($item_array) || empty( $item_array ) ) |
|
167 | + public static function tab_text_links($item_array, $container_class = '', $sep = '|', $default = '') { |
|
168 | + if ( ! is_array($item_array) || empty($item_array)) |
|
169 | 169 | return false; //get out we don't have even the basic thing we need! |
170 | 170 | |
171 | 171 | |
@@ -176,15 +176,15 @@ discard block |
||
176 | 176 | 'title' => esc_attr__('Link for Item', 'event_espresso'), |
177 | 177 | 'slug' => 'item_slug' |
178 | 178 | ); |
179 | - $container_class = !empty($container_class) ? 'ee-text-links ' . $container_class : 'ee-text-links'; |
|
180 | - $list = '<ul class="' . $container_class . '">'; |
|
179 | + $container_class = ! empty($container_class) ? 'ee-text-links '.$container_class : 'ee-text-links'; |
|
180 | + $list = '<ul class="'.$container_class.'">'; |
|
181 | 181 | |
182 | 182 | $ci = 1; |
183 | - foreach ( $item_array as $item ) { |
|
184 | - $item = wp_parse_args( $item, $defaults ); |
|
185 | - $item['class'] = !empty($default) && $default == $item['slug'] ? 'item_display ' . $item['class'] : $item['class']; |
|
183 | + foreach ($item_array as $item) { |
|
184 | + $item = wp_parse_args($item, $defaults); |
|
185 | + $item['class'] = ! empty($default) && $default == $item['slug'] ? 'item_display '.$item['class'] : $item['class']; |
|
186 | 186 | $list .= self::_text_link_item($item); |
187 | - if ( !empty($sep) && $ci != count($item_array) ) |
|
187 | + if ( ! empty($sep) && $ci != count($item_array)) |
|
188 | 188 | $list .= self::_text_link_item($sep); |
189 | 189 | $ci++; |
190 | 190 | } |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | |
196 | 196 | |
197 | 197 | |
198 | - private static function _text_link_item( $item ) { |
|
198 | + private static function _text_link_item($item) { |
|
199 | 199 | //if this isn't an array then we're doing a separator |
200 | - if ( !is_array( $item ) ) { |
|
200 | + if ( ! is_array($item)) { |
|
201 | 201 | $label = $item; |
202 | 202 | $class = 'ee-text-link-sep'; |
203 | 203 | $href = ''; |
@@ -206,12 +206,12 @@ discard block |
||
206 | 206 | extract($item); |
207 | 207 | } |
208 | 208 | |
209 | - $class = $class != 'ee-text-link-sep' ? 'class="ee-text-link-li ' . $class . '"' : 'class="ee-text-link-sep"'; |
|
209 | + $class = $class != 'ee-text-link-sep' ? 'class="ee-text-link-li '.$class.'"' : 'class="ee-text-link-sep"'; |
|
210 | 210 | |
211 | - $content = '<li ' . $class . '>'; |
|
212 | - $content .= !empty($href) ? '<a class="ee-text-link" href="#' . $href . '" title="' . $title . '">' : ''; |
|
211 | + $content = '<li '.$class.'>'; |
|
212 | + $content .= ! empty($href) ? '<a class="ee-text-link" href="#'.$href.'" title="'.$title.'">' : ''; |
|
213 | 213 | $content .= $label; |
214 | - $content .= !empty($href) ? '</a>' : ''; |
|
214 | + $content .= ! empty($href) ? '</a>' : ''; |
|
215 | 215 | $content .= '</li>'; |
216 | 216 | return $content; |
217 | 217 | } |
@@ -1,6 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | +} |
|
4 | 5 | |
5 | 6 | /** |
6 | 7 | * Event Espresso |
@@ -98,8 +99,9 @@ discard block |
||
98 | 99 | * @param array $nav_tabs tab array for nav tabs |
99 | 100 | */ |
100 | 101 | public static function display_admin_nav_tabs($nav_tabs = array()) { |
101 | - if ( empty($nav_tabs) ) |
|
102 | - throw new EE_Error( __('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso' ) ); |
|
102 | + if ( empty($nav_tabs) ) { |
|
103 | + throw new EE_Error( __('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso' ) ); |
|
104 | + } |
|
103 | 105 | |
104 | 106 | $all_tabs = '<h2 class="nav-tab-wrapper">' . "\n"; |
105 | 107 | foreach ( $nav_tabs as $slug => $tab ) { |
@@ -165,8 +167,10 @@ discard block |
||
165 | 167 | * @return string a html snippet of of all the formatted link elements. |
166 | 168 | */ |
167 | 169 | public static function tab_text_links( $item_array, $container_class = '', $sep = '|', $default = '' ) { |
168 | - if ( !is_array($item_array) || empty( $item_array ) ) |
|
169 | - return false; //get out we don't have even the basic thing we need! |
|
170 | + if ( !is_array($item_array) || empty( $item_array ) ) { |
|
171 | + return false; |
|
172 | + } |
|
173 | + //get out we don't have even the basic thing we need! |
|
170 | 174 | |
171 | 175 | |
172 | 176 | $defaults = array( |
@@ -184,8 +188,9 @@ discard block |
||
184 | 188 | $item = wp_parse_args( $item, $defaults ); |
185 | 189 | $item['class'] = !empty($default) && $default == $item['slug'] ? 'item_display ' . $item['class'] : $item['class']; |
186 | 190 | $list .= self::_text_link_item($item); |
187 | - if ( !empty($sep) && $ci != count($item_array) ) |
|
188 | - $list .= self::_text_link_item($sep); |
|
191 | + if ( !empty($sep) && $ci != count($item_array) ) { |
|
192 | + $list .= self::_text_link_item($sep); |
|
193 | + } |
|
189 | 194 | $ci++; |
190 | 195 | } |
191 | 196 |
@@ -248,7 +248,7 @@ |
||
248 | 248 | * @param bool|string $template_path server path to the file to be loaded, including file name and extension |
249 | 249 | * @param array $template_args an array of arguments to be extracted for use in the template |
250 | 250 | * @param boolean $return_string whether to send output immediately to screen, or capture and return as a string |
251 | - * @return mixed string |
|
251 | + * @return string string |
|
252 | 252 | */ |
253 | 253 | public static function display_template( $template_path = FALSE, $template_args = array(), $return_string = FALSE ) { |
254 | 254 | //require the template validator for verifying variables are set according to how the template requires |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | return array(); |
100 | 100 | } |
101 | 101 | if (( $key = array_search( 'global_assets', $espresso_themes )) !== FALSE ) { |
102 | - unset( $espresso_themes[ $key ] ); |
|
102 | + unset( $espresso_themes[ $key ] ); |
|
103 | 103 | } |
104 | 104 | EEH_Template::$_espresso_themes = array(); |
105 | 105 | foreach ( $espresso_themes as $espresso_theme ) { |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | foreach ( (array)$full_template_paths as $full_template_path ) { |
227 | 227 | if ( is_readable( $full_template_path )) { |
228 | 228 | $template_path = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR, $full_template_path ); |
229 | - break; |
|
229 | + break; |
|
230 | 230 | } |
231 | 231 | } |
232 | 232 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | |
16 | 16 | |
17 | 17 | |
18 | -if ( ! function_exists( 'espresso_get_template_part' )) { |
|
18 | +if ( ! function_exists('espresso_get_template_part')) { |
|
19 | 19 | /** |
20 | 20 | * espresso_get_template_part |
21 | 21 | * basically a copy of the WordPress get_template_part() function but uses EEH_Template::locate_template() instead, and doesn't add base versions of files |
@@ -25,14 +25,14 @@ discard block |
||
25 | 25 | * @param string $name The name of the specialised template. |
26 | 26 | * @return string the html output for the formatted money value |
27 | 27 | */ |
28 | - function espresso_get_template_part( $slug = NULL, $name = NULL ) { |
|
29 | - EEH_Template::get_template_part( $slug, $name ); |
|
28 | + function espresso_get_template_part($slug = NULL, $name = NULL) { |
|
29 | + EEH_Template::get_template_part($slug, $name); |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | 33 | |
34 | 34 | |
35 | -if ( ! function_exists( 'espresso_get_object_css_class' )) { |
|
35 | +if ( ! function_exists('espresso_get_object_css_class')) { |
|
36 | 36 | /** |
37 | 37 | * espresso_get_object_css_class - attempts to generate a css class based on the type of EE object passed |
38 | 38 | * |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | * @param string $suffix added to the end of the generated class |
43 | 43 | * @return string |
44 | 44 | */ |
45 | - function espresso_get_object_css_class( $object = NULL, $prefix = '', $suffix = '' ) { |
|
46 | - return EEH_Template::get_object_css_class( $object, $prefix, $suffix ); |
|
45 | + function espresso_get_object_css_class($object = NULL, $prefix = '', $suffix = '') { |
|
46 | + return EEH_Template::get_object_css_class($object, $prefix, $suffix); |
|
47 | 47 | } |
48 | 48 | } |
49 | 49 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | * @return boolean |
71 | 71 | */ |
72 | 72 | public static function is_espresso_theme() { |
73 | - return wp_get_theme()->get( 'TextDomain' ) == 'event_espresso' ? TRUE : FALSE; |
|
73 | + return wp_get_theme()->get('TextDomain') == 'event_espresso' ? TRUE : FALSE; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
@@ -79,9 +79,9 @@ discard block |
||
79 | 79 | * @return void |
80 | 80 | */ |
81 | 81 | public static function load_espresso_theme_functions() { |
82 | - if ( ! defined( 'EE_THEME_FUNCTIONS_LOADED' )) { |
|
83 | - if ( is_readable( EE_PUBLIC . EE_Config::get_current_theme() . DS . 'functions.php' )) { |
|
84 | - require_once( EE_PUBLIC . EE_Config::get_current_theme() . DS . 'functions.php' ); |
|
82 | + if ( ! defined('EE_THEME_FUNCTIONS_LOADED')) { |
|
83 | + if (is_readable(EE_PUBLIC.EE_Config::get_current_theme().DS.'functions.php')) { |
|
84 | + require_once(EE_PUBLIC.EE_Config::get_current_theme().DS.'functions.php'); |
|
85 | 85 | } |
86 | 86 | } |
87 | 87 | } |
@@ -93,17 +93,17 @@ discard block |
||
93 | 93 | * @return array |
94 | 94 | */ |
95 | 95 | public static function get_espresso_themes() { |
96 | - if ( empty( EEH_Template::$_espresso_themes )) { |
|
97 | - $espresso_themes = glob( EE_PUBLIC . '*', GLOB_ONLYDIR ); |
|
98 | - if ( empty( $espresso_themes ) ) { |
|
96 | + if (empty(EEH_Template::$_espresso_themes)) { |
|
97 | + $espresso_themes = glob(EE_PUBLIC.'*', GLOB_ONLYDIR); |
|
98 | + if (empty($espresso_themes)) { |
|
99 | 99 | return array(); |
100 | 100 | } |
101 | - if (( $key = array_search( 'global_assets', $espresso_themes )) !== FALSE ) { |
|
102 | - unset( $espresso_themes[ $key ] ); |
|
101 | + if (($key = array_search('global_assets', $espresso_themes)) !== FALSE) { |
|
102 | + unset($espresso_themes[$key]); |
|
103 | 103 | } |
104 | 104 | EEH_Template::$_espresso_themes = array(); |
105 | - foreach ( $espresso_themes as $espresso_theme ) { |
|
106 | - EEH_Template::$_espresso_themes[ basename( $espresso_theme ) ] = $espresso_theme; |
|
105 | + foreach ($espresso_themes as $espresso_theme) { |
|
106 | + EEH_Template::$_espresso_themes[basename($espresso_theme)] = $espresso_theme; |
|
107 | 107 | } |
108 | 108 | } |
109 | 109 | return EEH_Template::$_espresso_themes; |
@@ -122,16 +122,16 @@ discard block |
||
122 | 122 | * @param bool $return_string |
123 | 123 | * @return string the html output for the formatted money value |
124 | 124 | */ |
125 | - public static function get_template_part( $slug = NULL, $name = NULL, $template_args = array(), $return_string = FALSE ) { |
|
126 | - do_action( "get_template_part_{$slug}-{$name}", $slug, $name ); |
|
125 | + public static function get_template_part($slug = NULL, $name = NULL, $template_args = array(), $return_string = FALSE) { |
|
126 | + do_action("get_template_part_{$slug}-{$name}", $slug, $name); |
|
127 | 127 | $templates = array(); |
128 | 128 | $name = (string) $name; |
129 | - if ( $name != '' ) { |
|
129 | + if ($name != '') { |
|
130 | 130 | $templates[] = "{$slug}-{$name}.php"; |
131 | 131 | } |
132 | 132 | // allow template parts to be turned off via something like: add_filter( 'FHEE__content_espresso_events_tickets_template__display_datetimes', '__return_false' ); |
133 | - if ( apply_filters( "FHEE__EEH_Template__get_template_part__display__{$slug}_{$name}", TRUE )) { |
|
134 | - EEH_Template::locate_template( $templates, $template_args, TRUE, $return_string ); |
|
133 | + if (apply_filters("FHEE__EEH_Template__get_template_part__display__{$slug}_{$name}", TRUE)) { |
|
134 | + EEH_Template::locate_template($templates, $template_args, TRUE, $return_string); |
|
135 | 135 | } |
136 | 136 | } |
137 | 137 | |
@@ -156,26 +156,26 @@ discard block |
||
156 | 156 | * Used in places where you don't actually load the template, you just want to know if there's a custom version of it. |
157 | 157 | * @return mixed |
158 | 158 | */ |
159 | - public static function locate_template( $templates = array(), $template_args = array(), $load = TRUE, $return_string = TRUE, $check_if_custom = FALSE ) { |
|
159 | + public static function locate_template($templates = array(), $template_args = array(), $load = TRUE, $return_string = TRUE, $check_if_custom = FALSE) { |
|
160 | 160 | // first use WP locate_template to check for template in the current theme folder |
161 | - $template_path = locate_template( $templates ); |
|
161 | + $template_path = locate_template($templates); |
|
162 | 162 | |
163 | - if ( $check_if_custom && !empty( $template_path ) ) |
|
163 | + if ($check_if_custom && ! empty($template_path)) |
|
164 | 164 | return TRUE; |
165 | 165 | |
166 | 166 | // not in the theme |
167 | - if ( empty( $template_path )) { |
|
167 | + if (empty($template_path)) { |
|
168 | 168 | // not even a template to look for ? |
169 | - if ( empty( $templates )) { |
|
169 | + if (empty($templates)) { |
|
170 | 170 | // get post_type |
171 | - $post_type = EE_Registry::instance()->REQ->get( 'post_type' ); |
|
171 | + $post_type = EE_Registry::instance()->REQ->get('post_type'); |
|
172 | 172 | // get array of EE Custom Post Types |
173 | 173 | $EE_CPTs = EE_Register_CPTs::get_CPTs(); |
174 | 174 | // build template name based on request |
175 | - if ( isset( $EE_CPTs[ $post_type ] )) { |
|
176 | - $archive_or_single = is_archive() ? 'archive' : ''; |
|
177 | - $archive_or_single = is_single() ? 'single' : $archive_or_single; |
|
178 | - $templates = $archive_or_single . '-' . $post_type . '.php'; |
|
175 | + if (isset($EE_CPTs[$post_type])) { |
|
176 | + $archive_or_single = is_archive() ? 'archive' : ''; |
|
177 | + $archive_or_single = is_single() ? 'single' : $archive_or_single; |
|
178 | + $templates = $archive_or_single.'-'.$post_type.'.php'; |
|
179 | 179 | } |
180 | 180 | } |
181 | 181 | // currently active EE template theme |
@@ -184,61 +184,61 @@ discard block |
||
184 | 184 | // array of paths to folders that may contain templates |
185 | 185 | $template_folder_paths = array( |
186 | 186 | // first check the /wp-content/uploads/espresso/templates/(current EE theme)/ folder for an EE theme template file |
187 | - EVENT_ESPRESSO_TEMPLATE_DIR . $current_theme, |
|
187 | + EVENT_ESPRESSO_TEMPLATE_DIR.$current_theme, |
|
188 | 188 | // then in the root of the /wp-content/uploads/espresso/templates/ folder |
189 | 189 | EVENT_ESPRESSO_TEMPLATE_DIR |
190 | 190 | ); |
191 | 191 | |
192 | 192 | //add core plugin folders for checking only if we're not $check_if_custom |
193 | - if ( ! $check_if_custom ) { |
|
193 | + if ( ! $check_if_custom) { |
|
194 | 194 | $core_paths = array( |
195 | 195 | // in the /wp-content/plugins/(EE4 folder)/public/(current EE theme)/ folder within the plugin |
196 | - EE_PUBLIC . $current_theme, |
|
196 | + EE_PUBLIC.$current_theme, |
|
197 | 197 | // in the /wp-content/plugins/(EE4 folder)/core/templates/(current EE theme)/ folder within the plugin |
198 | - EE_TEMPLATES . $current_theme, |
|
198 | + EE_TEMPLATES.$current_theme, |
|
199 | 199 | // or maybe relative from the plugin root: /wp-content/plugins/(EE4 folder)/ |
200 | 200 | EE_PLUGIN_DIR_PATH |
201 | 201 | ); |
202 | - $template_folder_paths = array_merge( $template_folder_paths, $core_paths ); |
|
202 | + $template_folder_paths = array_merge($template_folder_paths, $core_paths); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | // now filter that array |
206 | - $template_folder_paths = apply_filters( 'FHEE__EEH_Template__locate_template__template_folder_paths', $template_folder_paths ); |
|
206 | + $template_folder_paths = apply_filters('FHEE__EEH_Template__locate_template__template_folder_paths', $template_folder_paths); |
|
207 | 207 | |
208 | 208 | // array to hold all possible template paths |
209 | 209 | $full_template_paths = array(); |
210 | 210 | |
211 | 211 | // loop through $templates |
212 | - foreach ( (array)$templates as $template ) { |
|
212 | + foreach ((array) $templates as $template) { |
|
213 | 213 | // while looping through all template folder paths |
214 | - foreach ( (array)$template_folder_paths as $template_folder_path ) { |
|
214 | + foreach ((array) $template_folder_paths as $template_folder_path) { |
|
215 | 215 | // build up our template locations array by combining our template folder paths with our templates |
216 | - $full_template_paths[] = rtrim( $template_folder_path, DS ) . DS . $template; |
|
216 | + $full_template_paths[] = rtrim($template_folder_path, DS).DS.$template; |
|
217 | 217 | } |
218 | 218 | // if $template is an absolute path, then we'll tack it onto the start of our array so that it gets searched first |
219 | - array_unshift( $full_template_paths, $template ); |
|
219 | + array_unshift($full_template_paths, $template); |
|
220 | 220 | } |
221 | 221 | // filter final array of full template paths |
222 | - $full_template_paths = apply_filters( 'FHEE__EEH_Template__locate_template__full_template_paths', $full_template_paths ); |
|
222 | + $full_template_paths = apply_filters('FHEE__EEH_Template__locate_template__full_template_paths', $full_template_paths); |
|
223 | 223 | |
224 | 224 | |
225 | 225 | // now loop through our final array of template location paths and check each location |
226 | - foreach ( (array)$full_template_paths as $full_template_path ) { |
|
227 | - if ( is_readable( $full_template_path )) { |
|
228 | - $template_path = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR, $full_template_path ); |
|
226 | + foreach ((array) $full_template_paths as $full_template_path) { |
|
227 | + if (is_readable($full_template_path)) { |
|
228 | + $template_path = str_replace(array('\\', '/'), DIRECTORY_SEPARATOR, $full_template_path); |
|
229 | 229 | break; |
230 | 230 | } |
231 | 231 | } |
232 | 232 | } |
233 | 233 | // if we got it and you want to see it... |
234 | - if ( $template_path && $load && ! $check_if_custom ) { |
|
235 | - if ( $return_string ) { |
|
236 | - return EEH_Template::display_template( $template_path, $template_args, TRUE ); |
|
234 | + if ($template_path && $load && ! $check_if_custom) { |
|
235 | + if ($return_string) { |
|
236 | + return EEH_Template::display_template($template_path, $template_args, TRUE); |
|
237 | 237 | } else { |
238 | - EEH_Template::display_template( $template_path, $template_args, FALSE ); |
|
238 | + EEH_Template::display_template($template_path, $template_args, FALSE); |
|
239 | 239 | } |
240 | 240 | } |
241 | - return $check_if_custom && ! empty( $template_path ) ? TRUE : $template_path; |
|
241 | + return $check_if_custom && ! empty($template_path) ? TRUE : $template_path; |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | |
@@ -250,9 +250,9 @@ discard block |
||
250 | 250 | * @param boolean $return_string whether to send output immediately to screen, or capture and return as a string |
251 | 251 | * @return mixed string |
252 | 252 | */ |
253 | - public static function display_template( $template_path = FALSE, $template_args = array(), $return_string = FALSE ) { |
|
253 | + public static function display_template($template_path = FALSE, $template_args = array(), $return_string = FALSE) { |
|
254 | 254 | //require the template validator for verifying variables are set according to how the template requires |
255 | - EE_Registry::instance()->load_helper( 'Template_Validator' ); |
|
255 | + EE_Registry::instance()->load_helper('Template_Validator'); |
|
256 | 256 | |
257 | 257 | /** |
258 | 258 | * These two filters are intended for last minute changes to templates being loaded and/or template arg |
@@ -263,26 +263,26 @@ discard block |
||
263 | 263 | * |
264 | 264 | * @since 4.6.0 |
265 | 265 | */ |
266 | - $template_path = apply_filters( 'FHEE__EEH_Template__display_template__template_path', $template_path ); |
|
267 | - $template_args = apply_filters( 'FHEE__EEH_Template__display_template__template_args', $template_args ); |
|
266 | + $template_path = apply_filters('FHEE__EEH_Template__display_template__template_path', $template_path); |
|
267 | + $template_args = apply_filters('FHEE__EEH_Template__display_template__template_args', $template_args); |
|
268 | 268 | |
269 | 269 | // you gimme nuttin - YOU GET NUTTIN !! |
270 | - if ( ! $template_path || ! is_readable( $template_path )) { |
|
270 | + if ( ! $template_path || ! is_readable($template_path)) { |
|
271 | 271 | return ''; |
272 | 272 | } |
273 | 273 | // if $template_args are not in an array, then make it so |
274 | - if ( ! is_array( $template_args ) && ! is_object( $template_args )) { |
|
275 | - $template_args = array( $template_args ); |
|
274 | + if ( ! is_array($template_args) && ! is_object($template_args)) { |
|
275 | + $template_args = array($template_args); |
|
276 | 276 | } |
277 | - extract( (array) $template_args); |
|
277 | + extract((array) $template_args); |
|
278 | 278 | |
279 | - if ( $return_string ) { |
|
279 | + if ($return_string) { |
|
280 | 280 | // because we want to return a string, we are going to capture the output |
281 | 281 | ob_start(); |
282 | - include( $template_path ); |
|
282 | + include($template_path); |
|
283 | 283 | return ob_get_clean(); |
284 | 284 | } else { |
285 | - include( $template_path ); |
|
285 | + include($template_path); |
|
286 | 286 | } |
287 | 287 | return ''; |
288 | 288 | } |
@@ -300,27 +300,27 @@ discard block |
||
300 | 300 | * @param string $suffix added to the end of the generated class |
301 | 301 | * @return string |
302 | 302 | */ |
303 | - public static function get_object_css_class( $object = NULL, $prefix = '', $suffix = '' ) { |
|
303 | + public static function get_object_css_class($object = NULL, $prefix = '', $suffix = '') { |
|
304 | 304 | // in the beginning... |
305 | - $prefix = ! empty( $prefix ) ? rtrim( $prefix, '-' ) . '-' : ''; |
|
305 | + $prefix = ! empty($prefix) ? rtrim($prefix, '-').'-' : ''; |
|
306 | 306 | // da muddle |
307 | 307 | $class = ''; |
308 | 308 | // the end |
309 | - $suffix = ! empty( $suffix ) ? '-' . ltrim( $suffix, '-' ) : ''; |
|
309 | + $suffix = ! empty($suffix) ? '-'.ltrim($suffix, '-') : ''; |
|
310 | 310 | // is the passed object an EE object ? |
311 | - if ( $object instanceof EE_Base_Class ) { |
|
311 | + if ($object instanceof EE_Base_Class) { |
|
312 | 312 | // grab the exact type of object |
313 | - $obj_class = get_class( $object ); |
|
313 | + $obj_class = get_class($object); |
|
314 | 314 | // depending on the type of object... |
315 | - switch ( $obj_class ) { |
|
315 | + switch ($obj_class) { |
|
316 | 316 | // no specifics just yet... |
317 | 317 | default : |
318 | - $class = strtolower( str_replace( '_', '-', $obj_class )); |
|
319 | - $class .= method_exists( $obj_class, 'name' ) ? '-' . sanitize_title( $object->name() ) : ''; |
|
318 | + $class = strtolower(str_replace('_', '-', $obj_class)); |
|
319 | + $class .= method_exists($obj_class, 'name') ? '-'.sanitize_title($object->name()) : ''; |
|
320 | 320 | |
321 | 321 | } |
322 | 322 | } |
323 | - return $prefix . $class . $suffix; |
|
323 | + return $prefix.$class.$suffix; |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | |
@@ -336,50 +336,50 @@ discard block |
||
336 | 336 | * @param string $cur_code_span_class |
337 | 337 | * @return string the html output for the formatted money value |
338 | 338 | */ |
339 | - public static function format_currency( $amount = NULL, $return_raw = FALSE, $display_code = TRUE, $CNT_ISO = '', $cur_code_span_class = 'currency-code' ) { |
|
339 | + public static function format_currency($amount = NULL, $return_raw = FALSE, $display_code = TRUE, $CNT_ISO = '', $cur_code_span_class = 'currency-code') { |
|
340 | 340 | // ensure amount was received |
341 | - if ( is_null( $amount ) ) { |
|
342 | - $msg = __( 'In order to format currency, an amount needs to be passed.', 'event_espresso' ); |
|
343 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
341 | + if (is_null($amount)) { |
|
342 | + $msg = __('In order to format currency, an amount needs to be passed.', 'event_espresso'); |
|
343 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
344 | 344 | return ''; |
345 | 345 | } |
346 | 346 | //ensure amount is float |
347 | 347 | $amount = (float) $amount; |
348 | 348 | // filter raw amount (allows 0.00 to be changed to "free" for example) |
349 | - $amount_formatted = apply_filters( 'FHEE__EEH_Template__format_currency__amount', $amount, $return_raw ); |
|
349 | + $amount_formatted = apply_filters('FHEE__EEH_Template__format_currency__amount', $amount, $return_raw); |
|
350 | 350 | // still a number or was amount converted to a string like "free" ? |
351 | - if ( is_float( $amount_formatted )) { |
|
351 | + if (is_float($amount_formatted)) { |
|
352 | 352 | // was a country ISO code passed ? if so generate currency config object for that country |
353 | - $mny = $CNT_ISO !== '' ? new EE_Currency_Config( $CNT_ISO ) : NULL; |
|
353 | + $mny = $CNT_ISO !== '' ? new EE_Currency_Config($CNT_ISO) : NULL; |
|
354 | 354 | // verify results |
355 | - if ( ! $mny instanceof EE_Currency_Config ) { |
|
355 | + if ( ! $mny instanceof EE_Currency_Config) { |
|
356 | 356 | // set default config country currency settings |
357 | 357 | $mny = EE_Registry::instance()->CFG->currency instanceof EE_Currency_Config ? EE_Registry::instance()->CFG->currency : new EE_Currency_Config(); |
358 | 358 | } |
359 | 359 | // format float |
360 | - $amount_formatted = number_format( $amount, $mny->dec_plc, $mny->dec_mrk, $mny->thsnds ); |
|
360 | + $amount_formatted = number_format($amount, $mny->dec_plc, $mny->dec_mrk, $mny->thsnds); |
|
361 | 361 | // add formatting ? |
362 | - if ( ! $return_raw ) { |
|
362 | + if ( ! $return_raw) { |
|
363 | 363 | // add currency sign |
364 | - if( $mny->sign_b4 ){ |
|
365 | - if( $amount >= 0 ){ |
|
366 | - $amount_formatted = $mny->sign . $amount_formatted; |
|
367 | - }else{ |
|
368 | - $amount_formatted = '-' . $mny->sign . str_replace( '-', '', $amount_formatted ); |
|
364 | + if ($mny->sign_b4) { |
|
365 | + if ($amount >= 0) { |
|
366 | + $amount_formatted = $mny->sign.$amount_formatted; |
|
367 | + } else { |
|
368 | + $amount_formatted = '-'.$mny->sign.str_replace('-', '', $amount_formatted); |
|
369 | 369 | } |
370 | 370 | |
371 | - }else{ |
|
372 | - $amount_formatted = $amount_formatted . $mny->sign; |
|
371 | + } else { |
|
372 | + $amount_formatted = $amount_formatted.$mny->sign; |
|
373 | 373 | } |
374 | 374 | |
375 | 375 | // add currency code ? |
376 | - $amount_formatted = $display_code ? $amount_formatted . ' <span class="' . $cur_code_span_class . '">(' . $mny->code . ')</span>' : $amount_formatted; |
|
376 | + $amount_formatted = $display_code ? $amount_formatted.' <span class="'.$cur_code_span_class.'">('.$mny->code.')</span>' : $amount_formatted; |
|
377 | 377 | } |
378 | 378 | // filter results |
379 | - $amount_formatted = apply_filters( 'FHEE__EEH_Template__format_currency__amount_formatted', $amount_formatted, $mny, $return_raw ); |
|
379 | + $amount_formatted = apply_filters('FHEE__EEH_Template__format_currency__amount_formatted', $amount_formatted, $mny, $return_raw); |
|
380 | 380 | } |
381 | 381 | // clean up vars |
382 | - unset( $mny ); |
|
382 | + unset($mny); |
|
383 | 383 | // return formatted currency amount |
384 | 384 | return $amount_formatted; |
385 | 385 | } |
@@ -394,11 +394,11 @@ discard block |
||
394 | 394 | * @param string $schema 'UPPER', 'lower', or 'Sentence' |
395 | 395 | * @return string The localized label for the status id. |
396 | 396 | */ |
397 | - public static function pretty_status( $status_id, $plural = FALSE, $schema = 'upper' ) { |
|
397 | + public static function pretty_status($status_id, $plural = FALSE, $schema = 'upper') { |
|
398 | 398 | /** @type EEM_Status $EEM_Status */ |
399 | - $EEM_Status = EE_Registry::instance()->load_model( 'Status' ); |
|
400 | - $status = $EEM_Status->localized_status( array( $status_id => __( 'unknown', 'event_espresso' )), $plural, $schema ); |
|
401 | - return $status[ $status_id ]; |
|
399 | + $EEM_Status = EE_Registry::instance()->load_model('Status'); |
|
400 | + $status = $EEM_Status->localized_status(array($status_id => __('unknown', 'event_espresso')), $plural, $schema); |
|
401 | + return $status[$status_id]; |
|
402 | 402 | } |
403 | 403 | |
404 | 404 | |
@@ -411,9 +411,9 @@ discard block |
||
411 | 411 | * @param string $icon |
412 | 412 | * @return string the html output for the button |
413 | 413 | */ |
414 | - public static function get_button_or_link( $url, $label, $class = 'button-primary', $icon = '' ) { |
|
415 | - $label = ! empty( $icon ) ? '<span class="' . $icon . '"></span>' . $label : $label; |
|
416 | - $button = '<a id="' . sanitize_title_with_dashes($label) . '" href="' . $url . '" class="' . $class . '">' . $label . '</a>'; |
|
414 | + public static function get_button_or_link($url, $label, $class = 'button-primary', $icon = '') { |
|
415 | + $label = ! empty($icon) ? '<span class="'.$icon.'"></span>'.$label : $label; |
|
416 | + $button = '<a id="'.sanitize_title_with_dashes($label).'" href="'.$url.'" class="'.$class.'">'.$label.'</a>'; |
|
417 | 417 | return $button; |
418 | 418 | } |
419 | 419 | |
@@ -430,21 +430,21 @@ discard block |
||
430 | 430 | * @param bool|string $help_text (optional) send help text you want to use for the link if default not to be used |
431 | 431 | * @return string generated link |
432 | 432 | */ |
433 | - public static function get_help_tab_link( $help_tab_id, $page = FALSE, $action = FALSE, $icon_style = FALSE, $help_text = FALSE ) { |
|
433 | + public static function get_help_tab_link($help_tab_id, $page = FALSE, $action = FALSE, $icon_style = FALSE, $help_text = FALSE) { |
|
434 | 434 | |
435 | - if ( ! $page ) |
|
436 | - $page = isset( $_REQUEST['page'] ) && ! empty( $_REQUEST['page'] ) ? sanitize_key( $_REQUEST['page'] ) : $page; |
|
435 | + if ( ! $page) |
|
436 | + $page = isset($_REQUEST['page']) && ! empty($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : $page; |
|
437 | 437 | |
438 | - if ( ! $action ) |
|
439 | - $action = isset( $_REQUEST['action'] ) && ! empty( $_REQUEST['action'] ) ? sanitize_key( $_REQUEST['action'] ) : $action; |
|
438 | + if ( ! $action) |
|
439 | + $action = isset($_REQUEST['action']) && ! empty($_REQUEST['action']) ? sanitize_key($_REQUEST['action']) : $action; |
|
440 | 440 | |
441 | 441 | $action = empty($action) ? 'default' : $action; |
442 | 442 | |
443 | 443 | |
444 | - $help_tab_lnk = $page . '-' . $action . '-' . $help_tab_id; |
|
445 | - $icon = !$icon_style ? ' dashicons-editor-help' : $icon_style; |
|
446 | - $help_text = !$help_text ? '' : $help_text; |
|
447 | - return '<a id="' . $help_tab_lnk . '" class="ee-clickable dashicons espresso-help-tab-lnk ee-icon-size-22' . $icon . '" title="' . esc_attr__('Click to open the \'Help\' tab for more information about this feature.', 'event_espresso') . '" > ' . $help_text . ' </a>'; |
|
444 | + $help_tab_lnk = $page.'-'.$action.'-'.$help_tab_id; |
|
445 | + $icon = ! $icon_style ? ' dashicons-editor-help' : $icon_style; |
|
446 | + $help_text = ! $help_text ? '' : $help_text; |
|
447 | + return '<a id="'.$help_tab_lnk.'" class="ee-clickable dashicons espresso-help-tab-lnk ee-icon-size-22'.$icon.'" title="'.esc_attr__('Click to open the \'Help\' tab for more information about this feature.', 'event_espresso').'" > '.$help_text.' </a>'; |
|
448 | 448 | } |
449 | 449 | |
450 | 450 | |
@@ -456,31 +456,31 @@ discard block |
||
456 | 456 | * @param EE_Help_Tour |
457 | 457 | * @return string html |
458 | 458 | */ |
459 | - public static function help_tour_stops_generator( EE_Help_Tour $tour ) { |
|
459 | + public static function help_tour_stops_generator(EE_Help_Tour $tour) { |
|
460 | 460 | $id = $tour->get_slug(); |
461 | 461 | $stops = $tour->get_stops(); |
462 | 462 | |
463 | - $content = '<ol style="display:none" id="' . $id . '">'; |
|
463 | + $content = '<ol style="display:none" id="'.$id.'">'; |
|
464 | 464 | |
465 | - foreach ( $stops as $stop ) { |
|
466 | - $data_id = !empty( $stop['id'] ) ? ' data-id="' . $stop['id'] . '"' : ''; |
|
467 | - $data_class = empty( $data_id ) && !empty( $stop['class'] ) ? ' data-class="' . $stop['class'] . '"' : ''; |
|
465 | + foreach ($stops as $stop) { |
|
466 | + $data_id = ! empty($stop['id']) ? ' data-id="'.$stop['id'].'"' : ''; |
|
467 | + $data_class = empty($data_id) && ! empty($stop['class']) ? ' data-class="'.$stop['class'].'"' : ''; |
|
468 | 468 | |
469 | 469 | //if container is set to modal then let's make sure we set the options accordingly |
470 | - if ( empty( $data_id ) && empty( $data_class ) ) { |
|
470 | + if (empty($data_id) && empty($data_class)) { |
|
471 | 471 | $stop['options']['modal'] = true; |
472 | 472 | $stop['options']['expose'] = true; |
473 | 473 | } |
474 | 474 | |
475 | - $custom_class = !empty( $stop['custom_class'] ) ? ' class="' . $stop['custom_class'] . '"' : ''; |
|
476 | - $button_text = !empty( $stop['button_text'] ) ? ' data-button="' . $stop['button_text'] . '"' : ''; |
|
475 | + $custom_class = ! empty($stop['custom_class']) ? ' class="'.$stop['custom_class'].'"' : ''; |
|
476 | + $button_text = ! empty($stop['button_text']) ? ' data-button="'.$stop['button_text'].'"' : ''; |
|
477 | 477 | $inner_content = isset($stop['content']) ? $stop['content'] : ''; |
478 | 478 | |
479 | 479 | //options |
480 | - if ( isset( $stop['options'] ) && is_array( $stop['options'] ) ) { |
|
480 | + if (isset($stop['options']) && is_array($stop['options'])) { |
|
481 | 481 | $options = ' data-options="'; |
482 | - foreach ( $stop['options'] as $option => $value ) { |
|
483 | - $options .= $option . ':' . $value . ';'; |
|
482 | + foreach ($stop['options'] as $option => $value) { |
|
483 | + $options .= $option.':'.$value.';'; |
|
484 | 484 | } |
485 | 485 | $options .= '"'; |
486 | 486 | } else { |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | } |
489 | 489 | |
490 | 490 | //let's put all together |
491 | - $content .= '<li' . $data_id . $data_class . $custom_class . $button_text . $options . '>' . $inner_content . '</li>'; |
|
491 | + $content .= '<li'.$data_id.$data_class.$custom_class.$button_text.$options.'>'.$inner_content.'</li>'; |
|
492 | 492 | } |
493 | 493 | |
494 | 494 | $content .= '</ol>'; |
@@ -509,31 +509,31 @@ discard block |
||
509 | 509 | * @throws EE_Error |
510 | 510 | * @return string html structure for status. |
511 | 511 | */ |
512 | - public static function status_legend( $status_array, $active_status = '' ) { |
|
513 | - if ( !is_array( $status_array ) ) |
|
514 | - throw new EE_Error( __('The EEH_Template::status_legend helper required the incoming status_array argument to be an array!', 'event_espresso') ); |
|
512 | + public static function status_legend($status_array, $active_status = '') { |
|
513 | + if ( ! is_array($status_array)) |
|
514 | + throw new EE_Error(__('The EEH_Template::status_legend helper required the incoming status_array argument to be an array!', 'event_espresso')); |
|
515 | 515 | |
516 | 516 | $setup_array = array(); |
517 | - foreach ( $status_array as $item => $status ) { |
|
517 | + foreach ($status_array as $item => $status) { |
|
518 | 518 | $setup_array[$item] = array( |
519 | - 'class' => 'ee-status-legend ee-status-legend-' . $status, |
|
520 | - 'desc' => EEH_Template::pretty_status( $status, FALSE, 'sentence' ), |
|
519 | + 'class' => 'ee-status-legend ee-status-legend-'.$status, |
|
520 | + 'desc' => EEH_Template::pretty_status($status, FALSE, 'sentence'), |
|
521 | 521 | 'status' => $status |
522 | 522 | ); |
523 | 523 | } |
524 | 524 | |
525 | - $content = '<div class="ee-list-table-legend-container">' . "\n"; |
|
526 | - $content .= '<h4>' . __('Status Legend', 'event_espresso') . '</h4>' . "\n"; |
|
527 | - $content .= '<dl class="ee-list-table-legend">' . "\n\t"; |
|
528 | - foreach ( $setup_array as $item => $details ) { |
|
525 | + $content = '<div class="ee-list-table-legend-container">'."\n"; |
|
526 | + $content .= '<h4>'.__('Status Legend', 'event_espresso').'</h4>'."\n"; |
|
527 | + $content .= '<dl class="ee-list-table-legend">'."\n\t"; |
|
528 | + foreach ($setup_array as $item => $details) { |
|
529 | 529 | $active_class = $active_status == $details['status'] ? ' class="ee-is-active-status"' : ''; |
530 | - $content .= '<dt id="ee-legend-item-tooltip-' . $item . '"' . $active_class . '>' . "\n\t\t"; |
|
531 | - $content .= '<span class="' . $details['class'] . '"></span>' . "\n\t\t"; |
|
532 | - $content .= '<span class="ee-legend-description">' . $details['desc'] . '</span>' . "\n\t"; |
|
533 | - $content .= '</dt>' . "\n"; |
|
530 | + $content .= '<dt id="ee-legend-item-tooltip-'.$item.'"'.$active_class.'>'."\n\t\t"; |
|
531 | + $content .= '<span class="'.$details['class'].'"></span>'."\n\t\t"; |
|
532 | + $content .= '<span class="ee-legend-description">'.$details['desc'].'</span>'."\n\t"; |
|
533 | + $content .= '</dt>'."\n"; |
|
534 | 534 | } |
535 | - $content .= '</dl>' . "\n"; |
|
536 | - $content .= '</div>' . "\n"; |
|
535 | + $content .= '</dl>'."\n"; |
|
536 | + $content .= '</div>'."\n"; |
|
537 | 537 | return $content; |
538 | 538 | } |
539 | 539 | |
@@ -546,8 +546,8 @@ discard block |
||
546 | 546 | * @return string |
547 | 547 | */ |
548 | 548 | public static function layout_array_as_table($data) { |
549 | - if (is_object($data) || $data instanceof __PHP_Incomplete_Class ) { |
|
550 | - $data = (array)$data; |
|
549 | + if (is_object($data) || $data instanceof __PHP_Incomplete_Class) { |
|
550 | + $data = (array) $data; |
|
551 | 551 | } |
552 | 552 | EE_Registry::instance()->load_helper('Array'); |
553 | 553 | ob_start(); |
@@ -561,10 +561,10 @@ discard block |
||
561 | 561 | ?> |
562 | 562 | <tr> |
563 | 563 | <td> |
564 | - <?php echo $data_key;?> |
|
564 | + <?php echo $data_key; ?> |
|
565 | 565 | </td> |
566 | 566 | <td> |
567 | - <?php echo self::layout_array_as_table($data_values);?> |
|
567 | + <?php echo self::layout_array_as_table($data_values); ?> |
|
568 | 568 | </td> |
569 | 569 | </tr> |
570 | 570 | <?php |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | <ul> |
579 | 579 | <?php |
580 | 580 | foreach ($data as $datum) { |
581 | - echo "<li>"; echo self::layout_array_as_table($datum);echo "</li>"; |
|
581 | + echo "<li>"; echo self::layout_array_as_table($datum); echo "</li>"; |
|
582 | 582 | }?> |
583 | 583 | </ul> |
584 | 584 | <?php |
@@ -604,8 +604,8 @@ discard block |
||
604 | 604 | * @param $url |
605 | 605 | * @param bool $show_num_field |
606 | 606 | */ |
607 | - public static function paging_html( $total_items, $current, $per_page, $url, $show_num_field = TRUE ) { |
|
608 | - echo self::get_paging_html( $total_items, $current, $per_page, $url, $show_num_field ); |
|
607 | + public static function paging_html($total_items, $current, $per_page, $url, $show_num_field = TRUE) { |
|
608 | + echo self::get_paging_html($total_items, $current, $per_page, $url, $show_num_field); |
|
609 | 609 | } |
610 | 610 | |
611 | 611 | |
@@ -623,69 +623,69 @@ discard block |
||
623 | 623 | * @param boolean $show_num_field Whether to show the input for changing page number. |
624 | 624 | * @return string |
625 | 625 | */ |
626 | - public static function get_paging_html( $total_items, $current, $per_page, $url, $show_num_field = TRUE ) { |
|
626 | + public static function get_paging_html($total_items, $current, $per_page, $url, $show_num_field = TRUE) { |
|
627 | 627 | $page_links = array(); |
628 | 628 | $disable_first = $disable_last = ''; |
629 | 629 | $total_items = (int) $total_items; |
630 | 630 | $per_page = (int) $per_page; |
631 | 631 | $current = (int) $current; |
632 | 632 | |
633 | - $total_pages = round( ceil( $total_items ) / $per_page ); |
|
633 | + $total_pages = round(ceil($total_items) / $per_page); |
|
634 | 634 | |
635 | - if ( $total_pages <= 1) |
|
635 | + if ($total_pages <= 1) |
|
636 | 636 | return ''; |
637 | 637 | |
638 | - $output = '<span class="displaying-num">' . sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>'; |
|
638 | + $output = '<span class="displaying-num">'.sprintf(_n('1 item', '%s items', $total_items), number_format_i18n($total_items)).'</span>'; |
|
639 | 639 | |
640 | - if ( $current == 1 ) |
|
640 | + if ($current == 1) |
|
641 | 641 | $disable_first = ' disabled'; |
642 | - if ( $current == $total_pages ) |
|
642 | + if ($current == $total_pages) |
|
643 | 643 | $disable_last = ' disabled'; |
644 | 644 | |
645 | - $page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>", |
|
646 | - 'first-page' . $disable_first, |
|
647 | - esc_attr__( 'Go to the first page' ), |
|
648 | - esc_url( remove_query_arg( 'paged', $url ) ), |
|
645 | + $page_links[] = sprintf("<a class='%s' title='%s' href='%s'>%s</a>", |
|
646 | + 'first-page'.$disable_first, |
|
647 | + esc_attr__('Go to the first page'), |
|
648 | + esc_url(remove_query_arg('paged', $url)), |
|
649 | 649 | '«' |
650 | 650 | ); |
651 | 651 | |
652 | - $page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>", |
|
653 | - 'prev-page' . $disable_first, |
|
654 | - esc_attr__( 'Go to the previous page' ), |
|
655 | - esc_url( add_query_arg( 'paged', max( 1, $current-1 ), $url ) ), |
|
652 | + $page_links[] = sprintf("<a class='%s' title='%s' href='%s'>%s</a>", |
|
653 | + 'prev-page'.$disable_first, |
|
654 | + esc_attr__('Go to the previous page'), |
|
655 | + esc_url(add_query_arg('paged', max(1, $current - 1), $url)), |
|
656 | 656 | '‹' |
657 | 657 | ); |
658 | 658 | |
659 | - if ( ! $show_num_field ) |
|
659 | + if ( ! $show_num_field) |
|
660 | 660 | $html_current_page = $current; |
661 | 661 | else |
662 | - $html_current_page = sprintf( "<input class='current-page' title='%s' type='text' name='paged' value='%s' size='%d' />", |
|
663 | - esc_attr__( 'Current page' ), |
|
662 | + $html_current_page = sprintf("<input class='current-page' title='%s' type='text' name='paged' value='%s' size='%d' />", |
|
663 | + esc_attr__('Current page'), |
|
664 | 664 | $current, |
665 | - strlen( $total_pages ) |
|
665 | + strlen($total_pages) |
|
666 | 666 | ); |
667 | 667 | |
668 | - $html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) ); |
|
669 | - $page_links[] = '<span class="paging-input">' . sprintf( _x( '%1$s of %2$s', 'paging' ), $html_current_page, $html_total_pages ) . '</span>'; |
|
668 | + $html_total_pages = sprintf("<span class='total-pages'>%s</span>", number_format_i18n($total_pages)); |
|
669 | + $page_links[] = '<span class="paging-input">'.sprintf(_x('%1$s of %2$s', 'paging'), $html_current_page, $html_total_pages).'</span>'; |
|
670 | 670 | |
671 | - $page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>", |
|
672 | - 'next-page' . $disable_last, |
|
673 | - esc_attr__( 'Go to the next page' ), |
|
674 | - esc_url( add_query_arg( 'paged', min( $total_pages, $current+1 ), $url ) ), |
|
671 | + $page_links[] = sprintf("<a class='%s' title='%s' href='%s'>%s</a>", |
|
672 | + 'next-page'.$disable_last, |
|
673 | + esc_attr__('Go to the next page'), |
|
674 | + esc_url(add_query_arg('paged', min($total_pages, $current + 1), $url)), |
|
675 | 675 | '›' |
676 | 676 | ); |
677 | 677 | |
678 | - $page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>", |
|
679 | - 'last-page' . $disable_last, |
|
680 | - esc_attr__( 'Go to the last page' ), |
|
681 | - esc_url( add_query_arg( 'paged', $total_pages, $url ) ), |
|
678 | + $page_links[] = sprintf("<a class='%s' title='%s' href='%s'>%s</a>", |
|
679 | + 'last-page'.$disable_last, |
|
680 | + esc_attr__('Go to the last page'), |
|
681 | + esc_url(add_query_arg('paged', $total_pages, $url)), |
|
682 | 682 | '»' |
683 | 683 | ); |
684 | 684 | |
685 | 685 | $pagination_links_class = 'pagination-links'; |
686 | - $output .= "\n<span class='$pagination_links_class'>" . join( "\n", $page_links ) . '</span>'; |
|
686 | + $output .= "\n<span class='$pagination_links_class'>".join("\n", $page_links).'</span>'; |
|
687 | 687 | |
688 | - if ( $total_pages ) |
|
688 | + if ($total_pages) |
|
689 | 689 | $page_class = $total_pages < 2 ? ' one-page' : ''; |
690 | 690 | else |
691 | 691 | $page_class = ' no-pages'; |
@@ -160,8 +160,9 @@ discard block |
||
160 | 160 | // first use WP locate_template to check for template in the current theme folder |
161 | 161 | $template_path = locate_template( $templates ); |
162 | 162 | |
163 | - if ( $check_if_custom && !empty( $template_path ) ) |
|
164 | - return TRUE; |
|
163 | + if ( $check_if_custom && !empty( $template_path ) ) { |
|
164 | + return TRUE; |
|
165 | + } |
|
165 | 166 | |
166 | 167 | // not in the theme |
167 | 168 | if ( empty( $template_path )) { |
@@ -364,11 +365,11 @@ discard block |
||
364 | 365 | if( $mny->sign_b4 ){ |
365 | 366 | if( $amount >= 0 ){ |
366 | 367 | $amount_formatted = $mny->sign . $amount_formatted; |
367 | - }else{ |
|
368 | + } else{ |
|
368 | 369 | $amount_formatted = '-' . $mny->sign . str_replace( '-', '', $amount_formatted ); |
369 | 370 | } |
370 | 371 | |
371 | - }else{ |
|
372 | + } else{ |
|
372 | 373 | $amount_formatted = $amount_formatted . $mny->sign; |
373 | 374 | } |
374 | 375 | |
@@ -432,11 +433,13 @@ discard block |
||
432 | 433 | */ |
433 | 434 | public static function get_help_tab_link( $help_tab_id, $page = FALSE, $action = FALSE, $icon_style = FALSE, $help_text = FALSE ) { |
434 | 435 | |
435 | - if ( ! $page ) |
|
436 | - $page = isset( $_REQUEST['page'] ) && ! empty( $_REQUEST['page'] ) ? sanitize_key( $_REQUEST['page'] ) : $page; |
|
436 | + if ( ! $page ) { |
|
437 | + $page = isset( $_REQUEST['page'] ) && ! empty( $_REQUEST['page'] ) ? sanitize_key( $_REQUEST['page'] ) : $page; |
|
438 | + } |
|
437 | 439 | |
438 | - if ( ! $action ) |
|
439 | - $action = isset( $_REQUEST['action'] ) && ! empty( $_REQUEST['action'] ) ? sanitize_key( $_REQUEST['action'] ) : $action; |
|
440 | + if ( ! $action ) { |
|
441 | + $action = isset( $_REQUEST['action'] ) && ! empty( $_REQUEST['action'] ) ? sanitize_key( $_REQUEST['action'] ) : $action; |
|
442 | + } |
|
440 | 443 | |
441 | 444 | $action = empty($action) ? 'default' : $action; |
442 | 445 | |
@@ -510,8 +513,9 @@ discard block |
||
510 | 513 | * @return string html structure for status. |
511 | 514 | */ |
512 | 515 | public static function status_legend( $status_array, $active_status = '' ) { |
513 | - if ( !is_array( $status_array ) ) |
|
514 | - throw new EE_Error( __('The EEH_Template::status_legend helper required the incoming status_array argument to be an array!', 'event_espresso') ); |
|
516 | + if ( !is_array( $status_array ) ) { |
|
517 | + throw new EE_Error( __('The EEH_Template::status_legend helper required the incoming status_array argument to be an array!', 'event_espresso') ); |
|
518 | + } |
|
515 | 519 | |
516 | 520 | $setup_array = array(); |
517 | 521 | foreach ( $status_array as $item => $status ) { |
@@ -572,8 +576,7 @@ discard block |
||
572 | 576 | </tbody> |
573 | 577 | </table> |
574 | 578 | <?php |
575 | - } |
|
576 | - else { |
|
579 | + } else { |
|
577 | 580 | ?> |
578 | 581 | <ul> |
579 | 582 | <?php |
@@ -583,8 +586,7 @@ discard block |
||
583 | 586 | </ul> |
584 | 587 | <?php |
585 | 588 | } |
586 | - } |
|
587 | - else { |
|
589 | + } else { |
|
588 | 590 | //simple value |
589 | 591 | echo $data; |
590 | 592 | } |
@@ -632,15 +634,18 @@ discard block |
||
632 | 634 | |
633 | 635 | $total_pages = round( ceil( $total_items ) / $per_page ); |
634 | 636 | |
635 | - if ( $total_pages <= 1) |
|
636 | - return ''; |
|
637 | + if ( $total_pages <= 1) { |
|
638 | + return ''; |
|
639 | + } |
|
637 | 640 | |
638 | 641 | $output = '<span class="displaying-num">' . sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>'; |
639 | 642 | |
640 | - if ( $current == 1 ) |
|
641 | - $disable_first = ' disabled'; |
|
642 | - if ( $current == $total_pages ) |
|
643 | - $disable_last = ' disabled'; |
|
643 | + if ( $current == 1 ) { |
|
644 | + $disable_first = ' disabled'; |
|
645 | + } |
|
646 | + if ( $current == $total_pages ) { |
|
647 | + $disable_last = ' disabled'; |
|
648 | + } |
|
644 | 649 | |
645 | 650 | $page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>", |
646 | 651 | 'first-page' . $disable_first, |
@@ -656,14 +661,15 @@ discard block |
||
656 | 661 | '‹' |
657 | 662 | ); |
658 | 663 | |
659 | - if ( ! $show_num_field ) |
|
660 | - $html_current_page = $current; |
|
661 | - else |
|
662 | - $html_current_page = sprintf( "<input class='current-page' title='%s' type='text' name='paged' value='%s' size='%d' />", |
|
664 | + if ( ! $show_num_field ) { |
|
665 | + $html_current_page = $current; |
|
666 | + } else { |
|
667 | + $html_current_page = sprintf( "<input class='current-page' title='%s' type='text' name='paged' value='%s' size='%d' />", |
|
663 | 668 | esc_attr__( 'Current page' ), |
664 | 669 | $current, |
665 | 670 | strlen( $total_pages ) |
666 | 671 | ); |
672 | + } |
|
667 | 673 | |
668 | 674 | $html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) ); |
669 | 675 | $page_links[] = '<span class="paging-input">' . sprintf( _x( '%1$s of %2$s', 'paging' ), $html_current_page, $html_total_pages ) . '</span>'; |
@@ -685,10 +691,11 @@ discard block |
||
685 | 691 | $pagination_links_class = 'pagination-links'; |
686 | 692 | $output .= "\n<span class='$pagination_links_class'>" . join( "\n", $page_links ) . '</span>'; |
687 | 693 | |
688 | - if ( $total_pages ) |
|
689 | - $page_class = $total_pages < 2 ? ' one-page' : ''; |
|
690 | - else |
|
691 | - $page_class = ' no-pages'; |
|
694 | + if ( $total_pages ) { |
|
695 | + $page_class = $total_pages < 2 ? ' one-page' : ''; |
|
696 | + } else { |
|
697 | + $page_class = ' no-pages'; |
|
698 | + } |
|
692 | 699 | |
693 | 700 | return "<div class='tablenav-pages{$page_class}'>$output</div>"; |
694 | 701 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | /** |
132 | 132 | * For verifying that a variable is indeed an array, else throw an EE_Error |
133 | 133 | * @param type $variable_to_test |
134 | - * @param type $variable_name |
|
134 | + * @param string $variable_name |
|
135 | 135 | * @param type $allow_empty one of 'allow_empty' or 'do_not_allow_empty' |
136 | 136 | * @return void |
137 | 137 | * @throws EE_Error |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | * for verifying that a variable is one of the string optiosn supplied |
160 | 160 | * @param mixed $variable_to_test |
161 | 161 | * @param mixed $variable_name the name you've given the variable. Eg, '$foo'. THis helps in producing better error messages |
162 | - * @param array $string_options an array of acceptable values |
|
162 | + * @param string[] $string_options an array of acceptable values |
|
163 | 163 | * @return void |
164 | 164 | * @throws EE_Error |
165 | 165 | */ |
@@ -50,14 +50,14 @@ discard block |
||
50 | 50 | * @return void |
51 | 51 | * @throws EE_Error (indirectly) |
52 | 52 | */ |
53 | - static function verify_is_array_of($variable_to_test,$name_of_variable,$class_name,$allow_null='allow_null'){ |
|
54 | - if(!WP_DEBUG)return; |
|
55 | - self::verify_argument_is_one_of($allow_null, 'allow_null', array('allow_null','do_not_allow_null')); |
|
56 | - if('allow_null' == $allow_null && is_null($variable_to_test)){ |
|
53 | + static function verify_is_array_of($variable_to_test, $name_of_variable, $class_name, $allow_null = 'allow_null') { |
|
54 | + if ( ! WP_DEBUG)return; |
|
55 | + self::verify_argument_is_one_of($allow_null, 'allow_null', array('allow_null', 'do_not_allow_null')); |
|
56 | + if ('allow_null' == $allow_null && is_null($variable_to_test)) { |
|
57 | 57 | return; |
58 | 58 | } |
59 | 59 | self::verify_is_array($variable_to_test, $name_of_variable); |
60 | - foreach($variable_to_test as $key=>$array_element){ |
|
60 | + foreach ($variable_to_test as $key=>$array_element) { |
|
61 | 61 | self::verify_instanceof($array_element, $key, $class_name); |
62 | 62 | } |
63 | 63 | } |
@@ -73,12 +73,12 @@ discard block |
||
73 | 73 | * @return void |
74 | 74 | * @throws EE_Error |
75 | 75 | */ |
76 | - static function verify_isnt_null($variable_to_test,$name_of_variable){ |
|
77 | - if(!WP_DEBUG)return; |
|
78 | - if($variable_to_test==null && $variable_to_test!=0 && $variable_to_test!=FALSE){ |
|
79 | - $error[]=__('Variable named %s is null.','event_espresso'); |
|
80 | - $error[]=__("Consider looking at the stack trace to see why it wasn't set.",'event_espresso'); |
|
81 | - throw new EE_Error(sprintf(implode(",",$error),$name_of_variable,$name_of_variable)); |
|
76 | + static function verify_isnt_null($variable_to_test, $name_of_variable) { |
|
77 | + if ( ! WP_DEBUG)return; |
|
78 | + if ($variable_to_test == null && $variable_to_test != 0 && $variable_to_test != FALSE) { |
|
79 | + $error[] = __('Variable named %s is null.', 'event_espresso'); |
|
80 | + $error[] = __("Consider looking at the stack trace to see why it wasn't set.", 'event_espresso'); |
|
81 | + throw new EE_Error(sprintf(implode(",", $error), $name_of_variable, $name_of_variable)); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
@@ -90,12 +90,12 @@ discard block |
||
90 | 90 | * @return void |
91 | 91 | * @throws EE_Error |
92 | 92 | */ |
93 | - static function verify_is_true($expression_to_test,$expression_string_representation){ |
|
94 | - if(!WP_DEBUG)return; |
|
95 | - if(!$expression_to_test){ |
|
96 | - $error[]=__('Template error.','event_espresso'); |
|
97 | - $error[]=__("%s evaluated to false, but it must be true!",'event_espresso'); |
|
98 | - throw new EE_Error(sprintf(implode(",",$error),$expression_string_representation)); |
|
93 | + static function verify_is_true($expression_to_test, $expression_string_representation) { |
|
94 | + if ( ! WP_DEBUG)return; |
|
95 | + if ( ! $expression_to_test) { |
|
96 | + $error[] = __('Template error.', 'event_espresso'); |
|
97 | + $error[] = __("%s evaluated to false, but it must be true!", 'event_espresso'); |
|
98 | + throw new EE_Error(sprintf(implode(",", $error), $expression_string_representation)); |
|
99 | 99 | } |
100 | 100 | } |
101 | 101 | |
@@ -111,16 +111,16 @@ discard block |
||
111 | 111 | * @return void |
112 | 112 | * @throws EE_Error |
113 | 113 | */ |
114 | - static function verify_instanceof($variable_to_test,$name_of_variable,$class_name, $allow_null = 'do_not_allow_null'){ |
|
115 | - if(!WP_DEBUG)return; |
|
116 | - self::verify_argument_is_one_of($allow_null, 'allow_null', array('allow_null','do_not_allow_null')); |
|
117 | - if($allow_null == 'allow_null' && is_null($variable_to_test)){ |
|
114 | + static function verify_instanceof($variable_to_test, $name_of_variable, $class_name, $allow_null = 'do_not_allow_null') { |
|
115 | + if ( ! WP_DEBUG)return; |
|
116 | + self::verify_argument_is_one_of($allow_null, 'allow_null', array('allow_null', 'do_not_allow_null')); |
|
117 | + if ($allow_null == 'allow_null' && is_null($variable_to_test)) { |
|
118 | 118 | return; |
119 | 119 | } |
120 | - if( $variable_to_test == NULL || ! ( $variable_to_test instanceof $class_name )){ |
|
121 | - $msg[]=__('Variable %s is not of the correct type.','event_espresso'); |
|
122 | - $msg[]=__("It should be of type %s",'event_espresso'); |
|
123 | - throw new EE_Error(sprintf(implode(",",$msg),$name_of_variable,$name_of_variable,$class_name)); |
|
120 | + if ($variable_to_test == NULL || ! ($variable_to_test instanceof $class_name)) { |
|
121 | + $msg[] = __('Variable %s is not of the correct type.', 'event_espresso'); |
|
122 | + $msg[] = __("It should be of type %s", 'event_espresso'); |
|
123 | + throw new EE_Error(sprintf(implode(",", $msg), $name_of_variable, $name_of_variable, $class_name)); |
|
124 | 124 | } |
125 | 125 | } |
126 | 126 | |
@@ -136,16 +136,16 @@ discard block |
||
136 | 136 | * @return void |
137 | 137 | * @throws EE_Error |
138 | 138 | */ |
139 | - static function verify_is_array($variable_to_test,$variable_name,$allow_empty='allow_empty'){ |
|
140 | - if(!WP_DEBUG)return; |
|
141 | - self::verify_argument_is_one_of($allow_empty, $variable_name, array('allow_empty','do_not_allow_empty')); |
|
142 | - if(empty($variable_to_test) && 'allow_empty'==$allow_empty){ |
|
139 | + static function verify_is_array($variable_to_test, $variable_name, $allow_empty = 'allow_empty') { |
|
140 | + if ( ! WP_DEBUG)return; |
|
141 | + self::verify_argument_is_one_of($allow_empty, $variable_name, array('allow_empty', 'do_not_allow_empty')); |
|
142 | + if (empty($variable_to_test) && 'allow_empty' == $allow_empty) { |
|
143 | 143 | return; |
144 | 144 | } |
145 | - if(!is_array($variable_to_test)){ |
|
146 | - $error[]=__('Variable %s should be an array, but it is not.'); |
|
147 | - $error[]=__("Its value is, instead '%s'",'event_espresso'); |
|
148 | - throw new EE_Error(sprintf(implode(",",$error),$variable_name,$variable_name,$variable_to_test)); |
|
145 | + if ( ! is_array($variable_to_test)) { |
|
146 | + $error[] = __('Variable %s should be an array, but it is not.'); |
|
147 | + $error[] = __("Its value is, instead '%s'", 'event_espresso'); |
|
148 | + throw new EE_Error(sprintf(implode(",", $error), $variable_name, $variable_name, $variable_to_test)); |
|
149 | 149 | } |
150 | 150 | } |
151 | 151 | |
@@ -163,12 +163,12 @@ discard block |
||
163 | 163 | * @return void |
164 | 164 | * @throws EE_Error |
165 | 165 | */ |
166 | - static function verify_argument_is_one_of($variable_to_test,$variable_name,$string_options){ |
|
167 | - if(!WP_DEBUG)return; |
|
168 | - if(!in_array($variable_to_test,$string_options)){ |
|
169 | - $msg[0]=__('Malconfigured template.','event_espresso'); |
|
170 | - $msg[1]=__("Variable named '%s' was set to '%s'. It can only be one of '%s'",'event_espresso'); |
|
171 | - throw new EE_Error(sprintf(implode("||",$msg),$variable_name,$variable_to_test, implode("', '",$string_options))); |
|
166 | + static function verify_argument_is_one_of($variable_to_test, $variable_name, $string_options) { |
|
167 | + if ( ! WP_DEBUG)return; |
|
168 | + if ( ! in_array($variable_to_test, $string_options)) { |
|
169 | + $msg[0] = __('Malconfigured template.', 'event_espresso'); |
|
170 | + $msg[1] = __("Variable named '%s' was set to '%s'. It can only be one of '%s'", 'event_espresso'); |
|
171 | + throw new EE_Error(sprintf(implode("||", $msg), $variable_name, $variable_to_test, implode("', '", $string_options))); |
|
172 | 172 | } |
173 | 173 | } |
174 | 174 |
@@ -1,4 +1,6 @@ discard block |
||
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 | /** |
4 | 6 | * Event Espresso |
@@ -51,7 +53,9 @@ discard block |
||
51 | 53 | * @throws EE_Error (indirectly) |
52 | 54 | */ |
53 | 55 | static function verify_is_array_of($variable_to_test,$name_of_variable,$class_name,$allow_null='allow_null'){ |
54 | - if(!WP_DEBUG)return; |
|
56 | + if(!WP_DEBUG) { |
|
57 | + return; |
|
58 | + } |
|
55 | 59 | self::verify_argument_is_one_of($allow_null, 'allow_null', array('allow_null','do_not_allow_null')); |
56 | 60 | if('allow_null' == $allow_null && is_null($variable_to_test)){ |
57 | 61 | return; |
@@ -74,7 +78,9 @@ discard block |
||
74 | 78 | * @throws EE_Error |
75 | 79 | */ |
76 | 80 | static function verify_isnt_null($variable_to_test,$name_of_variable){ |
77 | - if(!WP_DEBUG)return; |
|
81 | + if(!WP_DEBUG) { |
|
82 | + return; |
|
83 | + } |
|
78 | 84 | if($variable_to_test==null && $variable_to_test!=0 && $variable_to_test!=FALSE){ |
79 | 85 | $error[]=__('Variable named %s is null.','event_espresso'); |
80 | 86 | $error[]=__("Consider looking at the stack trace to see why it wasn't set.",'event_espresso'); |
@@ -91,7 +97,9 @@ discard block |
||
91 | 97 | * @throws EE_Error |
92 | 98 | */ |
93 | 99 | static function verify_is_true($expression_to_test,$expression_string_representation){ |
94 | - if(!WP_DEBUG)return; |
|
100 | + if(!WP_DEBUG) { |
|
101 | + return; |
|
102 | + } |
|
95 | 103 | if(!$expression_to_test){ |
96 | 104 | $error[]=__('Template error.','event_espresso'); |
97 | 105 | $error[]=__("%s evaluated to false, but it must be true!",'event_espresso'); |
@@ -112,7 +120,9 @@ discard block |
||
112 | 120 | * @throws EE_Error |
113 | 121 | */ |
114 | 122 | static function verify_instanceof($variable_to_test,$name_of_variable,$class_name, $allow_null = 'do_not_allow_null'){ |
115 | - if(!WP_DEBUG)return; |
|
123 | + if(!WP_DEBUG) { |
|
124 | + return; |
|
125 | + } |
|
116 | 126 | self::verify_argument_is_one_of($allow_null, 'allow_null', array('allow_null','do_not_allow_null')); |
117 | 127 | if($allow_null == 'allow_null' && is_null($variable_to_test)){ |
118 | 128 | return; |
@@ -137,7 +147,9 @@ discard block |
||
137 | 147 | * @throws EE_Error |
138 | 148 | */ |
139 | 149 | static function verify_is_array($variable_to_test,$variable_name,$allow_empty='allow_empty'){ |
140 | - if(!WP_DEBUG)return; |
|
150 | + if(!WP_DEBUG) { |
|
151 | + return; |
|
152 | + } |
|
141 | 153 | self::verify_argument_is_one_of($allow_empty, $variable_name, array('allow_empty','do_not_allow_empty')); |
142 | 154 | if(empty($variable_to_test) && 'allow_empty'==$allow_empty){ |
143 | 155 | return; |
@@ -164,7 +176,9 @@ discard block |
||
164 | 176 | * @throws EE_Error |
165 | 177 | */ |
166 | 178 | static function verify_argument_is_one_of($variable_to_test,$variable_name,$string_options){ |
167 | - if(!WP_DEBUG)return; |
|
179 | + if(!WP_DEBUG) { |
|
180 | + return; |
|
181 | + } |
|
168 | 182 | if(!in_array($variable_to_test,$string_options)){ |
169 | 183 | $msg[0]=__('Malconfigured template.','event_espresso'); |
170 | 184 | $msg[1]=__("Variable named '%s' was set to '%s'. It can only be one of '%s'",'event_espresso'); |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | |
186 | 186 | /** |
187 | 187 | * _prep_name_for_html_id |
188 | - * @param $name |
|
188 | + * @param string $name |
|
189 | 189 | * @return string |
190 | 190 | */ |
191 | 191 | private function _prep_name_for_html_id( $name ) { |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | |
232 | 232 | |
233 | 233 | /** |
234 | - * @param mixed $html_class |
|
234 | + * @param string $html_class |
|
235 | 235 | */ |
236 | 236 | public function set_html_class( $html_class ) { |
237 | 237 | $this->_html_class = $html_class; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('No direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -95,13 +95,13 @@ discard block |
||
95 | 95 | * @type $name string the name for this form section, if you want to explicitly define it |
96 | 96 | * } |
97 | 97 | */ |
98 | - function __construct( $options_array = array() ) { |
|
98 | + function __construct($options_array = array()) { |
|
99 | 99 | // used by display strategies |
100 | 100 | EE_Registry::instance()->load_helper('HTML'); |
101 | 101 | // assign incoming values to properties |
102 | - foreach( $options_array as $key => $value ) { |
|
103 | - $key = '_' . $key; |
|
104 | - if ( property_exists( $this, $key ) && empty( $this->$key )) { |
|
102 | + foreach ($options_array as $key => $value) { |
|
103 | + $key = '_'.$key; |
|
104 | + if (property_exists($this, $key) && empty($this->$key)) { |
|
105 | 105 | $this->$key = $value; |
106 | 106 | } |
107 | 107 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | * @param $parent_form_section |
114 | 114 | * @param $name |
115 | 115 | */ |
116 | - protected function _construct_finalize( $parent_form_section, $name ){ |
|
116 | + protected function _construct_finalize($parent_form_section, $name) { |
|
117 | 117 | $this->_construction_finalized = TRUE; |
118 | 118 | $this->_parent_section = $parent_form_section; |
119 | 119 | $this->_name = $name; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | /** |
135 | 135 | * @param string $action |
136 | 136 | */ |
137 | - public function set_action( $action ) { |
|
137 | + public function set_action($action) { |
|
138 | 138 | $this->_action = $action; |
139 | 139 | } |
140 | 140 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | * @return string |
145 | 145 | */ |
146 | 146 | public function method() { |
147 | - return ! empty( $this->_method ) ? $this->_method : 'POST'; |
|
147 | + return ! empty($this->_method) ? $this->_method : 'POST'; |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | |
@@ -152,8 +152,8 @@ discard block |
||
152 | 152 | /** |
153 | 153 | * @param string $method |
154 | 154 | */ |
155 | - public function set_method( $method ) { |
|
156 | - switch ( $method ) { |
|
155 | + public function set_method($method) { |
|
156 | + switch ($method) { |
|
157 | 157 | case 'get' : |
158 | 158 | case 'GET' : |
159 | 159 | $this->_method = 'GET'; |
@@ -171,12 +171,12 @@ discard block |
||
171 | 171 | * Calculation involves using the name and the parent's html id |
172 | 172 | * return void |
173 | 173 | */ |
174 | - protected function _set_default_html_id_if_empty(){ |
|
175 | - if( ! $this->_html_id ){ |
|
176 | - if( $this->_parent_section && $this->_parent_section instanceof EE_Form_Section_Proper ){ |
|
177 | - $this->_html_id = $this->_parent_section->html_id() . '-' . $this->_prep_name_for_html_id( $this->name() ); |
|
178 | - }else{ |
|
179 | - $this->_html_id = $this->_prep_name_for_html_id( $this->name() ); |
|
174 | + protected function _set_default_html_id_if_empty() { |
|
175 | + if ( ! $this->_html_id) { |
|
176 | + if ($this->_parent_section && $this->_parent_section instanceof EE_Form_Section_Proper) { |
|
177 | + $this->_html_id = $this->_parent_section->html_id().'-'.$this->_prep_name_for_html_id($this->name()); |
|
178 | + } else { |
|
179 | + $this->_html_id = $this->_prep_name_for_html_id($this->name()); |
|
180 | 180 | } |
181 | 181 | } |
182 | 182 | } |
@@ -188,8 +188,8 @@ discard block |
||
188 | 188 | * @param $name |
189 | 189 | * @return string |
190 | 190 | */ |
191 | - private function _prep_name_for_html_id( $name ) { |
|
192 | - return sanitize_key( str_replace( array( ' ', ' ', '_' ), '-', $name )); |
|
191 | + private function _prep_name_for_html_id($name) { |
|
192 | + return sanitize_key(str_replace(array(' ', ' ', '_'), '-', $name)); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | |
@@ -206,8 +206,8 @@ discard block |
||
206 | 206 | * @param bool $add_pound_sign |
207 | 207 | * @return string |
208 | 208 | */ |
209 | - public function html_id( $add_pound_sign = FALSE ){ |
|
210 | - return $add_pound_sign ? '#' . $this->_html_id : $this->_html_id; |
|
209 | + public function html_id($add_pound_sign = FALSE) { |
|
210 | + return $add_pound_sign ? '#'.$this->_html_id : $this->_html_id; |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | /** |
216 | 216 | * @return string |
217 | 217 | */ |
218 | - public function html_class(){ |
|
218 | + public function html_class() { |
|
219 | 219 | return $this->_html_class; |
220 | 220 | } |
221 | 221 | |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | /** |
225 | 225 | * @return string |
226 | 226 | */ |
227 | - public function html_style(){ |
|
227 | + public function html_style() { |
|
228 | 228 | return $this->_html_style; |
229 | 229 | } |
230 | 230 | |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | /** |
234 | 234 | * @param mixed $html_class |
235 | 235 | */ |
236 | - public function set_html_class( $html_class ) { |
|
236 | + public function set_html_class($html_class) { |
|
237 | 237 | $this->_html_class = $html_class; |
238 | 238 | } |
239 | 239 | |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | /** |
243 | 243 | * @param mixed $html_id |
244 | 244 | */ |
245 | - public function set_html_id( $html_id ) { |
|
245 | + public function set_html_id($html_id) { |
|
246 | 246 | $this->_html_id = $html_id; |
247 | 247 | } |
248 | 248 | |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | /** |
252 | 252 | * @param mixed $html_style |
253 | 253 | */ |
254 | - public function set_html_style( $html_style ) { |
|
254 | + public function set_html_style($html_style) { |
|
255 | 255 | $this->_html_style = $html_style; |
256 | 256 | } |
257 | 257 | |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | /** |
261 | 261 | * @param string $other_html_attributes |
262 | 262 | */ |
263 | - public function set_other_html_attributes( $other_html_attributes ) { |
|
263 | + public function set_other_html_attributes($other_html_attributes) { |
|
264 | 264 | $this->_other_html_attributes = $other_html_attributes; |
265 | 265 | } |
266 | 266 | |
@@ -280,9 +280,9 @@ discard block |
||
280 | 280 | * @throws EE_Error |
281 | 281 | * @return string |
282 | 282 | */ |
283 | - function name(){ |
|
284 | - if( ! $this->_construction_finalized ){ |
|
285 | - throw new EE_Error(sprintf( __( 'You cannot use the form section\s name until _construct_finalize has been called on it (when we set the name). It was called on a form section of type \'s\'', 'event_espresso' ), get_class($this) ) ); |
|
283 | + function name() { |
|
284 | + if ( ! $this->_construction_finalized) { |
|
285 | + throw new EE_Error(sprintf(__('You cannot use the form section\s name until _construct_finalize has been called on it (when we set the name). It was called on a form section of type \'s\'', 'event_espresso'), get_class($this))); |
|
286 | 286 | } |
287 | 287 | return $this->_name; |
288 | 288 | } |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | * Gets the parent section |
294 | 294 | * @return EE_Form_Section_Proper |
295 | 295 | */ |
296 | - function parent_section(){ |
|
296 | + function parent_section() { |
|
297 | 297 | return $this->_parent_section; |
298 | 298 | } |
299 | 299 | |
@@ -306,18 +306,18 @@ discard block |
||
306 | 306 | * @param string $other_attributes anything else added to the form open tag, MUST BE VALID HTML |
307 | 307 | * @return string |
308 | 308 | */ |
309 | - public function form_open( $action = '', $method = '', $other_attributes = '' ) { |
|
310 | - if ( ! empty( $action )) { |
|
311 | - $this->set_action( $action ); |
|
309 | + public function form_open($action = '', $method = '', $other_attributes = '') { |
|
310 | + if ( ! empty($action)) { |
|
311 | + $this->set_action($action); |
|
312 | 312 | } |
313 | - if ( ! empty( $method )) { |
|
314 | - $this->set_method( $method ); |
|
313 | + if ( ! empty($method)) { |
|
314 | + $this->set_method($method); |
|
315 | 315 | } |
316 | - $html = EEH_HTML::nl( 1, 'form' ) . '<form'; |
|
317 | - $html .= $this->html_id() !== '' ? ' id="' . $this->html_id() . '"' : ''; |
|
318 | - $html .= ' action="' . $this->action() . '"'; |
|
319 | - $html .= ' method="' . $this->method() . '"'; |
|
320 | - $html .= $other_attributes . '>'; |
|
316 | + $html = EEH_HTML::nl(1, 'form').'<form'; |
|
317 | + $html .= $this->html_id() !== '' ? ' id="'.$this->html_id().'"' : ''; |
|
318 | + $html .= ' action="'.$this->action().'"'; |
|
319 | + $html .= ' method="'.$this->method().'"'; |
|
320 | + $html .= $other_attributes.'>'; |
|
321 | 321 | return $html; |
322 | 322 | } |
323 | 323 | |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | * @return string |
329 | 329 | */ |
330 | 330 | public function form_close() { |
331 | - return EEH_HTML::nl( -1, 'form' ) . '</form>' . EEH_HTML::nl() . '<!-- end of ee-' . $this->html_id() . '-form -->' . EEH_HTML::nl(); |
|
331 | + return EEH_HTML::nl( -1, 'form' ).'</form>'.EEH_HTML::nl().'<!-- end of ee-'.$this->html_id().'-form -->'.EEH_HTML::nl(); |
|
332 | 332 | } |
333 | 333 | |
334 | 334 |
@@ -1,7 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
4 | 4 | exit('No direct script access allowed'); |
5 | +} |
|
5 | 6 | |
6 | 7 | /** |
7 | 8 | * Event Espresso |
@@ -69,7 +70,7 @@ discard block |
||
69 | 70 | $default_address .= $state ? $state->name() . '<br />' : ''; |
70 | 71 | $default_address .= $country ? $country->name(). '<br />' : ''; |
71 | 72 | $default_address .= $organization->zip != '' ? $organization->get_pretty( 'zip' ) : ''; |
72 | - }else{ |
|
73 | + } else{ |
|
73 | 74 | $default_address = 'unknown'; |
74 | 75 | $organization_name = 'unknown'; |
75 | 76 | } |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | * leave this as TRUE so that the inputs will be properly configured. However, |
226 | 226 | * some client code may be ok with construction finalize being called later |
227 | 227 | * (realizing that the subsections' html names might not be set yet, etc.) |
228 | - * @return EE_Form_Section_Base |
|
228 | + * @return EE_Form_Section_Validatable|null |
|
229 | 229 | */ |
230 | 230 | public function get_subsection($name, $require_construction_to_be_finalized = TRUE ){ |
231 | 231 | if( $require_construction_to_be_finalized ){ |
@@ -712,7 +712,7 @@ discard block |
||
712 | 712 | /** |
713 | 713 | * Equivalent to passing 'exclude' in the constructor's options array. |
714 | 714 | * Removes the listed inputs from the form |
715 | - * @param array $inputs_to_exclude values are the input names |
|
715 | + * @param string[] $inputs_to_exclude values are the input names |
|
716 | 716 | * @return void |
717 | 717 | */ |
718 | 718 | public function exclude($inputs_to_exclude = array()){ |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | if(isset($default_data[$subsection_name])){ |
210 | 210 | if($subsection instanceof EE_Form_Input_Base){ |
211 | 211 | $subsection->set_default($default_data[$subsection_name]); |
212 | - }elseif($subsection instanceof EE_Form_Section_Proper){ |
|
212 | + } elseif($subsection instanceof EE_Form_Section_Proper){ |
|
213 | 213 | $subsection->populate_defaults($default_data[$subsection_name]); |
214 | 214 | } |
215 | 215 | } |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | foreach($this->subsections() as $subsection){ |
441 | 441 | if( $subsection instanceof EE_Form_Input_Base ){ |
442 | 442 | $inputs[ $subsection->html_name() ] = $subsection; |
443 | - }elseif($subsection instanceof EE_Form_Section_Proper ){ |
|
443 | + } elseif($subsection instanceof EE_Form_Section_Proper ){ |
|
444 | 444 | $inputs += $subsection->inputs_in_subsections(); |
445 | 445 | } |
446 | 446 | } |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | foreach($this->get_validatable_subsections() as $subsection){ |
549 | 549 | try{ |
550 | 550 | $subsection->_normalize($req_data); |
551 | - }catch( EE_Validation_Error $e ){ |
|
551 | + } catch( EE_Validation_Error $e ){ |
|
552 | 552 | $subsection->add_validation_error( $e ); |
553 | 553 | } |
554 | 554 | } |
@@ -767,7 +767,7 @@ discard block |
||
767 | 767 | } |
768 | 768 | $subsections_after = array_diff_key($this->_subsections, $subsections_before); |
769 | 769 | $this->_subsections = array_merge($subsections_before,$subsections,$subsections_after); |
770 | - }else{ |
|
770 | + } else{ |
|
771 | 771 | //don't use array_merge because keys might be numeric and we want to preserve their keys |
772 | 772 | foreach( $subsections as $key => $subsection ){ |
773 | 773 | $this->_subsections[ $key ] = $subsection; |
@@ -840,7 +840,7 @@ discard block |
||
840 | 840 | public function html_name_prefix(){ |
841 | 841 | if( $this->parent_section() instanceof EE_Form_Section_Proper ){ |
842 | 842 | return $this->parent_section()->html_name_prefix() . '[' . $this->name() . ']'; |
843 | - }else{ |
|
843 | + } else{ |
|
844 | 844 | return $this->name(); |
845 | 845 | } |
846 | 846 | } |
@@ -892,7 +892,7 @@ discard block |
||
892 | 892 | if( $subsection->form_data_present_in( $req_data ) ) { |
893 | 893 | return TRUE; |
894 | 894 | } |
895 | - }elseif( $subsection instanceof EE_Form_Section_Proper ) { |
|
895 | + } elseif( $subsection instanceof EE_Form_Section_Proper ) { |
|
896 | 896 | if( $subsection->form_data_present_in( $req_data ) ) { |
897 | 897 | return TRUE; |
898 | 898 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * before the hook wp_enqueue_scripts is called (so that the form section can enqueue its needed scripts). |
8 | 8 | * However, you may output the form (usually by calling get_html_and_js) anywhere you like. |
9 | 9 | */ |
10 | -class EE_Form_Section_Proper extends EE_Form_Section_Validatable{ |
|
10 | +class EE_Form_Section_Proper extends EE_Form_Section_Validatable { |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * Subsections |
@@ -68,37 +68,37 @@ discard block |
||
68 | 68 | * } @see EE_Form_Section_Validatable::__construct() |
69 | 69 | * |
70 | 70 | */ |
71 | - public function __construct( $options_array = array() ){ |
|
71 | + public function __construct($options_array = array()) { |
|
72 | 72 | EE_Registry::instance()->load_helper('Formatter'); |
73 | 73 | //call parent first, as it may be setting the name |
74 | 74 | parent::__construct($options_array); |
75 | 75 | //if they've included subsections in the constructor, add them now |
76 | - if( isset( $options_array['include'] )){ |
|
76 | + if (isset($options_array['include'])) { |
|
77 | 77 | //we are going to make sure we ONLY have those subsections to include |
78 | 78 | //AND we are going to make sure they're in that specified order |
79 | 79 | $reordered_subsections = array(); |
80 | - foreach($options_array['include'] as $input_name){ |
|
81 | - if(isset($this->_subsections[$input_name])){ |
|
80 | + foreach ($options_array['include'] as $input_name) { |
|
81 | + if (isset($this->_subsections[$input_name])) { |
|
82 | 82 | $reordered_subsections[$input_name] = $this->_subsections[$input_name]; |
83 | 83 | } |
84 | 84 | } |
85 | 85 | $this->_subsections = $reordered_subsections; |
86 | 86 | } |
87 | - if(isset($options_array['exclude'])){ |
|
87 | + if (isset($options_array['exclude'])) { |
|
88 | 88 | $exclude = $options_array['exclude']; |
89 | 89 | $this->_subsections = array_diff_key($this->_subsections, array_flip($exclude)); |
90 | 90 | } |
91 | - if(isset($options_array['layout_strategy'])){ |
|
91 | + if (isset($options_array['layout_strategy'])) { |
|
92 | 92 | $this->_layout_strategy = $options_array['layout_strategy']; |
93 | 93 | } |
94 | - if( ! $this->_layout_strategy){ |
|
94 | + if ( ! $this->_layout_strategy) { |
|
95 | 95 | $this->_layout_strategy = new EE_Two_Column_Layout(); |
96 | 96 | } |
97 | 97 | $this->_layout_strategy->_construct_finalize($this); |
98 | 98 | |
99 | - add_action( 'wp_enqueue_scripts', array( 'EE_Form_Section_Proper', 'wp_enqueue_scripts' )); |
|
100 | - add_action( 'admin_enqueue_scripts', array( 'EE_Form_Section_Proper', 'wp_enqueue_scripts' )); |
|
101 | - add_action( 'wp_footer', array( $this, 'ensure_scripts_localized' ), 1 ); |
|
99 | + add_action('wp_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts')); |
|
100 | + add_action('admin_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts')); |
|
101 | + add_action('wp_footer', array($this, 'ensure_scripts_localized'), 1); |
|
102 | 102 | |
103 | 103 | |
104 | 104 | } |
@@ -112,20 +112,20 @@ discard block |
||
112 | 112 | * @param string $name |
113 | 113 | * @throws \EE_Error |
114 | 114 | */ |
115 | - public function _construct_finalize( $parent_form_section, $name ) { |
|
115 | + public function _construct_finalize($parent_form_section, $name) { |
|
116 | 116 | parent::_construct_finalize($parent_form_section, $name); |
117 | 117 | $this->_set_default_name_if_empty(); |
118 | 118 | $this->_set_default_html_id_if_empty(); |
119 | - foreach( $this->_subsections as $subsection_name => $subsection ){ |
|
120 | - if ( $subsection instanceof EE_Form_Section_Base ) { |
|
121 | - $subsection->_construct_finalize( $this, $subsection_name ); |
|
119 | + foreach ($this->_subsections as $subsection_name => $subsection) { |
|
120 | + if ($subsection instanceof EE_Form_Section_Base) { |
|
121 | + $subsection->_construct_finalize($this, $subsection_name); |
|
122 | 122 | } else { |
123 | 123 | throw new EE_Error( |
124 | 124 | sprintf( |
125 | - __( 'Subsection "%s" is not an instanceof EE_Form_Section_Base on form "%s". It is a "%s"', 'event_espresso' ), |
|
125 | + __('Subsection "%s" is not an instanceof EE_Form_Section_Base on form "%s". It is a "%s"', 'event_espresso'), |
|
126 | 126 | $subsection_name, |
127 | 127 | get_class($this), |
128 | - $subsection ? get_class($subsection) : __( 'NULL', 'event_espresso' ) |
|
128 | + $subsection ? get_class($subsection) : __('NULL', 'event_espresso') |
|
129 | 129 | ) |
130 | 130 | ); |
131 | 131 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * Gets the layout strategy for this form section |
139 | 139 | * @return EE_Form_Section_Layout_Base |
140 | 140 | */ |
141 | - public function get_layout_strategy(){ |
|
141 | + public function get_layout_strategy() { |
|
142 | 142 | return $this->_layout_strategy; |
143 | 143 | } |
144 | 144 | |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | * @param EE_Form_Input_Base $input |
151 | 151 | * @return string |
152 | 152 | */ |
153 | - public function get_html_for_input($input){ |
|
153 | + public function get_html_for_input($input) { |
|
154 | 154 | return $this->_layout_strategy->layout_input($input); |
155 | 155 | } |
156 | 156 | |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | * @param null $form_data |
164 | 164 | * @return boolean |
165 | 165 | */ |
166 | - public function was_submitted($form_data = NULL){ |
|
166 | + public function was_submitted($form_data = NULL) { |
|
167 | 167 | return $this->form_data_present_in($form_data); |
168 | 168 | } |
169 | 169 | |
@@ -184,12 +184,12 @@ discard block |
||
184 | 184 | * to skip this step. |
185 | 185 | * @return void |
186 | 186 | */ |
187 | - public function receive_form_submission($req_data = NULL, $validate = TRUE){ |
|
188 | - if( $req_data === NULL){ |
|
187 | + public function receive_form_submission($req_data = NULL, $validate = TRUE) { |
|
188 | + if ($req_data === NULL) { |
|
189 | 189 | $req_data = $_REQUEST; |
190 | 190 | } |
191 | 191 | $this->_normalize($req_data); |
192 | - if( $validate ){ |
|
192 | + if ($validate) { |
|
193 | 193 | $this->_validate(); |
194 | 194 | } |
195 | 195 | } |
@@ -204,12 +204,12 @@ discard block |
||
204 | 204 | * the value being an array formatted in teh same way |
205 | 205 | * @param array $default_data |
206 | 206 | */ |
207 | - public function populate_defaults($default_data){ |
|
208 | - foreach($this->subsections() as $subsection_name => $subsection){ |
|
209 | - if(isset($default_data[$subsection_name])){ |
|
210 | - if($subsection instanceof EE_Form_Input_Base){ |
|
207 | + public function populate_defaults($default_data) { |
|
208 | + foreach ($this->subsections() as $subsection_name => $subsection) { |
|
209 | + if (isset($default_data[$subsection_name])) { |
|
210 | + if ($subsection instanceof EE_Form_Input_Base) { |
|
211 | 211 | $subsection->set_default($default_data[$subsection_name]); |
212 | - }elseif($subsection instanceof EE_Form_Section_Proper){ |
|
212 | + }elseif ($subsection instanceof EE_Form_Section_Proper) { |
|
213 | 213 | $subsection->populate_defaults($default_data[$subsection_name]); |
214 | 214 | } |
215 | 215 | } |
@@ -227,8 +227,8 @@ discard block |
||
227 | 227 | * (realizing that the subsections' html names might not be set yet, etc.) |
228 | 228 | * @return EE_Form_Section_Base |
229 | 229 | */ |
230 | - public function get_subsection($name, $require_construction_to_be_finalized = TRUE ){ |
|
231 | - if( $require_construction_to_be_finalized ){ |
|
230 | + public function get_subsection($name, $require_construction_to_be_finalized = TRUE) { |
|
231 | + if ($require_construction_to_be_finalized) { |
|
232 | 232 | $this->ensure_construct_finalized_called(); |
233 | 233 | } |
234 | 234 | return isset($this->_subsections[$name]) ? $this->_subsections[$name] : NULL; |
@@ -240,10 +240,10 @@ discard block |
||
240 | 240 | * Gets all the validatable subsections of this form section |
241 | 241 | * @return EE_Form_Section_Validatable[] |
242 | 242 | */ |
243 | - public function get_validatable_subsections(){ |
|
243 | + public function get_validatable_subsections() { |
|
244 | 244 | $validatable_subsections = array(); |
245 | - foreach($this->subsections() as $name=>$obj){ |
|
246 | - if($obj instanceof EE_Form_Section_Validatable){ |
|
245 | + foreach ($this->subsections() as $name=>$obj) { |
|
246 | + if ($obj instanceof EE_Form_Section_Validatable) { |
|
247 | 247 | $validatable_subsections[$name] = $obj; |
248 | 248 | } |
249 | 249 | } |
@@ -263,10 +263,10 @@ discard block |
||
263 | 263 | * @return EE_Form_Input_Base |
264 | 264 | * @throws EE_Error |
265 | 265 | */ |
266 | - public function get_input($name, $require_construction_to_be_finalized = TRUE ){ |
|
266 | + public function get_input($name, $require_construction_to_be_finalized = TRUE) { |
|
267 | 267 | $subsection = $this->get_subsection($name, $require_construction_to_be_finalized); |
268 | - if( ! $subsection instanceof EE_Form_Input_Base){ |
|
269 | - throw new EE_Error(sprintf(__("Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'", 'event_espresso'),$name, get_class($this),$subsection ? get_class($subsection) : __("NULL", 'event_espresso'))); |
|
268 | + if ( ! $subsection instanceof EE_Form_Input_Base) { |
|
269 | + throw new EE_Error(sprintf(__("Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'", 'event_espresso'), $name, get_class($this), $subsection ? get_class($subsection) : __("NULL", 'event_espresso'))); |
|
270 | 270 | } |
271 | 271 | return $subsection; |
272 | 272 | } |
@@ -284,10 +284,10 @@ discard block |
||
284 | 284 | * @return EE_Form_Section_Proper |
285 | 285 | * @throws EE_Error |
286 | 286 | */ |
287 | - public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE ){ |
|
288 | - $subsection = $this->get_subsection( $name, $require_construction_to_be_finalized ); |
|
289 | - if( ! $subsection instanceof EE_Form_Section_Proper){ |
|
290 | - throw new EE_Error(sprintf(__("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'),$name, get_class($this))); |
|
287 | + public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE) { |
|
288 | + $subsection = $this->get_subsection($name, $require_construction_to_be_finalized); |
|
289 | + if ( ! $subsection instanceof EE_Form_Section_Proper) { |
|
290 | + throw new EE_Error(sprintf(__("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'), $name, get_class($this))); |
|
291 | 291 | } |
292 | 292 | return $subsection; |
293 | 293 | } |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * @param string $name |
301 | 301 | * @return mixed depending on the input's type and its normalization strategy |
302 | 302 | */ |
303 | - public function get_input_value($name){ |
|
303 | + public function get_input_value($name) { |
|
304 | 304 | $input = $this->get_input($name); |
305 | 305 | return $input->normalized_value(); |
306 | 306 | } |
@@ -313,16 +313,16 @@ discard block |
||
313 | 313 | * @return boolean |
314 | 314 | */ |
315 | 315 | public function is_valid() { |
316 | - if( ! $this->has_received_submission()){ |
|
316 | + if ( ! $this->has_received_submission()) { |
|
317 | 317 | throw new EE_Error(sprintf(__("You cannot check if a form is valid before receiving the form submission using receive_form_submission", "event_espresso"))); |
318 | 318 | } |
319 | - if( ! parent::is_valid()){ |
|
319 | + if ( ! parent::is_valid()) { |
|
320 | 320 | return false; |
321 | 321 | } |
322 | 322 | //ok so no errors general to this entire form section. so let's check the subsections |
323 | - foreach( $this->get_validatable_subsections() as $subsection ){ |
|
324 | - if( ! $subsection->is_valid() || $subsection->get_validation_error_string() != '' ){ |
|
325 | - $this->set_submission_error_message( $subsection->get_validation_error_string() ); |
|
323 | + foreach ($this->get_validatable_subsections() as $subsection) { |
|
324 | + if ( ! $subsection->is_valid() || $subsection->get_validation_error_string() != '') { |
|
325 | + $this->set_submission_error_message($subsection->get_validation_error_string()); |
|
326 | 326 | return false; |
327 | 327 | } |
328 | 328 | } |
@@ -335,11 +335,11 @@ discard block |
||
335 | 335 | * gets teh default name of this form section if none is specified |
336 | 336 | * @return string |
337 | 337 | */ |
338 | - protected function _set_default_name_if_empty(){ |
|
339 | - if( ! $this->_name ){ |
|
338 | + protected function _set_default_name_if_empty() { |
|
339 | + if ( ! $this->_name) { |
|
340 | 340 | $classname = get_class($this); |
341 | 341 | $default_name = str_replace("EE_", "", $classname); |
342 | - $this->_name = $default_name; |
|
342 | + $this->_name = $default_name; |
|
343 | 343 | } |
344 | 344 | } |
345 | 345 | |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | * Also returns the HTML for the form, except for the form opening and closing tags |
351 | 351 | * (as the form section doesn't know where you necessarily want to send the information to), and except for a submit button. |
352 | 352 | */ |
353 | - public function get_html_and_js(){ |
|
353 | + public function get_html_and_js() { |
|
354 | 354 | $this->enqueue_js(); |
355 | 355 | return $this->get_html(); |
356 | 356 | } |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | * returns HTML for displaying this form section. recursively calls display_section() on all subsections |
362 | 362 | * @return string |
363 | 363 | */ |
364 | - public function get_html(){ |
|
364 | + public function get_html() { |
|
365 | 365 | $this->ensure_construct_finalized_called(); |
366 | 366 | return $this->_layout_strategy->layout_form(); |
367 | 367 | } |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | * enqueues JS for the form |
373 | 373 | * @return string |
374 | 374 | */ |
375 | - public function enqueue_js(){ |
|
375 | + public function enqueue_js() { |
|
376 | 376 | $this->_enqueue_and_localize_form_js(); |
377 | 377 | } |
378 | 378 | |
@@ -387,9 +387,9 @@ discard block |
||
387 | 387 | * could change until it's actually outputted) |
388 | 388 | * @return void |
389 | 389 | */ |
390 | - public static function wp_enqueue_scripts(){ |
|
391 | - add_filter( 'FHEE_load_jquery_validate', '__return_true' ); |
|
392 | - wp_register_script( 'ee_form_section_validation', EE_GLOBAL_ASSETS_URL . 'scripts' . DS . 'form_section_validation.js', array( 'jquery-validate', 'jquery-ui-datepicker' ), EVENT_ESPRESSO_VERSION, TRUE ); |
|
390 | + public static function wp_enqueue_scripts() { |
|
391 | + add_filter('FHEE_load_jquery_validate', '__return_true'); |
|
392 | + wp_register_script('ee_form_section_validation', EE_GLOBAL_ASSETS_URL.'scripts'.DS.'form_section_validation.js', array('jquery-validate', 'jquery-ui-datepicker'), EVENT_ESPRESSO_VERSION, TRUE); |
|
393 | 393 | } |
394 | 394 | |
395 | 395 | |
@@ -399,14 +399,14 @@ discard block |
||
399 | 399 | * This needs to be called AFTER we've called $this->_enqueue_jquery_validate_script, |
400 | 400 | * but before the wordpress hook wp_loaded |
401 | 401 | */ |
402 | - public function _enqueue_and_localize_form_js(){ |
|
402 | + public function _enqueue_and_localize_form_js() { |
|
403 | 403 | $this->ensure_construct_finalized_called(); |
404 | 404 | //actually, we don't want to localize just yet. There may be other forms on the page. |
405 | 405 | //so we need to add our form section data to a static variable accessible by all form sections |
406 | 406 | //and localize it just before the footer |
407 | 407 | $this->localize_validation_rules(); |
408 | - add_action( 'wp_footer', array( 'EE_Form_Section_Proper', 'localize_script_for_all_forms' ), 2 ); |
|
409 | - add_action( 'admin_footer', array( 'EE_Form_Section_Proper', 'localize_script_for_all_forms' ) ); |
|
408 | + add_action('wp_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms'), 2); |
|
409 | + add_action('admin_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms')); |
|
410 | 410 | } |
411 | 411 | |
412 | 412 | |
@@ -415,11 +415,11 @@ discard block |
||
415 | 415 | * add our form section data to a static variable accessible by all form sections |
416 | 416 | * @return void |
417 | 417 | */ |
418 | - public function localize_validation_rules(){ |
|
418 | + public function localize_validation_rules() { |
|
419 | 419 | // we only want to localize vars ONCE for the entire form, so if the form section doesn't have a parent, then it must be the top dog |
420 | - if ( ! $this->parent_section() ) { |
|
421 | - EE_Form_Section_Proper::$_js_localization['form_data'][ $this->html_id() ] = array( |
|
422 | - 'form_section_id'=> $this->html_id( TRUE ), |
|
420 | + if ( ! $this->parent_section()) { |
|
421 | + EE_Form_Section_Proper::$_js_localization['form_data'][$this->html_id()] = array( |
|
422 | + 'form_section_id'=> $this->html_id(TRUE), |
|
423 | 423 | 'validation_rules'=> $this->get_jquery_validation_rules(), |
424 | 424 | 'errors'=> $this->subsection_validation_errors_by_html_name() |
425 | 425 | ); |
@@ -434,12 +434,12 @@ discard block |
||
434 | 434 | * Keys are their form names, and values are the inputs themselves |
435 | 435 | * @return EE_Form_Input_Base |
436 | 436 | */ |
437 | - public function inputs_in_subsections(){ |
|
437 | + public function inputs_in_subsections() { |
|
438 | 438 | $inputs = array(); |
439 | - foreach($this->subsections() as $subsection){ |
|
440 | - if( $subsection instanceof EE_Form_Input_Base ){ |
|
441 | - $inputs[ $subsection->html_name() ] = $subsection; |
|
442 | - }elseif($subsection instanceof EE_Form_Section_Proper ){ |
|
439 | + foreach ($this->subsections() as $subsection) { |
|
440 | + if ($subsection instanceof EE_Form_Input_Base) { |
|
441 | + $inputs[$subsection->html_name()] = $subsection; |
|
442 | + }elseif ($subsection instanceof EE_Form_Section_Proper) { |
|
443 | 443 | $inputs += $subsection->inputs_in_subsections(); |
444 | 444 | } |
445 | 445 | } |
@@ -452,12 +452,12 @@ discard block |
||
452 | 452 | * and values are a string of all their validation errors |
453 | 453 | * @return string[] |
454 | 454 | */ |
455 | - public function subsection_validation_errors_by_html_name(){ |
|
455 | + public function subsection_validation_errors_by_html_name() { |
|
456 | 456 | $inputs = $this->inputs(); |
457 | 457 | $errors = array(); |
458 | - foreach( $inputs as $form_input ){ |
|
459 | - if ( $form_input instanceof EE_Form_Input_Base && $form_input->get_validation_errors() ){ |
|
460 | - $errors[ $form_input->html_name() ] = $form_input->get_validation_error_string(); |
|
458 | + foreach ($inputs as $form_input) { |
|
459 | + if ($form_input instanceof EE_Form_Input_Base && $form_input->get_validation_errors()) { |
|
460 | + $errors[$form_input->html_name()] = $form_input->get_validation_error_string(); |
|
461 | 461 | } |
462 | 462 | } |
463 | 463 | return $errors; |
@@ -469,12 +469,12 @@ discard block |
||
469 | 469 | * passes all the form data required by the JS to the JS, and enqueues the few required JS files. |
470 | 470 | * Should be setup by each form during the _enqueues_and_localize_form_js |
471 | 471 | */ |
472 | - public static function localize_script_for_all_forms(){ |
|
472 | + public static function localize_script_for_all_forms() { |
|
473 | 473 | //allow inputs and stuff to hook in their JS and stuff here |
474 | 474 | do_action('AHEE__EE_Form_Section_Proper__localize_script_for_all_forms__begin'); |
475 | 475 | EE_Form_Section_Proper::$_js_localization['localized_error_messages'] = EE_Form_Section_Proper::_get_localized_error_messages(); |
476 | - wp_enqueue_script( 'ee_form_section_validation' ); |
|
477 | - wp_localize_script( 'ee_form_section_validation', 'ee_form_section_vars', EE_Form_Section_Proper::$_js_localization ); |
|
476 | + wp_enqueue_script('ee_form_section_validation'); |
|
477 | + wp_localize_script('ee_form_section_validation', 'ee_form_section_vars', EE_Form_Section_Proper::$_js_localization); |
|
478 | 478 | } |
479 | 479 | |
480 | 480 | |
@@ -482,8 +482,8 @@ discard block |
||
482 | 482 | /** |
483 | 483 | * ensure_scripts_localized |
484 | 484 | */ |
485 | - public function ensure_scripts_localized(){ |
|
486 | - if ( ! EE_Form_Section_Proper::$_scripts_localized ) { |
|
485 | + public function ensure_scripts_localized() { |
|
486 | + if ( ! EE_Form_Section_Proper::$_scripts_localized) { |
|
487 | 487 | $this->_enqueue_and_localize_form_js(); |
488 | 488 | } |
489 | 489 | } |
@@ -495,10 +495,10 @@ discard block |
||
495 | 495 | * is that the key here should be the same as the custom validation rule put in the JS file |
496 | 496 | * @return array keys are custom validation rules, and values are internationalized strings |
497 | 497 | */ |
498 | - private static function _get_localized_error_messages(){ |
|
498 | + private static function _get_localized_error_messages() { |
|
499 | 499 | return array( |
500 | 500 | 'validUrl'=> __("This is not a valid absolute URL. Eg, http://domain.com/monkey.jpg", "event_espresso"), |
501 | - 'regex' => __( 'Please check your input', 'event_espresso' ), |
|
501 | + 'regex' => __('Please check your input', 'event_espresso'), |
|
502 | 502 | ); |
503 | 503 | } |
504 | 504 | |
@@ -526,10 +526,10 @@ discard block |
||
526 | 526 | * Gets the JS to put inside the jquery validation rules for subsection of this form section. See parent function for more... |
527 | 527 | * @return array |
528 | 528 | */ |
529 | - function get_jquery_validation_rules(){ |
|
529 | + function get_jquery_validation_rules() { |
|
530 | 530 | $jquery_validation_rules = array(); |
531 | - foreach($this->get_validatable_subsections() as $subsection){ |
|
532 | - $jquery_validation_rules = array_merge( $jquery_validation_rules, $subsection->get_jquery_validation_rules() ); |
|
531 | + foreach ($this->get_validatable_subsections() as $subsection) { |
|
532 | + $jquery_validation_rules = array_merge($jquery_validation_rules, $subsection->get_jquery_validation_rules()); |
|
533 | 533 | } |
534 | 534 | return $jquery_validation_rules; |
535 | 535 | } |
@@ -544,11 +544,11 @@ discard block |
||
544 | 544 | protected function _normalize($req_data) { |
545 | 545 | $this->_received_submission = TRUE; |
546 | 546 | $this->_validation_errors = array(); |
547 | - foreach($this->get_validatable_subsections() as $subsection){ |
|
548 | - try{ |
|
547 | + foreach ($this->get_validatable_subsections() as $subsection) { |
|
548 | + try { |
|
549 | 549 | $subsection->_normalize($req_data); |
550 | - }catch( EE_Validation_Error $e ){ |
|
551 | - $subsection->add_validation_error( $e ); |
|
550 | + } catch (EE_Validation_Error $e) { |
|
551 | + $subsection->add_validation_error($e); |
|
552 | 552 | } |
553 | 553 | } |
554 | 554 | } |
@@ -562,9 +562,9 @@ discard block |
||
562 | 562 | * calling parent::_validate() first. |
563 | 563 | */ |
564 | 564 | protected function _validate() { |
565 | - foreach($this->get_validatable_subsections() as $subsection_name => $subsection){ |
|
566 | - if(method_exists($this,'_validate_'.$subsection_name)){ |
|
567 | - call_user_func_array(array($this,'_validate_'.$subsection_name), array($subsection)); |
|
565 | + foreach ($this->get_validatable_subsections() as $subsection_name => $subsection) { |
|
566 | + if (method_exists($this, '_validate_'.$subsection_name)) { |
|
567 | + call_user_func_array(array($this, '_validate_'.$subsection_name), array($subsection)); |
|
568 | 568 | } |
569 | 569 | $subsection->_validate(); |
570 | 570 | } |
@@ -576,13 +576,13 @@ discard block |
||
576 | 576 | * Gets all the validated inputs for the form section |
577 | 577 | * @return array |
578 | 578 | */ |
579 | - public function valid_data(){ |
|
579 | + public function valid_data() { |
|
580 | 580 | $inputs = array(); |
581 | - foreach( $this->subsections() as $subsection_name =>$subsection ){ |
|
582 | - if ( $subsection instanceof EE_Form_Section_Proper ) { |
|
583 | - $inputs[ $subsection_name ] = $subsection->valid_data(); |
|
584 | - } else if ( $subsection instanceof EE_Form_Input_Base ){ |
|
585 | - $inputs[ $subsection_name ] = $subsection->normalized_value(); |
|
581 | + foreach ($this->subsections() as $subsection_name =>$subsection) { |
|
582 | + if ($subsection instanceof EE_Form_Section_Proper) { |
|
583 | + $inputs[$subsection_name] = $subsection->valid_data(); |
|
584 | + } else if ($subsection instanceof EE_Form_Input_Base) { |
|
585 | + $inputs[$subsection_name] = $subsection->normalized_value(); |
|
586 | 586 | } |
587 | 587 | } |
588 | 588 | return $inputs; |
@@ -594,11 +594,11 @@ discard block |
||
594 | 594 | * Gets all the inputs on this form section |
595 | 595 | * @return EE_Form_Input_Base[] |
596 | 596 | */ |
597 | - public function inputs(){ |
|
597 | + public function inputs() { |
|
598 | 598 | $inputs = array(); |
599 | - foreach( $this->subsections() as $subsection_name =>$subsection ){ |
|
600 | - if ( $subsection instanceof EE_Form_Input_Base ){ |
|
601 | - $inputs[ $subsection_name ] = $subsection; |
|
599 | + foreach ($this->subsections() as $subsection_name =>$subsection) { |
|
600 | + if ($subsection instanceof EE_Form_Input_Base) { |
|
601 | + $inputs[$subsection_name] = $subsection; |
|
602 | 602 | } |
603 | 603 | } |
604 | 604 | return $inputs; |
@@ -610,10 +610,10 @@ discard block |
||
610 | 610 | * Gets all the subsections which are a proper form |
611 | 611 | * @return EE_Form_Section_Proper[] |
612 | 612 | */ |
613 | - public function subforms(){ |
|
613 | + public function subforms() { |
|
614 | 614 | $form_sections = array(); |
615 | - foreach($this->subsections() as $name=>$obj){ |
|
616 | - if($obj instanceof EE_Form_Section_Proper){ |
|
615 | + foreach ($this->subsections() as $name=>$obj) { |
|
616 | + if ($obj instanceof EE_Form_Section_Proper) { |
|
617 | 617 | $form_sections[$name] = $obj; |
618 | 618 | } |
619 | 619 | } |
@@ -628,7 +628,7 @@ discard block |
||
628 | 628 | * if you only want form inputs or proper form sections. |
629 | 629 | * @return EE_Form_Section_Proper[] |
630 | 630 | */ |
631 | - public function subsections(){ |
|
631 | + public function subsections() { |
|
632 | 632 | $this->ensure_construct_finalized_called(); |
633 | 633 | return $this->_subsections; |
634 | 634 | } |
@@ -646,8 +646,8 @@ discard block |
||
646 | 646 | * it can be a multidimensional array where keys are always subsection names and values are either the |
647 | 647 | * input's normalized value, or an array like the top-level array |
648 | 648 | */ |
649 | - public function input_values( $include_subform_inputs = false, $flatten = false ){ |
|
650 | - return $this->_input_values( false, $include_subform_inputs, $flatten ); |
|
649 | + public function input_values($include_subform_inputs = false, $flatten = false) { |
|
650 | + return $this->_input_values(false, $include_subform_inputs, $flatten); |
|
651 | 651 | } |
652 | 652 | |
653 | 653 | /** |
@@ -663,8 +663,8 @@ discard block |
||
663 | 663 | * it can be a multidimensional array where keys are always subsection names and values are either the |
664 | 664 | * input's normalized value, or an array like the top-level array |
665 | 665 | */ |
666 | - public function input_pretty_values( $include_subform_inputs = false, $flatten = false ){ |
|
667 | - return $this->_input_values( true, $include_subform_inputs, $flatten ); |
|
666 | + public function input_pretty_values($include_subform_inputs = false, $flatten = false) { |
|
667 | + return $this->_input_values(true, $include_subform_inputs, $flatten); |
|
668 | 668 | } |
669 | 669 | |
670 | 670 | /** |
@@ -677,17 +677,17 @@ discard block |
||
677 | 677 | * it can be a multidimensional array where keys are always subsection names and values are either the |
678 | 678 | * input's normalized value, or an array like the top-level array |
679 | 679 | */ |
680 | - public function _input_values( $pretty = false, $include_subform_inputs = false, $flatten = false ) { |
|
680 | + public function _input_values($pretty = false, $include_subform_inputs = false, $flatten = false) { |
|
681 | 681 | $input_values = array(); |
682 | - foreach( $this->subsections() as $subsection_name => $subsection ) { |
|
683 | - if( $subsection instanceof EE_Form_Input_Base ) { |
|
684 | - $input_values[ $subsection_name ] = $pretty ? $subsection->pretty_value() : $subsection->normalized_value(); |
|
685 | - } else if( $subsection instanceof EE_Form_Section_Proper && $include_subform_inputs ) { |
|
686 | - $subform_input_values = $subsection->_input_values( $pretty, $include_subform_inputs, $flatten ); |
|
687 | - if( $flatten ) { |
|
688 | - $input_values = array_merge( $input_values, $subform_input_values ); |
|
682 | + foreach ($this->subsections() as $subsection_name => $subsection) { |
|
683 | + if ($subsection instanceof EE_Form_Input_Base) { |
|
684 | + $input_values[$subsection_name] = $pretty ? $subsection->pretty_value() : $subsection->normalized_value(); |
|
685 | + } else if ($subsection instanceof EE_Form_Section_Proper && $include_subform_inputs) { |
|
686 | + $subform_input_values = $subsection->_input_values($pretty, $include_subform_inputs, $flatten); |
|
687 | + if ($flatten) { |
|
688 | + $input_values = array_merge($input_values, $subform_input_values); |
|
689 | 689 | } else { |
690 | - $input_values[ $subsection_name ] = $subform_input_values; |
|
690 | + $input_values[$subsection_name] = $subform_input_values; |
|
691 | 691 | } |
692 | 692 | } |
693 | 693 | } |
@@ -701,7 +701,7 @@ discard block |
||
701 | 701 | * (ie, had receive_form_submission called on it yet) |
702 | 702 | * @return boolean |
703 | 703 | */ |
704 | - public function has_received_submission(){ |
|
704 | + public function has_received_submission() { |
|
705 | 705 | $this->ensure_construct_finalized_called(); |
706 | 706 | return $this->_received_submission; |
707 | 707 | } |
@@ -714,8 +714,8 @@ discard block |
||
714 | 714 | * @param array $inputs_to_exclude values are the input names |
715 | 715 | * @return void |
716 | 716 | */ |
717 | - public function exclude($inputs_to_exclude = array()){ |
|
718 | - foreach($inputs_to_exclude as $input_to_exclude_name){ |
|
717 | + public function exclude($inputs_to_exclude = array()) { |
|
718 | + foreach ($inputs_to_exclude as $input_to_exclude_name) { |
|
719 | 719 | unset($this->_subsections[$input_to_exclude_name]); |
720 | 720 | } |
721 | 721 | } |
@@ -725,8 +725,8 @@ discard block |
||
725 | 725 | /** |
726 | 726 | * @param array $inputs_to_hide |
727 | 727 | */ |
728 | - public function hide($inputs_to_hide= array()){ |
|
729 | - foreach($inputs_to_hide as $input_to_hide){ |
|
728 | + public function hide($inputs_to_hide = array()) { |
|
729 | + foreach ($inputs_to_hide as $input_to_hide) { |
|
730 | 730 | $input = $this->get_input($input_to_hide); |
731 | 731 | |
732 | 732 | $input->set_display_strategy(new EE_Hidden_Display_Strategy()); |
@@ -742,13 +742,13 @@ discard block |
||
742 | 742 | * @param string $subsection_name_to_add_before name of the section to add these subsections in front of, or null to add at the very end |
743 | 743 | * @return void |
744 | 744 | */ |
745 | - public function add_subsections($subsections,$subsection_name_to_add_before = NULL){ |
|
746 | - foreach($subsections as $subsection_name => $subsection){ |
|
747 | - if( ! $subsection instanceof EE_Form_Section_Base){ |
|
745 | + public function add_subsections($subsections, $subsection_name_to_add_before = NULL) { |
|
746 | + foreach ($subsections as $subsection_name => $subsection) { |
|
747 | + if ( ! $subsection instanceof EE_Form_Section_Base) { |
|
748 | 748 | EE_Error::add_error( |
749 | 749 | sprintf( |
750 | 750 | __("Trying to add a %s as a subsection (it was named '%s') to the form section '%s'. It was removed.", "event_espresso"), |
751 | - get_class( $subsection ), |
|
751 | + get_class($subsection), |
|
752 | 752 | $subsection_name, |
753 | 753 | $this->name() |
754 | 754 | ) |
@@ -757,23 +757,23 @@ discard block |
||
757 | 757 | } |
758 | 758 | } |
759 | 759 | $subsections_before = array(); |
760 | - if( $subsection_name_to_add_before ){ |
|
761 | - foreach( $this->_subsections as $subsection_name => $subsection ) { |
|
762 | - if ( $subsection_name == $subsection_name_to_add_before ) { |
|
760 | + if ($subsection_name_to_add_before) { |
|
761 | + foreach ($this->_subsections as $subsection_name => $subsection) { |
|
762 | + if ($subsection_name == $subsection_name_to_add_before) { |
|
763 | 763 | break; |
764 | 764 | } |
765 | 765 | $subsections_before[$subsection_name] = $subsection; |
766 | 766 | } |
767 | 767 | $subsections_after = array_diff_key($this->_subsections, $subsections_before); |
768 | - $this->_subsections = array_merge($subsections_before,$subsections,$subsections_after); |
|
769 | - }else{ |
|
768 | + $this->_subsections = array_merge($subsections_before, $subsections, $subsections_after); |
|
769 | + } else { |
|
770 | 770 | //don't use array_merge because keys might be numeric and we want to preserve their keys |
771 | - foreach( $subsections as $key => $subsection ){ |
|
772 | - $this->_subsections[ $key ] = $subsection; |
|
771 | + foreach ($subsections as $key => $subsection) { |
|
772 | + $this->_subsections[$key] = $subsection; |
|
773 | 773 | } |
774 | 774 | } |
775 | - if( $this->_construction_finalized ){ |
|
776 | - foreach($this->_subsections as $name => $subsection){ |
|
775 | + if ($this->_construction_finalized) { |
|
776 | + foreach ($this->_subsections as $name => $subsection) { |
|
777 | 777 | $subsection->_construct_finalize($this, $name); |
778 | 778 | } |
779 | 779 | } |
@@ -784,8 +784,8 @@ discard block |
||
784 | 784 | /** |
785 | 785 | * Just gets all validatable subsections to clean their sensitive data |
786 | 786 | */ |
787 | - public function clean_sensitive_data(){ |
|
788 | - foreach($this->get_validatable_subsections() as $subsection){ |
|
787 | + public function clean_sensitive_data() { |
|
788 | + foreach ($this->get_validatable_subsections() as $subsection) { |
|
789 | 789 | $subsection->clean_sensitive_data(); |
790 | 790 | } |
791 | 791 | } |
@@ -795,8 +795,8 @@ discard block |
||
795 | 795 | /** |
796 | 796 | * @param string $form_submission_error_message |
797 | 797 | */ |
798 | - public function set_submission_error_message( $form_submission_error_message = '' ) { |
|
799 | - $this->_form_submission_error_message .= ! empty( $form_submission_error_message ) ? $form_submission_error_message : __( 'Form submission failed due to errors', 'event_espresso' ); |
|
798 | + public function set_submission_error_message($form_submission_error_message = '') { |
|
799 | + $this->_form_submission_error_message .= ! empty($form_submission_error_message) ? $form_submission_error_message : __('Form submission failed due to errors', 'event_espresso'); |
|
800 | 800 | } |
801 | 801 | |
802 | 802 | |
@@ -813,8 +813,8 @@ discard block |
||
813 | 813 | /** |
814 | 814 | * @param string $form_submission_success_message |
815 | 815 | */ |
816 | - public function set_submission_success_message( $form_submission_success_message ) { |
|
817 | - $this->_form_submission_success_message .= ! empty( $form_submission_success_message ) ? $form_submission_success_message : __( 'Form submitted successfully', 'event_espresso' ); |
|
816 | + public function set_submission_success_message($form_submission_success_message) { |
|
817 | + $this->_form_submission_success_message .= ! empty($form_submission_success_message) ? $form_submission_success_message : __('Form submitted successfully', 'event_espresso'); |
|
818 | 818 | } |
819 | 819 | |
820 | 820 | |
@@ -836,10 +836,10 @@ discard block |
||
836 | 836 | * EE_Form_Input_Base::_set_default_html_name_if_empty |
837 | 837 | * @return string |
838 | 838 | */ |
839 | - public function html_name_prefix(){ |
|
840 | - if( $this->parent_section() instanceof EE_Form_Section_Proper ){ |
|
841 | - return $this->parent_section()->html_name_prefix() . '[' . $this->name() . ']'; |
|
842 | - }else{ |
|
839 | + public function html_name_prefix() { |
|
840 | + if ($this->parent_section() instanceof EE_Form_Section_Proper) { |
|
841 | + return $this->parent_section()->html_name_prefix().'['.$this->name().']'; |
|
842 | + } else { |
|
843 | 843 | return $this->name(); |
844 | 844 | } |
845 | 845 | } |
@@ -850,7 +850,7 @@ discard block |
||
850 | 850 | * was set, which is probably nothing, or the classname) |
851 | 851 | * @return string |
852 | 852 | */ |
853 | - public function name(){ |
|
853 | + public function name() { |
|
854 | 854 | $this->ensure_construct_finalized_called(); |
855 | 855 | return parent::name(); |
856 | 856 | } |
@@ -859,7 +859,7 @@ discard block |
||
859 | 859 | * |
860 | 860 | * @return EE_Form_Section_Proper |
861 | 861 | */ |
862 | - public function parent_section(){ |
|
862 | + public function parent_section() { |
|
863 | 863 | $this->ensure_construct_finalized_called(); |
864 | 864 | return parent::parent_section(); |
865 | 865 | } |
@@ -868,9 +868,9 @@ discard block |
||
868 | 868 | * make sure construction finalized was called, otherwise children might not be ready |
869 | 869 | * @return void |
870 | 870 | */ |
871 | - public function ensure_construct_finalized_called(){ |
|
872 | - if( ! $this->_construction_finalized ){ |
|
873 | - $this->_construct_finalize($this->_parent_section, $this->_name ); |
|
871 | + public function ensure_construct_finalized_called() { |
|
872 | + if ( ! $this->_construction_finalized) { |
|
873 | + $this->_construct_finalize($this->_parent_section, $this->_name); |
|
874 | 874 | } |
875 | 875 | } |
876 | 876 | |
@@ -882,17 +882,17 @@ discard block |
||
882 | 882 | * @param array $req_data |
883 | 883 | * @return boolean |
884 | 884 | */ |
885 | - public function form_data_present_in( $req_data = NULL ) { |
|
886 | - if( $req_data === NULL){ |
|
885 | + public function form_data_present_in($req_data = NULL) { |
|
886 | + if ($req_data === NULL) { |
|
887 | 887 | $req_data = $_POST; |
888 | 888 | } |
889 | - foreach( $this->subsections() as $subsection ) { |
|
890 | - if($subsection instanceof EE_Form_Input_Base ) { |
|
891 | - if( $subsection->form_data_present_in( $req_data ) ) { |
|
889 | + foreach ($this->subsections() as $subsection) { |
|
890 | + if ($subsection instanceof EE_Form_Input_Base) { |
|
891 | + if ($subsection->form_data_present_in($req_data)) { |
|
892 | 892 | return TRUE; |
893 | 893 | } |
894 | - }elseif( $subsection instanceof EE_Form_Section_Proper ) { |
|
895 | - if( $subsection->form_data_present_in( $req_data ) ) { |
|
894 | + }elseif ($subsection instanceof EE_Form_Section_Proper) { |
|
895 | + if ($subsection->form_data_present_in($req_data)) { |
|
896 | 896 | return TRUE; |
897 | 897 | } |
898 | 898 | } |
@@ -909,14 +909,14 @@ discard block |
||
909 | 909 | */ |
910 | 910 | public function get_validation_errors_accumulated() { |
911 | 911 | $validation_errors = $this->get_validation_errors(); |
912 | - foreach($this->get_validatable_subsections() as $subsection ) { |
|
913 | - if( $subsection instanceof EE_Form_Section_Proper ) { |
|
912 | + foreach ($this->get_validatable_subsections() as $subsection) { |
|
913 | + if ($subsection instanceof EE_Form_Section_Proper) { |
|
914 | 914 | $validation_errors_on_this_subsection = $subsection->get_validation_errors_accumulated(); |
915 | 915 | } else { |
916 | - $validation_errors_on_this_subsection = $subsection->get_validation_errors(); |
|
916 | + $validation_errors_on_this_subsection = $subsection->get_validation_errors(); |
|
917 | 917 | } |
918 | - if( $validation_errors_on_this_subsection ){ |
|
919 | - $validation_errors = array_merge( $validation_errors, $validation_errors_on_this_subsection ); |
|
918 | + if ($validation_errors_on_this_subsection) { |
|
919 | + $validation_errors = array_merge($validation_errors, $validation_errors_on_this_subsection); |
|
920 | 920 | } |
921 | 921 | } |
922 | 922 | return $validation_errors; |
@@ -348,6 +348,7 @@ |
||
348 | 348 | * Automatically finds the related model info from the form, if present, and |
349 | 349 | * save the relations indicated |
350 | 350 | * @type string $relation_name |
351 | + * @param integer $relation_name |
|
351 | 352 | * @return bool |
352 | 353 | * @throws EE_Error |
353 | 354 | */ |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | if(isset($options_array['subsection_args'])){ |
48 | 48 | $subsection_args = $options_array['subsection_args']; |
49 | - }else{ |
|
49 | + } else{ |
|
50 | 50 | $subsection_args = array(); |
51 | 51 | } |
52 | 52 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | if(isset($subsection_args[$relation_name]) && |
102 | 102 | isset($subsection_args[$relation_name]['model_objects'])){ |
103 | 103 | $model_objects = $subsection_args[$relation_name]['model_objects']; |
104 | - }else{ |
|
104 | + } else{ |
|
105 | 105 | $model_objects = $relation_obj->get_other_model()->get_all(); |
106 | 106 | } |
107 | 107 | $input = new EE_Select_Multi_Model_Input($model_objects,$input_constructor_args); |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $models_pointed_to = $model_field instanceof EE_Field_With_Model_Name ? $model_field->get_model_class_names_pointed_to() : array(); |
164 | 164 | if(true || is_array($models_pointed_to) && count($models_pointed_to) > 1){ |
165 | 165 | $input_class = 'EE_Text_Input'; |
166 | - }else{ |
|
166 | + } else{ |
|
167 | 167 | //so its just one model |
168 | 168 | $model_name = is_array($models_pointed_to) ? reset($models_pointed_to) : $models_pointed_to; |
169 | 169 | $model = EE_Registry::instance()->load_model($model_name); |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | //then we only expect there to be one |
256 | 256 | $related_item = $this->_model_object->get_first_related($relation_name); |
257 | 257 | $defaults[$relation_name] = $related_item->ID(); |
258 | - }else{ |
|
258 | + } else{ |
|
259 | 259 | $related_items = $this->_model_object->get_many_related($relation_name); |
260 | 260 | $ids = array(); |
261 | 261 | foreach($related_items as $related_item){ |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | $model_obj = $this->_model->get_one_by_ID($this->get_input_value($pk_name)); |
306 | 306 | if($model_obj){ |
307 | 307 | $this->_model_object = $model_obj; |
308 | - }else{ |
|
308 | + } else{ |
|
309 | 309 | $this->_model_object = EE_Registry::instance()->load_class($this->_model->get_this_model_name() ); |
310 | 310 | } |
311 | 311 | } |
@@ -356,19 +356,19 @@ discard block |
||
356 | 356 | if($relation_obj instanceof EE_Belongs_To_Relation){ |
357 | 357 | //there is just a foreign key on this model pointing to that one |
358 | 358 | $this->_model_object->_add_relation_to($this->get_input_value($relation_name), $relation_name); |
359 | - }elseif($relation_obj instanceof EE_Has_Many_Relation){ |
|
359 | + } elseif($relation_obj instanceof EE_Has_Many_Relation){ |
|
360 | 360 | //then we want to consider all of its currently-related things. |
361 | 361 | //if they're in this list, keep them |
362 | 362 | //if they're not in this list, remove them |
363 | 363 | //and lastly add all the new items |
364 | 364 | throw new EE_Error(sprintf(__('Automatic saving of related info across a "has many" relation is not yet supported', "event_espresso"))); |
365 | - }elseif($relation_obj instanceof EE_HABTM_Relation){ |
|
365 | + } elseif($relation_obj instanceof EE_HABTM_Relation){ |
|
366 | 366 | //delete everything NOT in this list |
367 | 367 | $normalized_input_value = $this->get_input_value($relation_name); |
368 | 368 | if($normalized_input_value && is_array($normalized_input_value)){ |
369 | 369 | $where_query_params = array( |
370 | 370 | $relation_obj->get_other_model()->primary_key_name() => array('NOT_IN',$normalized_input_value)); |
371 | - }else{ |
|
371 | + } else{ |
|
372 | 372 | $where_query_params = array(); |
373 | 373 | } |
374 | 374 | $this->_model_object->_remove_relations( $relation_name, $where_query_params ); |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * @since 4.5.0 |
12 | 12 | * |
13 | 13 | */ |
14 | -class EE_Model_Form_Section extends EE_Form_Section_Proper{ |
|
14 | +class EE_Model_Form_Section extends EE_Form_Section_Proper { |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * |
@@ -36,36 +36,36 @@ discard block |
||
36 | 36 | * } |
37 | 37 | * @throws EE_Error |
38 | 38 | */ |
39 | - public function __construct($options_array = array()){ |
|
40 | - if(isset($options_array['model']) && $options_array['model'] instanceof EEM_Base){ |
|
39 | + public function __construct($options_array = array()) { |
|
40 | + if (isset($options_array['model']) && $options_array['model'] instanceof EEM_Base) { |
|
41 | 41 | $this->_model = $options_array['model']; |
42 | 42 | } |
43 | - if( ! $this->_model || ! $this->_model instanceof EEM_Base ){ |
|
43 | + if ( ! $this->_model || ! $this->_model instanceof EEM_Base) { |
|
44 | 44 | throw new EE_Error(sprintf(__("Model Form Sections must first specify the _model property to be a subclass of EEM_Base", "event_espresso"))); |
45 | 45 | } |
46 | 46 | |
47 | - if(isset($options_array['subsection_args'])){ |
|
47 | + if (isset($options_array['subsection_args'])) { |
|
48 | 48 | $subsection_args = $options_array['subsection_args']; |
49 | - }else{ |
|
49 | + } else { |
|
50 | 50 | $subsection_args = array(); |
51 | 51 | } |
52 | 52 | |
53 | 53 | //gather fields and relations to convert to inputs |
54 | 54 | //but if they're just going to exclude a field anyways, don't bother converting it to an input |
55 | 55 | $exclude = $this->_subsections; |
56 | - if(isset($options_array['exclude'])){ |
|
57 | - $exclude = array_merge($exclude,array_flip($options_array['exclude'])); |
|
56 | + if (isset($options_array['exclude'])) { |
|
57 | + $exclude = array_merge($exclude, array_flip($options_array['exclude'])); |
|
58 | 58 | } |
59 | 59 | $model_fields = array_diff_key($this->_model->field_settings(), $exclude); |
60 | 60 | $model_relations = array_diff_key($this->_model->relation_settings(), $exclude); |
61 | 61 | //convert fields and relations to inputs |
62 | 62 | $this->_subsections = array_merge( |
63 | 63 | $this->_convert_model_fields_to_inputs($model_fields), |
64 | - $this->_convert_model_relations_to_inputs($model_relations,$subsection_args), |
|
64 | + $this->_convert_model_relations_to_inputs($model_relations, $subsection_args), |
|
65 | 65 | $this->_subsections |
66 | 66 | ); |
67 | 67 | parent::__construct($options_array); |
68 | - if(isset($options_array['model_object']) && $options_array['model_object'] instanceof EE_Base_Class){ |
|
68 | + if (isset($options_array['model_object']) && $options_array['model_object'] instanceof EE_Base_Class) { |
|
69 | 69 | $this->populate_model_obj($options_array['model_object']); |
70 | 70 | } |
71 | 71 | |
@@ -83,9 +83,9 @@ discard block |
||
83 | 83 | * } |
84 | 84 | * @return array |
85 | 85 | */ |
86 | - protected function _convert_model_relations_to_inputs($relations,$subsection_args = array()){ |
|
86 | + protected function _convert_model_relations_to_inputs($relations, $subsection_args = array()) { |
|
87 | 87 | $inputs = array(); |
88 | - foreach( $relations as $relation_name => $relation_obj ) { |
|
88 | + foreach ($relations as $relation_name => $relation_obj) { |
|
89 | 89 | $input_constructor_args = array( |
90 | 90 | array_merge( |
91 | 91 | array( |
@@ -96,19 +96,19 @@ discard block |
||
96 | 96 | ) |
97 | 97 | ); |
98 | 98 | $input = NULL; |
99 | - switch(get_class($relation_obj)){ |
|
99 | + switch (get_class($relation_obj)) { |
|
100 | 100 | case 'EE_HABTM_Relation': |
101 | - if(isset($subsection_args[$relation_name]) && |
|
102 | - isset($subsection_args[$relation_name]['model_objects'])){ |
|
101 | + if (isset($subsection_args[$relation_name]) && |
|
102 | + isset($subsection_args[$relation_name]['model_objects'])) { |
|
103 | 103 | $model_objects = $subsection_args[$relation_name]['model_objects']; |
104 | - }else{ |
|
104 | + } else { |
|
105 | 105 | $model_objects = $relation_obj->get_other_model()->get_all(); |
106 | 106 | } |
107 | - $input = new EE_Select_Multi_Model_Input($model_objects,$input_constructor_args); |
|
107 | + $input = new EE_Select_Multi_Model_Input($model_objects, $input_constructor_args); |
|
108 | 108 | break; |
109 | 109 | default: |
110 | 110 | } |
111 | - if($input){ |
|
111 | + if ($input) { |
|
112 | 112 | $inputs[$relation_name] = $input; |
113 | 113 | } |
114 | 114 | } |
@@ -123,16 +123,16 @@ discard block |
||
123 | 123 | * @throws EE_Error |
124 | 124 | * @return EE_Form_Input_Base[] |
125 | 125 | */ |
126 | - protected function _convert_model_fields_to_inputs( $model_fields = array() ){ |
|
126 | + protected function _convert_model_fields_to_inputs($model_fields = array()) { |
|
127 | 127 | $inputs = array(); |
128 | - foreach( $model_fields as $field_name=>$model_field ){ |
|
129 | - if ( $model_field instanceof EE_Model_Field_Base ) { |
|
128 | + foreach ($model_fields as $field_name=>$model_field) { |
|
129 | + if ($model_field instanceof EE_Model_Field_Base) { |
|
130 | 130 | $input_constructor_args = array(array( |
131 | 131 | 'required'=> ! $model_field->is_nullable() && $model_field->get_default_value() === NULL, |
132 | 132 | 'html_label_text'=>$model_field->get_nicename(), |
133 | 133 | 'default'=>$model_field->get_default_value(), |
134 | 134 | )); |
135 | - switch(get_class($model_field)){ |
|
135 | + switch (get_class($model_field)) { |
|
136 | 136 | case 'EE_All_Caps_Text_Field': |
137 | 137 | case 'EE_Any_Foreign_Model_Name_Field': |
138 | 138 | $input_class = 'EE_Text_Input'; |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | $input_class = 'EE_Yes_No_Input'; |
142 | 142 | break; |
143 | 143 | case 'EE_Datetime_Field': |
144 | - throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"),get_class($model_field))); |
|
144 | + throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"), get_class($model_field))); |
|
145 | 145 | break; |
146 | 146 | case 'EE_Email_Field': |
147 | 147 | $input_class = 'EE_Email_Input'; |
148 | 148 | break; |
149 | 149 | case 'EE_Enum_Integer_Field': |
150 | - throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"),get_class($model_field))); |
|
150 | + throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"), get_class($model_field))); |
|
151 | 151 | break; |
152 | 152 | case 'EE_Enum_Text_Field': |
153 | - throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"),get_class($model_field))); |
|
153 | + throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"), get_class($model_field))); |
|
154 | 154 | break; |
155 | 155 | case 'EE_Float_Field': |
156 | 156 | $input_class = 'EE_Float_Input'; |
@@ -159,15 +159,15 @@ discard block |
||
159 | 159 | case 'EE_Foreign_Key_String_Field': |
160 | 160 | case 'EE_WP_User_Field': |
161 | 161 | $models_pointed_to = $model_field instanceof EE_Field_With_Model_Name ? $model_field->get_model_class_names_pointed_to() : array(); |
162 | - if(true || is_array($models_pointed_to) && count($models_pointed_to) > 1){ |
|
162 | + if (true || is_array($models_pointed_to) && count($models_pointed_to) > 1) { |
|
163 | 163 | $input_class = 'EE_Text_Input'; |
164 | - }else{ |
|
164 | + } else { |
|
165 | 165 | //so its just one model |
166 | 166 | $model_name = is_array($models_pointed_to) ? reset($models_pointed_to) : $models_pointed_to; |
167 | 167 | $model = EE_Registry::instance()->load_model($model_name); |
168 | 168 | $model_names = $model->get_all_names(array('limit'=>10)); |
169 | - if($model_field->is_nullable()){ |
|
170 | - array_unshift( $model_names, __( "Please Select", 'event_espresso' )); |
|
169 | + if ($model_field->is_nullable()) { |
|
170 | + array_unshift($model_names, __("Please Select", 'event_espresso')); |
|
171 | 171 | } |
172 | 172 | $input_constructor_args[1] = $input_constructor_args[0]; |
173 | 173 | $input_constructor_args[0] = $model_names; |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $input_class = 'EE_Text_Area_Input'; |
179 | 179 | break; |
180 | 180 | case 'EE_Infinite_Integer': |
181 | - throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"),get_class($model_field))); |
|
181 | + throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"), get_class($model_field))); |
|
182 | 182 | break; |
183 | 183 | case 'EE_Integer_Field': |
184 | 184 | $input_class = 'EE_Text_Input'; |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | $input_class = 'EE_Text_Area_Input'; |
188 | 188 | break; |
189 | 189 | case 'EE_Money_Field': |
190 | - throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"),get_class($model_field))); |
|
190 | + throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"), get_class($model_field))); |
|
191 | 191 | break; |
192 | 192 | case 'EE_Post_Content_Field': |
193 | 193 | $input_class = 'EE_Text_Area_Input'; |
@@ -215,13 +215,13 @@ discard block |
||
215 | 215 | $input_class = 'EE_Yes_No_Input'; |
216 | 216 | break; |
217 | 217 | case 'EE_WP_Post_Status_Field': |
218 | - throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"),get_class($model_field))); |
|
218 | + throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"), get_class($model_field))); |
|
219 | 219 | break; |
220 | 220 | case 'EE_WP_Post_Type_Field': |
221 | - throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"),get_class($model_field))); |
|
221 | + throw new EE_Error(sprintf(__("Model field '%s' does not yet have a known conversion to form input", "event_espresso"), get_class($model_field))); |
|
222 | 222 | break; |
223 | 223 | default: |
224 | - throw new EE_Error(sprintf(__("Model field of type '%s' does not convert to any known Form Input. Please add a case to EE_Model_Form_section's _convert_model_fields_to_inputs switch statement", "event_espresso"),get_class($model_field))); |
|
224 | + throw new EE_Error(sprintf(__("Model field of type '%s' does not convert to any known Form Input. Please add a case to EE_Model_Form_section's _convert_model_fields_to_inputs switch statement", "event_espresso"), get_class($model_field))); |
|
225 | 225 | } |
226 | 226 | $reflection = new ReflectionClass($input_class); |
227 | 227 | $input = $reflection->newInstanceArgs($input_constructor_args); |
@@ -239,21 +239,21 @@ discard block |
||
239 | 239 | * @param EE_Base_Class $model_obj |
240 | 240 | * @return void |
241 | 241 | */ |
242 | - public function populate_model_obj($model_obj){ |
|
242 | + public function populate_model_obj($model_obj) { |
|
243 | 243 | $model_obj = $this->_model->ensure_is_obj($model_obj); |
244 | 244 | $this->_model_object = $model_obj; |
245 | 245 | $defaults = $model_obj->model_field_array(); |
246 | - foreach($this->_model->relation_settings() as $relation_name => $relation_obj){ |
|
246 | + foreach ($this->_model->relation_settings() as $relation_name => $relation_obj) { |
|
247 | 247 | $form_inputs = $this->inputs(); |
248 | - if(isset($form_inputs[$relation_name])){ |
|
249 | - if($relation_obj instanceof EE_Belongs_To_Relation){ |
|
248 | + if (isset($form_inputs[$relation_name])) { |
|
249 | + if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
250 | 250 | //then we only expect there to be one |
251 | 251 | $related_item = $this->_model_object->get_first_related($relation_name); |
252 | 252 | $defaults[$relation_name] = $related_item->ID(); |
253 | - }else{ |
|
253 | + } else { |
|
254 | 254 | $related_items = $this->_model_object->get_many_related($relation_name); |
255 | 255 | $ids = array(); |
256 | - foreach($related_items as $related_item){ |
|
256 | + foreach ($related_items as $related_item) { |
|
257 | 257 | $ids[] = $related_item->ID(); |
258 | 258 | } |
259 | 259 | $defaults[$relation_name] = $ids; |
@@ -270,8 +270,8 @@ discard block |
||
270 | 270 | * values are their normalized values |
271 | 271 | * @return array |
272 | 272 | */ |
273 | - public function inputs_values_corresponding_to_model_fields(){ |
|
274 | - return array_intersect_key($this->input_values(),$this->_model->field_settings()); |
|
273 | + public function inputs_values_corresponding_to_model_fields() { |
|
274 | + return array_intersect_key($this->input_values(), $this->_model->field_settings()); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | |
@@ -294,21 +294,21 @@ discard block |
||
294 | 294 | public function receive_form_submission($req_data = NULL, $validate = TRUE) { |
295 | 295 | parent::receive_form_submission($req_data, $validate); |
296 | 296 | //create or set the model object, if it isn't already |
297 | - if( ! $this->_model_object ){ |
|
297 | + if ( ! $this->_model_object) { |
|
298 | 298 | //check to see if the form indicates a PK, in which case we want to only retrieve it and update it |
299 | 299 | $pk_name = $this->_model->primary_key_name(); |
300 | 300 | $model_obj = $this->_model->get_one_by_ID($this->get_input_value($pk_name)); |
301 | - if($model_obj){ |
|
301 | + if ($model_obj) { |
|
302 | 302 | $this->_model_object = $model_obj; |
303 | - }else{ |
|
304 | - $this->_model_object = EE_Registry::instance()->load_class($this->_model->get_this_model_name() ); |
|
303 | + } else { |
|
304 | + $this->_model_object = EE_Registry::instance()->load_class($this->_model->get_this_model_name()); |
|
305 | 305 | } |
306 | 306 | } |
307 | 307 | //ok so the model object is set. Just set it with the submitted form data (don't save yet though) |
308 | - foreach($this->inputs_values_corresponding_to_model_fields() as $field_name=>$field_value){ |
|
308 | + foreach ($this->inputs_values_corresponding_to_model_fields() as $field_name=>$field_value) { |
|
309 | 309 | //only set the non-primary key |
310 | - if($field_name != $this->_model->primary_key_name()){ |
|
311 | - $this->_model_object->set($field_name,$field_value); |
|
310 | + if ($field_name != $this->_model->primary_key_name()) { |
|
311 | + $this->_model_object->set($field_name, $field_value); |
|
312 | 312 | } |
313 | 313 | } |
314 | 314 | |
@@ -324,13 +324,13 @@ discard block |
||
324 | 324 | * @return int, 1 on a successful update, the ID of |
325 | 325 | * the new entry on insert; 0 on failure |
326 | 326 | */ |
327 | - public function save(){ |
|
328 | - if( ! $this->_model_object){ |
|
329 | - throw new EE_Error(sprintf(__("Cannot save the model form's model object (model is '%s') because there is no model object set. You must either set it, or call receive_form_submission where it is set automatically", "event_espresso"),get_class($this->_model))); |
|
327 | + public function save() { |
|
328 | + if ( ! $this->_model_object) { |
|
329 | + throw new EE_Error(sprintf(__("Cannot save the model form's model object (model is '%s') because there is no model object set. You must either set it, or call receive_form_submission where it is set automatically", "event_espresso"), get_class($this->_model))); |
|
330 | 330 | } |
331 | - $success = $this->_model_object->save(); |
|
332 | - foreach($this->_model->relation_settings() as $relation_name => $relation_obj){ |
|
333 | - if(isset($this->_subsections[$relation_name])){ |
|
331 | + $success = $this->_model_object->save(); |
|
332 | + foreach ($this->_model->relation_settings() as $relation_name => $relation_obj) { |
|
333 | + if (isset($this->_subsections[$relation_name])) { |
|
334 | 334 | $success = $this->_save_related_info($relation_name); |
335 | 335 | } |
336 | 336 | } |
@@ -346,29 +346,29 @@ discard block |
||
346 | 346 | * @return bool |
347 | 347 | * @throws EE_Error |
348 | 348 | */ |
349 | - protected function _save_related_info($relation_name){ |
|
349 | + protected function _save_related_info($relation_name) { |
|
350 | 350 | $relation_obj = $this->_model->related_settings_for($relation_name); |
351 | - if($relation_obj instanceof EE_Belongs_To_Relation){ |
|
351 | + if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
352 | 352 | //there is just a foreign key on this model pointing to that one |
353 | 353 | $this->_model_object->_add_relation_to($this->get_input_value($relation_name), $relation_name); |
354 | - }elseif($relation_obj instanceof EE_Has_Many_Relation){ |
|
354 | + }elseif ($relation_obj instanceof EE_Has_Many_Relation) { |
|
355 | 355 | //then we want to consider all of its currently-related things. |
356 | 356 | //if they're in this list, keep them |
357 | 357 | //if they're not in this list, remove them |
358 | 358 | //and lastly add all the new items |
359 | 359 | throw new EE_Error(sprintf(__('Automatic saving of related info across a "has many" relation is not yet supported', "event_espresso"))); |
360 | - }elseif($relation_obj instanceof EE_HABTM_Relation){ |
|
360 | + }elseif ($relation_obj instanceof EE_HABTM_Relation) { |
|
361 | 361 | //delete everything NOT in this list |
362 | 362 | $normalized_input_value = $this->get_input_value($relation_name); |
363 | - if($normalized_input_value && is_array($normalized_input_value)){ |
|
363 | + if ($normalized_input_value && is_array($normalized_input_value)) { |
|
364 | 364 | $where_query_params = array( |
365 | - $relation_obj->get_other_model()->primary_key_name() => array('NOT_IN',$normalized_input_value)); |
|
366 | - }else{ |
|
365 | + $relation_obj->get_other_model()->primary_key_name() => array('NOT_IN', $normalized_input_value)); |
|
366 | + } else { |
|
367 | 367 | $where_query_params = array(); |
368 | 368 | } |
369 | - $this->_model_object->_remove_relations( $relation_name, $where_query_params ); |
|
370 | - foreach($normalized_input_value as $id){ |
|
371 | - $this->_model_object->_add_relation_to( $id, $relation_name ); |
|
369 | + $this->_model_object->_remove_relations($relation_name, $where_query_params); |
|
370 | + foreach ($normalized_input_value as $id) { |
|
371 | + $this->_model_object->_add_relation_to($id, $relation_name); |
|
372 | 372 | } |
373 | 373 | } |
374 | 374 | return TRUE; |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | * Gets the model of this model form |
381 | 381 | * @return EEM_Base |
382 | 382 | */ |
383 | - public function get_model(){ |
|
383 | + public function get_model() { |
|
384 | 384 | return $this->_model; |
385 | 385 | } |
386 | 386 | |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | * when receive_form_submission($req_data) was called. |
394 | 394 | * @return EE_Base_Class |
395 | 395 | */ |
396 | - public function get_model_object(){ |
|
396 | + public function get_model_object() { |
|
397 | 397 | return $this->_model_object; |
398 | 398 | } |
399 | 399 | |
@@ -403,10 +403,10 @@ discard block |
||
403 | 403 | * gets teh default name of this form section if none is specified |
404 | 404 | * @return string |
405 | 405 | */ |
406 | - protected function _set_default_name_if_empty(){ |
|
407 | - if( ! $this->_name ){ |
|
408 | - $default_name = str_replace("EEM_", "", get_class($this->_model)) . "_Model_Form"; |
|
409 | - $this->_name = $default_name; |
|
406 | + protected function _set_default_name_if_empty() { |
|
407 | + if ( ! $this->_name) { |
|
408 | + $default_name = str_replace("EEM_", "", get_class($this->_model))."_Model_Form"; |
|
409 | + $this->_name = $default_name; |
|
410 | 410 | } |
411 | 411 | } |
412 | 412 |