@@ -1324,7 +1324,7 @@ discard block |
||
| 1324 | 1324 | $placeholders['label_value'] = gv_label( $field, $entry ); |
| 1325 | 1325 | } |
| 1326 | 1326 | |
| 1327 | - if ( empty( $placeholders['label'] ) && ! empty( $placeholders['label_value'] ) ){ |
|
| 1327 | + if ( empty( $placeholders['label'] ) && ! empty( $placeholders['label_value'] ) ) { |
|
| 1328 | 1328 | $placeholders['label'] = '<span class="gv-field-label">{{ label_value }}</span>'; |
| 1329 | 1329 | } |
| 1330 | 1330 | |
@@ -1363,7 +1363,7 @@ discard block |
||
| 1363 | 1363 | foreach ( $placeholders as $tag => $value ) { |
| 1364 | 1364 | |
| 1365 | 1365 | // If the tag doesn't exist just skip it |
| 1366 | - if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ){ |
|
| 1366 | + if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ) { |
|
| 1367 | 1367 | continue; |
| 1368 | 1368 | } |
| 1369 | 1369 | |
@@ -450,7 +450,7 @@ discard block |
||
| 450 | 450 | } |
| 451 | 451 | |
| 452 | 452 | // User reported WooCommerce doesn't pass two args. |
| 453 | - if ( empty( $passed_post_id ) ) { |
|
| 453 | + if ( empty( $passed_post_id ) ) { |
|
| 454 | 454 | return $title; |
| 455 | 455 | } |
| 456 | 456 | |
@@ -1127,7 +1127,7 @@ discard block |
||
| 1127 | 1127 | */ |
| 1128 | 1128 | $address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id ); |
| 1129 | 1129 | |
| 1130 | - switch( strtolower( $address_part ) ){ |
|
| 1130 | + switch( strtolower( $address_part ) ) { |
|
| 1131 | 1131 | case 'street': |
| 1132 | 1132 | $sort_field_id .= '.1'; |
| 1133 | 1133 | break; |
@@ -1207,7 +1207,7 @@ discard block |
||
| 1207 | 1207 | */ |
| 1208 | 1208 | $single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry ); |
| 1209 | 1209 | |
| 1210 | - if ( empty( $single_entry ) ){ |
|
| 1210 | + if ( empty( $single_entry ) ) { |
|
| 1211 | 1211 | return false; |
| 1212 | 1212 | } else { |
| 1213 | 1213 | return $single_entry; |
@@ -603,7 +603,8 @@ discard block |
||
| 603 | 603 | // Fast-forward 24 hour on the end time |
| 604 | 604 | $curr_end = date( 'Y-m-d H:i:s', strtotime( $curr_end ) + DAY_IN_SECONDS ); |
| 605 | 605 | $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
| 606 | - if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
| 606 | + if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { |
|
| 607 | +// See https://github.com/gravityview/GravityView/issues/1056 |
|
| 607 | 608 | $search_criteria['end_date'] = date( 'Y-m-d H:i:s', strtotime( $search_criteria['end_date'] ) - 1 ); |
| 608 | 609 | } |
| 609 | 610 | } |
@@ -874,7 +875,7 @@ discard block |
||
| 874 | 875 | 'ymd_dot' => 'Y.m.d', |
| 875 | 876 | ); |
| 876 | 877 | |
| 877 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
| 878 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
| 878 | 879 | $format = $datepicker[ $field->dateFormat ]; |
| 879 | 880 | } |
| 880 | 881 | |
@@ -291,7 +291,7 @@ |
||
| 291 | 291 | public function settings() { |
| 292 | 292 | |
| 293 | 293 | // If doing ajax, get outta here |
| 294 | - if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX && 'update-plugin' !== Utils::_POST('action') ) ) { |
|
| 294 | + if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX && 'update-plugin' !== Utils::_POST('action') ) ) { |
|
| 295 | 295 | return; |
| 296 | 296 | } |
| 297 | 297 | |
@@ -79,8 +79,9 @@ |
||
| 79 | 79 | * Check permissions. |
| 80 | 80 | */ |
| 81 | 81 | while ( $error = $view->can_render( array( 'shortcode' ), $request ) ) { |
| 82 | - if ( ! is_wp_error( $error ) ) |
|
| 83 | - break; |
|
| 82 | + if ( ! is_wp_error( $error ) ) { |
|
| 83 | + break; |
|
| 84 | + } |
|
| 84 | 85 | |
| 85 | 86 | switch ( str_replace( 'gravityview/', '', $error->get_error_code() ) ) { |
| 86 | 87 | case 'post_password_required': |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | $slug = apply_filters( 'gravityview_slug', 'view' ); |
| 210 | 210 | $rule = array( sprintf( '%s/([^/]+)/csv/?', $slug ), 'index.php?gravityview=$matches[1]&csv=1', 'top' ); |
| 211 | 211 | |
| 212 | - add_filter( 'query_vars', function( $query_vars ) { |
|
| 212 | + add_filter( 'query_vars', function( $query_vars ) { |
|
| 213 | 213 | $query_vars[] = 'csv'; |
| 214 | 214 | return $query_vars; |
| 215 | 215 | } ); |
@@ -254,8 +254,9 @@ discard block |
||
| 254 | 254 | * Check permissions. |
| 255 | 255 | */ |
| 256 | 256 | while ( $error = $view->can_render( null, $request ) ) { |
| 257 | - if ( ! is_wp_error( $error ) ) |
|
| 258 | - break; |
|
| 257 | + if ( ! is_wp_error( $error ) ) { |
|
| 258 | + break; |
|
| 259 | + } |
|
| 259 | 260 | |
| 260 | 261 | switch ( str_replace( 'gravityview/', '', $error->get_error_code() ) ) { |
| 261 | 262 | case 'post_password_required': |
@@ -958,7 +958,7 @@ discard block |
||
| 958 | 958 | |
| 959 | 959 | $back_link = esc_url( remove_query_arg( array( 'page', 'view', 'edit' ) ) ); |
| 960 | 960 | |
| 961 | - if( ! $this->is_valid ){ |
|
| 961 | + if( ! $this->is_valid ) { |
|
| 962 | 962 | |
| 963 | 963 | // Keeping this compatible with Gravity Forms. |
| 964 | 964 | $validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>"; |
@@ -1755,9 +1755,11 @@ discard block |
||
| 1755 | 1755 | */ |
| 1756 | 1756 | function unselect_default_values( $form ) { |
| 1757 | 1757 | foreach ( $form['fields'] as &$field ) { |
| 1758 | - if ( $field->choices ) foreach ( $field->choices as &$choice ) { |
|
| 1758 | + if ( $field->choices ) { |
|
| 1759 | + foreach ( $field->choices as &$choice ) { |
|
| 1759 | 1760 | if ( \GV\Utils::get( $choice, 'isSelected' ) ) { |
| 1760 | 1761 | $choice['isSelected'] = false; |
| 1762 | + } |
|
| 1761 | 1763 | } |
| 1762 | 1764 | } |
| 1763 | 1765 | } |
@@ -2032,9 +2034,7 @@ discard block |
||
| 2032 | 2034 | // Verify |
| 2033 | 2035 | else if( ! $this->is_edit_entry() ) { |
| 2034 | 2036 | $valid = false; |
| 2035 | - } |
|
| 2036 | - |
|
| 2037 | - else { |
|
| 2037 | + } else { |
|
| 2038 | 2038 | $valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key ); |
| 2039 | 2039 | } |
| 2040 | 2040 | |