@@ -50,26 +50,26 @@ |
||
| 50 | 50 | |
| 51 | 51 | if ( ! empty( $quiz_fields ) ) { |
| 52 | 52 | |
| 53 | - $fields['gquiz_score'] = array( |
|
| 53 | + $fields[ 'gquiz_score' ] = array( |
|
| 54 | 54 | 'label' => __( 'Quiz Score Total', 'gravityview' ), |
| 55 | 55 | 'type' => 'quiz_score', |
| 56 | 56 | 'desc' => __( 'Displays the number of correct Quiz answers the user submitted.', 'gravityview' ), |
| 57 | 57 | 'icon' => 'dashicons-forms', |
| 58 | 58 | ); |
| 59 | - $fields['gquiz_percent'] = array( |
|
| 59 | + $fields[ 'gquiz_percent' ] = array( |
|
| 60 | 60 | 'label' => __( 'Quiz Percentage Grade', 'gravityview' ), |
| 61 | 61 | 'type' => 'quiz_percent', |
| 62 | 62 | 'desc' => __( 'Displays the percentage of correct Quiz answers the user submitted.', 'gravityview' ), |
| 63 | 63 | 'icon' => 'dashicons-forms', |
| 64 | 64 | ); |
| 65 | - $fields['gquiz_grade'] = array( |
|
| 65 | + $fields[ 'gquiz_grade' ] = array( |
|
| 66 | 66 | /* translators: This is a field type used by the Gravity Forms Quiz Addon. "A" is 100-90, "B" is 89-80, "C" is 79-70, etc. */ |
| 67 | 67 | 'label' => __( 'Quiz Letter Grade', 'gravityview' ), |
| 68 | 68 | 'type' => 'quiz_grade', |
| 69 | 69 | 'desc' => __( 'Displays the Grade the user achieved based on Letter Grading configured in the Quiz Settings.', 'gravityview' ), |
| 70 | 70 | 'icon' => 'dashicons-forms', |
| 71 | 71 | ); |
| 72 | - $fields['gquiz_is_pass'] = array( |
|
| 72 | + $fields[ 'gquiz_is_pass' ] = array( |
|
| 73 | 73 | 'label' => __( 'Quiz Pass/Fail', 'gravityview' ), |
| 74 | 74 | 'type' => 'quiz_is_pass', |
| 75 | 75 | 'desc' => __( 'Displays either Passed or Failed based on the Pass/Fail settings configured in the Quiz Settings.', 'gravityview' ), |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | /** |
| 82 | 82 | * @see RGFormsModel::update_lead_property() Trigger when any entry property changes |
| 83 | 83 | */ |
| 84 | - foreach( $this->lead_db_columns as $column ) { |
|
| 84 | + foreach ( $this->lead_db_columns as $column ) { |
|
| 85 | 85 | add_action( 'gform_update_' . $column, array( $this, 'entry_status_changed' ), 10, 3 ); |
| 86 | 86 | } |
| 87 | 87 | |
@@ -112,9 +112,9 @@ discard block |
||
| 112 | 112 | return; |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{lead_id} was deleted', array( 'form_id' => $entry['form_id'], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
| 115 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{lead_id} was deleted', array( 'form_id' => $entry[ 'form_id' ], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
| 116 | 116 | |
| 117 | - $this->blacklist_add( $entry['form_id'] ); |
|
| 117 | + $this->blacklist_add( $entry[ 'form_id' ] ); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |
@@ -127,9 +127,9 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | public function entry_updated( $form, $lead_id ) { |
| 129 | 129 | |
| 130 | - gravityview()->log->debug(' adding form {form_id} to blacklist because entry #{entry_id} was updated', array( 'form_id' => $form['id'], 'entry_id' => $lead_id ) ); |
|
| 130 | + gravityview()->log->debug( ' adding form {form_id} to blacklist because entry #{entry_id} was updated', array( 'form_id' => $form[ 'id' ], 'entry_id' => $lead_id ) ); |
|
| 131 | 131 | |
| 132 | - $this->blacklist_add( $form['id'] ); |
|
| 132 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | /** |
@@ -144,9 +144,9 @@ discard block |
||
| 144 | 144 | */ |
| 145 | 145 | public function entry_created( $entry, $form ) { |
| 146 | 146 | |
| 147 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was created', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
| 147 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was created', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
| 148 | 148 | |
| 149 | - $this->blacklist_add( $form['id'] ); |
|
| 149 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | /** |
@@ -162,9 +162,9 @@ discard block |
||
| 162 | 162 | return; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was added', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
| 165 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was added', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
| 166 | 166 | |
| 167 | - $this->blacklist_add( $form['id'] ); |
|
| 167 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | /** |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | // Normally just one form, but supports multiple forms |
| 184 | 184 | // |
| 185 | 185 | // Array of IDs 12, 5, 14 would result in `f:12-f:5-f:14` |
| 186 | - $forms = 'f:' . implode( '-f:', (array) $form_ids ); |
|
| 186 | + $forms = 'f:' . implode( '-f:', (array)$form_ids ); |
|
| 187 | 187 | |
| 188 | 188 | // Prefix for transient keys |
| 189 | 189 | // Now the prefix would be: `gv-cache-f:12-f:5-f:14-` |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | $form_ids = is_array( $form_ids ) ? $form_ids : array( $form_ids ); |
| 236 | 236 | |
| 237 | 237 | // Add the passed form IDs |
| 238 | - $blacklist = array_merge( (array) $blacklist, $form_ids ); |
|
| 238 | + $blacklist = array_merge( (array)$blacklist, $form_ids ); |
|
| 239 | 239 | |
| 240 | 240 | // Don't duplicate |
| 241 | 241 | $blacklist = array_unique( $blacklist ); |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | |
| 267 | 267 | $blacklist = get_option( self::BLACKLIST_OPTION_NAME, array() ); |
| 268 | 268 | |
| 269 | - $updated_list = array_diff( $blacklist, (array) $form_ids ); |
|
| 269 | + $updated_list = array_diff( $blacklist, (array)$form_ids ); |
|
| 270 | 270 | |
| 271 | 271 | gravityview()->log->debug( 'Removing form IDs from cache blacklist', array( 'data' => array( |
| 272 | 272 | '$form_ids' => $form_ids, |
@@ -299,7 +299,7 @@ discard block |
||
| 299 | 299 | return false; |
| 300 | 300 | } |
| 301 | 301 | |
| 302 | - foreach ( (array) $form_ids as $form_id ) { |
|
| 302 | + foreach ( (array)$form_ids as $form_id ) { |
|
| 303 | 303 | |
| 304 | 304 | if ( in_array( $form_id, $blacklist ) ) { |
| 305 | 305 | |
@@ -373,7 +373,7 @@ discard block |
||
| 373 | 373 | * @filter `gravityview_cache_time_{$filter_name}` Modify the cache time for a type of cache |
| 374 | 374 | * @param int $time_in_seconds Default: `DAY_IN_SECONDS` |
| 375 | 375 | */ |
| 376 | - $cache_time = (int) apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
| 376 | + $cache_time = (int)apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
| 377 | 377 | |
| 378 | 378 | gravityview()->log->debug( 'Setting cache with transient key {key} for {cache_time} seconds', array( 'key' => $this->key, 'cache_time' => $cache_time ) ); |
| 379 | 379 | |
@@ -409,7 +409,7 @@ discard block |
||
| 409 | 409 | return; |
| 410 | 410 | } |
| 411 | 411 | |
| 412 | - foreach ( (array) $form_ids as $form_id ) { |
|
| 412 | + foreach ( (array)$form_ids as $form_id ) { |
|
| 413 | 413 | |
| 414 | 414 | $key = '_transient_gv-cache-'; |
| 415 | 415 | |
@@ -520,7 +520,7 @@ discard block |
||
| 520 | 520 | public function use_cache() { |
| 521 | 521 | |
| 522 | 522 | // Exit early if debugging (unless running PHPUnit) |
| 523 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined('DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
| 523 | + if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
| 524 | 524 | return apply_filters( 'gravityview_use_cache', false, $this ); |
| 525 | 525 | } |
| 526 | 526 | |
@@ -528,7 +528,7 @@ discard block |
||
| 528 | 528 | |
| 529 | 529 | if ( GVCommon::has_cap( 'edit_gravityviews' ) ) { |
| 530 | 530 | |
| 531 | - if ( isset( $_GET['cache'] ) || isset( $_GET['nocache'] ) ) { |
|
| 531 | + if ( isset( $_GET[ 'cache' ] ) || isset( $_GET[ 'nocache' ] ) ) { |
|
| 532 | 532 | |
| 533 | 533 | gravityview()->log->debug( 'Not using cache: ?cache or ?nocache is in the URL' ); |
| 534 | 534 | |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | */ |
| 556 | 556 | $use_cache = apply_filters( 'gravityview_use_cache', $use_cache, $this ); |
| 557 | 557 | |
| 558 | - return (boolean) $use_cache; |
|
| 558 | + return (boolean)$use_cache; |
|
| 559 | 559 | } |
| 560 | 560 | |
| 561 | 561 | } |
@@ -110,18 +110,18 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | public function allowed_atts( $atts = array() ) { |
| 112 | 112 | |
| 113 | - $atts['data-fancybox'] = null; |
|
| 114 | - $atts['data-fancybox-trigger'] = null; |
|
| 115 | - $atts['data-fancybox-index'] = null; |
|
| 116 | - $atts['data-src'] = null; |
|
| 117 | - $atts['data-type'] = null; |
|
| 118 | - $atts['data-width'] = null; |
|
| 119 | - $atts['data-height'] = null; |
|
| 120 | - $atts['data-srcset'] = null; |
|
| 121 | - $atts['data-caption'] = null; |
|
| 122 | - $atts['data-options'] = null; |
|
| 123 | - $atts['data-filter'] = null; |
|
| 124 | - $atts['data-type'] = null; |
|
| 113 | + $atts[ 'data-fancybox' ] = null; |
|
| 114 | + $atts[ 'data-fancybox-trigger' ] = null; |
|
| 115 | + $atts[ 'data-fancybox-index' ] = null; |
|
| 116 | + $atts[ 'data-src' ] = null; |
|
| 117 | + $atts[ 'data-type' ] = null; |
|
| 118 | + $atts[ 'data-width' ] = null; |
|
| 119 | + $atts[ 'data-height' ] = null; |
|
| 120 | + $atts[ 'data-srcset' ] = null; |
|
| 121 | + $atts[ 'data-caption' ] = null; |
|
| 122 | + $atts[ 'data-options' ] = null; |
|
| 123 | + $atts[ 'data-filter' ] = null; |
|
| 124 | + $atts[ 'data-type' ] = null; |
|
| 125 | 125 | |
| 126 | 126 | return $atts; |
| 127 | 127 | } |
@@ -136,23 +136,23 @@ discard block |
||
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | // Prevent empty content from getting added to the lightbox gallery |
| 139 | - if ( is_array( $additional_details ) && empty( $additional_details['file_path'] ) ) { |
|
| 139 | + if ( is_array( $additional_details ) && empty( $additional_details[ 'file_path' ] ) ) { |
|
| 140 | 140 | return $link_atts; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | // Prevent empty content from getting added to the lightbox gallery |
| 144 | - if ( is_array( $additional_details ) && ! empty( $additional_details['disable_lightbox'] ) ) { |
|
| 144 | + if ( is_array( $additional_details ) && ! empty( $additional_details[ 'disable_lightbox' ] ) ) { |
|
| 145 | 145 | return $link_atts; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - $link_atts['class'] = \GV\Utils::get( $link_atts, 'class' ) . ' gravityview-fancybox'; |
|
| 148 | + $link_atts[ 'class' ] = \GV\Utils::get( $link_atts, 'class' ) . ' gravityview-fancybox'; |
|
| 149 | 149 | |
| 150 | - $link_atts['class'] = gravityview_sanitize_html_class( $link_atts['class'] ); |
|
| 150 | + $link_atts[ 'class' ] = gravityview_sanitize_html_class( $link_atts[ 'class' ] ); |
|
| 151 | 151 | |
| 152 | 152 | if ( $context && ! empty( $context->field->field ) ) { |
| 153 | 153 | if ( $context->field->field->multipleFiles ) { |
| 154 | 154 | $entry = $context->entry->as_entry(); |
| 155 | - $link_atts['data-fancybox'] = 'gallery-' . sprintf( "%s-%s-%s", $entry['form_id'], $context->field->ID, $context->entry->get_slug() ); |
|
| 155 | + $link_atts[ 'data-fancybox' ] = 'gallery-' . sprintf( "%s-%s-%s", $entry[ 'form_id' ], $context->field->ID, $context->entry->get_slug() ); |
|
| 156 | 156 | } |
| 157 | 157 | } |
| 158 | 158 | |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | ), |
| 168 | 168 | ); |
| 169 | 169 | |
| 170 | - $link_atts['data-options'] = json_encode( $fancybox_settings ); |
|
| 170 | + $link_atts[ 'data-options' ] = json_encode( $fancybox_settings ); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | return $link_atts; |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | add_filter( 'gravityview/fields/fileupload/link_atts', array( $this, 'fileupload_link_atts' ), 10, 4 ); |
| 24 | 24 | add_filter( 'gravityview/get_link/allowed_atts', array( $this, 'allowed_atts' ) ); |
| 25 | 25 | |
| 26 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts') ); |
|
| 27 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles') ); |
|
| 26 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); |
|
| 27 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) ); |
|
| 28 | 28 | |
| 29 | 29 | add_action( 'gravityview/template/after', array( $this, 'print_scripts' ) ); |
| 30 | 30 | |
@@ -92,8 +92,8 @@ discard block |
||
| 92 | 92 | remove_filter( 'gravityview/fields/fileupload/link_atts', array( $this, 'fileupload_link_atts' ), 10 ); |
| 93 | 93 | remove_filter( 'gravityview/get_link/allowed_atts', array( $this, 'allowed_atts' ) ); |
| 94 | 94 | |
| 95 | - remove_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts') ); |
|
| 96 | - remove_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles') ); |
|
| 95 | + remove_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); |
|
| 96 | + remove_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) ); |
|
| 97 | 97 | |
| 98 | 98 | remove_action( 'wp_footer', array( $this, 'output_footer' ) ); |
| 99 | 99 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | add_action( 'gform_entries_first_column_actions', array( $this, 'add_edit_link' ), 10, 5 ); |
| 12 | 12 | |
| 13 | 13 | // Add script to enable edit link |
| 14 | - add_action( 'admin_head', array( $this, 'add_edit_script') ); |
|
| 14 | + add_action( 'admin_head', array( $this, 'add_edit_script' ) ); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | /** |
@@ -60,14 +60,14 @@ discard block |
||
| 60 | 60 | 'page' => 'gf_entries', |
| 61 | 61 | 'view' => 'entry', |
| 62 | 62 | 'id' => (int)$form_id, |
| 63 | - 'lid' => (int)$lead["id"], |
|
| 63 | + 'lid' => (int)$lead[ "id" ], |
|
| 64 | 64 | 'screen_mode' => 'edit', |
| 65 | 65 | ); |
| 66 | 66 | ?> |
| 67 | 67 | |
| 68 | 68 | <span class="edit edit_entry"> |
| 69 | 69 | | |
| 70 | - <a title="<?php esc_attr_e( 'Edit this entry', 'gravityview'); ?>" href="<?php echo esc_url( add_query_arg( $params, admin_url( 'admin.php?page='.$query_string ) ) ); ?>"><?php esc_html_e( 'Edit', 'gravityview' ); ?></a> |
|
| 70 | + <a title="<?php esc_attr_e( 'Edit this entry', 'gravityview' ); ?>" href="<?php echo esc_url( add_query_arg( $params, admin_url( 'admin.php?page=' . $query_string ) ) ); ?>"><?php esc_html_e( 'Edit', 'gravityview' ); ?></a> |
|
| 71 | 71 | </span> |
| 72 | 72 | <?php |
| 73 | 73 | } |
@@ -59,8 +59,8 @@ discard block |
||
| 59 | 59 | 'GravityView_DataTables_Template' => array( |
| 60 | 60 | 'slug' => 'dt_placeholder', |
| 61 | 61 | 'label' => __( 'DataTables Table', 'gv-datatables', 'gravityview' ), |
| 62 | - 'description' => __('Display items in a dynamic table powered by DataTables.', 'gravityview'), |
|
| 63 | - 'logo' => plugins_url('assets/images/templates/logo-datatables.png', GRAVITYVIEW_FILE ), |
|
| 62 | + 'description' => __( 'Display items in a dynamic table powered by DataTables.', 'gravityview' ), |
|
| 63 | + 'logo' => plugins_url( 'assets/images/templates/logo-datatables.png', GRAVITYVIEW_FILE ), |
|
| 64 | 64 | 'buy_source' => 'https://gravityview.co/pricing/?utm_source=plugin&utm_medium=buy_now&utm_campaign=view_type&utm_term=datatables', |
| 65 | 65 | 'preview' => 'https://try.gravityview.co/demo/view/datatables/?utm_source=plugin&utm_medium=try_demo&utm_campaign=view_type&utm_term=datatables', |
| 66 | 66 | 'license' => esc_html__( 'All Access', 'gravityview' ), |
@@ -102,13 +102,13 @@ discard block |
||
| 102 | 102 | continue; |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - $license_price_id = (int) \GV\Utils::get( $license, 'price_id', 0 ); |
|
| 106 | - $placeholder_price_id = (int) \GV\Utils::get( $placeholder, 'price_id' ); |
|
| 105 | + $license_price_id = (int)\GV\Utils::get( $license, 'price_id', 0 ); |
|
| 106 | + $placeholder_price_id = (int)\GV\Utils::get( $placeholder, 'price_id' ); |
|
| 107 | 107 | |
| 108 | - $placeholder['type'] = 'custom'; |
|
| 109 | - $placeholder['included'] = ( $license_price_id >= $placeholder_price_id ); |
|
| 108 | + $placeholder[ 'type' ] = 'custom'; |
|
| 109 | + $placeholder[ 'included' ] = ( $license_price_id >= $placeholder_price_id ); |
|
| 110 | 110 | |
| 111 | - new GravityView_Placeholder_Template( $placeholder['slug'], $placeholder ); |
|
| 111 | + new GravityView_Placeholder_Template( $placeholder[ 'slug' ], $placeholder ); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | } catch ( Exception $exception ) { |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | if ( ! $detailed ) { |
| 556 | 556 | $defaults = array(); |
| 557 | 557 | foreach ( $default_settings as $key => $value ) { |
| 558 | - $defaults[ $key ] = $value['value']; |
|
| 558 | + $defaults[ $key ] = $value[ 'value' ]; |
|
| 559 | 559 | } |
| 560 | 560 | return $defaults; |
| 561 | 561 | |
@@ -566,7 +566,7 @@ discard block |
||
| 566 | 566 | // If the $group argument is set for the method, |
| 567 | 567 | // ignore any settings that aren't in that group. |
| 568 | 568 | if ( ! empty( $group ) && is_string( $group ) ) { |
| 569 | - if ( empty( $value['group'] ) || $value['group'] !== $group ) { |
|
| 569 | + if ( empty( $value[ 'group' ] ) || $value[ 'group' ] !== $group ) { |
|
| 570 | 570 | unset( $default_settings[ $key ] ); |
| 571 | 571 | } |
| 572 | 572 | } |
@@ -61,7 +61,6 @@ |
||
| 61 | 61 | * @see do_shortcode_tag(); |
| 62 | 62 | * |
| 63 | 63 | * @param string $shortcode_tag Shortcode name |
| 64 | - * @param false|string $return Short-circuit return value: false or the value to replace the shortcode with |
|
| 65 | 64 | * |
| 66 | 65 | * @return false|string |
| 67 | 66 | */ |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | return; |
| 305 | 305 | } |
| 306 | 306 | |
| 307 | - $locale = apply_filters( 'plugin_locale', ( ( function_exists('get_user_locale') && is_admin() ) ? get_user_locale() : get_locale() ), 'gravityview' ); |
|
| 307 | + $locale = apply_filters( 'plugin_locale', ( ( function_exists( 'get_user_locale' ) && is_admin() ) ? get_user_locale() : get_locale() ), 'gravityview' ); |
|
| 308 | 308 | |
| 309 | 309 | gravityview()->log->error( sprintf( 'Unable to load textdomain for %s locale.', $locale ) ); |
| 310 | 310 | } |
@@ -526,8 +526,8 @@ discard block |
||
| 526 | 526 | */ |
| 527 | 527 | private function get_php_version() { |
| 528 | 528 | |
| 529 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ? |
|
| 530 | - $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion(); |
|
| 529 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ? |
|
| 530 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion(); |
|
| 531 | 531 | } |
| 532 | 532 | |
| 533 | 533 | /** |
@@ -539,8 +539,8 @@ discard block |
||
| 539 | 539 | */ |
| 540 | 540 | private function get_wordpress_version() { |
| 541 | 541 | |
| 542 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ? |
|
| 543 | - $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version']; |
|
| 542 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ? |
|
| 543 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ]; |
|
| 544 | 544 | } |
| 545 | 545 | |
| 546 | 546 | /** |
@@ -552,14 +552,14 @@ discard block |
||
| 552 | 552 | */ |
| 553 | 553 | private function get_gravityforms_version() { |
| 554 | 554 | |
| 555 | - if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) { |
|
| 555 | + if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) { |
|
| 556 | 556 | gravityview()->log->error( 'Gravity Forms is inactive or not installed.' ); |
| 557 | 557 | |
| 558 | 558 | return null; |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ? |
|
| 562 | - $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version; |
|
| 561 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ? |
|
| 562 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version; |
|
| 563 | 563 | } |
| 564 | 564 | |
| 565 | 565 | /** |
@@ -605,7 +605,7 @@ discard block |
||
| 605 | 605 | $items = get_posts( array( |
| 606 | 606 | 'post_type' => 'gravityview', |
| 607 | 607 | 'post_status' => 'any', |
| 608 | - 'numberposts' => - 1, |
|
| 608 | + 'numberposts' => -1, |
|
| 609 | 609 | 'fields' => 'ids', |
| 610 | 610 | ) ); |
| 611 | 611 | |
@@ -619,9 +619,9 @@ discard block |
||
| 619 | 619 | $tables = array(); |
| 620 | 620 | |
| 621 | 621 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) ) { |
| 622 | - $tables [] = \GFFormsModel::get_entry_meta_table_name(); |
|
| 622 | + $tables [ ] = \GFFormsModel::get_entry_meta_table_name(); |
|
| 623 | 623 | } elseif ( ! $this->is_GF_25() ) { |
| 624 | - $tables [] = \GFFormsModel::get_lead_meta_table_name(); |
|
| 624 | + $tables [ ] = \GFFormsModel::get_lead_meta_table_name(); |
|
| 625 | 625 | } |
| 626 | 626 | |
| 627 | 627 | foreach ( $tables as $meta_table ) { |
@@ -640,9 +640,9 @@ discard block |
||
| 640 | 640 | $tables = array(); |
| 641 | 641 | |
| 642 | 642 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_notes_table_name' ) ) { |
| 643 | - $tables[] = \GFFormsModel::get_entry_notes_table_name(); |
|
| 643 | + $tables[ ] = \GFFormsModel::get_entry_notes_table_name(); |
|
| 644 | 644 | } elseif ( ! $this->is_GF_25() ) { |
| 645 | - $tables[] = \GFFormsModel::get_lead_notes_table_name(); |
|
| 645 | + $tables[ ] = \GFFormsModel::get_lead_notes_table_name(); |
|
| 646 | 646 | } |
| 647 | 647 | |
| 648 | 648 | $disapproved = __( 'Disapproved the Entry for GravityView', 'gravityview' ); |