Completed
Push — develop ( ca604f...ac8bbb )
by Zack
19:09
created
future/includes/class-gv-settings-addon.php 2 patches
Indentation   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -138,20 +138,20 @@  discard block
 block discarded – undo
138 138
 	}
139 139
 
140 140
 	/**
141
-     * Uninstall all traces of GravityView
142
-     *
143
-     * Note: method is public because parent method is public
144
-     *
141
+	 * Uninstall all traces of GravityView
142
+	 *
143
+	 * Note: method is public because parent method is public
144
+	 *
145 145
 	 * @return bool
146 146
 	 */
147 147
 	public function uninstall() {
148 148
 		gravityview()->plugin->uninstall();
149 149
 
150 150
 		/**
151
-         * Set the path so that Gravity Forms can de-activate GravityView
152
-         * @see GFAddOn::uninstall_addon
153
-         * @uses deactivate_plugins()
154
-         */
151
+		 * Set the path so that Gravity Forms can de-activate GravityView
152
+		 * @see GFAddOn::uninstall_addon
153
+		 * @uses deactivate_plugins()
154
+		 */
155 155
 		$this->_path = GRAVITYVIEW_FILE;
156 156
 
157 157
 		return true;
@@ -181,42 +181,42 @@  discard block
 block discarded – undo
181 181
 	}
182 182
 
183 183
 	/**
184
-     * Get an array of reasons why the plugin might be uninstalled
185
-     *
186
-     * @since 1.17.5
187
-     *
184
+	 * Get an array of reasons why the plugin might be uninstalled
185
+	 *
186
+	 * @since 1.17.5
187
+	 *
188 188
 	 * @return array Array of reasons with the label and followup questions for each uninstall reason
189 189
 	 */
190 190
 	private function get_uninstall_reasons() {
191 191
 		$reasons = array(
192 192
 			'will-continue' => array(
193
-                'label' => esc_html__( 'I am going to continue using GravityView', 'gravityview' ),
194
-            ),
193
+				'label' => esc_html__( 'I am going to continue using GravityView', 'gravityview' ),
194
+			),
195 195
 			'no-longer-need' => array(
196
-                'label' => esc_html__( 'I no longer need GravityView', 'gravityview' ),
197
-            ),
196
+				'label' => esc_html__( 'I no longer need GravityView', 'gravityview' ),
197
+			),
198 198
 			'doesnt-work' => array(
199
-                'label' => esc_html__( 'The plugin doesn\'t work', 'gravityview' ),
200
-            ),
199
+				'label' => esc_html__( 'The plugin doesn\'t work', 'gravityview' ),
200
+			),
201 201
 			'found-other' => array(
202
-                'label' => esc_html__( 'I found a better plugin', 'gravityview' ),
203
-                'followup' => esc_attr__( 'What plugin you are using, and why?', 'gravityview' ),
204
-            ),
202
+				'label' => esc_html__( 'I found a better plugin', 'gravityview' ),
203
+				'followup' => esc_attr__( 'What plugin you are using, and why?', 'gravityview' ),
204
+			),
205 205
 			'other' => array(
206
-                'label' => esc_html__( 'Other', 'gravityview' ),
207
-            ),
206
+				'label' => esc_html__( 'Other', 'gravityview' ),
207
+			),
208 208
 		);
209 209
 
210 210
 		shuffle( $reasons );
211 211
 
212 212
 		return $reasons;
213
-    }
213
+	}
214 214
 
215 215
 	/**
216
-     * Display a feedback form when the plugin is uninstalled
217
-     *
218
-     * @since 1.17.5
219
-     *
216
+	 * Display a feedback form when the plugin is uninstalled
217
+	 *
218
+	 * @since 1.17.5
219
+	 *
220 220
 	 * @return string HTML of the uninstallation form
221 221
 	 */
222 222
 	public function uninstall_form() {
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
             <h2><?php esc_html_e( 'Why did you uninstall GravityView?', 'gravityview' ); ?></h2>
297 297
             <ul>
298 298
 				<?php
299
-                $reasons = $this->get_uninstall_reasons();
299
+				$reasons = $this->get_uninstall_reasons();
300 300
 				foreach ( $reasons as $reason ) {
301 301
 					printf( '<li><label><input name="reason" type="radio" value="other" data-followup="%s"> %s</label></li>', Utils::get( $reason, 'followup' ), Utils::get( $reason, 'label' ) );
302 302
 				}
@@ -390,12 +390,12 @@  discard block
 block discarded – undo
390 390
 	}
391 391
 
392 392
 	public function app_settings_tab() {
393
-	    parent::app_settings_tab();
393
+		parent::app_settings_tab();
394 394
 
395 395
 		if ( $this->maybe_uninstall() ) {
396
-            echo $this->uninstall_form();
396
+			echo $this->uninstall_form();
397 397
 		}
398
-    }
398
+	}
399 399
 
400 400
 	/**
401 401
 	 * The Settings title
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
 	 * @return array The settings.
481 481
 	 */
482 482
 	public function all() {
483
-	    return wp_parse_args( get_option( 'gravityformsaddon_' . $this->_slug . '_app_settings', array() ), $this->defaults() );
483
+		return wp_parse_args( get_option( 'gravityformsaddon_' . $this->_slug . '_app_settings', array() ), $this->defaults() );
484 484
 	}
485 485
 
486 486
 	/**
@@ -549,8 +549,8 @@  discard block
 block discarded – undo
549 549
                     type="' . $field['type'] . '"
550 550
                     name="' . esc_attr( $name ) . '"
551 551
                     value="' . $value . '" ' .
552
-		        implode( ' ', $attributes ) .
553
-		        ' />';
552
+				implode( ' ', $attributes ) .
553
+				' />';
554 554
 
555 555
 		if ( $echo ) {
556 556
 			echo $html;
@@ -574,16 +574,16 @@  discard block
 block discarded – undo
574 574
 	 */
575 575
 	public function license_key_notice() {
576 576
 
577
-	    if( $this->is_save_postback() ) {
578
-		    $settings = $this->get_posted_settings();
579
-		    $license_key = \GV\Utils::get( $settings, 'license_key' );
580
-		    $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' );
581
-        } else {
582
-		    $license_status = $this->get( 'license_key_status', 'inactive' );
583
-		    $license_key    = $this->get( 'license_key' );
584
-	    }
577
+		if( $this->is_save_postback() ) {
578
+			$settings = $this->get_posted_settings();
579
+			$license_key = \GV\Utils::get( $settings, 'license_key' );
580
+			$license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' );
581
+		} else {
582
+			$license_status = $this->get( 'license_key_status', 'inactive' );
583
+			$license_key    = $this->get( 'license_key' );
584
+		}
585 585
 
586
-	    $license_id = empty( $license_key ) ? 'license' : $license_key;
586
+		$license_id = empty( $license_key ) ? 'license' : $license_key;
587 587
 
588 588
 		$message = esc_html__( 'Your GravityView license %s. This means you&rsquo;re missing out on updates and support! %sActivate your license%s or %sget a license here%s.', 'gravityview' );
589 589
 
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 		$update_below = false;
598 598
 		$primary_button_link = admin_url( 'edit.php?post_type=gravityview&amp;page=gravityview_settings' );
599 599
 
600
-        switch ( $license_status ) {
600
+		switch ( $license_status ) {
601 601
 			/** @since 1.17 */
602 602
 			case 'expired':
603 603
 				$title = __( 'Expired License', 'gravityview' );
@@ -653,12 +653,12 @@  discard block
 block discarded – undo
653 653
 	}
654 654
 
655 655
 	/**
656
-     * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason.
657
-     *
658
-     * @since 1.21.5
659
-     *
660
-     * @see GFAddOn::scripts()
661
-     *
656
+	 * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason.
657
+	 *
658
+	 * @since 1.21.5
659
+	 *
660
+	 * @see GFAddOn::scripts()
661
+	 *
662 662
 	 * @return array Array of scripts
663 663
 	 */
664 664
 	public function scripts() {
@@ -667,10 +667,10 @@  discard block
 block discarded – undo
667 667
 		$scripts[] = array(
668 668
 			'handle'  => 'gform_tooltip_init',
669 669
 			'enqueue' => array(
670
-                array(
671
-			        'admin_page' => array( 'app_settings' )
672
-                )
673
-            )
670
+				array(
671
+					'admin_page' => array( 'app_settings' )
672
+				)
673
+			)
674 674
 		);
675 675
 
676 676
 		return $scripts;
@@ -688,10 +688,10 @@  discard block
 block discarded – undo
688 688
 			'src'     => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ),
689 689
 			'version' => Plugin::$version,
690 690
 			'deps' => array(
691
-                'gform_admin',
691
+				'gform_admin',
692 692
 				'gaddon_form_settings_css',
693
-                'gform_tooltip',
694
-                'gform_font_awesome',
693
+				'gform_tooltip',
694
+				'gform_font_awesome',
695 695
 			),
696 696
 			'enqueue' => array(
697 697
 				array( 'admin_page' => array(
@@ -859,7 +859,7 @@  discard block
 block discarded – undo
859 859
 					array(
860 860
 						'label' => _x( 'Show me beta versions if they are available.', 'gravityview' ),
861 861
 						'value' => '1',
862
-                        'name'  => 'beta',
862
+						'name'  => 'beta',
863 863
 					),
864 864
 				),
865 865
 				'description'   => __( 'You will have early access to the latest GravityView features and improvements. There may be bugs! If you encounter an issue, help make GravityView better by reporting it!', 'gravityview' ),
@@ -897,38 +897,38 @@  discard block
 block discarded – undo
897 897
 
898 898
 			if ( empty( $field['disabled'] ) ) {
899 899
 				unset( $field['disabled'] );
900
-            }
900
+			}
901 901
 		}
902 902
 
903
-        $sections = array(
904
-            array(
905
-                'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ),
906
-                'fields'      => $fields,
907
-            )
908
-        );
903
+		$sections = array(
904
+			array(
905
+				'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ),
906
+				'fields'      => $fields,
907
+			)
908
+		);
909 909
 
910
-        // custom 'update settings' button
911
-        $button = array(
912
-            'class' => 'button button-primary button-hero',
913
-            'type' => 'save',
914
-        );
910
+		// custom 'update settings' button
911
+		$button = array(
912
+			'class' => 'button button-primary button-hero',
913
+			'type' => 'save',
914
+		);
915 915
 
916 916
 		if ( $disabled_attribute ) {
917 917
 			$button['disabled'] = $disabled_attribute;
918 918
 		}
919 919
 
920
-        /**
921
-         * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page
922
-         * Extensions can tap in here to insert their own section and settings.
923
-         * <code>
924
-         *   $sections[] = array(
925
-         *      'title' => __( 'GravityView My Extension Settings', 'gravityview' ),
926
-         *      'fields' => $settings,
927
-         *   );
928
-         * </code>
929
-         * @param array $extension_settings Empty array, ready for extension settings!
930
-         */
931
-        $extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() );
920
+		/**
921
+		 * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page
922
+		 * Extensions can tap in here to insert their own section and settings.
923
+		 * <code>
924
+		 *   $sections[] = array(
925
+		 *      'title' => __( 'GravityView My Extension Settings', 'gravityview' ),
926
+		 *      'fields' => $settings,
927
+		 *   );
928
+		 * </code>
929
+		 * @param array $extension_settings Empty array, ready for extension settings!
930
+		 */
931
+		$extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() );
932 932
 
933 933
 		// If there are extensions, add a section for them
934 934
 		if ( ! empty( $extension_sections ) ) {
@@ -941,13 +941,13 @@  discard block
 block discarded – undo
941 941
 				}
942 942
 			}
943 943
 
944
-            $k = count( $extension_sections ) - 1 ;
945
-            $extension_sections[ $k ]['fields'][] = $button;
944
+			$k = count( $extension_sections ) - 1 ;
945
+			$extension_sections[ $k ]['fields'][] = $button;
946 946
 			$sections = array_merge( $sections, $extension_sections );
947 947
 		} else {
948
-            // add the 'update settings' button to the general section
949
-            $sections[0]['fields'][] = $button;
950
-        }
948
+			// add the 'update settings' button to the general section
949
+			$sections[0]['fields'][] = $button;
950
+		}
951 951
 
952 952
 		return $sections;
953 953
 	}
@@ -1001,9 +1001,9 @@  discard block
 block discarded – undo
1001 1001
 	 */
1002 1002
 	protected function settings_edd_license( $field, $echo = true ) {
1003 1003
 
1004
-	    if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) {
1005
-		    $field['input_type'] = 'password';
1006
-        }
1004
+		if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) {
1005
+			$field['input_type'] = 'password';
1006
+		}
1007 1007
 
1008 1008
 		$text = $this->settings_text( $field, false );
1009 1009
 
@@ -1020,9 +1020,9 @@  discard block
 block discarded – undo
1020 1020
 
1021 1021
 	/**
1022 1022
 	 * Allow pure HTML settings row
1023
-     *
1024
-     * @since 2.0.6
1025
-     *
1023
+	 *
1024
+	 * @since 2.0.6
1025
+	 *
1026 1026
 	 * @param array $field
1027 1027
 	 * @param bool $echo Whether to echo the
1028 1028
 	 *
@@ -1088,19 +1088,19 @@  discard block
 block discarded – undo
1088 1088
 	}
1089 1089
 
1090 1090
 	/**
1091
-     * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it
1092
-     *
1093
-     * Converts `$field['description']` to `$field['gv_description']`
1094
-     * Converts `$field['subtitle']` to `$field['description']`
1095
-     *
1096
-     * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description`
1097
-     * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description
1098
-     *
1099
-     * @since 1.21.5.2
1100
-     *
1091
+	 * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it
1092
+	 *
1093
+	 * Converts `$field['description']` to `$field['gv_description']`
1094
+	 * Converts `$field['subtitle']` to `$field['description']`
1095
+	 *
1096
+	 * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description`
1097
+	 * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description
1098
+	 *
1099
+	 * @since 1.21.5.2
1100
+	 *
1101 1101
 	 * @param array $field
1102
-     *
1103
-     * @return void
1102
+	 *
1103
+	 * @return void
1104 1104
 	 */
1105 1105
 	public function single_setting_row( $field ) {
1106 1106
 		$field['gv_description'] = Utils::get( $field, 'description' );
Please login to merge, or discard this patch.
Spacing   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	 * @return array
102 102
 	 */
103 103
 	public function modify_app_settings_menu_title( $setting_tabs ) {
104
-		$setting_tabs[0]['label'] = __( 'GravityView Settings', 'gravityview' );
104
+		$setting_tabs[ 0 ][ 'label' ] = __( 'GravityView Settings', 'gravityview' );
105 105
 		return $setting_tabs;
106 106
 	}
107 107
 
@@ -304,15 +304,15 @@  discard block
 block discarded – undo
304 304
             </ul>
305 305
             <div class="gv-followup widefat">
306 306
                 <p><strong><label for="gv-reason-details"><?php esc_html_e( 'Comments', 'gravityview' ); ?></label></strong></p>
307
-                <textarea id="gv-reason-details" name="reason_details" data-default="<?php esc_attr_e('Please share your thoughts about GravityView', 'gravityview') ?>" placeholder="<?php esc_attr_e('Please share your thoughts about GravityView', 'gravityview'); ?>" class="large-text"></textarea>
307
+                <textarea id="gv-reason-details" name="reason_details" data-default="<?php esc_attr_e( 'Please share your thoughts about GravityView', 'gravityview' ) ?>" placeholder="<?php esc_attr_e( 'Please share your thoughts about GravityView', 'gravityview' ); ?>" class="large-text"></textarea>
308 308
             </div>
309 309
             <div class="scale-description">
310 310
                 <p><strong><?php esc_html_e( 'How likely are you to recommend GravityView?', 'gravityview' ); ?></strong></p>
311 311
                 <ul class="inline">
312 312
 					<?php
313 313
 					$i = 0;
314
-					while( $i < 11 ) {
315
-						echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_'.$i.'" value="'.$i.'" type="radio"> '.$i.'</label></li>';
314
+					while ( $i < 11 ) {
315
+						echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_' . $i . '" value="' . $i . '" type="radio"> ' . $i . '</label></li>';
316 316
 						$i++;
317 317
 					}
318 318
 					?>
@@ -529,15 +529,15 @@  discard block
 block discarded – undo
529 529
 	 * @return string The HTML
530 530
 	 */
531 531
 	public function as_html( $field, $echo = true ) {
532
-		$field['type']  = ( isset( $field['type'] ) && in_array( $field['type'], array( 'submit','reset','button' ) ) ) ? $field['type'] : 'submit';
532
+		$field[ 'type' ] = ( isset( $field[ 'type' ] ) && in_array( $field[ 'type' ], array( 'submit', 'reset', 'button' ) ) ) ? $field[ 'type' ] : 'submit';
533 533
 
534 534
 		$attributes    = $this->get_field_attributes( $field );
535 535
 		$default_value = Utils::get( $field, 'value', Utils::get( $field, 'default_value' ) );
536
-		$value         = $this->get( $field['name'], $default_value );
536
+		$value         = $this->get( $field[ 'name' ], $default_value );
537 537
 
538 538
 
539
-		$attributes['class'] = isset( $attributes['class'] ) ? esc_attr( $attributes['class'] ) : 'button-primary gfbutton';
540
-		$name    = ( $field['name'] === 'gform-settings-save' ) ? $field['name'] : '_gaddon_setting_' . $field['name'];
539
+		$attributes[ 'class' ] = isset( $attributes[ 'class' ] ) ? esc_attr( $attributes[ 'class' ] ) : 'button-primary gfbutton';
540
+		$name = ( $field[ 'name' ] === 'gform-settings-save' ) ? $field[ 'name' ] : '_gaddon_setting_' . $field[ 'name' ];
541 541
 
542 542
 		if ( empty( $value ) ) {
543 543
 			$value = __( 'Update Settings', 'gravityview' );
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
 		$attributes = $this->get_field_attributes( $field );
547 547
 
548 548
 		$html = '<input
549
-                    type="' . $field['type'] . '"
549
+                    type="' . $field[ 'type' ] . '"
550 550
                     name="' . esc_attr( $name ) . '"
551 551
                     value="' . $value . '" ' .
552 552
 		        implode( ' ', $attributes ) .
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
 	 */
575 575
 	public function license_key_notice() {
576 576
 
577
-	    if( $this->is_save_postback() ) {
577
+	    if ( $this->is_save_postback() ) {
578 578
 		    $settings = $this->get_posted_settings();
579 579
 		    $license_key = \GV\Utils::get( $settings, 'license_key' );
580 580
 		    $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' );
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
 		 * but didn't want to mess up the translation strings for the translators.
593 593
 		 */
594 594
 		$message = mb_substr( $message, 0, mb_strlen( $message ) - 1 );
595
-		$title = __ ( 'Inactive License', 'gravityview');
595
+		$title = __( 'Inactive License', 'gravityview' );
596 596
 		$status = '';
597 597
 		$update_below = false;
598 598
 		$primary_button_link = admin_url( 'edit.php?post_type=gravityview&amp;page=gravityview_settings' );
@@ -622,7 +622,7 @@  discard block
 block discarded – undo
622 622
 				$update_below = __( 'Activate your license key below.', 'gravityview' );
623 623
 				break;
624 624
 		}
625
-		$url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content='.$license_status.'&utm_campaign=Admin%20Notice';
625
+		$url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content=' . $license_status . '&utm_campaign=Admin%20Notice';
626 626
 
627 627
 		// Show a different notice on settings page for inactive licenses (hide the buttons)
628 628
 		if ( $update_below && gravityview_is_admin_page( '', 'settings' ) ) {
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
 	public function scripts() {
665 665
 		$scripts = parent::scripts();
666 666
 
667
-		$scripts[] = array(
667
+		$scripts[ ] = array(
668 668
 			'handle'  => 'gform_tooltip_init',
669 669
 			'enqueue' => array(
670 670
                 array(
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
 	public function styles() {
684 684
 		$styles = parent::styles();
685 685
 
686
-		$styles[] = array(
686
+		$styles[ ] = array(
687 687
 			'handle'  => 'gravityview_settings',
688 688
 			'src'     => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ),
689 689
 			'version' => Plugin::$version,
@@ -714,7 +714,7 @@  discard block
 block discarded – undo
714 714
 		 * If multisite and not network admin, we don't want the settings to show.
715 715
 		 * @since 1.7.6
716 716
 		 */
717
-		$show_submenu = ( ! is_multisite() ) ||  is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() );
717
+		$show_submenu = ( ! is_multisite() ) || is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() );
718 718
 
719 719
 		/**
720 720
 		 * Override whether to show the Settings menu on a per-blog basis.
@@ -762,26 +762,26 @@  discard block
 block discarded – undo
762 762
 				'label' => __( 'License Key', 'gravityview' ),
763 763
 				'description' => __( 'Enter the license key that was sent to you on purchase. This enables plugin updates &amp; support.', 'gravityview' ) . $this->get_license_handler()->license_details( $this->get_app_setting( 'license_key_response' ) ),
764 764
 				'type' => 'edd_license',
765
-				'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' )  && GRAVITYVIEW_LICENSE_KEY ),
765
+				'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ),
766 766
 				'data-pending-text' => __( 'Verifying license&hellip;', 'gravityview' ),
767
-				'default_value' => $default_settings['license_key'],
767
+				'default_value' => $default_settings[ 'license_key' ],
768 768
 				'class' => ( '' == $this->get( 'license_key' ) ) ? 'activate code regular-text edd-license-key' : 'deactivate code regular-text edd-license-key',
769 769
 			),
770 770
 			array(
771 771
 				'name' => 'license_key_response',
772
-				'default_value' => $default_settings['license_key_response'],
772
+				'default_value' => $default_settings[ 'license_key_response' ],
773 773
 				'type' => 'hidden',
774 774
 			),
775 775
 			array(
776 776
 				'name' => 'license_key_status',
777
-				'default_value' => $default_settings['license_key_status'],
777
+				'default_value' => $default_settings[ 'license_key_status' ],
778 778
 				'type' => 'hidden',
779 779
 			),
780 780
 			array(
781 781
 				'name' => 'support-email',
782 782
 				'type' => 'text',
783 783
 				'validate' => 'email',
784
-				'default_value' => $default_settings['support-email'],
784
+				'default_value' => $default_settings[ 'support-email' ],
785 785
 				'label' => __( 'Support Email', 'gravityview' ),
786 786
 				'description' => __( 'In order to provide responses to your support requests, please provide your email address.', 'gravityview' ),
787 787
 				'class' => 'code regular-text',
@@ -793,7 +793,7 @@  discard block
 block discarded – undo
793 793
 				'name' => 'support_port',
794 794
 				'type' => 'radio',
795 795
 				'label' => __( 'Show Support Port?', 'gravityview' ),
796
-				'default_value' => $default_settings['support_port'],
796
+				'default_value' => $default_settings[ 'support_port' ],
797 797
 				'horizontal' => 1,
798 798
 				'choices' => array(
799 799
 					array(
@@ -812,7 +812,7 @@  discard block
 block discarded – undo
812 812
 				'name' => 'no-conflict-mode',
813 813
 				'type' => 'radio',
814 814
 				'label' => __( 'No-Conflict Mode', 'gravityview' ),
815
-				'default_value' => $default_settings['no-conflict-mode'],
815
+				'default_value' => $default_settings[ 'no-conflict-mode' ],
816 816
 				'horizontal' => 1,
817 817
 				'choices' => array(
818 818
 					array(
@@ -834,7 +834,7 @@  discard block
 block discarded – undo
834 834
 					'name' => 'rest_api',
835 835
 					'type' => 'radio',
836 836
 					'label' => __( 'REST API', 'gravityview' ),
837
-					'default_value' => $default_settings['rest_api'],
837
+					'default_value' => $default_settings[ 'rest_api' ],
838 838
 					'horizontal' => 1,
839 839
 					'choices' => array(
840 840
 						array(
@@ -853,7 +853,7 @@  discard block
 block discarded – undo
853 853
 				'name' => 'beta',
854 854
 				'type' => 'checkbox',
855 855
 				'label' => __( 'Become a Beta Tester', 'gravityview' ),
856
-				'default_value' => $default_settings['beta'],
856
+				'default_value' => $default_settings[ 'beta' ],
857 857
 				'horizontal' => 1,
858 858
 				'choices' => array(
859 859
 					array(
@@ -886,17 +886,17 @@  discard block
 block discarded – undo
886 886
 		 * @since 1.7.4
887 887
 		 */
888 888
 		foreach ( $fields as &$field ) {
889
-			$field['name']          = isset( $field['name'] ) ? $field['name'] : Utils::get( $field, 'id' );
890
-			$field['label']         = isset( $field['label'] ) ? $field['label'] : Utils::get( $field, 'title' );
891
-			$field['default_value'] = isset( $field['default_value'] ) ? $field['default_value'] : Utils::get( $field, 'default' );
892
-			$field['description']   = isset( $field['description'] ) ? $field['description'] : Utils::get( $field, 'subtitle' );
889
+			$field[ 'name' ]          = isset( $field[ 'name' ] ) ? $field[ 'name' ] : Utils::get( $field, 'id' );
890
+			$field[ 'label' ]         = isset( $field[ 'label' ] ) ? $field[ 'label' ] : Utils::get( $field, 'title' );
891
+			$field[ 'default_value' ] = isset( $field[ 'default_value' ] ) ? $field[ 'default_value' ] : Utils::get( $field, 'default' );
892
+			$field[ 'description' ]   = isset( $field[ 'description' ] ) ? $field[ 'description' ] : Utils::get( $field, 'subtitle' );
893 893
 
894 894
 			if ( $disabled_attribute ) {
895
-				$field['disabled']  = $disabled_attribute;
895
+				$field[ 'disabled' ] = $disabled_attribute;
896 896
 			}
897 897
 
898
-			if ( empty( $field['disabled'] ) ) {
899
-				unset( $field['disabled'] );
898
+			if ( empty( $field[ 'disabled' ] ) ) {
899
+				unset( $field[ 'disabled' ] );
900 900
             }
901 901
 		}
902 902
 
@@ -914,7 +914,7 @@  discard block
 block discarded – undo
914 914
         );
915 915
 
916 916
 		if ( $disabled_attribute ) {
917
-			$button['disabled'] = $disabled_attribute;
917
+			$button[ 'disabled' ] = $disabled_attribute;
918 918
 		}
919 919
 
920 920
         /**
@@ -933,20 +933,20 @@  discard block
 block discarded – undo
933 933
 		// If there are extensions, add a section for them
934 934
 		if ( ! empty( $extension_sections ) ) {
935 935
 
936
-			if( $disabled_attribute ) {
936
+			if ( $disabled_attribute ) {
937 937
 				foreach ( $extension_sections as &$section ) {
938
-					foreach ( $section['fields'] as &$field ) {
939
-						$field['disabled'] = $disabled_attribute;
938
+					foreach ( $section[ 'fields' ] as &$field ) {
939
+						$field[ 'disabled' ] = $disabled_attribute;
940 940
 					}
941 941
 				}
942 942
 			}
943 943
 
944
-            $k = count( $extension_sections ) - 1 ;
945
-            $extension_sections[ $k ]['fields'][] = $button;
944
+            $k = count( $extension_sections ) - 1;
945
+            $extension_sections[ $k ][ 'fields' ][ ] = $button;
946 946
 			$sections = array_merge( $sections, $extension_sections );
947 947
 		} else {
948 948
             // add the 'update settings' button to the general section
949
-            $sections[0]['fields'][] = $button;
949
+            $sections[ 0 ][ 'fields' ][ ] = $button;
950 950
         }
951 951
 
952 952
 		return $sections;
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
 	protected function settings_edd_license( $field, $echo = true ) {
1003 1003
 
1004 1004
 	    if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) {
1005
-		    $field['input_type'] = 'password';
1005
+		    $field[ 'input_type' ] = 'password';
1006 1006
         }
1007 1007
 
1008 1008
 		$text = $this->settings_text( $field, false );
@@ -1051,7 +1051,7 @@  discard block
 block discarded – undo
1051 1051
 	public function single_setting_row_html( $field ) {
1052 1052
 		?>
1053 1053
 
1054
-        <tr id="gaddon-setting-row-<?php echo esc_attr( $field['name'] ); ?>">
1054
+        <tr id="gaddon-setting-row-<?php echo esc_attr( $field[ 'name' ] ); ?>">
1055 1055
             <td colspan="2">
1056 1056
 				<?php $this->single_setting( $field ); ?>
1057 1057
             </td>
@@ -1069,10 +1069,10 @@  discard block
 block discarded – undo
1069 1069
 	 * @return string
1070 1070
 	 */
1071 1071
 	public function settings_save( $field, $echo = true ) {
1072
-		$field['type']  = 'submit';
1073
-		$field['name']  = 'gform-settings-save';
1074
-		$field['class'] = isset( $field['class'] ) ? $field['class'] : 'button-primary gfbutton';
1075
-		$field['value'] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) );
1072
+		$field[ 'type' ]  = 'submit';
1073
+		$field[ 'name' ]  = 'gform-settings-save';
1074
+		$field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] : 'button-primary gfbutton';
1075
+		$field[ 'value' ] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) );
1076 1076
 
1077 1077
 		$output = $this->settings_submit( $field, false );
1078 1078
 
@@ -1103,8 +1103,8 @@  discard block
 block discarded – undo
1103 1103
      * @return void
1104 1104
 	 */
1105 1105
 	public function single_setting_row( $field ) {
1106
-		$field['gv_description'] = Utils::get( $field, 'description' );
1107
-		$field['description']    = Utils::get( $field, 'subtitle' );
1106
+		$field[ 'gv_description' ] = Utils::get( $field, 'description' );
1107
+		$field[ 'description' ]    = Utils::get( $field, 'subtitle' );
1108 1108
 		parent::single_setting_row( $field );
1109 1109
 	}
1110 1110
 
@@ -1116,7 +1116,7 @@  discard block
 block discarded – undo
1116 1116
 	public function single_setting_label( $field ) {
1117 1117
 		parent::single_setting_label( $field );
1118 1118
 		if ( $description = Utils::get( $field, 'gv_description' ) ) {
1119
-			echo '<span class="description">'. $description .'</span>';
1119
+			echo '<span class="description">' . $description . '</span>';
1120 1120
 		}
1121 1121
 	}
1122 1122
 
@@ -1153,9 +1153,9 @@  discard block
 block discarded – undo
1153 1153
 		// If the posted key doesn't match the activated/deactivated key (set using the Activate License button, AJAX response),
1154 1154
 		// then we assume it's changed. If it's changed, unset the status and the previous response.
1155 1155
 		if ( $local_key !== $response_key ) {
1156
-			unset( $posted_settings['license_key_response'] );
1157
-			unset( $posted_settings['license_key_status'] );
1158
-			\GFCommon::add_error_message( __('The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) );
1156
+			unset( $posted_settings[ 'license_key_response' ] );
1157
+			unset( $posted_settings[ 'license_key_status' ] );
1158
+			\GFCommon::add_error_message( __( 'The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) );
1159 1159
 		}
1160 1160
 		return $posted_settings;
1161 1161
 	}
Please login to merge, or discard this patch.