@@ -138,20 +138,20 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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’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 |
||
597 | 597 | $update_below = false; |
598 | 598 | $primary_button_link = admin_url( 'edit.php?post_type=gravityview&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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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' ); |