Completed
Pull Request — develop (#1505)
by Zack
21:14 queued 01:15
created
future/includes/class-gv-license-handler.php 2 patches
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -510,6 +510,9 @@  discard block
 block discarded – undo
510 510
 		$this->settings->set( $settings );
511 511
 	}
512 512
 
513
+	/**
514
+	 * @param boolean $echo
515
+	 */
513 516
 	public function settings_edd_license_activation( $field, $echo ) {
514 517
 
515 518
 		$script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
@@ -617,7 +620,6 @@  discard block
 block discarded – undo
617 620
 	 * Check the GravityView license information
618 621
 	 *
619 622
 	 * @since 1.19.3
620
-	 * @param bool $force Whether to force checking license, even if AJAX
621 623
 	 *
622 624
 	 * @return void
623 625
 	 */
Please login to merge, or discard this patch.
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 		);
103 103
 
104 104
 		if ( ! empty( $action ) ) {
105
-			$settings['edd_action'] = esc_attr( $action );
105
+			$settings[ 'edd_action' ] = esc_attr( $action );
106 106
 		}
107 107
 
108 108
 		return array_map( 'urlencode', $settings );
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 			'format' => 'json',
159 159
 		) );
160 160
 
161
-		if ( $is_ajax && empty( $data['license'] ) ) {
161
+		if ( $is_ajax && empty( $data[ 'license' ] ) ) {
162 162
 			die( -1 );
163 163
 		}
164 164
 
@@ -186,11 +186,11 @@  discard block
 block discarded – undo
186 186
 
187 187
 			$json = json_encode( $license_data );
188 188
 
189
-			$update_license = Utils::get( $data, 'update' ) || 'gravityview_license' === Utils::_POST('action');
189
+			$update_license = Utils::get( $data, 'update' ) || 'gravityview_license' === Utils::_POST( 'action' );
190 190
 
191 191
 			$is_check_action_button = ( 'check_license' === Utils::get( $data, 'edd_action' ) && defined( 'DOING_AJAX' ) && DOING_AJAX );
192 192
 
193
-			do_action('gravityview/admin_installer/delete_downloads_data', true );
193
+			do_action( 'gravityview/admin_installer/delete_downloads_data', true );
194 194
 
195 195
 			if ( $is_check_action_button ) {
196 196
 				delete_transient( self::status_transient_key );
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 			// most likely a mistake.
202 202
 			} else if ( $license_data->license !== 'failed' && $update_license ) {
203 203
 
204
-				if ( ! empty( $data['field_id'] ) ) {
204
+				if ( ! empty( $data[ 'field_id' ] ) ) {
205 205
 					set_transient( self::status_transient_key, $license_data, DAY_IN_SECONDS );
206 206
 				}
207 207
 
@@ -227,11 +227,11 @@  discard block
 block discarded – undo
227 227
 	private function get_license_message( $license_data ) {
228 228
 		if ( empty( $license_data ) ) {
229 229
 			$message = '';
230
-			if (gravityview()->plugin->is_GF_25()) {
230
+			if ( gravityview()->plugin->is_GF_25() ) {
231 231
 				$message = $this->generate_license_box( $message, 'hide' );
232 232
 			}
233 233
 		} else {
234
-			if( ! empty( $license_data->error ) ) {
234
+			if ( ! empty( $license_data->error ) ) {
235 235
 				$class = 'error';
236 236
 				$string_key = $license_data->error;
237 237
 			} else { $class = $license_data->license;
@@ -257,12 +257,12 @@  discard block
 block discarded – undo
257 257
 	 */
258 258
 	public function license_details( $response = array() ) {
259 259
 
260
-		$response = (array) $response;
260
+		$response = (array)$response;
261 261
 
262 262
 		$return = '';
263 263
 		$wrapper = '<span class="gv-license-details" aria-live="polite" aria-busy="false">%s</span>';
264 264
 
265
-		if ( ! empty( $response['license_key'] ) ) {
265
+		if ( ! empty( $response[ 'license_key' ] ) ) {
266 266
 			$return .= '<h3>' . rtrim( esc_html__( 'License Details:', 'gravityview' ), ':' ) . '</h3>';
267 267
 
268 268
 			if ( in_array( Utils::get( $response, 'license' ), array( 'invalid', 'deactivated' ) ) ) {
@@ -270,8 +270,8 @@  discard block
 block discarded – undo
270 270
 					return sprintf( $wrapper, '' ); // Do not show redundant information - invalid/deactivated notice will be displayed by generate_license_box()
271 271
 				}
272 272
 
273
-				$return .= $this->strings( $response['license'], $response );
274
-			} elseif ( ! empty( $response['license_name'] ) ) {
273
+				$return .= $this->strings( $response[ 'license' ], $response );
274
+			} elseif ( ! empty( $response[ 'license_name' ] ) ) {
275 275
 				$response_keys = array(
276 276
 					'license_name'   => '',
277 277
 					'license_limit'  => '',
@@ -286,21 +286,21 @@  discard block
 block discarded – undo
286 286
 				$response = wp_parse_args( $response, $response_keys );
287 287
 
288 288
 				$login_link_class = gravityview()->plugin->is_GF_25() ? 'button button-outline outline' : 'text-link';
289
-				$login_link    = sprintf( '<a href="%s" class="gv-access-account ' . $login_link_class . '" 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' ) );
290
-				$local_text    = ( ! empty( $response['is_local'] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' );
291
-				$license_limit = empty( $response['license_limit'] ) ? __( 'Unlimited', 'gravityview' ) : (int) $response['license_limit'];
292
-
293
-				$details    = array(
294
-					'license'     => sprintf( esc_html__( 'License level: %s', 'gravityview' ), '<span class="gv-license-detail">' . esc_html( $response['license_name'] ) . '</span>' ),
295
-					'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ),  '<span class="gv-license-detail">' . esc_html__( $response['customer_name'], 'gravityview' ), esc_html__( $response['customer_email'], 'gravityview' ) ) . $login_link . '</span>',
296
-					'activations' => sprintf( str_replace( '%d', '%s', esc_html__( 'Activations: %d of %s sites', 'gravityview' ) ), '<span class="gv-license-detail">' . intval( $response['site_count'] ), esc_html( $license_limit ) ) . '</span>' . $local_text,
297
-					'expires'     => 'lifetime' === $response['expires'] ? '' : sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response['expires'] ) - DAY_IN_SECONDS ) ),
298
-					'upgrade'     => $this->get_upgrade_html( $response['upgrades'] ),
289
+				$login_link    = sprintf( '<a href="%s" class="gv-access-account ' . $login_link_class . '" 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' ) );
290
+				$local_text    = ( ! empty( $response[ 'is_local' ] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' );
291
+				$license_limit = empty( $response[ 'license_limit' ] ) ? __( 'Unlimited', 'gravityview' ) : (int)$response[ 'license_limit' ];
292
+
293
+				$details = array(
294
+					'license'     => sprintf( esc_html__( 'License level: %s', 'gravityview' ), '<span class="gv-license-detail">' . esc_html( $response[ 'license_name' ] ) . '</span>' ),
295
+					'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), '<span class="gv-license-detail">' . esc_html__( $response[ 'customer_name' ], 'gravityview' ), esc_html__( $response[ 'customer_email' ], 'gravityview' ) ) . $login_link . '</span>',
296
+					'activations' => sprintf( str_replace( '%d', '%s', esc_html__( 'Activations: %d of %s sites', 'gravityview' ) ), '<span class="gv-license-detail">' . intval( $response[ 'site_count' ] ), esc_html( $license_limit ) ) . '</span>' . $local_text,
297
+					'expires'     => 'lifetime' === $response[ 'expires' ] ? '' : sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response[ 'expires' ] ) - DAY_IN_SECONDS ) ),
298
+					'upgrade'     => $this->get_upgrade_html( $response[ 'upgrades' ] ),
299 299
 				);
300 300
 
301
-				if ( ! empty( $response['error'] ) && 'expired' === $response['error'] ) {
302
-					unset( $details['upgrade'] );
303
-					$details['expires'] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>';
301
+				if ( ! empty( $response[ 'error' ] ) && 'expired' === $response[ 'error' ] ) {
302
+					unset( $details[ 'upgrade' ] );
303
+					$details[ 'expires' ] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>';
304 304
 				}
305 305
 
306 306
 				$return .= '<ul><li>' . implode( '</li><li>', array_filter( $details ) ) . '</li></ul>';
@@ -326,20 +326,20 @@  discard block
 block discarded – undo
326 326
 		if ( ! empty( $upgrades ) ) {
327 327
 
328 328
 			$locale_parts = explode( '_', get_locale() );
329
-			$is_english = ( 'en' === $locale_parts[0] );
329
+			$is_english = ( 'en' === $locale_parts[ 0 ] );
330 330
 
331 331
 			$output .= '<h4>' . esc_html__( 'Upgrades available:', 'gravityview' ) . '</h4>';
332 332
 			$output .= '<ul class="ul-disc">';
333 333
 
334 334
 			foreach ( $upgrades as $upgrade_id => $upgrade ) {
335
-				$upgrade = (object) $upgrade;
335
+				$upgrade = (object)$upgrade;
336 336
 
337 337
 				$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 ) );
338 338
 
339 339
 				if ( $is_english && isset( $upgrade->description ) ) {
340 340
 					$message = esc_html( $upgrade->description );
341 341
 				} else {
342
-					switch( $upgrade->price_id ) {
342
+					switch ( $upgrade->price_id ) {
343 343
 						// Interstellar
344 344
 						case 1:
345 345
 						default:
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
 			'invalid_item_id' => esc_html__( 'This license key does not have access to this plugin.', 'gravityview' ),
419 419
 			'missing' => esc_html__( 'The license key entered is invalid.', 'gravityview' ), // Missing is "the license couldn't be found", not "you submitted an empty license"
420 420
 			'revoked' => esc_html__( 'This license key has been revoked.', 'gravityview' ),
421
-			'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>' ),
421
+			'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>' ),
422 422
 			'capability' => esc_html__( 'You don\'t have the ability to edit plugin settings.', 'gravityview' ),
423 423
 			'verifying_license' => esc_html__( 'Verifying license&hellip;', 'gravityview' ),
424 424
 			'activate_license' => esc_html__( 'Activate License', 'gravityview' ),
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
 
447 447
 		if ( ! empty( $license_data->renewal_url ) ) {
448 448
 			$renew_license_url = $license_data->renewal_url;
449
-		} elseif( ! empty( $license_data->license_key ) ) {
449
+		} elseif ( ! empty( $license_data->license_key ) ) {
450 450
 			$renew_license_url = sprintf( 'https://gravityview.co/checkout/?download_id=17&edd_license_key=%s', $license_data->license_key );
451 451
 		} else {
452 452
 			$renew_license_url = 'https://gravityview.co/account/';
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 	 * @return array|\WP_Error
464 464
 	 */
465 465
 	private function _license_get_remote_response( $data, $license = '' ) {
466
-		$api_params = $this->_get_edd_settings( $data['edd_action'], $license );
466
+		$api_params = $this->_get_edd_settings( $data[ 'edd_action' ], $license );
467 467
 
468 468
 		$url = add_query_arg( $api_params, self::url );
469 469
 
@@ -503,9 +503,9 @@  discard block
 block discarded – undo
503 503
 	private function license_call_update_settings( $license_data, $data ) {
504 504
 		$settings = array();
505 505
 
506
-        $settings['license_key'] = $license_data->license_key = trim( $data['license'] );
507
-		$settings['license_key_status'] = $license_data->license;
508
-		$settings['license_key_response'] = (array)$license_data;
506
+        $settings[ 'license_key' ] = $license_data->license_key = trim( $data[ 'license' ] );
507
+		$settings[ 'license_key_status' ] = $license_data->license;
508
+		$settings[ 'license_key_response' ] = (array)$license_data;
509 509
 
510 510
 		$this->settings->set( $settings );
511 511
 	}
@@ -525,9 +525,9 @@  discard block
 block discarded – undo
525 525
 		$status = trim( $this->settings->get( 'license_key_status' ) );
526 526
 		$key = trim( $this->settings->get( 'license_key' ) );
527 527
 
528
-		if (  !empty( $key ) ) {
528
+		if ( ! empty( $key ) ) {
529 529
 			$response = $this->settings->get( 'license_key_response' );
530
-			$response = is_array( $response ) ? (object) $response : json_decode( $response );
530
+			$response = is_array( $response ) ? (object)$response : json_decode( $response );
531 531
 		} else {
532 532
 			$response = array();
533 533
 		}
@@ -570,11 +570,11 @@  discard block
 block discarded – undo
570 570
 
571 571
 		$submit = '<div class="gv-edd-button-wrapper">';
572 572
 		foreach ( $fields as $field ) {
573
-			$field['type'] = 'button';
574
-			$field['class'] = isset( $field['class'] ) ? $field['class'] . ' '. $class : $class;
575
-			$field['style'] = 'margin-left: 10px;';
576
-			if( $disabled_attribute ) {
577
-				$field['disabled'] = $disabled_attribute;
573
+			$field[ 'type' ] = 'button';
574
+			$field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] . ' ' . $class : $class;
575
+			$field[ 'style' ] = 'margin-left: 10px;';
576
+			if ( $disabled_attribute ) {
577
+				$field[ 'disabled' ] = $disabled_attribute;
578 578
 			}
579 579
 			$submit .= $this->settings->as_html( $field, $echo );
580 580
 		}
@@ -653,7 +653,7 @@  discard block
 block discarded – undo
653 653
 				    'url'        => home_url(),
654 654
 				    'site_data'  => $this->get_site_data(),
655 655
 			    ),
656
-			));
656
+			) );
657 657
 
658 658
 			// make sure the response came back okay
659 659
 			if ( is_wp_error( $response ) ) {
@@ -683,45 +683,45 @@  discard block
 block discarded – undo
683 683
 		$theme_data = wp_get_theme();
684 684
 		$theme      = $theme_data->Name . ' ' . $theme_data->Version;
685 685
 
686
-		$data['gv_version']  = Plugin::$version;
687
-		$data['php_version']  = phpversion();
688
-		$data['wp_version']   = get_bloginfo( 'version' );
689
-		$data['gf_version']  = \GFForms::$version;
690
-		$data['server']       = Utils::get( $_SERVER, 'SERVER_SOFTWARE' );
691
-		$data['multisite']    = is_multisite();
692
-		$data['theme']        = $theme;
693
-		$data['url']          = home_url();
694
-		$data['license_key']  = $this->settings->get( 'license_key' );
695
-		$data['beta']         = $this->settings->get( 'beta' );
686
+		$data[ 'gv_version' ]  = Plugin::$version;
687
+		$data[ 'php_version' ]  = phpversion();
688
+		$data[ 'wp_version' ]   = get_bloginfo( 'version' );
689
+		$data[ 'gf_version' ]  = \GFForms::$version;
690
+		$data[ 'server' ]       = Utils::get( $_SERVER, 'SERVER_SOFTWARE' );
691
+		$data[ 'multisite' ]    = is_multisite();
692
+		$data[ 'theme' ]        = $theme;
693
+		$data[ 'url' ]          = home_url();
694
+		$data[ 'license_key' ]  = $this->settings->get( 'license_key' );
695
+		$data[ 'beta' ]         = $this->settings->get( 'beta' );
696 696
 
697 697
 		// View Data
698 698
 		$gravityview_posts = wp_count_posts( 'gravityview', 'readable' );
699 699
 
700
-		$data['view_count'] = null;
701
-		$data['view_first'] = null;
702
-		$data['view_latest'] = null;
700
+		$data[ 'view_count' ] = null;
701
+		$data[ 'view_first' ] = null;
702
+		$data[ 'view_latest' ] = null;
703 703
 
704 704
 		if ( $gravityview_posts->publish ) {
705
-			$data['view_count'] = $gravityview_posts->publish;
705
+			$data[ 'view_count' ] = $gravityview_posts->publish;
706 706
 
707 707
 			$first = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=ASC' );
708 708
 			$latest = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=DESC' );
709 709
 
710 710
 			if ( $first = array_shift( $first ) ) {
711
-				$data['view_first'] = $first->post_date;
711
+				$data[ 'view_first' ] = $first->post_date;
712 712
 			}
713 713
 			if ( $latest = array_pop( $latest ) ) {
714
-				$data['view_latest'] = $latest->post_date;
714
+				$data[ 'view_latest' ] = $latest->post_date;
715 715
 			}
716 716
 		}
717 717
 
718 718
 		// Form counts
719 719
 		if ( class_exists( 'GFFormsModel' ) ) {
720 720
 			$form_data = \GFFormsModel::get_form_count();
721
-			$data['forms_total'] = Utils::get( $form_data, 'total', 0 );
722
-			$data['forms_active'] = Utils::get( $form_data, 'active', 0 );
723
-			$data['forms_inactive'] = Utils::get( $form_data, 'inactive', 0 );
724
-			$data['forms_trash'] = Utils::get( $form_data, 'inactive', 0 );
721
+			$data[ 'forms_total' ] = Utils::get( $form_data, 'total', 0 );
722
+			$data[ 'forms_active' ] = Utils::get( $form_data, 'active', 0 );
723
+			$data[ 'forms_inactive' ] = Utils::get( $form_data, 'inactive', 0 );
724
+			$data[ 'forms_trash' ] = Utils::get( $form_data, 'inactive', 0 );
725 725
 		}
726 726
 
727 727
 		// Retrieve current plugin information
@@ -729,13 +729,13 @@  discard block
 block discarded – undo
729 729
 			include ABSPATH . '/wp-admin/includes/plugin.php';
730 730
 		}
731 731
 
732
-		$data['integrations']     = self::get_related_plugins_and_extensions();
733
-		$data['active_plugins']   = get_option( 'active_plugins', array() );
734
-		$data['inactive_plugins'] = array();
735
-		$data['locale']           = get_locale();
732
+		$data[ 'integrations' ]     = self::get_related_plugins_and_extensions();
733
+		$data[ 'active_plugins' ]   = get_option( 'active_plugins', array() );
734
+		$data[ 'inactive_plugins' ] = array();
735
+		$data[ 'locale' ]           = get_locale();
736 736
 
737 737
 		// Validate request on the GV server
738
-		$data['hash']             = 'gv_version.url.locale:' . sha1( $data['gv_version'] . $data['url'] . $data['locale'] );
738
+		$data[ 'hash' ]             = 'gv_version.url.locale:' . sha1( $data[ 'gv_version' ] . $data[ 'url' ] . $data[ 'locale' ] );
739 739
 
740 740
 		return $data;
741 741
 	}
@@ -765,7 +765,7 @@  discard block
 block discarded – undo
765 765
 
766 766
 				$plugin_data = get_plugin_data( $active_plugin );
767 767
 
768
-				$extensions[] = sprintf( '%s %s', $plugin_data['Name'], $plugin_data['Version'] );
768
+				$extensions[ ] = sprintf( '%s %s', $plugin_data[ 'Name' ], $plugin_data[ 'Version' ] );
769 769
 			}
770 770
 
771 771
 			if ( ! empty( $extensions ) ) {
Please login to merge, or discard this patch.
future/includes/class-gv-settings-addon.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
 	 *
141 141
 	 * @param array $items Styles to exclude from no-conflict
142 142
 	 *
143
-	 * @return array
143
+	 * @return string[]
144 144
 	 */
145 145
 	public function register_no_conflict( $items ) {
146 146
 
Please login to merge, or discard this patch.
Spacing   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 		$setting_tabs = parent::get_app_settings_tabs();
119 119
 
120 120
 		foreach ( $setting_tabs as &$tab ) {
121
-			if ( 'uninstall' !== $tab['name'] ) {
121
+			if ( 'uninstall' !== $tab[ 'name' ] ) {
122 122
 				continue;
123 123
 			}
124 124
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 			}
130 130
 
131 131
 			// Add trash can icon to resemble the look and feel of the GF Settings page
132
-			$tab['icon'] = 'dashicons-trash';
132
+			$tab[ 'icon' ] = 'dashicons-trash';
133 133
 		}
134 134
 
135 135
 		return array_filter( $setting_tabs );
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
 	 */
145 145
 	public function register_no_conflict( $items ) {
146 146
 
147
-		$items[] = 'gform_settings';
148
-		$items[] = 'gv-admin-edd-license';
147
+		$items[ ] = 'gform_settings';
148
+		$items[ ] = 'gv-admin-edd-license';
149 149
 
150 150
 		return $items;
151 151
 	}
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 
197 197
 		$href = add_query_arg( array( 'post_type' => 'gravityview', 'page' => 'gravityview_settings', 'view' => 'uninstall' ), admin_url( 'edit.php' ) );
198 198
 
199
-		$uninstall_button = '<a href="' . esc_url( $href ) . '" class="' . gravityview_sanitize_html_class( $html_class ). '">' . esc_html__( 'Uninstall GravityView', 'gravityview' ) . '</a>';
199
+		$uninstall_button = '<a href="' . esc_url( $href ) . '" class="' . gravityview_sanitize_html_class( $html_class ) . '">' . esc_html__( 'Uninstall GravityView', 'gravityview' ) . '</a>';
200 200
 
201 201
 		$html .= $uninstall_button;
202 202
 
@@ -215,10 +215,10 @@  discard block
 block discarded – undo
215 215
 	 */
216 216
 	public function settings_save( $field, $echo = true ) {
217 217
 
218
-		$field['type']  = 'submit';
219
-		$field['name']  = 'gform-settings-save';
220
-		$field['class'] = 'button button-primary primary button-hero';
221
-		$field['value'] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) );
218
+		$field[ 'type' ]  = 'submit';
219
+		$field[ 'name' ]  = 'gform-settings-save';
220
+		$field[ 'class' ] = 'button button-primary primary button-hero';
221
+		$field[ 'value' ] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) );
222 222
 
223 223
 		$html = $this->as_html( $field, false );
224 224
 
@@ -240,8 +240,8 @@  discard block
 block discarded – undo
240 240
 	 */
241 241
 	public function modify_app_settings_menu_title( $setting_tabs ) {
242 242
 
243
-		$setting_tabs[0]['label'] = __( 'GravityView Settings', 'gravityview' );
244
-		$setting_tabs[0]['icon']  = 'dashicons-admin-settings';
243
+		$setting_tabs[ 0 ][ 'label' ] = __( 'GravityView Settings', 'gravityview' );
244
+		$setting_tabs[ 0 ][ 'icon' ]  = 'dashicons-admin-settings';
245 245
 
246 246
 		return $setting_tabs;
247 247
 	}
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
 					$i = 0;
490 490
 					while ( $i < 11 ) {
491 491
 						echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_' . $i . '" value="' . $i . '" type="radio"> ' . $i . '</label></li>';
492
-						$i ++;
492
+						$i++;
493 493
 					}
494 494
 					?>
495 495
 				</ul>
@@ -692,14 +692,14 @@  discard block
 block discarded – undo
692 692
 	 */
693 693
 	public function as_html( $field, $echo = true ) {
694 694
 
695
-		$field['type'] = ( isset( $field['type'] ) && in_array( $field['type'], array( 'submit', 'reset', 'button' ) ) ) ? $field['type'] : 'submit';
695
+		$field[ 'type' ] = ( isset( $field[ 'type' ] ) && in_array( $field[ 'type' ], array( 'submit', 'reset', 'button' ) ) ) ? $field[ 'type' ] : 'submit';
696 696
 
697 697
 		$attributes    = $this->get_field_attributes( $field );
698 698
 		$default_value = Utils::get( $field, 'value', Utils::get( $field, 'default_value' ) );
699
-		$value         = $this->get( $field['name'], $default_value );
699
+		$value         = $this->get( $field[ 'name' ], $default_value );
700 700
 
701
-		$attributes['class'] = isset( $attributes['class'] ) ? esc_attr( $attributes['class'] ) : 'button-primary primary gfbutton';
702
-		$name                = ( $field['name'] === 'gform-settings-save' ) ? $field['name'] : '_gaddon_setting_' . $field['name'];
701
+		$attributes[ 'class' ] = isset( $attributes[ 'class' ] ) ? esc_attr( $attributes[ 'class' ] ) : 'button-primary primary gfbutton';
702
+		$name                = ( $field[ 'name' ] === 'gform-settings-save' ) ? $field[ 'name' ] : '_gaddon_setting_' . $field[ 'name' ];
703 703
 
704 704
 		if ( empty( $value ) ) {
705 705
 			$value = __( 'Update Settings', 'gravityview' );
@@ -708,7 +708,7 @@  discard block
 block discarded – undo
708 708
 		$attributes = $this->get_field_attributes( $field );
709 709
 
710 710
 		$html = '<input
711
-                    type="' . $field['type'] . '"
711
+                    type="' . $field[ 'type' ] . '"
712 712
                     name="' . esc_attr( $name ) . '"
713 713
                     value="' . $value . '" ' .
714 714
 				implode( ' ', $attributes ) .
@@ -742,7 +742,7 @@  discard block
 block discarded – undo
742 742
 	 */
743 743
 	public function is_save_postback() {
744 744
 
745
-		return isset( $_POST['gform-settings-save'] ) && isset( $_POST['_gravityview_save_settings_nonce'] );
745
+		return isset( $_POST[ 'gform-settings-save' ] ) && isset( $_POST[ '_gravityview_save_settings_nonce' ] );
746 746
 	}
747 747
 
748 748
 	/**
@@ -854,7 +854,7 @@  discard block
 block discarded – undo
854 854
 
855 855
 		$scripts = parent::scripts();
856 856
 
857
-		$scripts[] = array(
857
+		$scripts[ ] = array(
858 858
 				'handle'  => 'gform_tooltip_init',
859 859
 				'enqueue' => array(
860 860
 						array(
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 
876 876
 		$styles = parent::styles();
877 877
 
878
-		$styles[] = array(
878
+		$styles[ ] = array(
879 879
 				'handle'  => 'gravityview_settings',
880 880
 				'src'     => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ),
881 881
 				'version' => Plugin::$version,
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
 						'name'          => 'support-email',
965 965
 						'type'          => 'text',
966 966
 						'validate'      => 'email',
967
-						'default_value' => $default_settings['support-email'],
967
+						'default_value' => $default_settings[ 'support-email' ],
968 968
 						'label'         => __( 'Support Email', 'gravityview' ),
969 969
 						'description'   => __( 'In order to provide responses to your support requests, please provide your email address.', 'gravityview' ),
970 970
 						'class'         => 'code regular-text',
@@ -976,7 +976,7 @@  discard block
 block discarded – undo
976 976
 						'name'          => 'support_port',
977 977
 						'type'          => 'radio',
978 978
 						'label'         => __( 'Show Support Port?', 'gravityview' ),
979
-						'default_value' => $default_settings['support_port'],
979
+						'default_value' => $default_settings[ 'support_port' ],
980 980
 						'horizontal'    => 1,
981 981
 						'choices'       => array(
982 982
 								array(
@@ -995,7 +995,7 @@  discard block
 block discarded – undo
995 995
 						'name'          => 'no-conflict-mode',
996 996
 						'type'          => 'radio',
997 997
 						'label'         => __( 'No-Conflict Mode', 'gravityview' ),
998
-						'default_value' => $default_settings['no-conflict-mode'],
998
+						'default_value' => $default_settings[ 'no-conflict-mode' ],
999 999
 						'horizontal'    => 1,
1000 1000
 						'choices'       => array(
1001 1001
 								array(
@@ -1017,7 +1017,7 @@  discard block
 block discarded – undo
1017 1017
 								'name'          => 'rest_api',
1018 1018
 								'type'          => 'radio',
1019 1019
 								'label'         => __( 'REST API', 'gravityview' ),
1020
-								'default_value' => $default_settings['rest_api'],
1020
+								'default_value' => $default_settings[ 'rest_api' ],
1021 1021
 								'horizontal'    => 1,
1022 1022
 								'choices'       => array(
1023 1023
 										array(
@@ -1036,7 +1036,7 @@  discard block
 block discarded – undo
1036 1036
 						'name'          => 'beta',
1037 1037
 						'type'          => 'checkbox',
1038 1038
 						'label'         => __( 'Become a Beta Tester', 'gravityview' ),
1039
-						'default_value' => $default_settings['beta'],
1039
+						'default_value' => $default_settings[ 'beta' ],
1040 1040
 						'horizontal'    => 1,
1041 1041
 						'choices'       => array(
1042 1042
 								array(
@@ -1070,17 +1070,17 @@  discard block
 block discarded – undo
1070 1070
 		 * @since 1.7.4
1071 1071
 		 */
1072 1072
 		foreach ( $fields as &$field ) {
1073
-			$field['name']          = isset( $field['name'] ) ? $field['name'] : Utils::get( $field, 'id' );
1074
-			$field['label']         = isset( $field['label'] ) ? $field['label'] : Utils::get( $field, 'title' );
1075
-			$field['default_value'] = isset( $field['default_value'] ) ? $field['default_value'] : Utils::get( $field, 'default' );
1076
-			$field['description']   = isset( $field['description'] ) ? $field['description'] : Utils::get( $field, 'subtitle' );
1073
+			$field[ 'name' ]          = isset( $field[ 'name' ] ) ? $field[ 'name' ] : Utils::get( $field, 'id' );
1074
+			$field[ 'label' ]         = isset( $field[ 'label' ] ) ? $field[ 'label' ] : Utils::get( $field, 'title' );
1075
+			$field[ 'default_value' ] = isset( $field[ 'default_value' ] ) ? $field[ 'default_value' ] : Utils::get( $field, 'default' );
1076
+			$field[ 'description' ]   = isset( $field[ 'description' ] ) ? $field[ 'description' ] : Utils::get( $field, 'subtitle' );
1077 1077
 
1078 1078
 			if ( $disabled_attribute ) {
1079
-				$field['disabled'] = $disabled_attribute;
1079
+				$field[ 'disabled' ] = $disabled_attribute;
1080 1080
 			}
1081 1081
 
1082
-			if ( empty( $field['disabled'] ) ) {
1083
-				unset( $field['disabled'] );
1082
+			if ( empty( $field[ 'disabled' ] ) ) {
1083
+				unset( $field[ 'disabled' ] );
1084 1084
 			}
1085 1085
 		}
1086 1086
 
@@ -1094,17 +1094,17 @@  discard block
 block discarded – undo
1094 1094
 					'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ),
1095 1095
 					'title' => __( 'The license key is defined by your site\'s configuration file.', 'gravityview' ),
1096 1096
 					'data-pending-text' => __( 'Verifying license&hellip;', 'gravityview' ),
1097
-					'default_value' => $default_settings['license_key'],
1097
+					'default_value' => $default_settings[ 'license_key' ],
1098 1098
 					'class' => ( '' == $this->get( 'license_key' ) ) ? 'activate code regular-text edd-license-key' : 'deactivate code regular-text edd-license-key',
1099 1099
 			),
1100 1100
 			array(
1101 1101
 					'name' => 'license_key_response',
1102
-					'default_value' => $default_settings['license_key_response'],
1102
+					'default_value' => $default_settings[ 'license_key_response' ],
1103 1103
 					'type' => 'hidden',
1104 1104
 			),
1105 1105
 			array(
1106 1106
 					'name' => 'license_key_status',
1107
-					'default_value' => $default_settings['license_key_status'],
1107
+					'default_value' => $default_settings[ 'license_key_status' ],
1108 1108
 					'type' => 'hidden',
1109 1109
 			),
1110 1110
 		);
@@ -1114,7 +1114,7 @@  discard block
 block discarded – undo
1114 1114
 
1115 1115
 		if ( \gravityview()->plugin->is_GF_25() ) {
1116 1116
 
1117
-			$sections[] = array(
1117
+			$sections[ ] = array(
1118 1118
 					'title'       => __( 'GravityView License', 'gravityview' ),
1119 1119
 					'class'       => 'gform-settings-panel--full gv-settings-panel--license',
1120 1120
 					'description' => $version_info,
@@ -1132,7 +1132,7 @@  discard block
 block discarded – undo
1132 1132
 			) );
1133 1133
 		}
1134 1134
 
1135
-		$sections[] = array(
1135
+		$sections[ ] = array(
1136 1136
 			'title' => ( gravityview()->plugin->is_GF_25() ? __( 'GravityView Settings', 'gravityview' ) : null ),
1137 1137
 			'class' => 'gform-settings-panel--full gv-settings-panel--core',
1138 1138
 			'fields'      => $fields,
@@ -1156,8 +1156,8 @@  discard block
 block discarded – undo
1156 1156
 
1157 1157
 			if ( $disabled_attribute ) {
1158 1158
 				foreach ( $extension_sections as &$section ) {
1159
-					foreach ( $section['fields'] as &$field ) {
1160
-						$field['disabled'] = $disabled_attribute;
1159
+					foreach ( $section[ 'fields' ] as &$field ) {
1160
+						$field[ 'disabled' ] = $disabled_attribute;
1161 1161
 					}
1162 1162
 				}
1163 1163
 			}
@@ -1223,7 +1223,7 @@  discard block
 block discarded – undo
1223 1223
 	public function settings_edd_license( $field, $echo = true ) {
1224 1224
 
1225 1225
 		if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) {
1226
-			$field['input_type'] = 'password';
1226
+			$field[ 'input_type' ] = 'password';
1227 1227
 		}
1228 1228
 
1229 1229
 		$text = $this->settings_text( $field, false );
@@ -1275,7 +1275,7 @@  discard block
 block discarded – undo
1275 1275
 
1276 1276
 		?>
1277 1277
 
1278
-		<tr id="gaddon-setting-row-<?php echo esc_attr( $field['name'] ); ?>">
1278
+		<tr id="gaddon-setting-row-<?php echo esc_attr( $field[ 'name' ] ); ?>">
1279 1279
 			<td colspan="2">
1280 1280
 				<?php $this->single_setting( $field ); ?>
1281 1281
 			</td>
@@ -1301,8 +1301,8 @@  discard block
 block discarded – undo
1301 1301
 	 */
1302 1302
 	public function single_setting_row( $field ) {
1303 1303
 
1304
-		$field['gv_description'] = Utils::get( $field, 'description' );
1305
-		$field['description']    = Utils::get( $field, 'subtitle' );
1304
+		$field[ 'gv_description' ] = Utils::get( $field, 'description' );
1305
+		$field[ 'description' ]    = Utils::get( $field, 'subtitle' );
1306 1306
 		parent::single_setting_row( $field );
1307 1307
 	}
1308 1308
 
@@ -1363,8 +1363,8 @@  discard block
 block discarded – undo
1363 1363
 		// then we assume it's changed. If it's changed, unset the status and the previous response.
1364 1364
 		if ( ! $added_message && ( $local_key !== $response_key ) ) {
1365 1365
 
1366
-			unset( $posted_settings['license_key_response'] );
1367
-			unset( $posted_settings['license_key_status'] );
1366
+			unset( $posted_settings[ 'license_key_response' ] );
1367
+			unset( $posted_settings[ 'license_key_status' ] );
1368 1368
 
1369 1369
 			\GFCommon::add_error_message( __( 'The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) );
1370 1370
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -421,7 +421,7 @@
 block discarded – undo
421 421
     </header>
422 422
     <div class="gform-settings-panel__content" style="padding: 0 1rem 1.25rem">
423 423
 
424
-HTML;
424
+html;
425 425
 		} else {
426 426
 			echo '<div class="gv-uninstall-form-wrapper" style="font-size: 110%; padding: 15px 0;">';
427 427
 		}
Please login to merge, or discard this patch.
includes/extensions/edit-entry/class-edit-entry-admin.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     function load() {
26 26
 
27
-        if( !is_admin() ) {
27
+        if ( ! is_admin() ) {
28 28
             return;
29 29
         }
30 30
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         add_filter( 'gravityview_template_edit_link_options', array( $this, 'edit_link_field_options' ), 10, 5 );
39 39
 
40 40
         // add tooltips
41
-        add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips') );
41
+        add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips' ) );
42 42
 
43 43
         // custom fields' options for zone EDIT
44 44
         add_filter( 'gravityview_template_field_options', array( $this, 'field_options' ), 10, 6 );
@@ -77,12 +77,12 @@  discard block
 block discarded – undo
77 77
      */
78 78
     function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) {
79 79
 
80
-        if( $zone !== 'edit' ) {
80
+        if ( $zone !== 'edit' ) {
81 81
 
82
-            $entry_default_fields['edit_link'] = array(
83
-                'label' => __('Edit Entry', 'gravityview'),
82
+            $entry_default_fields[ 'edit_link' ] = array(
83
+                'label' => __( 'Edit Entry', 'gravityview' ),
84 84
                 'type' => 'edit_link',
85
-                'desc'	=> __('A link to edit the entry. Visible based on View settings.', 'gravityview'),
85
+                'desc'	=> __( 'A link to edit the entry. Visible based on View settings.', 'gravityview' ),
86 86
                 'icon' => 'dashicons-welcome-write-blog',
87 87
             );
88 88
 
@@ -107,12 +107,12 @@  discard block
 block discarded – undo
107 107
         $caps = $visibility_caps;
108 108
 
109 109
         // If we're configuring fields in the edit context, we want a limited selection
110
-        if( $context === 'edit' ) {
110
+        if ( $context === 'edit' ) {
111 111
 
112 112
             // Remove other built-in caps.
113
-            unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['delete_others_posts'] );
113
+            unset( $caps[ 'publish_posts' ], $caps[ 'gravityforms_view_entries' ], $caps[ 'delete_others_posts' ] );
114 114
 
115
-            $caps['read'] = _x('Entry Creator','User capability', 'gravityview');
115
+            $caps[ 'read' ] = _x( 'Entry Creator', 'User capability', 'gravityview' );
116 116
         }
117 117
 
118 118
         return $caps;
@@ -130,16 +130,16 @@  discard block
 block discarded – undo
130 130
     function edit_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) {
131 131
 
132 132
         // Always a link, never a filter
133
-        unset( $field_options['show_as_link'], $field_options['search_filter'] );
133
+        unset( $field_options[ 'show_as_link' ], $field_options[ 'search_filter' ] );
134 134
 
135 135
         // Edit Entry link should only appear to visitors capable of editing entries
136
-        unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] );
136
+        unset( $field_options[ 'only_loggedin' ], $field_options[ 'only_loggedin_cap' ] );
137 137
 
138
-        $add_option['edit_link'] = array(
138
+        $add_option[ 'edit_link' ] = array(
139 139
             'type' => 'text',
140 140
             'label' => __( 'Edit Link Text', 'gravityview' ),
141 141
             'desc' => NULL,
142
-            'value' => __('Edit Entry', 'gravityview'),
142
+            'value' => __( 'Edit Entry', 'gravityview' ),
143 143
             'merge_tags' => true,
144 144
         );
145 145
 
@@ -155,9 +155,9 @@  discard block
 block discarded – undo
155 155
 
156 156
         $return = $tooltips;
157 157
 
158
-        $return['allow_edit_cap'] = array(
159
-            'title' => __('Limiting Edit Access', 'gravityview'),
160
-            'value' => __('Change this setting if you don\'t want the user who created the entry to be able to edit this field.', 'gravityview'),
158
+        $return[ 'allow_edit_cap' ] = array(
159
+            'title' => __( 'Limiting Edit Access', 'gravityview' ),
160
+            'value' => __( 'Change this setting if you don\'t want the user who created the entry to be able to edit this field.', 'gravityview' ),
161 161
         );
162 162
 
163 163
         return $return;
@@ -175,12 +175,12 @@  discard block
 block discarded – undo
175 175
 	public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) {
176 176
 
177 177
         // We only want to modify the settings for the edit context
178
-        if( 'edit' !== $context ) {
178
+        if ( 'edit' !== $context ) {
179 179
 
180 180
             /**
181 181
              * @since 1.8.4
182 182
              */
183
-            $field_options['new_window'] = array(
183
+            $field_options[ 'new_window' ] = array(
184 184
                 'type' => 'checkbox',
185 185
                 'label' => __( 'Open link in a new tab or window?', 'gravityview' ),
186 186
                 'value' => false,
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
         }
191 191
 
192 192
         //  Entry field is only for logged in users
193
-        unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] );
193
+        unset( $field_options[ 'only_loggedin' ], $field_options[ 'only_loggedin_cap' ] );
194 194
 
195 195
         $add_options = array(
196 196
             'allow_edit_cap' => array(
Please login to merge, or discard this patch.
Indentation   +148 added lines, -148 removed lines patch added patch discarded remove patch
@@ -10,42 +10,42 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 if ( ! defined( 'WPINC' ) ) {
13
-    die;
13
+	die;
14 14
 }
15 15
 
16 16
 
17 17
 class GravityView_Edit_Entry_Admin {
18 18
 
19
-    protected $loader;
19
+	protected $loader;
20 20
 
21
-    function __construct( GravityView_Edit_Entry $loader ) {
22
-        $this->loader = $loader;
23
-    }
21
+	function __construct( GravityView_Edit_Entry $loader ) {
22
+		$this->loader = $loader;
23
+	}
24 24
 
25
-    function load() {
25
+	function load() {
26 26
 
27
-        if( !is_admin() ) {
28
-            return;
29
-        }
27
+		if( !is_admin() ) {
28
+			return;
29
+		}
30 30
 
31
-        // Add Edit Link as a default field, outside those set in the Gravity Form form
32
-        add_filter( 'gravityview_entry_default_fields', array( $this, 'add_default_field' ), 10, 3 );
31
+		// Add Edit Link as a default field, outside those set in the Gravity Form form
32
+		add_filter( 'gravityview_entry_default_fields', array( $this, 'add_default_field' ), 10, 3 );
33 33
 
34
-        // For the Edit Entry Link, you don't want visible to all users.
35
-        add_filter( 'gravityview_field_visibility_caps', array( $this, 'modify_visibility_caps' ), 10, 5 );
34
+		// For the Edit Entry Link, you don't want visible to all users.
35
+		add_filter( 'gravityview_field_visibility_caps', array( $this, 'modify_visibility_caps' ), 10, 5 );
36 36
 
37
-        // Modify the field options based on the name of the field type
38
-        add_filter( 'gravityview_template_edit_link_options', array( $this, 'edit_link_field_options' ), 10, 5 );
37
+		// Modify the field options based on the name of the field type
38
+		add_filter( 'gravityview_template_edit_link_options', array( $this, 'edit_link_field_options' ), 10, 5 );
39 39
 
40
-        // add tooltips
41
-        add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips') );
40
+		// add tooltips
41
+		add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips') );
42 42
 
43
-        // custom fields' options for zone EDIT
44
-        add_filter( 'gravityview_template_field_options', array( $this, 'field_options' ), 10, 6 );
43
+		// custom fields' options for zone EDIT
44
+		add_filter( 'gravityview_template_field_options', array( $this, 'field_options' ), 10, 6 );
45 45
 
46
-        // Add Edit Entry settings to View Settings
47
-        add_action( 'gravityview/metaboxes/edit_entry', array( $this, 'view_settings_metabox' ) );
48
-    }
46
+		// Add Edit Entry settings to View Settings
47
+		add_action( 'gravityview/metaboxes/edit_entry', array( $this, 'view_settings_metabox' ) );
48
+	}
49 49
 
50 50
 	/**
51 51
 	 * Render Edit Entry View metabox settings
@@ -69,101 +69,101 @@  discard block
 block discarded – undo
69 69
 		GravityView_Render_Settings::render_setting_row( 'edit_redirect_url', $current_settings );
70 70
 	}
71 71
 
72
-    /**
73
-     * Add Edit Link as a default field, outside those set in the Gravity Form form
74
-     * @param array $entry_default_fields Existing fields
75
-     * @param  string|array $form form_ID or form object
76
-     * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
77
-     */
78
-    function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) {
79
-
80
-        if( $zone !== 'edit' ) {
81
-
82
-            $entry_default_fields['edit_link'] = array(
83
-                'label' => __('Edit Entry', 'gravityview'),
84
-                'type' => 'edit_link',
85
-                'desc'	=> __('A link to edit the entry. Visible based on View settings.', 'gravityview'),
86
-                'icon' => 'dashicons-welcome-write-blog',
87
-            );
88
-
89
-        }
90
-
91
-        return $entry_default_fields;
92
-    }
93
-
94
-    /**
95
-     * Change wording for the Edit context to read Entry Creator
96
-     *
97
-     * @param  array 	   $visibility_caps        Array of capabilities to display in field dropdown.
98
-     * @param  string      $field_type  Type of field options to render (`field` or `widget`)
99
-     * @param  string      $template_id Table slug
100
-     * @param  float       $field_id    GF Field ID - Example: `3`, `5.2`, `entry_link`, `created_by`
101
-     * @param  string      $context     What context are we in? Example: `single` or `directory`
102
-     * @param  string      $input_type  (textarea, list, select, etc.)
103
-     * @return array                   Array of field options with `label`, `value`, `type`, `default` keys
104
-     */
105
-    function modify_visibility_caps( $visibility_caps = array(), $template_id = '', $field_id = '', $context = '', $input_type = '' ) {
106
-
107
-        $caps = $visibility_caps;
108
-
109
-        // If we're configuring fields in the edit context, we want a limited selection
110
-        if( $context === 'edit' ) {
111
-
112
-            // Remove other built-in caps.
113
-            unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['delete_others_posts'] );
114
-
115
-            $caps['read'] = _x('Entry Creator','User capability', 'gravityview');
116
-        }
117
-
118
-        return $caps;
119
-    }
120
-
121
-    /**
122
-     * Add "Edit Link Text" setting to the edit_link field settings
123
-     *
124
-     * @param array  $field_options
125
-     * @param string $template_id
126
-     * @param string $field_id
127
-     * @param string $context
128
-     * @param string $input_type
129
-     *
130
-     * @return array $field_options, with "Edit Link Text" field option
131
-     */
132
-    function edit_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) {
133
-
134
-        // Always a link, never a filter
135
-        unset( $field_options['show_as_link'], $field_options['search_filter'] );
136
-
137
-        // Edit Entry link should only appear to visitors capable of editing entries
138
-        unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] );
139
-
140
-        $add_option['edit_link'] = array(
141
-            'type' => 'text',
142
-            'label' => __( 'Edit Link Text', 'gravityview' ),
143
-            'desc' => NULL,
144
-            'value' => __('Edit Entry', 'gravityview'),
145
-            'merge_tags' => true,
146
-        );
147
-
148
-        return array_merge( $add_option, $field_options );
149
-    }
150
-
151
-    /**
152
-     * Add tooltips
153
-     * @param  array $tooltips Existing tooltips
154
-     * @return array           Modified tooltips
155
-     */
156
-    function tooltips( $tooltips ) {
157
-
158
-        $return = $tooltips;
159
-
160
-        $return['allow_edit_cap'] = array(
161
-            'title' => __('Limiting Edit Access', 'gravityview'),
162
-            'value' => __('Change this setting if you don\'t want the user who created the entry to be able to edit this field.', 'gravityview'),
163
-        );
164
-
165
-        return $return;
166
-    }
72
+	/**
73
+	 * Add Edit Link as a default field, outside those set in the Gravity Form form
74
+	 * @param array $entry_default_fields Existing fields
75
+	 * @param  string|array $form form_ID or form object
76
+	 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
77
+	 */
78
+	function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) {
79
+
80
+		if( $zone !== 'edit' ) {
81
+
82
+			$entry_default_fields['edit_link'] = array(
83
+				'label' => __('Edit Entry', 'gravityview'),
84
+				'type' => 'edit_link',
85
+				'desc'	=> __('A link to edit the entry. Visible based on View settings.', 'gravityview'),
86
+				'icon' => 'dashicons-welcome-write-blog',
87
+			);
88
+
89
+		}
90
+
91
+		return $entry_default_fields;
92
+	}
93
+
94
+	/**
95
+	 * Change wording for the Edit context to read Entry Creator
96
+	 *
97
+	 * @param  array 	   $visibility_caps        Array of capabilities to display in field dropdown.
98
+	 * @param  string      $field_type  Type of field options to render (`field` or `widget`)
99
+	 * @param  string      $template_id Table slug
100
+	 * @param  float       $field_id    GF Field ID - Example: `3`, `5.2`, `entry_link`, `created_by`
101
+	 * @param  string      $context     What context are we in? Example: `single` or `directory`
102
+	 * @param  string      $input_type  (textarea, list, select, etc.)
103
+	 * @return array                   Array of field options with `label`, `value`, `type`, `default` keys
104
+	 */
105
+	function modify_visibility_caps( $visibility_caps = array(), $template_id = '', $field_id = '', $context = '', $input_type = '' ) {
106
+
107
+		$caps = $visibility_caps;
108
+
109
+		// If we're configuring fields in the edit context, we want a limited selection
110
+		if( $context === 'edit' ) {
111
+
112
+			// Remove other built-in caps.
113
+			unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['delete_others_posts'] );
114
+
115
+			$caps['read'] = _x('Entry Creator','User capability', 'gravityview');
116
+		}
117
+
118
+		return $caps;
119
+	}
120
+
121
+	/**
122
+	 * Add "Edit Link Text" setting to the edit_link field settings
123
+	 *
124
+	 * @param array  $field_options
125
+	 * @param string $template_id
126
+	 * @param string $field_id
127
+	 * @param string $context
128
+	 * @param string $input_type
129
+	 *
130
+	 * @return array $field_options, with "Edit Link Text" field option
131
+	 */
132
+	function edit_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) {
133
+
134
+		// Always a link, never a filter
135
+		unset( $field_options['show_as_link'], $field_options['search_filter'] );
136
+
137
+		// Edit Entry link should only appear to visitors capable of editing entries
138
+		unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] );
139
+
140
+		$add_option['edit_link'] = array(
141
+			'type' => 'text',
142
+			'label' => __( 'Edit Link Text', 'gravityview' ),
143
+			'desc' => NULL,
144
+			'value' => __('Edit Entry', 'gravityview'),
145
+			'merge_tags' => true,
146
+		);
147
+
148
+		return array_merge( $add_option, $field_options );
149
+	}
150
+
151
+	/**
152
+	 * Add tooltips
153
+	 * @param  array $tooltips Existing tooltips
154
+	 * @return array           Modified tooltips
155
+	 */
156
+	function tooltips( $tooltips ) {
157
+
158
+		$return = $tooltips;
159
+
160
+		$return['allow_edit_cap'] = array(
161
+			'title' => __('Limiting Edit Access', 'gravityview'),
162
+			'value' => __('Change this setting if you don\'t want the user who created the entry to be able to edit this field.', 'gravityview'),
163
+		);
164
+
165
+		return $return;
166
+	}
167 167
 
168 168
 	/**
169 169
 	 * Add "Edit Link Text" setting to the edit_link field settings
@@ -179,37 +179,37 @@  discard block
 block discarded – undo
179 179
 	 */
180 180
 	public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) {
181 181
 
182
-        // We only want to modify the settings for the edit context
183
-        if( 'edit' !== $context ) {
184
-
185
-            /**
186
-             * @since 1.8.4
187
-             */
188
-            $field_options['new_window'] = array(
189
-                'type' => 'checkbox',
190
-                'label' => __( 'Open link in a new tab or window?', 'gravityview' ),
191
-                'value' => false,
192
-            );
193
-
194
-            return $field_options;
195
-        }
196
-
197
-        //  Entry field is only for logged in users
198
-        unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] );
199
-
200
-        $add_options = array(
201
-            'allow_edit_cap' => array(
202
-                'type' => 'select',
203
-                'label' => __( 'Make field editable to:', 'gravityview' ),
204
-                'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ),
205
-                'tooltip' => 'allow_edit_cap',
206
-                'class' => 'widefat',
207
-                'value' => 'read', // Default: entry creator
208
-            ),
209
-        );
210
-
211
-        return array_merge( $field_options, $add_options );
212
-    }
182
+		// We only want to modify the settings for the edit context
183
+		if( 'edit' !== $context ) {
184
+
185
+			/**
186
+			 * @since 1.8.4
187
+			 */
188
+			$field_options['new_window'] = array(
189
+				'type' => 'checkbox',
190
+				'label' => __( 'Open link in a new tab or window?', 'gravityview' ),
191
+				'value' => false,
192
+			);
193
+
194
+			return $field_options;
195
+		}
196
+
197
+		//  Entry field is only for logged in users
198
+		unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] );
199
+
200
+		$add_options = array(
201
+			'allow_edit_cap' => array(
202
+				'type' => 'select',
203
+				'label' => __( 'Make field editable to:', 'gravityview' ),
204
+				'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ),
205
+				'tooltip' => 'allow_edit_cap',
206
+				'class' => 'widefat',
207
+				'value' => 'read', // Default: entry creator
208
+			),
209
+		);
210
+
211
+		return array_merge( $field_options, $add_options );
212
+	}
213 213
 
214 214
 
215 215
 } // end class
Please login to merge, or discard this patch.
future/includes/class-gv-plugin.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -505,8 +505,8 @@  discard block
 block discarded – undo
505 505
 	 */
506 506
 	private function get_php_version() {
507 507
 
508
-		return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ?
509
-			$GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion();
508
+		return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ?
509
+			$GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion();
510 510
 	}
511 511
 
512 512
 	/**
@@ -518,8 +518,8 @@  discard block
 block discarded – undo
518 518
 	 */
519 519
 	private function get_wordpress_version() {
520 520
 
521
-		return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ?
522
-			$GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version'];
521
+		return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ?
522
+			$GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ];
523 523
 	}
524 524
 
525 525
 	/**
@@ -531,14 +531,14 @@  discard block
 block discarded – undo
531 531
 	 */
532 532
 	private function get_gravityforms_version() {
533 533
 
534
-		if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) {
534
+		if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) {
535 535
 			gravityview()->log->error( 'Gravity Forms is inactive or not installed.' );
536 536
 
537 537
 			return null;
538 538
 		}
539 539
 
540
-		return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ?
541
-			$GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version;
540
+		return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ?
541
+			$GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version;
542 542
 	}
543 543
 
544 544
 	/**
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
 		$items = get_posts( array(
585 585
 			'post_type'   => 'gravityview',
586 586
 			'post_status' => 'any',
587
-			'numberposts' => - 1,
587
+			'numberposts' => -1,
588 588
 			'fields'      => 'ids',
589 589
 		) );
590 590
 
@@ -598,9 +598,9 @@  discard block
 block discarded – undo
598 598
 		$tables = array();
599 599
 
600 600
 		if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) ) {
601
-			$tables [] = \GFFormsModel::get_entry_meta_table_name();
601
+			$tables [ ] = \GFFormsModel::get_entry_meta_table_name();
602 602
 		} elseif ( ! $this->is_GF_25() ) {
603
-			$tables [] = \GFFormsModel::get_lead_meta_table_name();
603
+			$tables [ ] = \GFFormsModel::get_lead_meta_table_name();
604 604
 		}
605 605
 
606 606
 		foreach ( $tables as $meta_table ) {
@@ -619,9 +619,9 @@  discard block
 block discarded – undo
619 619
 		$tables = array();
620 620
 
621 621
 		if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_notes_table_name' ) ) {
622
-			$tables[] = \GFFormsModel::get_entry_notes_table_name();
622
+			$tables[ ] = \GFFormsModel::get_entry_notes_table_name();
623 623
 		} elseif ( ! $this->is_GF_25() ) {
624
-			$tables[] = \GFFormsModel::get_lead_notes_table_name();
624
+			$tables[ ] = \GFFormsModel::get_lead_notes_table_name();
625 625
 		}
626 626
 
627 627
 		$disapproved = __( 'Disapproved the Entry for GravityView', 'gravityview' );
Please login to merge, or discard this patch.
includes/admin/class-gravityview-admin-view-item.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
 
184 184
 		$parent_label = '';
185 185
 
186
-    if ( ! empty( $this->item['parent'] ) ) {
186
+	if ( ! empty( $this->item['parent'] ) ) {
187 187
 			$parent_label = ' <small>(' . esc_attr( $this->item['parent']['label'] ) . ')</small>';
188 188
 		}
189 189
 
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -44,12 +44,12 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	protected $form_id;
46 46
 
47
-	function __construct( $title = '', $item_id = '', $item = array(), $settings = array(), $form_id = null) {
47
+	function __construct( $title = '', $item_id = '', $item = array(), $settings = array(), $form_id = null ) {
48 48
 
49 49
 		// Backward compat
50
-		if ( ! empty( $item['type'] ) ) {
51
-			$item['input_type'] = $item['type'];
52
-			unset( $item['type'] );
50
+		if ( ! empty( $item[ 'type' ] ) ) {
51
+			$item[ 'input_type' ] = $item[ 'type' ];
52
+			unset( $item[ 'type' ] );
53 53
 		}
54 54
 
55 55
 		if ( $admin_label = \GV\Utils::get( $settings, 'admin_label' ) ) {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 		$this->id         = $item_id;
77 77
 		$this->form_id    = $form_id;
78 78
 		$this->settings   = $settings;
79
-		$this->label_type = $item['label_type'];
79
+		$this->label_type = $item[ 'label_type' ];
80 80
 	}
81 81
 
82 82
 	/**
@@ -120,14 +120,14 @@  discard block
 block discarded – undo
120 120
 
121 121
 			foreach ( $field_info_items as $item ) {
122 122
 
123
-				if( \GV\Utils::get( $item, 'hide_in_picker', false ) ) {
123
+				if ( \GV\Utils::get( $item, 'hide_in_picker', false ) ) {
124 124
 					continue;
125 125
 				}
126 126
 
127
-				$class = isset( $item['class'] ) ? sanitize_html_class( $item['class'] ) . ' description' : 'description';
127
+				$class = isset( $item[ 'class' ] ) ? sanitize_html_class( $item[ 'class' ] ) . ' description' : 'description';
128 128
 				// Add the title in case the value's long, in which case, it'll be truncated by CSS.
129 129
 				$output .= '<span class="' . $class . '">';
130
-				$output .= esc_html( $item['value'] );
130
+				$output .= esc_html( $item[ 'value' ] );
131 131
 				$output .= '</span>';
132 132
 			}
133 133
 
@@ -155,26 +155,26 @@  discard block
 block discarded – undo
155 155
 
156 156
 		// $settings_html will just be hidden inputs if empty. Otherwise, it'll have an <ul>. Ugly hack, I know.
157 157
 		// TODO: Un-hack this
158
-		$hide_settings_link_class = ( empty( $this->item['settings_html'] ) || strpos( $this->item['settings_html'], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : '';
159
-		$settings_link      = sprintf( '<button class="gv-field-settings" title="%1$s" aria-label="%1$s"><span class="dashicons-admin-generic dashicons %2$s"></span></button>', esc_attr( $settings_title ), $hide_settings_link_class );
158
+		$hide_settings_link_class = ( empty( $this->item[ 'settings_html' ] ) || strpos( $this->item[ 'settings_html' ], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : '';
159
+		$settings_link = sprintf( '<button class="gv-field-settings" title="%1$s" aria-label="%1$s"><span class="dashicons-admin-generic dashicons %2$s"></span></button>', esc_attr( $settings_title ), $hide_settings_link_class );
160 160
 
161 161
 		// Should we show the icon that the field is being used as a link to single entry?
162
-		$hide_show_as_link_class = empty( $this->settings['show_as_link'] ) ? 'hide-if-js' : '';
162
+		$hide_show_as_link_class = empty( $this->settings[ 'show_as_link' ] ) ? 'hide-if-js' : '';
163 163
 		$show_as_link            = '<span class="dashicons dashicons-admin-links ' . $hide_show_as_link_class . '" title="' . esc_attr( $single_link_title ) . '"></span>';
164 164
 
165 165
 		// When a field label is empty, use the Field ID
166 166
 		$label = empty( $this->title ) ? sprintf( _x( 'Field #%s (No Label)', 'Label in field picker for empty label', 'gravityview' ), $this->id ) : $this->title;
167 167
 
168 168
 		// If there's a custom label, and show label is checked, use that as the field heading
169
-		if ( ! empty( $this->settings['custom_label'] ) && ! empty( $this->settings['show_label'] ) ) {
170
-			$label = $this->settings['custom_label'];
171
-		} else if ( ! empty( $this->item['customLabel'] ) ) {
172
-			$label = $this->item['customLabel'];
169
+		if ( ! empty( $this->settings[ 'custom_label' ] ) && ! empty( $this->settings[ 'show_label' ] ) ) {
170
+			$label = $this->settings[ 'custom_label' ];
171
+		} else if ( ! empty( $this->item[ 'customLabel' ] ) ) {
172
+			$label = $this->item[ 'customLabel' ];
173 173
 		}
174 174
 		$label = esc_attr( $label );
175 175
 
176
-		if ( $this->item['icon'] && ! \GV\Utils::get( $this->item, 'parent' ) ) {
177
-			$label = '<i class="dashicons ' . esc_attr( $this->item['icon'] ) . '"></i> ' . $label;
176
+		if ( $this->item[ 'icon' ] && ! \GV\Utils::get( $this->item, 'parent' ) ) {
177
+			$label = '<i class="dashicons ' . esc_attr( $this->item[ 'icon' ] ) . '"></i> ' . $label;
178 178
 		}
179 179
 
180 180
 		$output = '<button class="gv-add-field screen-reader-text">' . sprintf( esc_html__( 'Add "%s"', 'gravityview' ), $label ) . '</button>';
@@ -183,8 +183,8 @@  discard block
 block discarded – undo
183 183
 
184 184
 		$parent_label = '';
185 185
 
186
-    if ( ! empty( $this->item['parent'] ) ) {
187
-			$parent_label = ' <small>(' . esc_attr( $this->item['parent']['label'] ) . ')</small>';
186
+    if ( ! empty( $this->item[ 'parent' ] ) ) {
187
+			$parent_label = ' <small>(' . esc_attr( $this->item[ 'parent' ][ 'label' ] ) . ')</small>';
188 188
 		}
189 189
 
190 190
 		// Name of field / widget
@@ -199,10 +199,10 @@  discard block
 block discarded – undo
199 199
 
200 200
 		$output .= '</h5>';
201 201
 
202
-		$container_class = ! empty( $this->item['parent'] ) ? ' gv-child-field' : '';
203
-		$data_form_id   = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : '';
202
+		$container_class = ! empty( $this->item[ 'parent' ] ) ? ' gv-child-field' : '';
203
+		$data_form_id = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : '';
204 204
 
205
-		$output = '<div data-fieldid="' . esc_attr( $this->id ) . '" ' . $data_form_id . ' data-inputtype="' . esc_attr( $this->item['input_type'] ) . '" class="gv-fields' . $container_class . '">' . $output . $this->item['settings_html'] . '</div>';
205
+		$output = '<div data-fieldid="' . esc_attr( $this->id ) . '" ' . $data_form_id . ' data-inputtype="' . esc_attr( $this->item[ 'input_type' ] ) . '" class="gv-fields' . $container_class . '">' . $output . $this->item[ 'settings_html' ] . '</div>';
206 206
 
207 207
 		return $output;
208 208
 	}
Please login to merge, or discard this patch.
includes/class-admin-views.php 2 patches
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -62,28 +62,28 @@  discard block
 block discarded – undo
62 62
 	}
63 63
 
64 64
 	/**
65
-     * When on the Add/Edit View screen, suggest most popular articles related to that
66
-     *
65
+	 * When on the Add/Edit View screen, suggest most popular articles related to that
66
+	 *
67 67
 	 * @param array $localization_data Data to be passed to the Support Port JS
68 68
 	 *
69 69
 	 * @return array
70 70
 	 */
71 71
 	function suggest_support_articles( $localization_data = array() ) {
72 72
 
73
-	    if( ! gravityview()->request->is_view() ) {
74
-	        return $localization_data;
75
-        }
73
+		if( ! gravityview()->request->is_view() ) {
74
+			return $localization_data;
75
+		}
76 76
 
77 77
 		$localization_data['suggest'] = array(
78
-            '57ef23539033602e61d4a560',
79
-            '54c67bb9e4b0512429885513',
80
-            '54c67bb9e4b0512429885512',
81
-            '54c67bbbe4b07997ea3f3f6b',
82
-            '54d1a33ae4b086c0c0964ce9',
83
-            '57ef253c9033602e61d4a563',
84
-            '552355bfe4b0221aadf2572b',
85
-            '54c67bcde4b051242988553e',
86
-        );
78
+			'57ef23539033602e61d4a560',
79
+			'54c67bb9e4b0512429885513',
80
+			'54c67bb9e4b0512429885512',
81
+			'54c67bbbe4b07997ea3f3f6b',
82
+			'54d1a33ae4b086c0c0964ce9',
83
+			'57ef253c9033602e61d4a563',
84
+			'552355bfe4b0221aadf2572b',
85
+			'54c67bcde4b051242988553e',
86
+		);
87 87
 
88 88
 		return $localization_data;
89 89
 	}
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
 
175 175
 		if( 'form_list' === GFForms::get_page() ) {
176 176
 			$priority = 790;
177
-        }
177
+		}
178 178
 
179 179
 		if( empty( $connected_views ) ) {
180 180
 
181
-		    $menu_items['gravityview'] = array(
181
+			$menu_items['gravityview'] = array(
182 182
 				'label'          => esc_attr__( 'Create a View', 'gravityview' ),
183 183
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
184 184
 				'title'          => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -209,14 +209,14 @@  discard block
 block discarded – undo
209 209
 		// If there were no items added, then let's create the parent menu
210 210
 		if( $sub_menu_items ) {
211 211
 
212
-		    $sub_menu_items[] = array(
213
-			    'label' => esc_attr__( 'Create a View', 'gravityview' ),
214
-                'link_class' => 'gv-create-view',
215
-			    'icon' => '<i>&nbsp;+&nbsp;</i>',
216
-			    'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
217
-			    'url'   => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ),
218
-			    'capabilities'   => array( 'edit_gravityviews' ),
219
-            );
212
+			$sub_menu_items[] = array(
213
+				'label' => esc_attr__( 'Create a View', 'gravityview' ),
214
+				'link_class' => 'gv-create-view',
215
+				'icon' => '<i>&nbsp;+&nbsp;</i>',
216
+				'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
217
+				'url'   => admin_url( 'post-new.php?post_type=gravityview&form_id=' . $id ),
218
+				'capabilities'   => array( 'edit_gravityviews' ),
219
+			);
220 220
 
221 221
 
222 222
 			/**
@@ -619,16 +619,16 @@  discard block
 block discarded – undo
619 619
 	/**
620 620
 	 * Render html for displaying available fields based on a Form ID
621 621
 	 *
622
-     * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action
622
+	 * @see GravityView_Ajax::get_available_fields_html() Triggers `gravityview_render_available_fields` action
623 623
 	 *
624 624
 	 * @param int $form Gravity Forms Form ID (default: '')
625 625
 	 * @param string $context (default: 'single')
626
-     *
626
+	 *
627 627
 	 * @return void
628 628
 	 */
629 629
 	function render_available_fields( $form = 0, $context = 'single' ) {
630 630
 
631
-	    // Determine if form is a preset and convert it to an array with fields
631
+		// Determine if form is a preset and convert it to an array with fields
632 632
 		$form = ( is_string( $form ) && preg_match( '/^preset_/', $form ) ) ? GravityView_Ajax::pre_get_form_fields( $form ) : $form;
633 633
 
634 634
 		/**
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
 
641 641
 		if ( ! is_array( $blacklist_field_types ) ) {
642 642
 
643
-		    gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) );
643
+			gravityview()->log->error( '$blacklist_field_types is not an array', array( 'data' => print_r( $blacklist_field_types, true ) ) );
644 644
 
645 645
 			$blacklist_field_types = array();
646 646
 		}
@@ -778,12 +778,12 @@  discard block
 block discarded – undo
778 778
 				/**
779 779
 				 * @since 1.7.2
780 780
 				 */
781
-			    'other_entries' => array(
782
-				    'label'	=> __('Other Entries', 'gravityview'),
783
-				    'type'	=> 'other_entries',
784
-				    'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
785
-			    ),
786
-	        );
781
+				'other_entries' => array(
782
+					'label'	=> __('Other Entries', 'gravityview'),
783
+					'type'	=> 'other_entries',
784
+					'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
785
+				),
786
+			);
787 787
 
788 788
 			if( 'single' !== $zone) {
789 789
 
@@ -955,9 +955,9 @@  discard block
 block discarded – undo
955 955
 
956 956
 				$joined_forms = gravityview_get_joined_forms( $post->ID );
957 957
 
958
-                foreach ( $joined_forms as $form ) {
959
-                    $available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone );
960
-                }
958
+				foreach ( $joined_forms as $form ) {
959
+					$available_items[ $form->ID ] = $this->get_available_fields( $form->ID, $zone );
960
+				}
961 961
 			} else {
962 962
 				$available_items[ $form ] = \GV\Widget::registered();
963 963
 			}
@@ -985,9 +985,9 @@  discard block
 block discarded – undo
985 985
 
986 986
 										if ( $form_id ) {
987 987
 											$original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ;
988
-                                        } else {
988
+										} else {
989 989
 											$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
990
-                                        }
990
+										}
991 991
 
992 992
 										if ( !$original_item ) {
993 993
 											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) );
@@ -1039,7 +1039,7 @@  discard block
 block discarded – undo
1039 1039
 
1040 1040
 	/**
1041 1041
 	 * Render the widget active areas
1042
-     * @param  string $template_id The current slug of the selected View template
1042
+	 * @param  string $template_id The current slug of the selected View template
1043 1043
 	 * @param  string $zone    Either 'header' or 'footer'
1044 1044
 	 * @param  string $post_id Current Post ID (view)
1045 1045
 	 * @return string          html
@@ -1230,7 +1230,7 @@  discard block
 block discarded – undo
1230 1230
 		}
1231 1231
 
1232 1232
 		// Add the GV font (with the Astronaut)
1233
-        wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version );
1233
+		wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version );
1234 1234
 		wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version );
1235 1235
 
1236 1236
 		wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true );
@@ -1238,64 +1238,64 @@  discard block
 block discarded – undo
1238 1238
 		if( GFForms::get_page() === 'form_list' ) {
1239 1239
 			wp_enqueue_style( 'gravityview_views_styles' );
1240 1240
 			return;
1241
-        }
1241
+		}
1242 1242
 
1243 1243
 		// Don't process any scripts below here if it's not a GravityView page.
1244 1244
 		if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1245
-		    return;
1245
+			return;
1246 1246
 		}
1247 1247
 
1248
-        wp_enqueue_script( 'jquery-ui-datepicker' );
1249
-        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version );
1250
-
1251
-        // Enqueue scripts
1252
-        wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version );
1253
-
1254
-        wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1255
-            'cookiepath' => COOKIEPATH,
1256
-            'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1257
-            'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1258
-            'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1259
-            'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ),
1260
-            'label_add_search_field' => __( 'Add Search Field', 'gravityview' ),
1261
-            'label_remove_search_field' => __( 'Remove Search Field', 'gravityview' ),
1262
-            'label_close' => __( 'Close', 'gravityview' ),
1263
-            'label_cancel' => __( 'Cancel', 'gravityview' ),
1264
-            'label_continue' => __( 'Continue', 'gravityview' ),
1265
-            'label_ok' => __( 'Ok', 'gravityview' ),
1266
-            'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ),
1267
-            'loading_text' => esc_html__( 'Loading&hellip;', 'gravityview' ),
1268
-            'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1269
-            'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1270
-            'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1271
-        ));
1248
+		wp_enqueue_script( 'jquery-ui-datepicker' );
1249
+		wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version );
1250
+
1251
+		// Enqueue scripts
1252
+		wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version );
1253
+
1254
+		wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1255
+			'cookiepath' => COOKIEPATH,
1256
+			'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1257
+			'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1258
+			'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1259
+			'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ),
1260
+			'label_add_search_field' => __( 'Add Search Field', 'gravityview' ),
1261
+			'label_remove_search_field' => __( 'Remove Search Field', 'gravityview' ),
1262
+			'label_close' => __( 'Close', 'gravityview' ),
1263
+			'label_cancel' => __( 'Cancel', 'gravityview' ),
1264
+			'label_continue' => __( 'Continue', 'gravityview' ),
1265
+			'label_ok' => __( 'Ok', 'gravityview' ),
1266
+			'label_publisherror' => __( 'Error while creating the View for you. Check the settings or contact GravityView support.', 'gravityview' ),
1267
+			'loading_text' => esc_html__( 'Loading&hellip;', 'gravityview' ),
1268
+			'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1269
+			'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1270
+			'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1271
+		));
1272 1272
 
1273 1273
 		wp_enqueue_style( 'gravityview_views_styles' );
1274 1274
 
1275
-        // Enqueue scripts needed for merge tags
1276
-        self::enqueue_gravity_forms_scripts();
1275
+		// Enqueue scripts needed for merge tags
1276
+		self::enqueue_gravity_forms_scripts();
1277 1277
 	}
1278 1278
 
1279 1279
 	/**
1280 1280
 	 * Enqueue Gravity Forms scripts, needed for Merge Tags
1281
-     *
1282
-     * @since 1.0.5-beta
1283
-     *
1284
-     * @return void
1281
+	 *
1282
+	 * @since 1.0.5-beta
1283
+	 *
1284
+	 * @return void
1285 1285
 	 */
1286 1286
 	static function enqueue_gravity_forms_scripts() {
1287 1287
 		GFForms::register_scripts();
1288 1288
 
1289 1289
 		$scripts = array(
1290
-		    'sack',
1291
-		    'gform_gravityforms',
1292
-		    'gform_forms',
1293
-		    'gform_form_admin',
1294
-		    'jquery-ui-autocomplete'
1290
+			'sack',
1291
+			'gform_gravityforms',
1292
+			'gform_forms',
1293
+			'gform_form_admin',
1294
+			'jquery-ui-autocomplete'
1295 1295
 		);
1296 1296
 
1297 1297
 		if ( wp_is_mobile() ) {
1298
-		    $scripts[] = 'jquery-touch-punch';
1298
+			$scripts[] = 'jquery-touch-punch';
1299 1299
 		}
1300 1300
 
1301 1301
 		wp_enqueue_script( $scripts );
Please login to merge, or discard this patch.
Spacing   +185 added lines, -185 removed lines patch added patch discarded remove patch
@@ -27,32 +27,32 @@  discard block
 block discarded – undo
27 27
 		add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 );
28 28
 
29 29
 		// Tooltips
30
-		add_filter( 'gform_tooltips', array( $this, 'tooltips') );
30
+		add_filter( 'gform_tooltips', array( $this, 'tooltips' ) );
31 31
 
32 32
 		// adding styles and scripts
33
-		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 );
34
-		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') );
35
-		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') );
36
-		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') );
37
-		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') );
38
-
39
-		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 );
40
-		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 );
41
-		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers'), 10, 2 );
42
-		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 );
43
-		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') );
44
-		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 );
33
+		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 );
34
+		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) );
35
+		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) );
36
+		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) );
37
+		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
38
+
39
+		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 );
40
+		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 );
41
+		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers' ), 10, 2 );
42
+		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 );
43
+		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) );
44
+		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 );
45 45
 
46 46
 		// @todo check if this hook is needed..
47 47
 		//add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 );
48 48
 
49 49
 		// Add Connected Form column
50
-		add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) );
50
+		add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) );
51 51
 
52 52
 		add_filter( 'gform_toolbar_menu', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 );
53 53
 		add_action( 'gform_form_actions', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 );
54 54
 
55
-		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content'), 10, 2 );
55
+		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content' ), 10, 2 );
56 56
 
57 57
 		add_action( 'restrict_manage_posts', array( $this, 'add_view_dropdown' ) );
58 58
 
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
 	 */
71 71
 	function suggest_support_articles( $localization_data = array() ) {
72 72
 
73
-	    if( ! gravityview()->request->is_view() ) {
73
+	    if ( ! gravityview()->request->is_view() ) {
74 74
 	        return $localization_data;
75 75
         }
76 76
 
77
-		$localization_data['suggest'] = array(
77
+		$localization_data[ 'suggest' ] = array(
78 78
             '57ef23539033602e61d4a560',
79 79
             '54c67bb9e4b0512429885513',
80 80
             '54c67bb9e4b0512429885512',
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
 	public function filter_pre_get_posts_by_gravityview_form_id( &$query ) {
96 96
 		global $pagenow;
97 97
 
98
-		if ( !is_admin() ) {
98
+		if ( ! is_admin() ) {
99 99
 			return;
100 100
 		}
101 101
 
102
-		$form_id = isset( $_GET['gravityview_form_id'] ) ? (int) $_GET['gravityview_form_id'] : false;
102
+		$form_id = isset( $_GET[ 'gravityview_form_id' ] ) ? (int)$_GET[ 'gravityview_form_id' ] : false;
103 103
 
104
-		if( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
104
+		if ( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
105 105
 			return;
106 106
 		}
107 107
 
@@ -118,18 +118,18 @@  discard block
 block discarded – undo
118 118
 	function add_view_dropdown() {
119 119
 		$current_screen = get_current_screen();
120 120
 
121
-		if( 'gravityview' !== $current_screen->post_type ) {
121
+		if ( 'gravityview' !== $current_screen->post_type ) {
122 122
 			return;
123 123
 		}
124 124
 
125 125
 		$forms = gravityview_get_forms();
126 126
 		$current_form = \GV\Utils::_GET( 'gravityview_form_id' );
127 127
 		// If there are no forms to select, show no forms.
128
-		if( !empty( $forms ) ) { ?>
128
+		if ( ! empty( $forms ) ) { ?>
129 129
 			<select name="gravityview_form_id" id="gravityview_form_id">
130 130
 				<option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option>
131
-				<?php foreach( $forms as $form ) { ?>
132
-					<option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option>
131
+				<?php foreach ( $forms as $form ) { ?>
132
+					<option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option>
133 133
 				<?php } ?>
134 134
 			</select>
135 135
 		<?php }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 */
143 143
 	public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) {
144 144
 		_deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' );
145
-		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id );
145
+		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id );
146 146
 	}
147 147
 
148 148
 	/**
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 	public static function gform_toolbar_menu( $menu_items = array(), $id = NULL ) {
165 165
 
166 166
 		// Don't show on Trashed forms
167
-		if( 'trash' === rgget( 'filter') ) {
167
+		if ( 'trash' === rgget( 'filter' ) ) {
168 168
 			return $menu_items;
169 169
 		}
170 170
 
@@ -172,13 +172,13 @@  discard block
 block discarded – undo
172 172
 
173 173
 		$priority = 0;
174 174
 
175
-		if( 'form_list' === GFForms::get_page() ) {
175
+		if ( 'form_list' === GFForms::get_page() ) {
176 176
 			$priority = 790;
177 177
         }
178 178
 
179
-		if( empty( $connected_views ) ) {
179
+		if ( empty( $connected_views ) ) {
180 180
 
181
-		    $menu_items['gravityview'] = array(
181
+		    $menu_items[ 'gravityview' ] = array(
182 182
 				'label'          => esc_attr__( 'Create a View', 'gravityview' ),
183 183
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
184 184
 				'title'          => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -194,22 +194,22 @@  discard block
 block discarded – undo
194 194
 		$sub_menu_items = array();
195 195
 		foreach ( (array)$connected_views as $view ) {
196 196
 
197
-			if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
197
+			if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
198 198
 				continue;
199 199
 			}
200 200
 
201
-			$label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
201
+			$label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
202 202
 
203
-			$sub_menu_items[] = array(
203
+			$sub_menu_items[ ] = array(
204 204
 				'label' => esc_attr( $label ),
205
-				'url' => admin_url( 'post.php?action=edit&post='.$view->ID ),
205
+				'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ),
206 206
 			);
207 207
 		}
208 208
 
209 209
 		// If there were no items added, then let's create the parent menu
210
-		if( $sub_menu_items ) {
210
+		if ( $sub_menu_items ) {
211 211
 
212
-		    $sub_menu_items[] = array(
212
+		    $sub_menu_items[ ] = array(
213 213
 			    'label' => esc_attr__( 'Create a View', 'gravityview' ),
214 214
                 'link_class' => 'gv-create-view',
215 215
 			    'icon' => '<i>&nbsp;+&nbsp;</i>',
@@ -225,14 +225,14 @@  discard block
 block discarded – undo
225 225
 			if ( ! ( 'gf_edit_forms' === rgget( 'page' ) && '' === rgget( 'view' ) ) || version_compare( '2.5-beta', GFForms::$version, '>' ) ) {
226 226
 
227 227
 				// Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown
228
-				$sub_menu_items[] = array(
228
+				$sub_menu_items[ ] = array(
229 229
 					'url' => '#',
230 230
 					'label' => '',
231 231
 					'menu_class' => 'hidden',
232 232
 					'capabilities' => '',
233 233
 				);
234 234
 
235
-				$menu_items['gravityview'] = array(
235
+				$menu_items[ 'gravityview' ] = array(
236 236
 					'label'          => __( 'Connected Views', 'gravityview' ),
237 237
 					'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
238 238
 					'title'          => __( 'GravityView Views using this form as a data source', 'gravityview' ),
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 
247 247
 			} else {
248 248
 
249
-				$menu_items[ 'gravityview'] = array(
249
+				$menu_items[ 'gravityview' ] = array(
250 250
 					'label' => __( 'Connected Views', 'gravityview' ),
251 251
 					'url'   => '#gravityview-group-heading',
252 252
 					'icon'  => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
@@ -282,8 +282,8 @@  discard block
 block discarded – undo
282 282
 		$add = array( 'captcha', 'page' );
283 283
 
284 284
 		// Don't allowing editing the following values:
285
-		if( $context === 'edit' ) {
286
-			$add[] = 'post_id';
285
+		if ( $context === 'edit' ) {
286
+			$add[ ] = 'post_id';
287 287
 		}
288 288
 
289 289
 		$return = array_merge( $array, $add );
@@ -306,27 +306,27 @@  discard block
 block discarded – undo
306 306
 		foreach ( $default_args as $key => $arg ) {
307 307
 
308 308
 			// If an arg has `tooltip` defined, but it's false, don't display a tooltip
309
-			if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; }
309
+			if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; }
310 310
 
311 311
 			// By default, use `tooltip` if defined.
312
-			$tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip'];
312
+			$tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ];
313 313
 
314 314
 			// If there's no tooltip set, continue
315
-			if( empty( $tooltip ) ) {
315
+			if ( empty( $tooltip ) ) {
316 316
 				continue;
317 317
 			}
318 318
 
319 319
 			// Add the tooltip
320
-			$gv_tooltips[ 'gv_'.$key ] = array(
321
-				'title'	=> $arg['label'],
320
+			$gv_tooltips[ 'gv_' . $key ] = array(
321
+				'title'	=> $arg[ 'label' ],
322 322
 				'value'	=> $tooltip,
323 323
 			);
324 324
 
325 325
 		}
326 326
 
327
-		$gv_tooltips['gv_css_merge_tags'] = array(
328
-			'title' => __('CSS Merge Tags', 'gravityview'),
329
-			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' )
327
+		$gv_tooltips[ 'gv_css_merge_tags' ] = array(
328
+			'title' => __( 'CSS Merge Tags', 'gravityview' ),
329
+			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' )
330 330
 		);
331 331
 
332 332
 		/**
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
 
345 345
 		foreach ( $gv_tooltips as $key => $tooltip ) {
346 346
 
347
-			$title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>';
347
+			$title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>';
348 348
 
349
-			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) );
349
+			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) );
350 350
 		}
351 351
 
352 352
 		return $tooltips;
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 	 *
361 361
 	 * @return void
362 362
 	 */
363
-	public function add_custom_column_content( $column_name = NULL, $post_id )	{
363
+	public function add_custom_column_content( $column_name = NULL, $post_id ) {
364 364
 
365 365
 		$output = '';
366 366
 
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 				// Generate backup if label doesn't exist: `example_name` => `Example Name`
383 383
 				$template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) );
384 384
 
385
-				$output = $template ? $template['label'] : $template_id_pretty;
385
+				$output = $template ? $template[ 'label' ] : $template_id_pretty;
386 386
 
387 387
 				break;
388 388
 
@@ -423,44 +423,44 @@  discard block
 block discarded – undo
423 423
 	static public function get_connected_form_links( $form, $include_form_link = true ) {
424 424
 
425 425
 		// Either the form is empty or the form ID is 0, not yet set.
426
-		if( empty( $form ) ) {
426
+		if ( empty( $form ) ) {
427 427
 			return '';
428 428
 		}
429 429
 
430 430
 		// The $form is passed as the form ID
431
-		if( !is_array( $form ) ) {
431
+		if ( ! is_array( $form ) ) {
432 432
 			$form = gravityview_get_form( $form );
433 433
 		}
434 434
 
435
-		$form_id = $form['id'];
435
+		$form_id = $form[ 'id' ];
436 436
 		$links = array();
437 437
 
438
-		if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
438
+		if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
439 439
 			$form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;id=%d', $form_id ) );
440
-			$form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>';
441
-			$links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>';
440
+			$form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>';
441
+			$links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>';
442 442
 		} else {
443
-			$form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>';
443
+			$form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>';
444 444
 		}
445 445
 
446
-		if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
446
+		if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
447 447
 			$entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&amp;id=%d', $form_id ) );
448
-			$links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>';
448
+			$links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>';
449 449
 		}
450 450
 
451
-		if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
451
+		if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
452 452
 			$settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;view=settings&amp;id=%d', $form_id ) );
453
-			$links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>';
453
+			$links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>';
454 454
 		}
455 455
 
456
-		if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) {
456
+		if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) {
457 457
 			$preview_url = site_url( sprintf( '?gf_page=preview&amp;id=%d', $form_id ) );
458
-			$links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>';
458
+			$links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>';
459 459
 		}
460 460
 
461 461
 		$output = '';
462 462
 
463
-		if( !empty( $include_form_link ) ) {
463
+		if ( ! empty( $include_form_link ) ) {
464 464
 			$output .= $form_link;
465 465
 		}
466 466
 
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
 		 */
473 473
 		$links = apply_filters( 'gravityview_connected_form_links', $links, $form );
474 474
 
475
-		$output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>';
475
+		$output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>';
476 476
 
477 477
 		return $output;
478 478
 	}
@@ -486,8 +486,8 @@  discard block
 block discarded – undo
486 486
 		// Get the date column and save it for later to add back in.
487 487
 		// This adds it after the Data Source column.
488 488
 		// This way, we don't need to do array_slice, array_merge, etc.
489
-		$date = $columns['date'];
490
-		unset( $columns['date'] );
489
+		$date = $columns[ 'date' ];
490
+		unset( $columns[ 'date' ] );
491 491
 
492 492
 		$data_source_required_caps = array(
493 493
 			'gravityforms_edit_forms',
@@ -498,14 +498,14 @@  discard block
 block discarded – undo
498 498
 			'gravityforms_preview_forms',
499 499
 		);
500 500
 
501
-		if( GVCommon::has_cap( $data_source_required_caps ) ) {
502
-			$columns['gv_connected_form'] = __( 'Data Source', 'gravityview' );
501
+		if ( GVCommon::has_cap( $data_source_required_caps ) ) {
502
+			$columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' );
503 503
 		}
504 504
 
505
-		$columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
505
+		$columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
506 506
 
507 507
 		// Add the date back in.
508
-		$columns['date'] = $date;
508
+		$columns[ 'date' ] = $date;
509 509
 
510 510
 		return $columns;
511 511
 	}
@@ -518,12 +518,12 @@  discard block
 block discarded – undo
518 518
 	 */
519 519
 	function save_postdata( $post_id ) {
520 520
 
521
-		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){
521
+		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
522 522
 			return;
523 523
 		}
524 524
 
525 525
 		// validate post_type
526
-		if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) {
526
+		if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) {
527 527
 			return;
528 528
 		}
529 529
 
@@ -538,63 +538,63 @@  discard block
 block discarded – undo
538 538
 		$statii = array();
539 539
 
540 540
 		// check if this is a start fresh View
541
-		if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) {
541
+		if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) {
542 542
 
543
-			$form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : '';
543
+			$form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : '';
544 544
 			// save form id
545
-			$statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
545
+			$statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
546 546
 
547 547
 		}
548 548
 
549
-		if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) {
549
+		if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) {
550 550
 			gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) );
551 551
 			return;
552 552
 		}
553 553
 
554 554
 		// Was this a start fresh?
555
-		if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) {
556
-			$statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
555
+		if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) {
556
+			$statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
557 557
 		} else {
558
-			$statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
558
+			$statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
559 559
 		}
560 560
 
561 561
 		// Check if we have a template id
562
-		if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) {
562
+		if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) {
563 563
 
564
-			$template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : '';
564
+			$template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : '';
565 565
 
566 566
 			// now save template id
567
-			$statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
567
+			$statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
568 568
 		}
569 569
 
570 570
 
571 571
 		// save View Configuration metabox
572
-		if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) {
572
+		if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) {
573 573
 
574 574
 			// template settings
575
-			if( empty( $_POST['template_settings'] ) ) {
576
-				$_POST['template_settings'] = array();
575
+			if ( empty( $_POST[ 'template_settings' ] ) ) {
576
+				$_POST[ 'template_settings' ] = array();
577 577
 			}
578
-			$statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] );
578
+			$statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] );
579 579
 
580 580
 			// guard against unloaded View configuration page
581
-			if ( isset( $_POST['gv_fields'] ) && isset( $_POST['gv_fields_done'] ) ) {
581
+			if ( isset( $_POST[ 'gv_fields' ] ) && isset( $_POST[ 'gv_fields_done' ] ) ) {
582 582
 				$fields = array();
583 583
 
584
-				if ( ! empty( $_POST['gv_fields'] ) ) {
584
+				if ( ! empty( $_POST[ 'gv_fields' ] ) ) {
585 585
 					$fields = _gravityview_process_posted_fields();
586 586
 				}
587 587
 
588 588
 				$fields = wp_slash( $fields );
589 589
 
590
-				$statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
590
+				$statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
591 591
 			}
592 592
 
593 593
 			// Directory Visible Widgets
594
-			if( empty( $_POST['widgets'] ) ) {
595
-				$_POST['widgets'] = array();
594
+			if ( empty( $_POST[ 'widgets' ] ) ) {
595
+				$_POST[ 'widgets' ] = array();
596 596
 			}
597
-			$statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] );
597
+			$statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] );
598 598
 
599 599
 		} // end save view configuration
600 600
 
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
 		 * @param array $statii Array of statuses of the post meta saving processes. If saving worked, each key should be mapped to a value of the post ID (`directory_widgets` => `124`). If failed (or didn't change), the value will be false.
605 605
 		 * @since 1.17.2
606 606
 		 */
607
-		do_action('gravityview_view_saved', $post_id, $statii );
607
+		do_action( 'gravityview_view_saved', $post_id, $statii );
608 608
 
609 609
 		gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) );
610 610
 	}
@@ -649,20 +649,20 @@  discard block
 block discarded – undo
649 649
 
650 650
 		$output = '';
651 651
 
652
-		if( !empty( $fields ) ) {
652
+		if ( ! empty( $fields ) ) {
653 653
 
654
-			foreach( $fields as $id => $details ) {
654
+			foreach ( $fields as $id => $details ) {
655 655
 
656
-				if( in_array( $details['type'], (array) $blacklist_field_types ) ) {
656
+				if ( in_array( $details[ 'type' ], (array)$blacklist_field_types ) ) {
657 657
 					continue;
658 658
 				}
659 659
 
660 660
 				// Edit mode only allows editing the parent fields, not single inputs.
661
-				if( $context === 'edit' && ! empty( $details['parent'] ) ) {
661
+				if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) {
662 662
 					continue;
663 663
 				}
664 664
 
665
-				$output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, array(), $form );
665
+				$output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, array(), $form );
666 666
 
667 667
 			} // End foreach
668 668
 		}
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
 		echo $output;
671 671
 
672 672
 		// For the EDIT view we only want to allow the form fields.
673
-		if( $context === 'edit' ) {
673
+		if ( $context === 'edit' ) {
674 674
 			return;
675 675
 		}
676 676
 
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
 		$additional_fields = array(
690 690
 			array(
691 691
 				'label_text' => '+ ' . __( 'Add All Form Fields', 'gravityview' ),
692
-				'desc' => __('Insert all the form fields at once.', 'gravityview'),
692
+				'desc' => __( 'Insert all the form fields at once.', 'gravityview' ),
693 693
 				'field_id' => 'all-fields',
694 694
 				'label_type' => 'field',
695 695
 				'input_type' => null,
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
 		 */
706 706
 		$additional_fields = apply_filters( 'gravityview_additional_fields', $additional_fields );
707 707
 
708
-		foreach ( (array) $additional_fields as $item ) {
708
+		foreach ( (array)$additional_fields as $item ) {
709 709
 
710 710
 			// Prevent items from not having index set
711 711
 			$item = wp_parse_args( $item, array(
@@ -716,16 +716,16 @@  discard block
 block discarded – undo
716 716
 				'field_options' => null,
717 717
 				'settings_html'	=> null,
718 718
 				'icon' => null,
719
-			));
719
+			) );
720 720
 
721 721
 			// Backward compat.
722
-			if( !empty( $item['field_options'] ) ) {
722
+			if ( ! empty( $item[ 'field_options' ] ) ) {
723 723
 				// Use settings_html from now on.
724
-				$item['settings_html'] = $item['field_options'];
724
+				$item[ 'settings_html' ] = $item[ 'field_options' ];
725 725
 			}
726 726
 
727 727
 			// Render a label for each of them
728
-			echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form );
728
+			echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form );
729 729
 
730 730
 		}
731 731
 
@@ -737,59 +737,59 @@  discard block
 block discarded – undo
737 737
 	 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
738 738
 	 * @return array
739 739
 	 */
740
-	function get_entry_default_fields($form, $zone) {
740
+	function get_entry_default_fields( $form, $zone ) {
741 741
 
742 742
 		$entry_default_fields = array();
743 743
 
744
-		if( in_array( $zone, array( 'directory', 'single' ) ) ) {
744
+		if ( in_array( $zone, array( 'directory', 'single' ) ) ) {
745 745
 
746 746
 			$entry_default_fields = array(
747 747
 				'id' => array(
748
-					'label' => __('Entry ID', 'gravityview'),
748
+					'label' => __( 'Entry ID', 'gravityview' ),
749 749
 					'type' => 'id',
750
-					'desc'	=> __('The unique ID of the entry.', 'gravityview'),
750
+					'desc'	=> __( 'The unique ID of the entry.', 'gravityview' ),
751 751
 				),
752 752
 				'date_created' => array(
753
-					'label' => __('Entry Date', 'gravityview'),
754
-					'desc'	=> __('The date the entry was created.', 'gravityview'),
753
+					'label' => __( 'Entry Date', 'gravityview' ),
754
+					'desc'	=> __( 'The date the entry was created.', 'gravityview' ),
755 755
 					'type' => 'date_created',
756 756
 				),
757 757
 				'date_updated' => array(
758
-						'label' => __( 'Date Updated', 'gravityview'),
759
-						'desc'	=> __('The date the entry was last updated.', 'gravityview'),
758
+						'label' => __( 'Date Updated', 'gravityview' ),
759
+						'desc'	=> __( 'The date the entry was last updated.', 'gravityview' ),
760 760
 						'type' => 'date_updated',
761 761
 				),
762 762
 				'source_url' => array(
763
-					'label' => __('Source URL', 'gravityview'),
763
+					'label' => __( 'Source URL', 'gravityview' ),
764 764
 					'type' => 'source_url',
765
-					'desc'	=> __('The URL of the page where the form was submitted.', 'gravityview'),
765
+					'desc'	=> __( 'The URL of the page where the form was submitted.', 'gravityview' ),
766 766
 				),
767 767
 				'ip' => array(
768
-					'label' => __('User IP', 'gravityview'),
768
+					'label' => __( 'User IP', 'gravityview' ),
769 769
 					'type' => 'ip',
770
-					'desc'	=> __('The IP Address of the user who created the entry.', 'gravityview'),
770
+					'desc'	=> __( 'The IP Address of the user who created the entry.', 'gravityview' ),
771 771
 				),
772 772
 				'created_by' => array(
773
-					'label' => __('User', 'gravityview'),
773
+					'label' => __( 'User', 'gravityview' ),
774 774
 					'type' => 'created_by',
775
-					'desc'	=> __('Details of the logged-in user who created the entry (if any).', 'gravityview'),
775
+					'desc'	=> __( 'Details of the logged-in user who created the entry (if any).', 'gravityview' ),
776 776
 				),
777 777
 
778 778
 				/**
779 779
 				 * @since 1.7.2
780 780
 				 */
781 781
 			    'other_entries' => array(
782
-				    'label'	=> __('Other Entries', 'gravityview'),
782
+				    'label'	=> __( 'Other Entries', 'gravityview' ),
783 783
 				    'type'	=> 'other_entries',
784
-				    'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
784
+				    'desc'	=> __( 'Display other entries created by the entry creator.', 'gravityview' ),
785 785
 			    ),
786 786
 	        );
787 787
 
788
-			if( 'single' !== $zone) {
788
+			if ( 'single' !== $zone ) {
789 789
 
790
-				$entry_default_fields['entry_link'] = array(
791
-					'label' => __('Link to Entry', 'gravityview'),
792
-					'desc'	=> __('A dedicated link to the single entry with customizable text.', 'gravityview'),
790
+				$entry_default_fields[ 'entry_link' ] = array(
791
+					'label' => __( 'Link to Entry', 'gravityview' ),
792
+					'desc'	=> __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ),
793 793
 					'type' => 'entry_link',
794 794
 				);
795 795
 			}
@@ -799,19 +799,19 @@  discard block
 block discarded – undo
799 799
 		/**
800 800
 		 * @since  1.2
801 801
 		 */
802
-		$entry_default_fields['custom']	= array(
803
-			'label'	=> __('Custom Content', 'gravityview'),
802
+		$entry_default_fields[ 'custom' ] = array(
803
+			'label'	=> __( 'Custom Content', 'gravityview' ),
804 804
 			'type'	=> 'custom',
805
-			'desc'	=> __('Insert custom text or HTML.', 'gravityview'),
805
+			'desc'	=> __( 'Insert custom text or HTML.', 'gravityview' ),
806 806
 		);
807 807
 
808 808
 		/**
809 809
 		 * @since develop
810 810
 		 */
811
-		$entry_default_fields['sequence'] = array(
812
-			'label'	=> __('Result Number', 'gravityview'),
811
+		$entry_default_fields[ 'sequence' ] = array(
812
+			'label'	=> __( 'Result Number', 'gravityview' ),
813 813
 			'type'	=> 'sequence',
814
-			'desc'	=> __('Display a sequential result number for each entry.', 'gravityview'),
814
+			'desc'	=> __( 'Display a sequential result number for each entry.', 'gravityview' ),
815 815
 		);
816 816
 
817 817
 		/**
@@ -820,7 +820,7 @@  discard block
 block discarded – undo
820 820
 		 * @param  string|array $form form_ID or form object
821 821
 		 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
822 822
 		 */
823
-		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone);
823
+		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone );
824 824
 	}
825 825
 
826 826
 	/**
@@ -831,7 +831,7 @@  discard block
 block discarded – undo
831 831
 	 */
832 832
 	function get_available_fields( $form = '', $zone = NULL ) {
833 833
 
834
-		if( empty( $form ) ) {
834
+		if ( empty( $form ) ) {
835 835
 			gravityview()->log->error( '$form is empty' );
836 836
 			return array();
837 837
 		}
@@ -840,7 +840,7 @@  discard block
 block discarded – undo
840 840
 		$fields = gravityview_get_form_fields( $form, true );
841 841
 
842 842
 		// get meta fields ( only if form was already created )
843
-		if( !is_array( $form ) ) {
843
+		if ( ! is_array( $form ) ) {
844 844
 			$meta_fields = gravityview_get_entry_meta( $form );
845 845
 		} else {
846 846
 			$meta_fields = array();
@@ -853,14 +853,14 @@  discard block
 block discarded – undo
853 853
 		$fields = $fields + $meta_fields + $default_fields;
854 854
 
855 855
 		// Move Custom Content to top
856
-		$fields = array( 'custom' => $fields['custom'] ) + $fields;
856
+		$fields = array( 'custom' => $fields[ 'custom' ] ) + $fields;
857 857
 
858 858
 		$gv_fields = GravityView_Fields::get_all();
859 859
 
860 860
 		foreach ( $fields as &$field ) {
861 861
 			foreach ( $gv_fields as $gv_field ) {
862
-				if ( $field['type'] === $gv_field->name ) {
863
-					$field['icon'] = $gv_field->icon;
862
+				if ( $field[ 'type' ] === $gv_field->name ) {
863
+					$field[ 'icon' ] = $gv_field->icon;
864 864
 				}
865 865
 			}
866 866
 		}
@@ -883,11 +883,11 @@  discard block
 block discarded – undo
883 883
 
884 884
 		$widgets = $this->get_registered_widgets();
885 885
 
886
-		if( !empty( $widgets ) ) {
886
+		if ( ! empty( $widgets ) ) {
887 887
 
888
-			foreach( $widgets as $id => $details ) {
888
+			foreach ( $widgets as $id => $details ) {
889 889
 
890
-				echo new GravityView_Admin_View_Widget( $details['label'], $id, $details );
890
+				echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details );
891 891
 
892 892
 			}
893 893
 		}
@@ -916,7 +916,7 @@  discard block
 block discarded – undo
916 916
 	function render_active_areas( $template_id, $type, $zone, $rows, $values ) {
917 917
 		global $post;
918 918
 
919
-		if( $type === 'widget' ) {
919
+		if ( $type === 'widget' ) {
920 920
 			$button_label = __( 'Add Widget', 'gravityview' );
921 921
 		} else {
922 922
 			$button_label = __( 'Add Field', 'gravityview' );
@@ -942,10 +942,10 @@  discard block
 block discarded – undo
942 942
 		$form_id = null;
943 943
 
944 944
 		// if saved values, get available fields to label everyone
945
-		if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) {
945
+		if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) {
946 946
 
947
-			if( !empty( $_POST['template_id'] ) ) {
948
-				$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
947
+			if ( ! empty( $_POST[ 'template_id' ] ) ) {
948
+				$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
949 949
 			} else {
950 950
 				$form_id = $form = gravityview_get_form_id( $post->ID );
951 951
 			}
@@ -963,42 +963,42 @@  discard block
 block discarded – undo
963 963
 			}
964 964
 		}
965 965
 
966
-		foreach( $rows as $row ) :
967
-			foreach( $row as $col => $areas ) :
968
-				$column = ($col == '2-2') ? '1-2' : $col; ?>
966
+		foreach ( $rows as $row ) :
967
+			foreach ( $row as $col => $areas ) :
968
+				$column = ( $col == '2-2' ) ? '1-2' : $col; ?>
969 969
 
970 970
 				<div class="gv-grid-col-<?php echo esc_attr( $column ); ?>">
971 971
 
972
-					<?php foreach( $areas as $area ) : 	?>
972
+					<?php foreach ( $areas as $area ) : 	?>
973 973
 
974
-						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
975
-							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>">
974
+						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
975
+							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>">
976 976
 								<?php // render saved fields
977
-								if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) {
977
+								if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) {
978 978
 
979
-									foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) {
979
+									foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) {
980 980
 
981 981
 										// Maybe has a form ID
982
-										$form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id'];
982
+										$form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ];
983 983
 
984 984
 										$input_type = NULL;
985 985
 
986 986
 										if ( $form_id ) {
987
-											$original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ;
987
+											$original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false;
988 988
                                         } else {
989
-											$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
989
+											$original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false;
990 990
                                         }
991 991
 
992
-										if ( !$original_item ) {
993
-											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) );
992
+										if ( ! $original_item ) {
993
+											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array( ' data' => array( 'available_items' => $available_items, 'field' => $field ) ) );
994 994
 
995 995
 											$original_item = $field;
996 996
 										} else {
997
-											$input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL;
997
+											$input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL;
998 998
 										}
999 999
 
1000 1000
 										// Field options dialog box
1001
-										$field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field['id'], $original_item['label'], $zone .'_'. $area['areaid'], $input_type, $uniqid, $field, $zone, $original_item );
1001
+										$field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field[ 'id' ], $original_item[ 'label' ], $zone . '_' . $area[ 'areaid' ], $input_type, $uniqid, $field, $zone, $original_item );
1002 1002
 
1003 1003
 										$item = array(
1004 1004
 											'input_type' => $input_type,
@@ -1011,22 +1011,22 @@  discard block
 block discarded – undo
1011 1011
 											$item = wp_parse_args( $item, $original_item );
1012 1012
 										}
1013 1013
 
1014
-										switch( $type ) {
1014
+										switch ( $type ) {
1015 1015
 											case 'widget':
1016
-												echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field );
1016
+												echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field );
1017 1017
 												break;
1018 1018
 											default:
1019
-												echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id );
1019
+												echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id );
1020 1020
 										}
1021 1021
 									}
1022 1022
 
1023 1023
 								} // End if zone is not empty ?>
1024 1024
 
1025
-								<span class="drop-message"><?php echo sprintf( esc_html__('"+ %s" or drag existing %ss here.', 'gravityview'), esc_html( $button_label ), esc_html( $type ) ); ?></span>
1025
+								<span class="drop-message"><?php echo sprintf( esc_html__( '"+ %s" or drag existing %ss here.', 'gravityview' ), esc_html( $button_label ), esc_html( $type ) ); ?></span>
1026 1026
 							</div>
1027 1027
 							<div class="gv-droppable-area-action">
1028
-								<button class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ '.esc_html( $button_label ); ?></button>
1029
-								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area['title'] ); ?></strong><?php if( !empty( $area['subtitle'] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area['subtitle'] ); ?></span><?php } ?></p>
1028
+								<button class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ ' . esc_html( $button_label ); ?></button>
1029
+								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area[ 'title' ] ); ?></strong><?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area[ 'subtitle' ] ); ?></span><?php } ?></p>
1030 1030
 							</div>
1031 1031
 						</div>
1032 1032
 
@@ -1054,7 +1054,7 @@  discard block
 block discarded – undo
1054 1054
 				// This is a new View, prefill the widgets
1055 1055
 				$widgets = array(
1056 1056
 					'header_top' => array(
1057
-						substr( md5( microtime( true ) ), 0, 13 ) => array (
1057
+						substr( md5( microtime( true ) ), 0, 13 ) => array(
1058 1058
 							'id' => 'search_bar',
1059 1059
 							'label' => __( 'Search Bar', 'gravityview' ),
1060 1060
 							'search_layout' => 'horizontal',
@@ -1129,12 +1129,12 @@  discard block
 block discarded – undo
1129 1129
 		if ( $post ) {
1130 1130
 			$source_form_id = gravityview_get_form_id( $post->ID );
1131 1131
 			if ( $source_form_id ) {
1132
-				$form_ids[] = $source_form_id;
1132
+				$form_ids[ ] = $source_form_id;
1133 1133
 			}
1134 1134
 
1135 1135
 			$joined_forms = \GV\View::get_joined_forms( $post->ID );
1136 1136
 			foreach ( $joined_forms as $joined_form ) {
1137
-				$form_ids[] = $joined_form->ID;
1137
+				$form_ids[ ] = $joined_form->ID;
1138 1138
 			}
1139 1139
 		}
1140 1140
 		foreach ( array_unique( $form_ids ) as $form_id ) {
@@ -1168,7 +1168,7 @@  discard block
 block discarded – undo
1168 1168
 	 * @return string HTML of the active areas
1169 1169
 	 */
1170 1170
 	function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) {
1171
-		if( empty( $template_id ) ) {
1171
+		if ( empty( $template_id ) ) {
1172 1172
 			gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) );
1173 1173
 			return '';
1174 1174
 		}
@@ -1182,12 +1182,12 @@  discard block
 block discarded – undo
1182 1182
 		 */
1183 1183
 		$template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context );
1184 1184
 
1185
-		if( empty( $template_areas ) ) {
1185
+		if ( empty( $template_areas ) ) {
1186 1186
 
1187 1187
 			gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) );
1188 1188
 			$output = '<div>';
1189
-			$output .= '<h2 class="description" style="font-size: 16px; margin:0">'. sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>'.$template_id.'</em>' ) .'</h2>';
1190
-			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">'.esc_html__('The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview').'</p>';
1189
+			$output .= '<h2 class="description" style="font-size: 16px; margin:0">' . sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>' . $template_id . '</em>' ) . '</h2>';
1190
+			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">' . esc_html__( 'The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview' ) . '</p>';
1191 1191
 			$output .= '</div>';
1192 1192
 		} else {
1193 1193
 
@@ -1202,7 +1202,7 @@  discard block
 block discarded – undo
1202 1202
 
1203 1203
 		}
1204 1204
 
1205
-		if( $echo ) {
1205
+		if ( $echo ) {
1206 1206
 			echo $output;
1207 1207
 		}
1208 1208
 
@@ -1230,30 +1230,30 @@  discard block
 block discarded – undo
1230 1230
 		}
1231 1231
 
1232 1232
 		// Add the GV font (with the Astronaut)
1233
-        wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version );
1233
+        wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), \GV\Plugin::$version );
1234 1234
 		wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version );
1235 1235
 
1236
-		wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true );
1236
+		wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), \GV\Plugin::$version, true );
1237 1237
 
1238
-		if( GFForms::get_page() === 'form_list' ) {
1238
+		if ( GFForms::get_page() === 'form_list' ) {
1239 1239
 			wp_enqueue_style( 'gravityview_views_styles' );
1240 1240
 			return;
1241 1241
         }
1242 1242
 
1243 1243
 		// Don't process any scripts below here if it's not a GravityView page.
1244
-		if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1244
+		if ( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1245 1245
 		    return;
1246 1246
 		}
1247 1247
 
1248 1248
         wp_enqueue_script( 'jquery-ui-datepicker' );
1249
-        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version );
1249
+        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), \GV\Plugin::$version );
1250 1250
 
1251 1251
         // Enqueue scripts
1252 1252
         wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version );
1253 1253
 
1254
-        wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1254
+        wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array(
1255 1255
             'cookiepath' => COOKIEPATH,
1256
-            'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1256
+            'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ),
1257 1257
             'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1258 1258
             'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1259 1259
             'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ),
@@ -1268,7 +1268,7 @@  discard block
 block discarded – undo
1268 1268
             'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1269 1269
             'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1270 1270
             'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1271
-        ));
1271
+        ) );
1272 1272
 
1273 1273
 		wp_enqueue_style( 'gravityview_views_styles' );
1274 1274
 
@@ -1295,7 +1295,7 @@  discard block
 block discarded – undo
1295 1295
 		);
1296 1296
 
1297 1297
 		if ( wp_is_mobile() ) {
1298
-		    $scripts[] = 'jquery-touch-punch';
1298
+		    $scripts[ ] = 'jquery-touch-punch';
1299 1299
 		}
1300 1300
 
1301 1301
 		wp_enqueue_script( $scripts );
Please login to merge, or discard this patch.