@@ -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': |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | * |
| 50 | 50 | * @param array $items Scripts or styles to exclude from no-conflict |
| 51 | 51 | * |
| 52 | - * @return array |
|
| 52 | + * @return string[] |
|
| 53 | 53 | */ |
| 54 | 54 | public function register_noconflict( $items ) { |
| 55 | 55 | |
@@ -449,9 +449,7 @@ |
||
| 449 | 449 | $button_label = sprintf( __( 'Upgrade to %s for Access', 'gravityview' ), $required_license ); |
| 450 | 450 | $button_class = 'button-primary button-large'; |
| 451 | 451 | $href = 'https://gravityview.co/pricing/?utm_source=admin-installer&utm_medium=admin&utm_campaign=Admin%20Notice&utm_content=' . $required_license; |
| 452 | - } |
|
| 453 | - |
|
| 454 | - elseif ( ! empty( $download_info['coming_soon'] ) ) { |
|
| 452 | + } elseif ( ! empty( $download_info['coming_soon'] ) ) { |
|
| 455 | 453 | $spinner = false; |
| 456 | 454 | $status = 'notinstalled'; |
| 457 | 455 | $status_label = __( 'Coming Soon', 'gravityview' ); |
@@ -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': |
@@ -795,6 +795,7 @@ |
||
| 795 | 795 | * Retrieve the entries for the current view and request. |
| 796 | 796 | * |
| 797 | 797 | * @param \GV\Request The request. Unused for now. |
| 798 | + * @param Request $request |
|
| 798 | 799 | * |
| 799 | 800 | * @return \GV\Entry_Collection The entries. |
| 800 | 801 | */ |
@@ -282,7 +282,7 @@ |
||
| 282 | 282 | /** |
| 283 | 283 | * Process edit entry form save |
| 284 | 284 | * |
| 285 | - * @param array $gv_data The View data. |
|
| 285 | + * @param GravityView_View_Data $gv_data The View data. |
|
| 286 | 286 | */ |
| 287 | 287 | private function process_save( $gv_data ) { |
| 288 | 288 | |
@@ -1378,7 +1378,7 @@ discard block |
||
| 1378 | 1378 | |
| 1379 | 1379 | $placeholders['label_value:esc_attr'] = esc_attr( $placeholders['label_value'] ); |
| 1380 | 1380 | |
| 1381 | - if ( empty( $placeholders['label'] ) && ! empty( $placeholders['label_value'] ) ){ |
|
| 1381 | + if ( empty( $placeholders['label'] ) && ! empty( $placeholders['label_value'] ) ) { |
|
| 1382 | 1382 | $placeholders['label'] = '<span class="gv-field-label">{{ label_value }}</span>'; |
| 1383 | 1383 | } |
| 1384 | 1384 | |
@@ -1417,7 +1417,7 @@ discard block |
||
| 1417 | 1417 | foreach ( $placeholders as $tag => $value ) { |
| 1418 | 1418 | |
| 1419 | 1419 | // If the tag doesn't exist just skip it |
| 1420 | - if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ){ |
|
| 1420 | + if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ) { |
|
| 1421 | 1421 | continue; |
| 1422 | 1422 | } |
| 1423 | 1423 | |