@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | ); |
| 101 | 101 | |
| 102 | 102 | if ( ! empty( $action ) ) { |
| 103 | - $settings['edd_action'] = esc_attr( $action ); |
|
| 103 | + $settings[ 'edd_action' ] = esc_attr( $action ); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | return array_map( 'urlencode', $settings ); |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | 'format' => 'json', |
| 157 | 157 | ) ); |
| 158 | 158 | |
| 159 | - if ( $is_ajax && empty( $data['license'] ) ) { |
|
| 159 | + if ( $is_ajax && empty( $data[ 'license' ] ) ) { |
|
| 160 | 160 | die( -1 ); |
| 161 | 161 | } |
| 162 | 162 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | |
| 185 | 185 | $json = json_encode( $license_data ); |
| 186 | 186 | |
| 187 | - $update_license = Utils::get( $data, 'update' ) || 'gravityview_license' === Utils::_POST('action'); |
|
| 187 | + $update_license = Utils::get( $data, 'update' ) || 'gravityview_license' === Utils::_POST( 'action' ); |
|
| 188 | 188 | |
| 189 | 189 | $is_check_action_button = ( 'check_license' === Utils::get( $data, 'edd_action' ) && defined( 'DOING_AJAX' ) && DOING_AJAX ); |
| 190 | 190 | |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | // most likely a mistake. |
| 198 | 198 | } else if ( $license_data->license !== 'failed' && $update_license ) { |
| 199 | 199 | |
| 200 | - if ( ! empty( $data['field_id'] ) ) { |
|
| 200 | + if ( ! empty( $data[ 'field_id' ] ) ) { |
|
| 201 | 201 | set_transient( self::status_transient_key, $license_data, DAY_IN_SECONDS ); |
| 202 | 202 | } |
| 203 | 203 | |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | if ( empty( $license_data ) ) { |
| 225 | 225 | $message = ''; |
| 226 | 226 | } else { |
| 227 | - if( ! empty( $license_data->error ) ) { |
|
| 227 | + if ( ! empty( $license_data->error ) ) { |
|
| 228 | 228 | $class = 'error'; |
| 229 | 229 | $string_key = $license_data->error; |
| 230 | 230 | } else { $class = $license_data->license; |
@@ -250,17 +250,17 @@ discard block |
||
| 250 | 250 | */ |
| 251 | 251 | public function license_details( $response = array() ) { |
| 252 | 252 | |
| 253 | - $response = (array) $response; |
|
| 253 | + $response = (array)$response; |
|
| 254 | 254 | |
| 255 | 255 | $return = ''; |
| 256 | 256 | $wrapper = '<span class="gv-license-details" aria-live="polite" aria-busy="false">%s</span>'; |
| 257 | 257 | |
| 258 | - if ( ! empty( $response['license_key'] ) ) { |
|
| 258 | + if ( ! empty( $response[ 'license_key' ] ) ) { |
|
| 259 | 259 | $return .= '<h3>' . esc_html__( 'License Details:', 'gravityview' ) . '</h3>'; |
| 260 | 260 | |
| 261 | 261 | if ( in_array( Utils::get( $response, 'license' ), array( 'invalid', 'deactivated' ) ) ) { |
| 262 | - $return .= $this->strings( $response['license'], $response ); |
|
| 263 | - } elseif ( ! empty( $response['license_name'] ) ) { |
|
| 262 | + $return .= $this->strings( $response[ 'license' ], $response ); |
|
| 263 | + } elseif ( ! empty( $response[ 'license_name' ] ) ) { |
|
| 264 | 264 | $response_keys = array( |
| 265 | 265 | 'license_name' => '', |
| 266 | 266 | 'license_limit' => '', |
@@ -274,19 +274,19 @@ discard block |
||
| 274 | 274 | // Make sure all the keys are set |
| 275 | 275 | $response = wp_parse_args( $response, $response_keys ); |
| 276 | 276 | |
| 277 | - $login_link = sprintf( '<a href="%s" class="howto" rel="external">%s</a>', esc_url( sprintf( 'https://gravityview.co/wp-login.php?username=%s', $response['customer_email'] ) ), esc_html__( 'Access your GravityView account', 'gravityview' ) ); |
|
| 278 | - $local_text = ( ! empty( $response['is_local'] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' ); |
|
| 277 | + $login_link = sprintf( '<a href="%s" class="howto" rel="external">%s</a>', esc_url( sprintf( 'https://gravityview.co/wp-login.php?username=%s', $response[ 'customer_email' ] ) ), esc_html__( 'Access your GravityView account', 'gravityview' ) ); |
|
| 278 | + $local_text = ( ! empty( $response[ 'is_local' ] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' ); |
|
| 279 | 279 | $details = array( |
| 280 | - 'license' => sprintf( esc_html__( 'License level: %s', 'gravityview' ), esc_html( $response['license_name'] ), esc_html( $response['license_limit'] ) ), |
|
| 281 | - 'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), esc_html__( $response['customer_name'], 'gravityview' ), esc_html__( $response['customer_email'], 'gravityview' ) ) . $login_link, |
|
| 282 | - 'activations' => sprintf( esc_html__( 'Activations: %d of %s sites', 'gravityview' ), intval( $response['site_count'] ), esc_html( $response['license_limit'] ) ) . $local_text, |
|
| 283 | - 'expires' => 'lifetime' === $response['expires'] ? '' : sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response['expires'] ) - DAY_IN_SECONDS ) ), |
|
| 284 | - 'upgrade' => $this->get_upgrade_html( $response['upgrades'] ), |
|
| 280 | + 'license' => sprintf( esc_html__( 'License level: %s', 'gravityview' ), esc_html( $response[ 'license_name' ] ), esc_html( $response[ 'license_limit' ] ) ), |
|
| 281 | + 'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), esc_html__( $response[ 'customer_name' ], 'gravityview' ), esc_html__( $response[ 'customer_email' ], 'gravityview' ) ) . $login_link, |
|
| 282 | + 'activations' => sprintf( esc_html__( 'Activations: %d of %s sites', 'gravityview' ), intval( $response[ 'site_count' ] ), esc_html( $response[ 'license_limit' ] ) ) . $local_text, |
|
| 283 | + 'expires' => 'lifetime' === $response[ 'expires' ] ? '' : sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response[ 'expires' ] ) - DAY_IN_SECONDS ) ), |
|
| 284 | + 'upgrade' => $this->get_upgrade_html( $response[ 'upgrades' ] ), |
|
| 285 | 285 | ); |
| 286 | 286 | |
| 287 | - if ( ! empty( $response['error'] ) && 'expired' === $response['error'] ) { |
|
| 288 | - unset( $details['upgrade'] ); |
|
| 289 | - $details['expires'] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>'; |
|
| 287 | + if ( ! empty( $response[ 'error' ] ) && 'expired' === $response[ 'error' ] ) { |
|
| 288 | + unset( $details[ 'upgrade' ] ); |
|
| 289 | + $details[ 'expires' ] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>'; |
|
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | $return .= '<ul><li>' . implode( '</li><li>', array_filter( $details ) ) . '</li></ul>'; |
@@ -312,20 +312,20 @@ discard block |
||
| 312 | 312 | if ( ! empty( $upgrades ) ) { |
| 313 | 313 | |
| 314 | 314 | $locale_parts = explode( '_', get_locale() ); |
| 315 | - $is_english = ( 'en' === $locale_parts[0] ); |
|
| 315 | + $is_english = ( 'en' === $locale_parts[ 0 ] ); |
|
| 316 | 316 | |
| 317 | 317 | $output .= '<h4>' . esc_html__( 'Upgrades available:', 'gravityview' ) . '</h4>'; |
| 318 | 318 | $output .= '<ul class="ul-disc">'; |
| 319 | 319 | |
| 320 | 320 | foreach ( $upgrades as $upgrade_id => $upgrade ) { |
| 321 | - $upgrade = (object) $upgrade; |
|
| 321 | + $upgrade = (object)$upgrade; |
|
| 322 | 322 | |
| 323 | 323 | $anchor_text = sprintf( esc_html_x( 'Upgrade to %1$s for %2$s', '1: GravityView upgrade name, 2: Cost of upgrade', 'gravityview' ), esc_attr( $upgrade->name ), esc_attr( $upgrade->price ) ); |
| 324 | 324 | |
| 325 | 325 | if ( $is_english && isset( $upgrade->description ) ) { |
| 326 | 326 | $message = esc_html( $upgrade->description ); |
| 327 | 327 | } else { |
| 328 | - switch( $upgrade->price_id ) { |
|
| 328 | + switch ( $upgrade->price_id ) { |
|
| 329 | 329 | // Interstellar |
| 330 | 330 | case 1: |
| 331 | 331 | default: |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | 'invalid' => esc_html__( 'The license key entered is invalid.', 'gravityview' ), |
| 384 | 384 | 'missing' => esc_html__( 'Invalid license key.', 'gravityview' ), |
| 385 | 385 | 'revoked' => esc_html__( 'This license key has been revoked.', 'gravityview' ), |
| 386 | - 'expired' => sprintf( esc_html__( 'This license key has expired. %sRenew your license on the GravityView website%s to receive updates and support.', 'gravityview' ), '<a href="'. esc_url( $this->get_license_renewal_url( $license_data ) ) .'">', '</a>' ), |
|
| 386 | + 'expired' => sprintf( esc_html__( 'This license key has expired. %sRenew your license on the GravityView website%s to receive updates and support.', 'gravityview' ), '<a href="' . esc_url( $this->get_license_renewal_url( $license_data ) ) . '">', '</a>' ), |
|
| 387 | 387 | 'capability' => esc_html__( 'You don\'t have the ability to edit plugin settings.', 'gravityview' ), |
| 388 | 388 | |
| 389 | 389 | 'verifying_license' => esc_html__( 'Verifying license…', 'gravityview' ), |
@@ -406,7 +406,7 @@ discard block |
||
| 406 | 406 | |
| 407 | 407 | if ( ! empty( $license_data->renewal_url ) ) { |
| 408 | 408 | $renew_license_url = $license_data->renewal_url; |
| 409 | - } elseif( ! empty( $license_data->license_key ) ) { |
|
| 409 | + } elseif ( ! empty( $license_data->license_key ) ) { |
|
| 410 | 410 | $renew_license_url = sprintf( 'https://gravityview.co/checkout/?download_id=17&edd_license_key=%s', $license_data->license_key ); |
| 411 | 411 | } else { |
| 412 | 412 | $renew_license_url = 'https://gravityview.co/account/'; |
@@ -423,7 +423,7 @@ discard block |
||
| 423 | 423 | * @return array|\WP_Error |
| 424 | 424 | */ |
| 425 | 425 | private function _license_get_remote_response( $data, $license = '' ) { |
| 426 | - $api_params = $this->_get_edd_settings( $data['edd_action'], $license ); |
|
| 426 | + $api_params = $this->_get_edd_settings( $data[ 'edd_action' ], $license ); |
|
| 427 | 427 | |
| 428 | 428 | $url = add_query_arg( $api_params, self::url ); |
| 429 | 429 | |
@@ -463,9 +463,9 @@ discard block |
||
| 463 | 463 | private function license_call_update_settings( $license_data, $data ) { |
| 464 | 464 | $settings = array(); |
| 465 | 465 | |
| 466 | - $settings['license_key'] = $license_data->license_key = trim( $data['license'] ); |
|
| 467 | - $settings['license_key_status'] = $license_data->license; |
|
| 468 | - $settings['license_key_response'] = (array)$license_data; |
|
| 466 | + $settings[ 'license_key' ] = $license_data->license_key = trim( $data[ 'license' ] ); |
|
| 467 | + $settings[ 'license_key_status' ] = $license_data->license; |
|
| 468 | + $settings[ 'license_key_response' ] = (array)$license_data; |
|
| 469 | 469 | |
| 470 | 470 | $this->settings->set( $settings ); |
| 471 | 471 | } |
@@ -480,7 +480,7 @@ discard block |
||
| 480 | 480 | |
| 481 | 481 | if ( ! empty( $key ) ) { |
| 482 | 482 | $response = $this->settings->get( 'license_key_response' ); |
| 483 | - $response = is_array( $response ) ? (object) $response : json_decode( $response ); |
|
| 483 | + $response = is_array( $response ) ? (object)$response : json_decode( $response ); |
|
| 484 | 484 | } else { |
| 485 | 485 | $response = array(); |
| 486 | 486 | } |
@@ -522,11 +522,11 @@ discard block |
||
| 522 | 522 | |
| 523 | 523 | $submit = '<div class="gv-edd-button-wrapper">'; |
| 524 | 524 | foreach ( $fields as $field ) { |
| 525 | - $field['type'] = 'button'; |
|
| 526 | - $field['class'] = isset( $field['class'] ) ? $field['class'] . ' '. $class : $class; |
|
| 527 | - $field['style'] = 'margin-left: 10px;'; |
|
| 528 | - if( $disabled_attribute ) { |
|
| 529 | - $field['disabled'] = $disabled_attribute; |
|
| 525 | + $field[ 'type' ] = 'button'; |
|
| 526 | + $field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] . ' ' . $class : $class; |
|
| 527 | + $field[ 'style' ] = 'margin-left: 10px;'; |
|
| 528 | + if ( $disabled_attribute ) { |
|
| 529 | + $field[ 'disabled' ] = $disabled_attribute; |
|
| 530 | 530 | } |
| 531 | 531 | $submit .= $this->settings->as_html( $field, $echo ); |
| 532 | 532 | } |
@@ -605,7 +605,7 @@ discard block |
||
| 605 | 605 | 'url' => home_url(), |
| 606 | 606 | 'site_data' => $this->get_site_data(), |
| 607 | 607 | ), |
| 608 | - )); |
|
| 608 | + ) ); |
|
| 609 | 609 | |
| 610 | 610 | // make sure the response came back okay |
| 611 | 611 | if ( is_wp_error( $response ) ) { |
@@ -636,45 +636,45 @@ discard block |
||
| 636 | 636 | $theme_data = wp_get_theme(); |
| 637 | 637 | $theme = $theme_data->Name . ' ' . $theme_data->Version; |
| 638 | 638 | |
| 639 | - $data['gv_version'] = Plugin::$version; |
|
| 640 | - $data['php_version'] = phpversion(); |
|
| 641 | - $data['wp_version'] = get_bloginfo( 'version' ); |
|
| 642 | - $data['gf_version'] = \GFForms::$version; |
|
| 643 | - $data['server'] = Utils::get( $_SERVER, 'SERVER_SOFTWARE' ); |
|
| 644 | - $data['multisite'] = is_multisite(); |
|
| 645 | - $data['theme'] = $theme; |
|
| 646 | - $data['url'] = home_url(); |
|
| 647 | - $data['license_key'] = $this->settings->get( 'license_key' ); |
|
| 648 | - $data['beta'] = $this->settings->get( 'beta' ); |
|
| 639 | + $data[ 'gv_version' ] = Plugin::$version; |
|
| 640 | + $data[ 'php_version' ] = phpversion(); |
|
| 641 | + $data[ 'wp_version' ] = get_bloginfo( 'version' ); |
|
| 642 | + $data[ 'gf_version' ] = \GFForms::$version; |
|
| 643 | + $data[ 'server' ] = Utils::get( $_SERVER, 'SERVER_SOFTWARE' ); |
|
| 644 | + $data[ 'multisite' ] = is_multisite(); |
|
| 645 | + $data[ 'theme' ] = $theme; |
|
| 646 | + $data[ 'url' ] = home_url(); |
|
| 647 | + $data[ 'license_key' ] = $this->settings->get( 'license_key' ); |
|
| 648 | + $data[ 'beta' ] = $this->settings->get( 'beta' ); |
|
| 649 | 649 | |
| 650 | 650 | // View Data |
| 651 | 651 | $gravityview_posts = wp_count_posts( 'gravityview', 'readable' ); |
| 652 | 652 | |
| 653 | - $data['view_count'] = null; |
|
| 654 | - $data['view_first'] = null; |
|
| 655 | - $data['view_latest'] = null; |
|
| 653 | + $data[ 'view_count' ] = null; |
|
| 654 | + $data[ 'view_first' ] = null; |
|
| 655 | + $data[ 'view_latest' ] = null; |
|
| 656 | 656 | |
| 657 | 657 | if ( $gravityview_posts->publish ) { |
| 658 | - $data['view_count'] = $gravityview_posts->publish; |
|
| 658 | + $data[ 'view_count' ] = $gravityview_posts->publish; |
|
| 659 | 659 | |
| 660 | 660 | $first = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=ASC' ); |
| 661 | 661 | $latest = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=DESC' ); |
| 662 | 662 | |
| 663 | 663 | if ( $first = array_shift( $first ) ) { |
| 664 | - $data['view_first'] = $first->post_date; |
|
| 664 | + $data[ 'view_first' ] = $first->post_date; |
|
| 665 | 665 | } |
| 666 | 666 | if ( $latest = array_pop( $latest ) ) { |
| 667 | - $data['view_latest'] = $latest->post_date; |
|
| 667 | + $data[ 'view_latest' ] = $latest->post_date; |
|
| 668 | 668 | } |
| 669 | 669 | } |
| 670 | 670 | |
| 671 | 671 | // Form counts |
| 672 | 672 | if ( class_exists( 'GFFormsModel' ) ) { |
| 673 | 673 | $form_data = \GFFormsModel::get_form_count(); |
| 674 | - $data['forms_total'] = Utils::get( $form_data, 'total', 0 ); |
|
| 675 | - $data['forms_active'] = Utils::get( $form_data, 'active', 0 ); |
|
| 676 | - $data['forms_inactive'] = Utils::get( $form_data, 'inactive', 0 ); |
|
| 677 | - $data['forms_trash'] = Utils::get( $form_data, 'inactive', 0 ); |
|
| 674 | + $data[ 'forms_total' ] = Utils::get( $form_data, 'total', 0 ); |
|
| 675 | + $data[ 'forms_active' ] = Utils::get( $form_data, 'active', 0 ); |
|
| 676 | + $data[ 'forms_inactive' ] = Utils::get( $form_data, 'inactive', 0 ); |
|
| 677 | + $data[ 'forms_trash' ] = Utils::get( $form_data, 'inactive', 0 ); |
|
| 678 | 678 | } |
| 679 | 679 | |
| 680 | 680 | // Retrieve current plugin information |
@@ -682,13 +682,13 @@ discard block |
||
| 682 | 682 | include ABSPATH . '/wp-admin/includes/plugin.php'; |
| 683 | 683 | } |
| 684 | 684 | |
| 685 | - $data['integrations'] = self::get_related_plugins_and_extensions(); |
|
| 686 | - $data['active_plugins'] = get_option( 'active_plugins', array() ); |
|
| 687 | - $data['inactive_plugins'] = array(); |
|
| 688 | - $data['locale'] = get_locale(); |
|
| 685 | + $data[ 'integrations' ] = self::get_related_plugins_and_extensions(); |
|
| 686 | + $data[ 'active_plugins' ] = get_option( 'active_plugins', array() ); |
|
| 687 | + $data[ 'inactive_plugins' ] = array(); |
|
| 688 | + $data[ 'locale' ] = get_locale(); |
|
| 689 | 689 | |
| 690 | 690 | // Validate request on the GV server |
| 691 | - $data['hash'] = 'gv_version.url.locale:' . sha1( $data['gv_version'] . $data['url'] . $data['locale'] ); |
|
| 691 | + $data[ 'hash' ] = 'gv_version.url.locale:' . sha1( $data[ 'gv_version' ] . $data[ 'url' ] . $data[ 'locale' ] ); |
|
| 692 | 692 | |
| 693 | 693 | return $data; |
| 694 | 694 | } |
@@ -718,7 +718,7 @@ discard block |
||
| 718 | 718 | |
| 719 | 719 | $plugin_data = get_plugin_data( $active_plugin ); |
| 720 | 720 | |
| 721 | - $extensions[] = sprintf( '%s %s', $plugin_data['Name'], $plugin_data['Version'] ); |
|
| 721 | + $extensions[ ] = sprintf( '%s %s', $plugin_data[ 'Name' ], $plugin_data[ 'Version' ] ); |
|
| 722 | 722 | } |
| 723 | 723 | |
| 724 | 724 | if ( ! empty( $extensions ) ) { |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | /** |
| 85 | 85 | * @var string The REST API functionality identifier. |
| 86 | 86 | */ |
| 87 | - const FEATURE_REST = 'rest_api'; |
|
| 87 | + const FEATURE_REST = 'rest_api'; |
|
| 88 | 88 | |
| 89 | 89 | /** |
| 90 | 90 | * Get the global instance of \GV\Plugin. |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | include_once $this->dir( 'includes/class-frontend-views.php' ); |
| 211 | 211 | include_once $this->dir( 'includes/class-gravityview-admin-bar.php' ); |
| 212 | 212 | include_once $this->dir( 'includes/class-gravityview-entry-list.php' ); |
| 213 | - include_once $this->dir( 'includes/class-gravityview-merge-tags.php'); /** @since 1.8.4 */ |
|
| 213 | + include_once $this->dir( 'includes/class-gravityview-merge-tags.php' ); /** @since 1.8.4 */ |
|
| 214 | 214 | include_once $this->dir( 'includes/class-data.php' ); |
| 215 | 215 | include_once $this->dir( 'includes/class-gravityview-shortcode.php' ); |
| 216 | 216 | include_once $this->dir( 'includes/class-gravityview-entry-link-shortcode.php' ); |
@@ -244,12 +244,12 @@ discard block |
||
| 244 | 244 | |
| 245 | 245 | $locale = get_locale(); |
| 246 | 246 | |
| 247 | - if ( function_exists('get_user_locale') && is_admin() ) { |
|
| 247 | + if ( function_exists( 'get_user_locale' ) && is_admin() ) { |
|
| 248 | 248 | $locale = get_user_locale(); |
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | $locale = apply_filters( 'plugin_locale', $locale, 'gravityview' ); |
| 252 | - $mofile = $this->dir( 'languages' ) . '/gravityview-'. $locale .'.mo'; |
|
| 252 | + $mofile = $this->dir( 'languages' ) . '/gravityview-' . $locale . '.mo'; |
|
| 253 | 253 | load_textdomain( 'gravityview', $mofile ); |
| 254 | 254 | } |
| 255 | 255 | } |
@@ -382,7 +382,7 @@ discard block |
||
| 382 | 382 | */ |
| 383 | 383 | public function is_compatible_wordpress( $version = null ) { |
| 384 | 384 | |
| 385 | - if( ! $version ) { |
|
| 385 | + if ( ! $version ) { |
|
| 386 | 386 | $version = self::$min_wp_version; |
| 387 | 387 | } |
| 388 | 388 | |
@@ -423,8 +423,8 @@ discard block |
||
| 423 | 423 | * @return string The version of PHP. |
| 424 | 424 | */ |
| 425 | 425 | private function get_php_version() { |
| 426 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ? |
|
| 427 | - $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion(); |
|
| 426 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ? |
|
| 427 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion(); |
|
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | /** |
@@ -435,8 +435,8 @@ discard block |
||
| 435 | 435 | * @return string The version of WordPress. |
| 436 | 436 | */ |
| 437 | 437 | private function get_wordpress_version() { |
| 438 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ? |
|
| 439 | - $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version']; |
|
| 438 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ? |
|
| 439 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ]; |
|
| 440 | 440 | } |
| 441 | 441 | |
| 442 | 442 | /** |
@@ -447,13 +447,13 @@ discard block |
||
| 447 | 447 | * @return string|null The version of Gravity Forms or null if inactive. |
| 448 | 448 | */ |
| 449 | 449 | private function get_gravityforms_version() { |
| 450 | - if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) { |
|
| 450 | + if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) { |
|
| 451 | 451 | gravityview()->log->error( 'Gravity Forms is inactive or not installed.' ); |
| 452 | 452 | return null; |
| 453 | 453 | } |
| 454 | 454 | |
| 455 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ? |
|
| 456 | - $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version; |
|
| 455 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ? |
|
| 456 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version; |
|
| 457 | 457 | } |
| 458 | 458 | |
| 459 | 459 | /** |
@@ -509,9 +509,9 @@ discard block |
||
| 509 | 509 | $tables = array(); |
| 510 | 510 | |
| 511 | 511 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) ) { |
| 512 | - $tables []= \GFFormsModel::get_entry_meta_table_name(); |
|
| 512 | + $tables [ ] = \GFFormsModel::get_entry_meta_table_name(); |
|
| 513 | 513 | } |
| 514 | - $tables []= \GFFormsModel::get_lead_meta_table_name(); |
|
| 514 | + $tables [ ] = \GFFormsModel::get_lead_meta_table_name(); |
|
| 515 | 515 | |
| 516 | 516 | foreach ( $tables as $meta_table ) { |
| 517 | 517 | $sql = " |
@@ -529,13 +529,13 @@ discard block |
||
| 529 | 529 | $tables = array(); |
| 530 | 530 | |
| 531 | 531 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_notes_table_name' ) ) { |
| 532 | - $tables[] = \GFFormsModel::get_entry_notes_table_name(); |
|
| 532 | + $tables[ ] = \GFFormsModel::get_entry_notes_table_name(); |
|
| 533 | 533 | } |
| 534 | 534 | |
| 535 | - $tables[] = \GFFormsModel::get_lead_notes_table_name(); |
|
| 535 | + $tables[ ] = \GFFormsModel::get_lead_notes_table_name(); |
|
| 536 | 536 | |
| 537 | - $disapproved = __('Disapproved the Entry for GravityView', 'gravityview'); |
|
| 538 | - $approved = __('Approved the Entry for GravityView', 'gravityview'); |
|
| 537 | + $disapproved = __( 'Disapproved the Entry for GravityView', 'gravityview' ); |
|
| 538 | + $approved = __( 'Approved the Entry for GravityView', 'gravityview' ); |
|
| 539 | 539 | |
| 540 | 540 | $suppress = $wpdb->suppress_errors(); |
| 541 | 541 | foreach ( $tables as $notes_table ) { |
@@ -180,13 +180,13 @@ discard block |
||
| 180 | 180 | $tab = wp_parse_args( $tab_settings, $tab_defaults ); |
| 181 | 181 | |
| 182 | 182 | // Force the screen to be GravityView |
| 183 | - $tab['screen'] = 'gravityview'; |
|
| 183 | + $tab[ 'screen' ] = 'gravityview'; |
|
| 184 | 184 | |
| 185 | 185 | if ( class_exists( 'GravityView_Metabox_Tab' ) ) { |
| 186 | - $metabox = new \GravityView_Metabox_Tab( $tab['id'], $tab['title'], $tab['file'], $tab['icon-class'], $tab['callback'], $tab['callback_args'] ); |
|
| 186 | + $metabox = new \GravityView_Metabox_Tab( $tab[ 'id' ], $tab[ 'title' ], $tab[ 'file' ], $tab[ 'icon-class' ], $tab[ 'callback' ], $tab[ 'callback_args' ] ); |
|
| 187 | 187 | \GravityView_Metabox_Tabs::add( $metabox ); |
| 188 | 188 | } else { |
| 189 | - add_meta_box( 'gravityview_' . $tab['id'], $tab['title'], $tab['callback'], $tab['screen'], $tab['context'], $tab['priority'] ); |
|
| 189 | + add_meta_box( 'gravityview_' . $tab[ 'id' ], $tab[ 'title' ], $tab[ 'callback' ], $tab[ 'screen' ], $tab[ 'context' ], $tab[ 'priority' ] ); |
|
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | 192 | |
@@ -211,14 +211,14 @@ discard block |
||
| 211 | 211 | */ |
| 212 | 212 | protected function is_extension_supported() { |
| 213 | 213 | |
| 214 | - self::$is_compatible = is_array( self::$is_compatible ) ? self::$is_compatible : array( get_called_class() => (bool) self::$is_compatible ); |
|
| 214 | + self::$is_compatible = is_array( self::$is_compatible ) ? self::$is_compatible : array( get_called_class() => (bool)self::$is_compatible ); |
|
| 215 | 215 | |
| 216 | 216 | if ( ! function_exists( 'gravityview' ) ) { |
| 217 | 217 | $message = sprintf( __( 'Could not activate the %s Extension; GravityView is not active.', 'gravityview' ), esc_html( $this->_title ) ); |
| 218 | - } else if ( false === version_compare( Plugin::$version, $this->_min_gravityview_version , ">=" ) ) { |
|
| 219 | - $message = sprintf( __( 'The %s Extension requires GravityView Version %s or newer.', 'gravityview' ), esc_html( $this->_title ), '<tt>'.$this->_min_gravityview_version.'</tt>' ); |
|
| 220 | - } else if ( isset( $this->_min_php_version ) && false === version_compare( phpversion(), $this->_min_php_version , ">=" ) ) { |
|
| 221 | - $message = sprintf( __( 'The %s Extension requires PHP Version %s or newer. Please ask your host to upgrade your server\'s PHP.', 'gravityview' ), esc_html( $this->_title ), '<tt>'.$this->_min_php_version.'</tt>' ); |
|
| 218 | + } else if ( false === version_compare( Plugin::$version, $this->_min_gravityview_version, ">=" ) ) { |
|
| 219 | + $message = sprintf( __( 'The %s Extension requires GravityView Version %s or newer.', 'gravityview' ), esc_html( $this->_title ), '<tt>' . $this->_min_gravityview_version . '</tt>' ); |
|
| 220 | + } else if ( isset( $this->_min_php_version ) && false === version_compare( phpversion(), $this->_min_php_version, ">=" ) ) { |
|
| 221 | + $message = sprintf( __( 'The %s Extension requires PHP Version %s or newer. Please ask your host to upgrade your server\'s PHP.', 'gravityview' ), esc_html( $this->_title ), '<tt>' . $this->_min_php_version . '</tt>' ); |
|
| 222 | 222 | } else if ( ! empty( $this->_max_gravityview_version ) && false === version_compare( $this->_max_gravityview_version, Plugin::$version, ">" ) ) { |
| 223 | 223 | $message = sprintf( __( 'The %s Extension is not compatible with this version of GravityView. Please update the Extension to the latest version.', 'gravityview' ), esc_html( $this->_title ) ); |
| 224 | 224 | } else { |
@@ -258,12 +258,12 @@ discard block |
||
| 258 | 258 | |
| 259 | 259 | $locale = get_locale(); |
| 260 | 260 | |
| 261 | - if ( function_exists('get_user_locale') && is_admin() ) { |
|
| 261 | + if ( function_exists( 'get_user_locale' ) && is_admin() ) { |
|
| 262 | 262 | $locale = get_user_locale(); |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | // Traditional WordPress plugin locale filter |
| 266 | - $locale = apply_filters( 'plugin_locale', $locale, $this->_text_domain ); |
|
| 266 | + $locale = apply_filters( 'plugin_locale', $locale, $this->_text_domain ); |
|
| 267 | 267 | |
| 268 | 268 | $mofile = sprintf( '%1$s-%2$s.mo', $this->_text_domain, $locale ); |
| 269 | 269 | |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | */ |
| 291 | 291 | public function settings() { |
| 292 | 292 | // If doing ajax, get outta here |
| 293 | - if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { |
|
| 293 | + if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { |
|
| 294 | 294 | return; |
| 295 | 295 | } |
| 296 | 296 | |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | // Don't update if invalid license. |
| 304 | - if ( false === $license || empty( $license['status'] ) || strtolower( $license['status'] ) !== 'valid' ) { |
|
| 304 | + if ( false === $license || empty( $license[ 'status' ] ) || strtolower( $license[ 'status' ] ) !== 'valid' ) { |
|
| 305 | 305 | return; |
| 306 | 306 | } |
| 307 | 307 | |
@@ -310,9 +310,9 @@ discard block |
||
| 310 | 310 | $this->_path, |
| 311 | 311 | array( |
| 312 | 312 | 'version' => $this->_version, // current version number |
| 313 | - 'license' => $license['license'], |
|
| 313 | + 'license' => $license[ 'license' ], |
|
| 314 | 314 | 'item_id' => $this->_item_id, // The ID of the download on _remote_update_url |
| 315 | - 'item_name' => $this->_title, // name of this plugin |
|
| 315 | + 'item_name' => $this->_title, // name of this plugin |
|
| 316 | 316 | 'author' => strip_tags( $this->_author ) // author of this plugin |
| 317 | 317 | ) |
| 318 | 318 | ); |
@@ -341,16 +341,16 @@ discard block |
||
| 341 | 341 | */ |
| 342 | 342 | public static function add_notice( $notice = array() ) { |
| 343 | 343 | |
| 344 | - if ( is_array( $notice ) && empty( $notice['message'] ) ) { |
|
| 344 | + if ( is_array( $notice ) && empty( $notice[ 'message' ] ) ) { |
|
| 345 | 345 | gravityview()->log->error( 'Notice not set', array( 'data' => $notice ) ); |
| 346 | 346 | return; |
| 347 | 347 | } else if ( is_string( $notice ) ) { |
| 348 | 348 | $notice = array( 'message' => $notice ); |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | - $notice['class'] = empty( $notice['class'] ) ? 'error' : $notice['class']; |
|
| 351 | + $notice[ 'class' ] = empty( $notice[ 'class' ] ) ? 'error' : $notice[ 'class' ]; |
|
| 352 | 352 | |
| 353 | - self::$admin_notices []= $notice; |
|
| 353 | + self::$admin_notices [ ] = $notice; |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | /** |
@@ -364,8 +364,8 @@ discard block |
||
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | foreach ( self::$admin_notices as $key => $notice ) { |
| 367 | - echo '<div id="message" class="'. esc_attr( $notice['class'] ).'">'; |
|
| 368 | - echo wpautop( $notice['message'] ); |
|
| 367 | + echo '<div id="message" class="' . esc_attr( $notice[ 'class' ] ) . '">'; |
|
| 368 | + echo wpautop( $notice[ 'message' ] ); |
|
| 369 | 369 | echo '<div class="clear"></div>'; |
| 370 | 370 | echo '</div>'; |
| 371 | 371 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | |
| 45 | 45 | |
| 46 | 46 | /** Entry does not belong to this view. */ |
| 47 | - if ( $view->form && $view->form->ID != $entry['form_id'] ) { |
|
| 47 | + if ( $view->form && $view->form->ID != $entry[ 'form_id' ] ) { |
|
| 48 | 48 | gravityview()->log->error( 'The requested entry does not belong to this View. Entry #{entry_id}, #View {view_id}', array( 'entry_id' => $entry->ID, 'view_id' => $view->ID ) ); |
| 49 | 49 | return null; |
| 50 | 50 | } |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | $self = new self(); |
| 56 | 56 | $self->form = $form; |
| 57 | 57 | |
| 58 | - $self->ID = intval( $self->form['id'] ); |
|
| 58 | + $self->ID = intval( $self->form[ 'id' ] ); |
|
| 59 | 59 | |
| 60 | 60 | return $self; |
| 61 | 61 | } |
@@ -70,13 +70,13 @@ discard block |
||
| 70 | 70 | * @return \GV\GF_Form|null An instance of this form or null if not found. |
| 71 | 71 | */ |
| 72 | 72 | public static function from_form( $form ) { |
| 73 | - if ( empty( $form['id'] ) ) { |
|
| 73 | + if ( empty( $form[ 'id' ] ) ) { |
|
| 74 | 74 | return null; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | $self = new self(); |
| 78 | 78 | $self->form = $form; |
| 79 | - $self->ID = $self->form['id']; |
|
| 79 | + $self->ID = $self->form[ 'id' ]; |
|
| 80 | 80 | |
| 81 | 81 | return $self; |
| 82 | 82 | } |
@@ -119,11 +119,11 @@ discard block |
||
| 119 | 119 | |
| 120 | 120 | /** The offset and limit */ |
| 121 | 121 | if ( ! empty( $offset->limit ) ) { |
| 122 | - $paging['page_size'] = $offset->limit; |
|
| 122 | + $paging[ 'page_size' ] = $offset->limit; |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | if ( ! empty( $offset->offset ) ) { |
| 126 | - $paging['offset'] = $offset->offset; |
|
| 126 | + $paging[ 'offset' ] = $offset->offset; |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | foreach ( \GFAPI::get_entries( $form->ID, $search_criteria, $sorting, $paging ) as $entry ) { |
@@ -180,8 +180,8 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | public function get_fields() { |
| 182 | 182 | $fields = array(); |
| 183 | - foreach ( $this['fields'] as $field ) { |
|
| 184 | - foreach ( empty( $field['inputs'] ) ? array( $field['id'] ) : wp_list_pluck( $field['inputs'], 'id' ) as $id ) { |
|
| 183 | + foreach ( $this[ 'fields' ] as $field ) { |
|
| 184 | + foreach ( empty( $field[ 'inputs' ] ) ? array( $field[ 'id' ] ) : wp_list_pluck( $field[ 'inputs' ], 'id' ) as $id ) { |
|
| 185 | 185 | if ( is_numeric( $id ) ) { |
| 186 | 186 | $fields[ $id ] = self::get_field( $this, $id ); |
| 187 | 187 | } else { |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | * @return bool Whether the offset exists or not. |
| 219 | 219 | */ |
| 220 | 220 | public function offsetExists( $offset ) { |
| 221 | - return isset( $this->form[$offset] ); |
|
| 221 | + return isset( $this->form[ $offset ] ); |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | /** |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | * @return mixed The value of the requested form data. |
| 234 | 234 | */ |
| 235 | 235 | public function offsetGet( $offset ) { |
| 236 | - return $this->form[$offset]; |
|
| 236 | + return $this->form[ $offset ]; |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | /** |
@@ -37,8 +37,8 @@ discard block |
||
| 37 | 37 | 'detail' => null, |
| 38 | 38 | ) ); |
| 39 | 39 | |
| 40 | - if ( ! $view_id = $atts['id'] ? : $atts['view_id'] ) { |
|
| 41 | - if ( $atts['detail'] && $view = $request->is_view() ) { |
|
| 40 | + if ( ! $view_id = $atts[ 'id' ] ?: $atts[ 'view_id' ] ) { |
|
| 41 | + if ( $atts[ 'detail' ] && $view = $request->is_view() ) { |
|
| 42 | 42 | $view_id = $view->ID; |
| 43 | 43 | } |
| 44 | 44 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | return get_the_password_form( $view->ID ); |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - if ( ! $view->form ) { |
|
| 83 | + if ( ! $view->form ) { |
|
| 84 | 84 | gravityview()->log->notice( 'View #{id} has no form attached to it.', array( 'id' => $view->ID ) ); |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -101,12 +101,12 @@ discard block |
||
| 101 | 101 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
| 104 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
| 105 | 105 | |
| 106 | 106 | /** |
| 107 | 107 | * View details. |
| 108 | 108 | */ |
| 109 | - if ( $atts['detail'] ) { |
|
| 109 | + if ( $atts[ 'detail' ] ) { |
|
| 110 | 110 | return $this->detail( $view, $entries, $atts ); |
| 111 | 111 | |
| 112 | 112 | /** |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | return ''; |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - if ( $entry['status'] != 'active' ) { |
|
| 125 | + if ( $entry[ 'status' ] != 'active' ) { |
|
| 126 | 126 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
| 127 | 127 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 128 | 128 | } |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
| 136 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 136 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 137 | 137 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
| 138 | 138 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 139 | 139 | } |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | return ''; |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - if ( $entry['status'] != 'active' ) { |
|
| 156 | + if ( $entry[ 'status' ] != 'active' ) { |
|
| 157 | 157 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
| 158 | 158 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 159 | 159 | } |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
| 167 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 167 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 168 | 168 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
| 169 | 169 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 170 | 170 | } |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | |
| 173 | 173 | $error = \GVCommon::check_entry_display( $entry->as_entry() ); |
| 174 | 174 | |
| 175 | - if( is_wp_error( $error ) ) { |
|
| 175 | + if ( is_wp_error( $error ) ) { |
|
| 176 | 176 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing: {message}', array( 'entry_id' => $entry->ID, 'message' => $error->get_error_message() ) ); |
| 177 | 177 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 178 | 178 | } |
@@ -188,10 +188,10 @@ discard block |
||
| 188 | 188 | |
| 189 | 189 | // Mock the request with the actual View, not the global one |
| 190 | 190 | $mock_request = new \GV\Mock_Request(); |
| 191 | - $mock_request->returns['is_view'] = $view; |
|
| 192 | - $mock_request->returns['is_entry'] = $request->is_entry(); |
|
| 193 | - $mock_request->returns['is_edit_entry'] = $request->is_edit_entry(); |
|
| 194 | - $mock_request->returns['is_search'] = $request->is_search(); |
|
| 191 | + $mock_request->returns[ 'is_view' ] = $view; |
|
| 192 | + $mock_request->returns[ 'is_entry' ] = $request->is_entry(); |
|
| 193 | + $mock_request->returns[ 'is_edit_entry' ] = $request->is_edit_entry(); |
|
| 194 | + $mock_request->returns[ 'is_search' ] = $request->is_search(); |
|
| 195 | 195 | |
| 196 | 196 | $request = $mock_request; |
| 197 | 197 | } |
@@ -227,16 +227,16 @@ discard block |
||
| 227 | 227 | $filtered_atts = shortcode_atts( $supported_atts, $passed_atts, 'gravityview' ); |
| 228 | 228 | |
| 229 | 229 | // Only keep the passed attributes after making sure that they're valid pairs |
| 230 | - $filtered_atts = array_intersect_key( (array) $passed_atts, $filtered_atts ); |
|
| 230 | + $filtered_atts = array_intersect_key( (array)$passed_atts, $filtered_atts ); |
|
| 231 | 231 | |
| 232 | 232 | $atts = array(); |
| 233 | 233 | |
| 234 | - foreach( $filtered_atts as $key => $passed_value ) { |
|
| 234 | + foreach ( $filtered_atts as $key => $passed_value ) { |
|
| 235 | 235 | |
| 236 | 236 | // Allow using GravityView merge tags in shortcode attributes, like {get} and {created_by} |
| 237 | 237 | $passed_value = \GravityView_Merge_Tags::replace_variables( $passed_value ); |
| 238 | 238 | |
| 239 | - switch( $defaults[ $key ]['type'] ) { |
|
| 239 | + switch ( $defaults[ $key ][ 'type' ] ) { |
|
| 240 | 240 | |
| 241 | 241 | /** |
| 242 | 242 | * Make sure number fields are numeric. |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | * @see http://php.net/manual/en/function.is-numeric.php#107326 |
| 245 | 245 | */ |
| 246 | 246 | case 'number': |
| 247 | - if( is_numeric( $passed_value ) ) { |
|
| 247 | + if ( is_numeric( $passed_value ) ) { |
|
| 248 | 248 | $atts[ $key ] = ( $passed_value + 0 ); |
| 249 | 249 | } |
| 250 | 250 | break; |
@@ -259,8 +259,8 @@ discard block |
||
| 259 | 259 | */ |
| 260 | 260 | case 'select': |
| 261 | 261 | case 'radio': |
| 262 | - $options = isset( $defaults[ $key ]['choices'] ) ? $defaults[ $key ]['choices'] : $defaults[ $key ]['options']; |
|
| 263 | - if( in_array( $passed_value, array_keys( $options ) ) ) { |
|
| 262 | + $options = isset( $defaults[ $key ][ 'choices' ] ) ? $defaults[ $key ][ 'choices' ] : $defaults[ $key ][ 'options' ]; |
|
| 263 | + if ( in_array( $passed_value, array_keys( $options ) ) ) { |
|
| 264 | 264 | $atts[ $key ] = $passed_value; |
| 265 | 265 | } |
| 266 | 266 | break; |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | } |
| 273 | 273 | } |
| 274 | 274 | |
| 275 | - $atts['detail'] = \GV\Utils::get( $passed_atts, 'detail', null ); |
|
| 275 | + $atts[ 'detail' ] = \GV\Utils::get( $passed_atts, 'detail', null ); |
|
| 276 | 276 | |
| 277 | 277 | return $atts; |
| 278 | 278 | } |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | private function detail( $view, $entries, $atts ) { |
| 290 | 290 | $output = ''; |
| 291 | 291 | |
| 292 | - switch ( $key = $atts['detail'] ): |
|
| 292 | + switch ( $key = $atts[ 'detail' ] ): |
|
| 293 | 293 | case 'total_entries': |
| 294 | 294 | $output = number_format_i18n( $entries->total() ); |
| 295 | 295 | break; |
@@ -105,14 +105,14 @@ discard block |
||
| 105 | 105 | * @return \GV\GF_Entry|null An instance of this entry or null if not found. |
| 106 | 106 | */ |
| 107 | 107 | public static function from_entry( $entry ) { |
| 108 | - if ( empty( $entry['id'] ) ) { |
|
| 108 | + if ( empty( $entry[ 'id' ] ) ) { |
|
| 109 | 109 | return null; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | $self = new self(); |
| 113 | 113 | $self->entry = $entry; |
| 114 | 114 | |
| 115 | - $self->ID = $self->entry['id']; |
|
| 115 | + $self->ID = $self->entry[ 'id' ]; |
|
| 116 | 116 | $self->slug = \GravityView_API::get_entry_slug( $self->ID, $self->as_entry() ); |
| 117 | 117 | |
| 118 | 118 | return $self; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | * @return bool Whether the offset exists or not. |
| 128 | 128 | */ |
| 129 | 129 | public function offsetExists( $offset ) { |
| 130 | - return isset( $this->entry[$offset] ); |
|
| 130 | + return isset( $this->entry[ $offset ] ); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | * @return mixed The value of the requested entry data. |
| 143 | 143 | */ |
| 144 | 144 | public function offsetGet( $offset ) { |
| 145 | - return $this->entry[$offset]; |
|
| 145 | + return $this->entry[ $offset ]; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | $supports = array( 'title', 'revisions' ); |
| 109 | 109 | |
| 110 | 110 | if ( $is_hierarchical ) { |
| 111 | - $supports[] = 'page-attributes'; |
|
| 111 | + $supports[ ] = 'page-attributes'; |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -288,13 +288,13 @@ discard block |
||
| 288 | 288 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 289 | 289 | } |
| 290 | 290 | |
| 291 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
| 291 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
| 292 | 292 | |
| 293 | 293 | /** |
| 294 | 294 | * Editing a single entry. |
| 295 | 295 | */ |
| 296 | 296 | if ( $entry = $request->is_edit_entry() ) { |
| 297 | - if ( $entry['status'] != 'active' ) { |
|
| 297 | + if ( $entry[ 'status' ] != 'active' ) { |
|
| 298 | 298 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
| 299 | 299 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 300 | 300 | } |
@@ -305,7 +305,7 @@ discard block |
||
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
| 308 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 308 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 309 | 309 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
| 310 | 310 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 311 | 311 | } |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | * Viewing a single entry. |
| 319 | 319 | */ |
| 320 | 320 | } else if ( $entry = $request->is_entry() ) { |
| 321 | - if ( $entry['status'] != 'active' ) { |
|
| 321 | + if ( $entry[ 'status' ] != 'active' ) { |
|
| 322 | 322 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
| 323 | 323 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 324 | 324 | } |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | } |
| 330 | 330 | |
| 331 | 331 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
| 332 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 332 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 333 | 333 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
| 334 | 334 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 335 | 335 | } |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | |
| 338 | 338 | $error = \GVCommon::check_entry_display( $entry->as_entry() ); |
| 339 | 339 | |
| 340 | - if( is_wp_error( $error ) ) { |
|
| 340 | + if ( is_wp_error( $error ) ) { |
|
| 341 | 341 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing: {message}', array( 'entry_id' => $entry->ID, 'message' => $error->get_error_message() ) ); |
| 342 | 342 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
| 343 | 343 | } |
@@ -384,11 +384,11 @@ discard block |
||
| 384 | 384 | if ( ! $view->form ) { |
| 385 | 385 | gravityview()->log->error( 'View #{view_id} tried attaching non-existent Form #{form_id} to it.', array( |
| 386 | 386 | 'view_id' => $view->ID, |
| 387 | - 'form_id' => $view->_gravityview_form_id ? : 0, |
|
| 387 | + 'form_id' => $view->_gravityview_form_id ?: 0, |
|
| 388 | 388 | ) ); |
| 389 | 389 | } else if ( gravityview()->plugin->supports( Plugin::FEATURE_JOINS ) ) { |
| 390 | 390 | /** And the connected joins. */ |
| 391 | - foreach( (array)get_post_meta( $view->ID, '_gravityview_form_joins', true ) as $_join ) { |
|
| 391 | + foreach ( (array)get_post_meta( $view->ID, '_gravityview_form_joins', true ) as $_join ) { |
|
| 392 | 392 | if ( ! is_array( $_join ) || count( $_join ) != 4 ) { |
| 393 | 393 | continue; |
| 394 | 394 | } |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | $join_column = is_numeric( $join_column ) ? GF_Field::by_id( $join, $join_column ) : Internal_Field( $join_column ); |
| 401 | 401 | $join_on_column = is_numeric( $join_on_column ) ? GF_Field::by_id( $join_on, $join_on_column ) : Internal_Field( $join_on_column ); |
| 402 | 402 | |
| 403 | - $view->joins []= new Join( $join, $join_column, $join_on, $join_on_column ); |
|
| 403 | + $view->joins [ ] = new Join( $join, $join_column, $join_on, $join_on_column ); |
|
| 404 | 404 | } |
| 405 | 405 | } |
| 406 | 406 | |
@@ -624,28 +624,27 @@ discard block |
||
| 624 | 624 | * @todo: Stop using _frontend and use something like $request->get_search_criteria() instead |
| 625 | 625 | */ |
| 626 | 626 | $parameters = \GravityView_frontend::get_view_entries_parameters( $this->settings->as_atts(), $this->form->ID ); |
| 627 | - $parameters['context_view_id'] = $this->ID; |
|
| 627 | + $parameters[ 'context_view_id' ] = $this->ID; |
|
| 628 | 628 | $parameters = \GVCommon::calculate_get_entries_criteria( $parameters, $this->form->ID ); |
| 629 | 629 | |
| 630 | 630 | if ( $request instanceof REST\Request ) { |
| 631 | 631 | $atts = $this->settings->as_atts(); |
| 632 | 632 | $paging_parameters = wp_parse_args( $request->get_paging(), array( |
| 633 | - 'paging' => array( 'page_size' => $atts['page_size'] ), |
|
| 633 | + 'paging' => array( 'page_size' => $atts[ 'page_size' ] ), |
|
| 634 | 634 | ) ); |
| 635 | - $parameters['paging'] = $paging_parameters['paging']; |
|
| 635 | + $parameters[ 'paging' ] = $paging_parameters[ 'paging' ]; |
|
| 636 | 636 | } |
| 637 | 637 | |
| 638 | - $page = Utils::get( $parameters['paging'], 'current_page' ) ? |
|
| 639 | - : ( ( ( $parameters['paging']['offset'] - $this->settings->get( 'offset' ) ) / $parameters['paging']['page_size'] ) + 1 ); |
|
| 638 | + $page = Utils::get( $parameters[ 'paging' ], 'current_page' ) ?: ( ( ( $parameters[ 'paging' ][ 'offset' ] - $this->settings->get( 'offset' ) ) / $parameters[ 'paging' ][ 'page_size' ] ) + 1 ); |
|
| 640 | 639 | |
| 641 | 640 | if ( gravityview()->plugin->supports( Plugin::FEATURE_GFQUERY ) ) { |
| 642 | 641 | /** |
| 643 | 642 | * New \GF_Query stuff :) |
| 644 | 643 | */ |
| 645 | - $query = new \GF_Query( $this->form->ID, $parameters['search_criteria'], $parameters['sorting'] ); |
|
| 644 | + $query = new \GF_Query( $this->form->ID, $parameters[ 'search_criteria' ], $parameters[ 'sorting' ] ); |
|
| 646 | 645 | |
| 647 | - $query->limit( $parameters['paging']['page_size'] ) |
|
| 648 | - ->offset( ( ( $page - 1 ) * $parameters['paging']['page_size'] ) + $this->settings->get( 'offset' ) ); |
|
| 646 | + $query->limit( $parameters[ 'paging' ][ 'page_size' ] ) |
|
| 647 | + ->offset( ( ( $page - 1 ) * $parameters[ 'paging' ][ 'page_size' ] ) + $this->settings->get( 'offset' ) ); |
|
| 649 | 648 | |
| 650 | 649 | /** |
| 651 | 650 | * Any joins? |
@@ -685,15 +684,15 @@ discard block |
||
| 685 | 684 | } ); |
| 686 | 685 | } else { |
| 687 | 686 | $entries = $this->form->entries |
| 688 | - ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters['search_criteria'] ) ) |
|
| 687 | + ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters[ 'search_criteria' ] ) ) |
|
| 689 | 688 | ->offset( $this->settings->get( 'offset' ) ) |
| 690 | - ->limit( $parameters['paging']['page_size'] ) |
|
| 689 | + ->limit( $parameters[ 'paging' ][ 'page_size' ] ) |
|
| 691 | 690 | ->page( $page ); |
| 692 | 691 | |
| 693 | - if ( ! empty( $parameters['sorting'] ) && ! empty( $parameters['sorting']['key'] ) ) { |
|
| 692 | + if ( ! empty( $parameters[ 'sorting' ] ) && ! empty( $parameters[ 'sorting' ][ 'key' ] ) ) { |
|
| 694 | 693 | $field = new \GV\Field(); |
| 695 | - $field->ID = $parameters['sorting']['key']; |
|
| 696 | - $direction = strtolower( $parameters['sorting']['direction'] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
| 694 | + $field->ID = $parameters[ 'sorting' ][ 'key' ]; |
|
| 695 | + $direction = strtolower( $parameters[ 'sorting' ][ 'direction' ] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
| 697 | 696 | $entries = $entries->sort( new \GV\Entry_Sort( $field, $direction ) ); |
| 698 | 697 | } |
| 699 | 698 | } |