@@ -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; |
@@ -568,12 +568,12 @@ discard block |
||
568 | 568 | } |
569 | 569 | |
570 | 570 | /** |
571 | - * Check whether GravityView is being saved |
|
572 | - * |
|
573 | - * The generic is_save_postback() is true for all addons |
|
574 | - * |
|
575 | - * @since 2.0.8 |
|
576 | - * |
|
571 | + * Check whether GravityView is being saved |
|
572 | + * |
|
573 | + * The generic is_save_postback() is true for all addons |
|
574 | + * |
|
575 | + * @since 2.0.8 |
|
576 | + * |
|
577 | 577 | * @return bool |
578 | 578 | */ |
579 | 579 | public function is_save_postback() { |
@@ -587,16 +587,16 @@ discard block |
||
587 | 587 | */ |
588 | 588 | public function license_key_notice() { |
589 | 589 | |
590 | - if( $this->is_save_postback() ) { |
|
591 | - $settings = $this->get_posted_settings(); |
|
592 | - $license_key = \GV\Utils::get( $settings, 'license_key' ); |
|
593 | - $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
|
594 | - } else { |
|
595 | - $license_status = $this->get( 'license_key_status', 'inactive' ); |
|
596 | - $license_key = $this->get( 'license_key' ); |
|
597 | - } |
|
590 | + if( $this->is_save_postback() ) { |
|
591 | + $settings = $this->get_posted_settings(); |
|
592 | + $license_key = \GV\Utils::get( $settings, 'license_key' ); |
|
593 | + $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
|
594 | + } else { |
|
595 | + $license_status = $this->get( 'license_key_status', 'inactive' ); |
|
596 | + $license_key = $this->get( 'license_key' ); |
|
597 | + } |
|
598 | 598 | |
599 | - $license_id = empty( $license_key ) ? 'license' : $license_key; |
|
599 | + $license_id = empty( $license_key ) ? 'license' : $license_key; |
|
600 | 600 | |
601 | 601 | $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' ); |
602 | 602 | |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | $update_below = false; |
611 | 611 | $primary_button_link = admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ); |
612 | 612 | |
613 | - switch ( $license_status ) { |
|
613 | + switch ( $license_status ) { |
|
614 | 614 | /** @since 1.17 */ |
615 | 615 | case 'expired': |
616 | 616 | $title = __( 'Expired License', 'gravityview' ); |
@@ -666,12 +666,12 @@ discard block |
||
666 | 666 | } |
667 | 667 | |
668 | 668 | /** |
669 | - * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason. |
|
670 | - * |
|
671 | - * @since 1.21.5 |
|
672 | - * |
|
673 | - * @see GFAddOn::scripts() |
|
674 | - * |
|
669 | + * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason. |
|
670 | + * |
|
671 | + * @since 1.21.5 |
|
672 | + * |
|
673 | + * @see GFAddOn::scripts() |
|
674 | + * |
|
675 | 675 | * @return array Array of scripts |
676 | 676 | */ |
677 | 677 | public function scripts() { |
@@ -680,10 +680,10 @@ discard block |
||
680 | 680 | $scripts[] = array( |
681 | 681 | 'handle' => 'gform_tooltip_init', |
682 | 682 | 'enqueue' => array( |
683 | - array( |
|
684 | - 'admin_page' => array( 'app_settings' ) |
|
685 | - ) |
|
686 | - ) |
|
683 | + array( |
|
684 | + 'admin_page' => array( 'app_settings' ) |
|
685 | + ) |
|
686 | + ) |
|
687 | 687 | ); |
688 | 688 | |
689 | 689 | return $scripts; |
@@ -701,10 +701,10 @@ discard block |
||
701 | 701 | 'src' => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ), |
702 | 702 | 'version' => Plugin::$version, |
703 | 703 | 'deps' => array( |
704 | - 'gform_admin', |
|
704 | + 'gform_admin', |
|
705 | 705 | 'gaddon_form_settings_css', |
706 | - 'gform_tooltip', |
|
707 | - 'gform_font_awesome', |
|
706 | + 'gform_tooltip', |
|
707 | + 'gform_font_awesome', |
|
708 | 708 | ), |
709 | 709 | 'enqueue' => array( |
710 | 710 | array( 'admin_page' => array( |
@@ -872,7 +872,7 @@ discard block |
||
872 | 872 | array( |
873 | 873 | 'label' => _x( 'Show me beta versions if they are available.', 'gravityview' ), |
874 | 874 | 'value' => '1', |
875 | - 'name' => 'beta', |
|
875 | + 'name' => 'beta', |
|
876 | 876 | ), |
877 | 877 | ), |
878 | 878 | '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' ), |
@@ -910,38 +910,38 @@ discard block |
||
910 | 910 | |
911 | 911 | if ( empty( $field['disabled'] ) ) { |
912 | 912 | unset( $field['disabled'] ); |
913 | - } |
|
913 | + } |
|
914 | 914 | } |
915 | 915 | |
916 | - $sections = array( |
|
917 | - array( |
|
918 | - 'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ), |
|
919 | - 'fields' => $fields, |
|
920 | - ) |
|
921 | - ); |
|
916 | + $sections = array( |
|
917 | + array( |
|
918 | + 'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ), |
|
919 | + 'fields' => $fields, |
|
920 | + ) |
|
921 | + ); |
|
922 | 922 | |
923 | - // custom 'update settings' button |
|
924 | - $button = array( |
|
925 | - 'class' => 'button button-primary button-hero', |
|
926 | - 'type' => 'save', |
|
927 | - ); |
|
923 | + // custom 'update settings' button |
|
924 | + $button = array( |
|
925 | + 'class' => 'button button-primary button-hero', |
|
926 | + 'type' => 'save', |
|
927 | + ); |
|
928 | 928 | |
929 | 929 | if ( $disabled_attribute ) { |
930 | 930 | $button['disabled'] = $disabled_attribute; |
931 | 931 | } |
932 | 932 | |
933 | - /** |
|
934 | - * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page |
|
935 | - * Extensions can tap in here to insert their own section and settings. |
|
936 | - * <code> |
|
937 | - * $sections[] = array( |
|
938 | - * 'title' => __( 'GravityView My Extension Settings', 'gravityview' ), |
|
939 | - * 'fields' => $settings, |
|
940 | - * ); |
|
941 | - * </code> |
|
942 | - * @param array $extension_settings Empty array, ready for extension settings! |
|
943 | - */ |
|
944 | - $extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() ); |
|
933 | + /** |
|
934 | + * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page |
|
935 | + * Extensions can tap in here to insert their own section and settings. |
|
936 | + * <code> |
|
937 | + * $sections[] = array( |
|
938 | + * 'title' => __( 'GravityView My Extension Settings', 'gravityview' ), |
|
939 | + * 'fields' => $settings, |
|
940 | + * ); |
|
941 | + * </code> |
|
942 | + * @param array $extension_settings Empty array, ready for extension settings! |
|
943 | + */ |
|
944 | + $extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() ); |
|
945 | 945 | |
946 | 946 | // If there are extensions, add a section for them |
947 | 947 | if ( ! empty( $extension_sections ) ) { |
@@ -954,13 +954,13 @@ discard block |
||
954 | 954 | } |
955 | 955 | } |
956 | 956 | |
957 | - $k = count( $extension_sections ) - 1 ; |
|
958 | - $extension_sections[ $k ]['fields'][] = $button; |
|
957 | + $k = count( $extension_sections ) - 1 ; |
|
958 | + $extension_sections[ $k ]['fields'][] = $button; |
|
959 | 959 | $sections = array_merge( $sections, $extension_sections ); |
960 | 960 | } else { |
961 | - // add the 'update settings' button to the general section |
|
962 | - $sections[0]['fields'][] = $button; |
|
963 | - } |
|
961 | + // add the 'update settings' button to the general section |
|
962 | + $sections[0]['fields'][] = $button; |
|
963 | + } |
|
964 | 964 | |
965 | 965 | return $sections; |
966 | 966 | } |
@@ -1014,9 +1014,9 @@ discard block |
||
1014 | 1014 | */ |
1015 | 1015 | protected function settings_edd_license( $field, $echo = true ) { |
1016 | 1016 | |
1017 | - if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
|
1018 | - $field['input_type'] = 'password'; |
|
1019 | - } |
|
1017 | + if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
|
1018 | + $field['input_type'] = 'password'; |
|
1019 | + } |
|
1020 | 1020 | |
1021 | 1021 | $text = $this->settings_text( $field, false ); |
1022 | 1022 | |
@@ -1033,9 +1033,9 @@ discard block |
||
1033 | 1033 | |
1034 | 1034 | /** |
1035 | 1035 | * Allow pure HTML settings row |
1036 | - * |
|
1037 | - * @since 2.0.6 |
|
1038 | - * |
|
1036 | + * |
|
1037 | + * @since 2.0.6 |
|
1038 | + * |
|
1039 | 1039 | * @param array $field |
1040 | 1040 | * @param bool $echo Whether to echo the |
1041 | 1041 | * |
@@ -1101,19 +1101,19 @@ discard block |
||
1101 | 1101 | } |
1102 | 1102 | |
1103 | 1103 | /** |
1104 | - * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it |
|
1105 | - * |
|
1106 | - * Converts `$field['description']` to `$field['gv_description']` |
|
1107 | - * Converts `$field['subtitle']` to `$field['description']` |
|
1108 | - * |
|
1109 | - * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description` |
|
1110 | - * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description |
|
1111 | - * |
|
1112 | - * @since 1.21.5.2 |
|
1113 | - * |
|
1104 | + * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it |
|
1105 | + * |
|
1106 | + * Converts `$field['description']` to `$field['gv_description']` |
|
1107 | + * Converts `$field['subtitle']` to `$field['description']` |
|
1108 | + * |
|
1109 | + * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description` |
|
1110 | + * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description |
|
1111 | + * |
|
1112 | + * @since 1.21.5.2 |
|
1113 | + * |
|
1114 | 1114 | * @param array $field |
1115 | - * |
|
1116 | - * @return void |
|
1115 | + * |
|
1116 | + * @return void |
|
1117 | 1117 | */ |
1118 | 1118 | public function single_setting_row( $field ) { |
1119 | 1119 | $field['gv_description'] = Utils::get( $field, 'description' ); |
@@ -101,7 +101,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 ) . |
@@ -577,7 +577,7 @@ discard block |
||
577 | 577 | * @return bool |
578 | 578 | */ |
579 | 579 | public function is_save_postback() { |
580 | - return isset( $_POST['gform-settings-save'] ) && isset( $_POST['_gravityview_save_settings_nonce'] ); |
|
580 | + return isset( $_POST[ 'gform-settings-save' ] ) && isset( $_POST[ '_gravityview_save_settings_nonce' ] ); |
|
581 | 581 | } |
582 | 582 | |
583 | 583 | /** |
@@ -587,7 +587,7 @@ discard block |
||
587 | 587 | */ |
588 | 588 | public function license_key_notice() { |
589 | 589 | |
590 | - if( $this->is_save_postback() ) { |
|
590 | + if ( $this->is_save_postback() ) { |
|
591 | 591 | $settings = $this->get_posted_settings(); |
592 | 592 | $license_key = \GV\Utils::get( $settings, 'license_key' ); |
593 | 593 | $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
@@ -605,7 +605,7 @@ discard block |
||
605 | 605 | * but didn't want to mess up the translation strings for the translators. |
606 | 606 | */ |
607 | 607 | $message = mb_substr( $message, 0, mb_strlen( $message ) - 1 ); |
608 | - $title = __ ( 'Inactive License', 'gravityview'); |
|
608 | + $title = __( 'Inactive License', 'gravityview' ); |
|
609 | 609 | $status = ''; |
610 | 610 | $update_below = false; |
611 | 611 | $primary_button_link = admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ); |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | $update_below = __( 'Activate your license key below.', 'gravityview' ); |
636 | 636 | break; |
637 | 637 | } |
638 | - $url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content='.$license_status.'&utm_campaign=Admin%20Notice'; |
|
638 | + $url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content=' . $license_status . '&utm_campaign=Admin%20Notice'; |
|
639 | 639 | |
640 | 640 | // Show a different notice on settings page for inactive licenses (hide the buttons) |
641 | 641 | if ( $update_below && gravityview_is_admin_page( '', 'settings' ) ) { |
@@ -677,7 +677,7 @@ discard block |
||
677 | 677 | public function scripts() { |
678 | 678 | $scripts = parent::scripts(); |
679 | 679 | |
680 | - $scripts[] = array( |
|
680 | + $scripts[ ] = array( |
|
681 | 681 | 'handle' => 'gform_tooltip_init', |
682 | 682 | 'enqueue' => array( |
683 | 683 | array( |
@@ -696,7 +696,7 @@ discard block |
||
696 | 696 | public function styles() { |
697 | 697 | $styles = parent::styles(); |
698 | 698 | |
699 | - $styles[] = array( |
|
699 | + $styles[ ] = array( |
|
700 | 700 | 'handle' => 'gravityview_settings', |
701 | 701 | 'src' => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ), |
702 | 702 | 'version' => Plugin::$version, |
@@ -727,7 +727,7 @@ discard block |
||
727 | 727 | * If multisite and not network admin, we don't want the settings to show. |
728 | 728 | * @since 1.7.6 |
729 | 729 | */ |
730 | - $show_submenu = ( ! is_multisite() ) || is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() ); |
|
730 | + $show_submenu = ( ! is_multisite() ) || is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() ); |
|
731 | 731 | |
732 | 732 | /** |
733 | 733 | * Override whether to show the Settings menu on a per-blog basis. |
@@ -775,26 +775,26 @@ discard block |
||
775 | 775 | 'label' => __( 'License Key', 'gravityview' ), |
776 | 776 | 'description' => __( 'Enter the license key that was sent to you on purchase. This enables plugin updates & support.', 'gravityview' ) . $this->get_license_handler()->license_details( $this->get_app_setting( 'license_key_response' ) ), |
777 | 777 | 'type' => 'edd_license', |
778 | - 'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ), |
|
778 | + 'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ), |
|
779 | 779 | 'data-pending-text' => __( 'Verifying license…', 'gravityview' ), |
780 | - 'default_value' => $default_settings['license_key'], |
|
780 | + 'default_value' => $default_settings[ 'license_key' ], |
|
781 | 781 | 'class' => ( '' == $this->get( 'license_key' ) ) ? 'activate code regular-text edd-license-key' : 'deactivate code regular-text edd-license-key', |
782 | 782 | ), |
783 | 783 | array( |
784 | 784 | 'name' => 'license_key_response', |
785 | - 'default_value' => $default_settings['license_key_response'], |
|
785 | + 'default_value' => $default_settings[ 'license_key_response' ], |
|
786 | 786 | 'type' => 'hidden', |
787 | 787 | ), |
788 | 788 | array( |
789 | 789 | 'name' => 'license_key_status', |
790 | - 'default_value' => $default_settings['license_key_status'], |
|
790 | + 'default_value' => $default_settings[ 'license_key_status' ], |
|
791 | 791 | 'type' => 'hidden', |
792 | 792 | ), |
793 | 793 | array( |
794 | 794 | 'name' => 'support-email', |
795 | 795 | 'type' => 'text', |
796 | 796 | 'validate' => 'email', |
797 | - 'default_value' => $default_settings['support-email'], |
|
797 | + 'default_value' => $default_settings[ 'support-email' ], |
|
798 | 798 | 'label' => __( 'Support Email', 'gravityview' ), |
799 | 799 | 'description' => __( 'In order to provide responses to your support requests, please provide your email address.', 'gravityview' ), |
800 | 800 | 'class' => 'code regular-text', |
@@ -806,7 +806,7 @@ discard block |
||
806 | 806 | 'name' => 'support_port', |
807 | 807 | 'type' => 'radio', |
808 | 808 | 'label' => __( 'Show Support Port?', 'gravityview' ), |
809 | - 'default_value' => $default_settings['support_port'], |
|
809 | + 'default_value' => $default_settings[ 'support_port' ], |
|
810 | 810 | 'horizontal' => 1, |
811 | 811 | 'choices' => array( |
812 | 812 | array( |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | 'name' => 'no-conflict-mode', |
826 | 826 | 'type' => 'radio', |
827 | 827 | 'label' => __( 'No-Conflict Mode', 'gravityview' ), |
828 | - 'default_value' => $default_settings['no-conflict-mode'], |
|
828 | + 'default_value' => $default_settings[ 'no-conflict-mode' ], |
|
829 | 829 | 'horizontal' => 1, |
830 | 830 | 'choices' => array( |
831 | 831 | array( |
@@ -847,7 +847,7 @@ discard block |
||
847 | 847 | 'name' => 'rest_api', |
848 | 848 | 'type' => 'radio', |
849 | 849 | 'label' => __( 'REST API', 'gravityview' ), |
850 | - 'default_value' => $default_settings['rest_api'], |
|
850 | + 'default_value' => $default_settings[ 'rest_api' ], |
|
851 | 851 | 'horizontal' => 1, |
852 | 852 | 'choices' => array( |
853 | 853 | array( |
@@ -866,7 +866,7 @@ discard block |
||
866 | 866 | 'name' => 'beta', |
867 | 867 | 'type' => 'checkbox', |
868 | 868 | 'label' => __( 'Become a Beta Tester', 'gravityview' ), |
869 | - 'default_value' => $default_settings['beta'], |
|
869 | + 'default_value' => $default_settings[ 'beta' ], |
|
870 | 870 | 'horizontal' => 1, |
871 | 871 | 'choices' => array( |
872 | 872 | array( |
@@ -899,17 +899,17 @@ discard block |
||
899 | 899 | * @since 1.7.4 |
900 | 900 | */ |
901 | 901 | foreach ( $fields as &$field ) { |
902 | - $field['name'] = isset( $field['name'] ) ? $field['name'] : Utils::get( $field, 'id' ); |
|
903 | - $field['label'] = isset( $field['label'] ) ? $field['label'] : Utils::get( $field, 'title' ); |
|
904 | - $field['default_value'] = isset( $field['default_value'] ) ? $field['default_value'] : Utils::get( $field, 'default' ); |
|
905 | - $field['description'] = isset( $field['description'] ) ? $field['description'] : Utils::get( $field, 'subtitle' ); |
|
902 | + $field[ 'name' ] = isset( $field[ 'name' ] ) ? $field[ 'name' ] : Utils::get( $field, 'id' ); |
|
903 | + $field[ 'label' ] = isset( $field[ 'label' ] ) ? $field[ 'label' ] : Utils::get( $field, 'title' ); |
|
904 | + $field[ 'default_value' ] = isset( $field[ 'default_value' ] ) ? $field[ 'default_value' ] : Utils::get( $field, 'default' ); |
|
905 | + $field[ 'description' ] = isset( $field[ 'description' ] ) ? $field[ 'description' ] : Utils::get( $field, 'subtitle' ); |
|
906 | 906 | |
907 | 907 | if ( $disabled_attribute ) { |
908 | - $field['disabled'] = $disabled_attribute; |
|
908 | + $field[ 'disabled' ] = $disabled_attribute; |
|
909 | 909 | } |
910 | 910 | |
911 | - if ( empty( $field['disabled'] ) ) { |
|
912 | - unset( $field['disabled'] ); |
|
911 | + if ( empty( $field[ 'disabled' ] ) ) { |
|
912 | + unset( $field[ 'disabled' ] ); |
|
913 | 913 | } |
914 | 914 | } |
915 | 915 | |
@@ -927,7 +927,7 @@ discard block |
||
927 | 927 | ); |
928 | 928 | |
929 | 929 | if ( $disabled_attribute ) { |
930 | - $button['disabled'] = $disabled_attribute; |
|
930 | + $button[ 'disabled' ] = $disabled_attribute; |
|
931 | 931 | } |
932 | 932 | |
933 | 933 | /** |
@@ -946,20 +946,20 @@ discard block |
||
946 | 946 | // If there are extensions, add a section for them |
947 | 947 | if ( ! empty( $extension_sections ) ) { |
948 | 948 | |
949 | - if( $disabled_attribute ) { |
|
949 | + if ( $disabled_attribute ) { |
|
950 | 950 | foreach ( $extension_sections as &$section ) { |
951 | - foreach ( $section['fields'] as &$field ) { |
|
952 | - $field['disabled'] = $disabled_attribute; |
|
951 | + foreach ( $section[ 'fields' ] as &$field ) { |
|
952 | + $field[ 'disabled' ] = $disabled_attribute; |
|
953 | 953 | } |
954 | 954 | } |
955 | 955 | } |
956 | 956 | |
957 | - $k = count( $extension_sections ) - 1 ; |
|
958 | - $extension_sections[ $k ]['fields'][] = $button; |
|
957 | + $k = count( $extension_sections ) - 1; |
|
958 | + $extension_sections[ $k ][ 'fields' ][ ] = $button; |
|
959 | 959 | $sections = array_merge( $sections, $extension_sections ); |
960 | 960 | } else { |
961 | 961 | // add the 'update settings' button to the general section |
962 | - $sections[0]['fields'][] = $button; |
|
962 | + $sections[ 0 ][ 'fields' ][ ] = $button; |
|
963 | 963 | } |
964 | 964 | |
965 | 965 | return $sections; |
@@ -1015,7 +1015,7 @@ discard block |
||
1015 | 1015 | protected function settings_edd_license( $field, $echo = true ) { |
1016 | 1016 | |
1017 | 1017 | if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
1018 | - $field['input_type'] = 'password'; |
|
1018 | + $field[ 'input_type' ] = 'password'; |
|
1019 | 1019 | } |
1020 | 1020 | |
1021 | 1021 | $text = $this->settings_text( $field, false ); |
@@ -1064,7 +1064,7 @@ discard block |
||
1064 | 1064 | public function single_setting_row_html( $field ) { |
1065 | 1065 | ?> |
1066 | 1066 | |
1067 | - <tr id="gaddon-setting-row-<?php echo esc_attr( $field['name'] ); ?>"> |
|
1067 | + <tr id="gaddon-setting-row-<?php echo esc_attr( $field[ 'name' ] ); ?>"> |
|
1068 | 1068 | <td colspan="2"> |
1069 | 1069 | <?php $this->single_setting( $field ); ?> |
1070 | 1070 | </td> |
@@ -1082,10 +1082,10 @@ discard block |
||
1082 | 1082 | * @return string |
1083 | 1083 | */ |
1084 | 1084 | public function settings_save( $field, $echo = true ) { |
1085 | - $field['type'] = 'submit'; |
|
1086 | - $field['name'] = 'gform-settings-save'; |
|
1087 | - $field['class'] = isset( $field['class'] ) ? $field['class'] : 'button-primary gfbutton'; |
|
1088 | - $field['value'] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
1085 | + $field[ 'type' ] = 'submit'; |
|
1086 | + $field[ 'name' ] = 'gform-settings-save'; |
|
1087 | + $field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] : 'button-primary gfbutton'; |
|
1088 | + $field[ 'value' ] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
1089 | 1089 | |
1090 | 1090 | $output = $this->settings_submit( $field, false ); |
1091 | 1091 | |
@@ -1116,8 +1116,8 @@ discard block |
||
1116 | 1116 | * @return void |
1117 | 1117 | */ |
1118 | 1118 | public function single_setting_row( $field ) { |
1119 | - $field['gv_description'] = Utils::get( $field, 'description' ); |
|
1120 | - $field['description'] = Utils::get( $field, 'subtitle' ); |
|
1119 | + $field[ 'gv_description' ] = Utils::get( $field, 'description' ); |
|
1120 | + $field[ 'description' ] = Utils::get( $field, 'subtitle' ); |
|
1121 | 1121 | parent::single_setting_row( $field ); |
1122 | 1122 | } |
1123 | 1123 | |
@@ -1129,7 +1129,7 @@ discard block |
||
1129 | 1129 | public function single_setting_label( $field ) { |
1130 | 1130 | parent::single_setting_label( $field ); |
1131 | 1131 | if ( $description = Utils::get( $field, 'gv_description' ) ) { |
1132 | - echo '<span class="description">'. $description .'</span>'; |
|
1132 | + echo '<span class="description">' . $description . '</span>'; |
|
1133 | 1133 | } |
1134 | 1134 | } |
1135 | 1135 | |
@@ -1166,9 +1166,9 @@ discard block |
||
1166 | 1166 | // If the posted key doesn't match the activated/deactivated key (set using the Activate License button, AJAX response), |
1167 | 1167 | // then we assume it's changed. If it's changed, unset the status and the previous response. |
1168 | 1168 | if ( $local_key !== $response_key ) { |
1169 | - unset( $posted_settings['license_key_response'] ); |
|
1170 | - unset( $posted_settings['license_key_status'] ); |
|
1171 | - \GFCommon::add_error_message( __('The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) ); |
|
1169 | + unset( $posted_settings[ 'license_key_response' ] ); |
|
1170 | + unset( $posted_settings[ 'license_key_status' ] ); |
|
1171 | + \GFCommon::add_error_message( __( 'The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) ); |
|
1172 | 1172 | } |
1173 | 1173 | return $posted_settings; |
1174 | 1174 | } |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | gravityview()->log->debug( '$passed_atts: ', array( 'data' => $passed_atts ) ); |
49 | 49 | |
50 | 50 | // Get details about the current View |
51 | - if( !empty( $passed_atts['detail'] ) ) { |
|
52 | - return $this->get_view_detail( $passed_atts['detail'] ); |
|
51 | + if ( ! empty( $passed_atts[ 'detail' ] ) ) { |
|
52 | + return $this->get_view_detail( $passed_atts[ 'detail' ] ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | $atts = $this->parse_and_sanitize_atts( $passed_atts ); |
@@ -85,16 +85,16 @@ discard block |
||
85 | 85 | $filtered_atts = shortcode_atts( $supported_atts, $passed_atts, 'gravityview' ); |
86 | 86 | |
87 | 87 | // Only keep the passed attributes after making sure that they're valid pairs |
88 | - $filtered_atts = array_intersect_key( (array) $passed_atts, $filtered_atts ); |
|
88 | + $filtered_atts = array_intersect_key( (array)$passed_atts, $filtered_atts ); |
|
89 | 89 | |
90 | 90 | $atts = array(); |
91 | 91 | |
92 | - foreach( $filtered_atts as $key => $passed_value ) { |
|
92 | + foreach ( $filtered_atts as $key => $passed_value ) { |
|
93 | 93 | |
94 | 94 | // Allow using GravityView merge tags in shortcode attributes, like {get} and {created_by} |
95 | 95 | $passed_value = GravityView_Merge_Tags::replace_variables( $passed_value ); |
96 | 96 | |
97 | - switch( $defaults[ $key ]['type'] ) { |
|
97 | + switch ( $defaults[ $key ][ 'type' ] ) { |
|
98 | 98 | |
99 | 99 | /** |
100 | 100 | * Make sure number fields are numeric. |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @see http://php.net/manual/en/function.is-numeric.php#107326 |
103 | 103 | */ |
104 | 104 | case 'number': |
105 | - if( is_numeric( $passed_value ) ) { |
|
105 | + if ( is_numeric( $passed_value ) ) { |
|
106 | 106 | $atts[ $key ] = ( $passed_value + 0 ); |
107 | 107 | } |
108 | 108 | break; |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | */ |
118 | 118 | case 'select': |
119 | 119 | case 'radio': |
120 | - $options = isset( $defaults[ $key ]['choices'] ) ? $defaults[ $key ]['choices'] : $defaults[ $key ]['options']; |
|
121 | - if( in_array( $passed_value, array_keys( $options ) ) ) { |
|
120 | + $options = isset( $defaults[ $key ][ 'choices' ] ) ? $defaults[ $key ][ 'choices' ] : $defaults[ $key ][ 'options' ]; |
|
121 | + if ( in_array( $passed_value, array_keys( $options ) ) ) { |
|
122 | 122 | $atts[ $key ] = $passed_value; |
123 | 123 | } |
124 | 124 | break; |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | $gravityview_view = GravityView_View::getInstance(); |
148 | 148 | $return = ''; |
149 | 149 | |
150 | - switch( $detail ) { |
|
150 | + switch ( $detail ) { |
|
151 | 151 | case 'total_entries': |
152 | 152 | $return = number_format_i18n( $gravityview_view->getTotalEntries() ); |
153 | 153 | break; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | */ |
88 | 88 | public static function get_instance() { |
89 | 89 | |
90 | - if( empty( self::$instance ) ) { |
|
90 | + if ( empty( self::$instance ) ) { |
|
91 | 91 | self::$instance = new self; |
92 | 92 | } |
93 | 93 | |
@@ -121,9 +121,9 @@ discard block |
||
121 | 121 | |
122 | 122 | $operators = array_merge( self::$SUPPORTED_ARRAY_OPERATORS, self::$SUPPORTED_NUMERIC_OPERATORS, self::$SUPPORTED_SCALAR_OPERATORS, self::$SUPPORTED_CUSTOM_OPERATORS ); |
123 | 123 | |
124 | - if( $with_values ) { |
|
124 | + if ( $with_values ) { |
|
125 | 125 | $operators_with_values = array(); |
126 | - foreach( $operators as $key ) { |
|
126 | + foreach ( $operators as $key ) { |
|
127 | 127 | $operators_with_values[ $key ] = ''; |
128 | 128 | } |
129 | 129 | return $operators_with_values; |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | |
143 | 143 | $operators = $this->get_operators( false ); |
144 | 144 | |
145 | - if( !in_array( $operation, $operators ) ) { |
|
145 | + if ( ! in_array( $operation, $operators ) ) { |
|
146 | 146 | gravityview()->log->debug( ' Attempted to add invalid operation type. {operation}', array( 'operation' => $operation ) ); |
147 | 147 | return false; |
148 | 148 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | return null; |
195 | 195 | } |
196 | 196 | |
197 | - if( empty( $atts ) ) { |
|
197 | + if ( empty( $atts ) ) { |
|
198 | 198 | gravityview()->log->error( '$atts are empty.', array( 'data' => $atts ) ); |
199 | 199 | return null; |
200 | 200 | } |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | $this->parse_atts(); |
210 | 210 | |
211 | 211 | // We need an "if" |
212 | - if( false === $this->if ) { |
|
212 | + if ( false === $this->if ) { |
|
213 | 213 | gravityview()->log->error( '$atts->if is empty.', array( 'data' => $this->passed_atts ) ); |
214 | 214 | return null; |
215 | 215 | } |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | $setup = $this->setup_operation_and_comparison(); |
218 | 218 | |
219 | 219 | // We need an operation and comparison value |
220 | - if( ! $setup ) { |
|
220 | + if ( ! $setup ) { |
|
221 | 221 | gravityview()->log->error( 'No valid operators were passed.', array( 'data' => $this->atts ) ); |
222 | 222 | return null; |
223 | 223 | } |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | */ |
268 | 268 | private function get_output() { |
269 | 269 | |
270 | - if( $this->is_match ) { |
|
270 | + if ( $this->is_match ) { |
|
271 | 271 | $output = $this->content; |
272 | 272 | } else { |
273 | 273 | $output = $this->else_content; |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | * @param string $output HTML/text output |
286 | 286 | * @param GVLogic_Shortcode $this This class |
287 | 287 | */ |
288 | - $output = apply_filters('gravityview/gvlogic/output', $output, $this ); |
|
288 | + $output = apply_filters( 'gravityview/gvlogic/output', $output, $this ); |
|
289 | 289 | |
290 | 290 | gravityview()->log->debug( 'Output: ', array( 'data' => $output ) ); |
291 | 291 | |
@@ -305,14 +305,14 @@ discard block |
||
305 | 305 | list( $before_else, $after_else ) = array_pad( explode( '[else]', $passed_content ), 2, NULL ); |
306 | 306 | list( $before_else_if, $after_else_if ) = array_pad( explode( '[else', $passed_content ), 2, NULL ); |
307 | 307 | |
308 | - $else_attr = isset( $this->atts['else'] ) ? $this->atts['else'] : NULL; |
|
308 | + $else_attr = isset( $this->atts[ 'else' ] ) ? $this->atts[ 'else' ] : NULL; |
|
309 | 309 | $else_content = isset( $after_else ) ? $after_else : $else_attr; |
310 | 310 | |
311 | 311 | // The content is everything OTHER than the [else] |
312 | 312 | $this->content = $before_else_if; |
313 | 313 | |
314 | 314 | if ( ! $this->is_match ) { |
315 | - if( $elseif_content = $this->process_elseif( $before_else ) ) { |
|
315 | + if ( $elseif_content = $this->process_elseif( $before_else ) ) { |
|
316 | 316 | $this->else_content = $elseif_content; |
317 | 317 | } else { |
318 | 318 | $this->else_content = $else_content; |
@@ -340,16 +340,16 @@ discard block |
||
340 | 340 | foreach ( $else_if_matches as $key => $else_if_match ) { |
341 | 341 | |
342 | 342 | // If $else_if_match[5] exists and has content, check for more shortcodes |
343 | - preg_match_all( '/' . $regex . '/', $else_if_match[5] . '[/else]', $recursive_matches, PREG_SET_ORDER ); |
|
343 | + preg_match_all( '/' . $regex . '/', $else_if_match[ 5 ] . '[/else]', $recursive_matches, PREG_SET_ORDER ); |
|
344 | 344 | |
345 | 345 | // If the logic passes, this is the value that should be used for $this->else_content |
346 | - $else_if_value = $else_if_match[5]; |
|
347 | - $check_elseif_match = $else_if_match[0]; |
|
346 | + $else_if_value = $else_if_match[ 5 ]; |
|
347 | + $check_elseif_match = $else_if_match[ 0 ]; |
|
348 | 348 | |
349 | 349 | // Retrieve the value of the match that is currently being checked, without any other [else] tags |
350 | - if( ! empty( $recursive_matches[0][0] ) ) { |
|
351 | - $else_if_value = str_replace( $recursive_matches[0][0], '', $else_if_value ); |
|
352 | - $check_elseif_match = str_replace( $recursive_matches[0][0], '', $check_elseif_match ); |
|
350 | + if ( ! empty( $recursive_matches[ 0 ][ 0 ] ) ) { |
|
351 | + $else_if_value = str_replace( $recursive_matches[ 0 ][ 0 ], '', $else_if_value ); |
|
352 | + $check_elseif_match = str_replace( $recursive_matches[ 0 ][ 0 ], '', $check_elseif_match ); |
|
353 | 353 | } |
354 | 354 | |
355 | 355 | $check_elseif_match = str_replace( '[else', '[gvlogicelse', $check_elseif_match ); |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | } |
367 | 367 | |
368 | 368 | // Process any remaining [else] tags |
369 | - return $this->process_elseif( $else_if_match[5] ); |
|
369 | + return $this->process_elseif( $else_if_match[ 5 ] ); |
|
370 | 370 | } |
371 | 371 | |
372 | 372 | return false; |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | $this->atts = array_intersect_key( $this->passed_atts, $this->atts ); |
393 | 393 | |
394 | 394 | // Strip whitespace if it's not default false |
395 | - $this->if = ( isset( $this->atts['if'] ) && is_string( $this->atts['if'] ) ) ? trim( $this->atts['if'] ) : false; |
|
395 | + $this->if = ( isset( $this->atts[ 'if' ] ) && is_string( $this->atts[ 'if' ] ) ) ? trim( $this->atts[ 'if' ] ) : false; |
|
396 | 396 | |
397 | 397 | /** |
398 | 398 | * @action `gravityview/gvlogic/parse_atts/after` Modify shortcode attributes after it's been parsed |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | do_action( 'gravityview/gvlogic/parse_atts/after', $this ); |
404 | 404 | |
405 | 405 | // Make sure the "if" isn't processed in self::setup_operation_and_comparison() |
406 | - unset( $this->atts['if'] ); |
|
406 | + unset( $this->atts[ 'if' ] ); |
|
407 | 407 | } |
408 | 408 | } |
409 | 409 |
@@ -84,7 +84,7 @@ |
||
84 | 84 | * @see \Gamajo_Template_Loader::set_template_data |
85 | 85 | * @see \GV\Template::pop_template_data |
86 | 86 | * |
87 | - * @return \Gamajo_Template_Loader The current instance. |
|
87 | + * @return Template The current instance. |
|
88 | 88 | */ |
89 | 89 | public function push_template_data( $data, $var_name = 'data' ) { |
90 | 90 | if ( ! isset( self::$data_stack[ $var_name ] ) ) { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | function modify_entry_value_workflow_final_status( $output, $entry, $field_settings, $field ) { |
43 | 43 | |
44 | - if( ! empty( $output ) ) { |
|
44 | + if ( ! empty( $output ) ) { |
|
45 | 45 | $output = gravity_flow()->translate_status_label( $output ); |
46 | 46 | } |
47 | 47 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | foreach ( $search_fields as & $search_field ) { |
66 | 66 | if ( $this->name === \GV\Utils::get( $search_field, 'key' ) ) { |
67 | - $search_field['choices'] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options(); |
|
67 | + $search_field[ 'choices' ] = GravityView_Plugin_Hooks_Gravity_Flow::get_status_options(); |
|
68 | 68 | } |
69 | 69 | } |
70 | 70 |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | public function __destruct() { |
95 | - remove_filter( $this->filter_prefix . '_get_template_part', $this->_add_id_specific_templates_callback );; |
|
95 | + remove_filter( $this->filter_prefix . '_get_template_part', $this->_add_id_specific_templates_callback ); ; |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -175,55 +175,55 @@ discard block |
||
175 | 175 | |
176 | 176 | if ( $is_view && $post ) { |
177 | 177 | if ( $field_type ) { |
178 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $field_type, $slug_name ); |
|
179 | - $inputType && $specifics []= sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $inputType, $slug_name ); |
|
180 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $field_type ); |
|
181 | - $inputType && $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $inputType ); |
|
182 | - $specifics []= sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $field_type, $slug_name ); |
|
183 | - $inputType && $specifics []= sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $inputType, $slug_name ); |
|
184 | - $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $field_type ); |
|
185 | - $inputType && $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $inputType ); |
|
178 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $field_type, $slug_name ); |
|
179 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $inputType, $slug_name ); |
|
180 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $field_type ); |
|
181 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $inputType ); |
|
182 | + $specifics [ ] = sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $field_type, $slug_name ); |
|
183 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $inputType, $slug_name ); |
|
184 | + $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $field_type ); |
|
185 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $inputType ); |
|
186 | 186 | } |
187 | 187 | |
188 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $slug_name ); |
|
189 | - $specifics []= sprintf( '%spost-%d-view-%d-field.php', $slug_dir, $post->ID, $view_id ); |
|
190 | - $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $slug_name ); |
|
191 | - $specifics []= sprintf( '%spost-%d-field.php', $slug_dir, $post->ID ); |
|
188 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $slug_name ); |
|
189 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field.php', $slug_dir, $post->ID, $view_id ); |
|
190 | + $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $slug_name ); |
|
191 | + $specifics [ ] = sprintf( '%spost-%d-field.php', $slug_dir, $post->ID ); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** Field-specific */ |
195 | 195 | if ( $field_id && $form_id ) { |
196 | 196 | |
197 | 197 | if ( $field_id ) { |
198 | - $specifics []= sprintf( '%sform-%d-field-%d-%s.php', $slug_dir, $form_id, $field_id, $slug_name ); |
|
199 | - $specifics []= sprintf( '%sform-%d-field-%d.php', $slug_dir, $form_id, $field_id ); |
|
198 | + $specifics [ ] = sprintf( '%sform-%d-field-%d-%s.php', $slug_dir, $form_id, $field_id, $slug_name ); |
|
199 | + $specifics [ ] = sprintf( '%sform-%d-field-%d.php', $slug_dir, $form_id, $field_id ); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | if ( $field_type ) { |
203 | - $specifics []= sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $field_type, $slug_name ); |
|
204 | - $inputType && $specifics []= sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $inputType, $slug_name ); |
|
205 | - $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $field_type ); |
|
206 | - $inputType && $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $inputType ); |
|
207 | - |
|
208 | - $specifics []= sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $field_type, $slug_name ); |
|
209 | - $inputType && $specifics []= sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $inputType, $slug_name ); |
|
210 | - $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $field_type ); |
|
211 | - $inputType && $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $inputType ); |
|
212 | - |
|
213 | - $specifics []= sprintf( '%sfield-%s-%s.php', $slug_dir, $field_type, $slug_name ); |
|
214 | - $inputType && $specifics []= sprintf( '%sfield-%s-%s.php', $slug_dir, $inputType, $slug_name ); |
|
215 | - $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $field_type ); |
|
216 | - $inputType && $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $inputType ); |
|
203 | + $specifics [ ] = sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $field_type, $slug_name ); |
|
204 | + $inputType && $specifics [ ] = sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $inputType, $slug_name ); |
|
205 | + $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $field_type ); |
|
206 | + $inputType && $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $inputType ); |
|
207 | + |
|
208 | + $specifics [ ] = sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $field_type, $slug_name ); |
|
209 | + $inputType && $specifics [ ] = sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $inputType, $slug_name ); |
|
210 | + $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $field_type ); |
|
211 | + $inputType && $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $inputType ); |
|
212 | + |
|
213 | + $specifics [ ] = sprintf( '%sfield-%s-%s.php', $slug_dir, $field_type, $slug_name ); |
|
214 | + $inputType && $specifics [ ] = sprintf( '%sfield-%s-%s.php', $slug_dir, $inputType, $slug_name ); |
|
215 | + $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $field_type ); |
|
216 | + $inputType && $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $inputType ); |
|
217 | 217 | } |
218 | 218 | } |
219 | 219 | |
220 | 220 | if ( $form_id ) { |
221 | 221 | /** Generic field templates */ |
222 | - $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $slug_name ); |
|
223 | - $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $slug_name ); |
|
222 | + $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $slug_name ); |
|
223 | + $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $slug_name ); |
|
224 | 224 | |
225 | - $specifics []= sprintf( '%sview-%d-field.php', $slug_dir, $view_id ); |
|
226 | - $specifics []= sprintf( '%sform-%d-field.php', $slug_dir, $form_id ); |
|
225 | + $specifics [ ] = sprintf( '%sview-%d-field.php', $slug_dir, $view_id ); |
|
226 | + $specifics [ ] = sprintf( '%sform-%d-field.php', $slug_dir, $form_id ); |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | /** |
@@ -231,12 +231,12 @@ discard block |
||
231 | 231 | * Ignore some types that conflict. |
232 | 232 | */ |
233 | 233 | if ( ! in_array( $field_type, array( 'notes' ) ) ) { |
234 | - $specifics []= sprintf( '%s.php', $field_type ); |
|
235 | - $specifics []= sprintf( 'fields/%s.php', $field_type ); |
|
234 | + $specifics [ ] = sprintf( '%s.php', $field_type ); |
|
235 | + $specifics [ ] = sprintf( 'fields/%s.php', $field_type ); |
|
236 | 236 | } |
237 | 237 | |
238 | - $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $slug_name ); |
|
239 | - $specifics []= sprintf( '%sfield.php', $slug_dir ); |
|
238 | + $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $slug_name ); |
|
239 | + $specifics [ ] = sprintf( '%sfield.php', $slug_dir ); |
|
240 | 240 | |
241 | 241 | return array_merge( $specifics, $templates ); |
242 | 242 | }; |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | /** Prevent any PHP warnings that may be generated. */ |
267 | 267 | ob_start(); |
268 | 268 | |
269 | - $display_value = \GFCommon::get_lead_field_display( $this->field->field, $value, $this->entry['currency'], false, 'html' ); |
|
269 | + $display_value = \GFCommon::get_lead_field_display( $this->field->field, $value, $this->entry[ 'currency' ], false, 'html' ); |
|
270 | 270 | |
271 | 271 | if ( $errors = ob_get_clean() ) { |
272 | 272 | gravityview()->log->error( 'Errors when calling GFCommon::get_lead_field_display()', array( 'data' => $errors ) ); |
@@ -44,12 +44,12 @@ discard block |
||
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 | // Prevent items from not having index set |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $this->id = $item_id; |
72 | 72 | $this->form_id = $form_id; |
73 | 73 | $this->settings = $settings; |
74 | - $this->label_type = $item['label_type']; |
|
74 | + $this->label_type = $item[ 'label_type' ]; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -114,10 +114,10 @@ discard block |
||
114 | 114 | if ( $html ) { |
115 | 115 | |
116 | 116 | foreach ( $field_info_items as $item ) { |
117 | - $class = isset( $item['class'] ) ? sanitize_html_class( $item['class'] ) . ' description' : 'description'; |
|
117 | + $class = isset( $item[ 'class' ] ) ? sanitize_html_class( $item[ 'class' ] ) . ' description' : 'description'; |
|
118 | 118 | // Add the title in case the value's long, in which case, it'll be truncated by CSS. |
119 | 119 | $output .= '<span class="' . $class . '">'; |
120 | - $output .= esc_html( $item['value'] ); |
|
120 | + $output .= esc_html( $item[ 'value' ] ); |
|
121 | 121 | $output .= '</span>'; |
122 | 122 | } |
123 | 123 | |
@@ -145,29 +145,29 @@ discard block |
||
145 | 145 | |
146 | 146 | // $settings_html will just be hidden inputs if empty. Otherwise, it'll have an <ul>. Ugly hack, I know. |
147 | 147 | // TODO: Un-hack this |
148 | - $hide_settings_link = ( empty( $this->item['settings_html'] ) || strpos( $this->item['settings_html'], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : ''; |
|
148 | + $hide_settings_link = ( empty( $this->item[ 'settings_html' ] ) || strpos( $this->item[ 'settings_html' ], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : ''; |
|
149 | 149 | $settings_link = sprintf( '<a href="#settings" class="dashicons-admin-generic dashicons %s" title="%s"></a>', $hide_settings_link, esc_attr( $settings_title ) ); |
150 | 150 | |
151 | 151 | // Should we show the icon that the field is being used as a link to single entry? |
152 | - $hide_show_as_link_class = empty( $this->settings['show_as_link'] ) ? 'hide-if-js' : ''; |
|
152 | + $hide_show_as_link_class = empty( $this->settings[ 'show_as_link' ] ) ? 'hide-if-js' : ''; |
|
153 | 153 | $show_as_link = '<span class="dashicons dashicons-admin-links ' . $hide_show_as_link_class . '" title="' . esc_attr( $single_link_title ) . '"></span>'; |
154 | 154 | |
155 | 155 | // When a field label is empty, use the Field ID |
156 | 156 | $label = empty( $this->title ) ? sprintf( _x( 'Field #%s (No Label)', 'Label in field picker for empty label', 'gravityview' ), $this->id ) : $this->title; |
157 | 157 | |
158 | 158 | // If there's a custom label, and show label is checked, use that as the field heading |
159 | - if ( ! empty( $this->settings['custom_label'] ) && ! empty( $this->settings['show_label'] ) ) { |
|
160 | - $label = $this->settings['custom_label']; |
|
161 | - } else if ( ! empty( $this->item['customLabel'] ) ) { |
|
162 | - $label = $this->item['customLabel']; |
|
159 | + if ( ! empty( $this->settings[ 'custom_label' ] ) && ! empty( $this->settings[ 'show_label' ] ) ) { |
|
160 | + $label = $this->settings[ 'custom_label' ]; |
|
161 | + } else if ( ! empty( $this->item[ 'customLabel' ] ) ) { |
|
162 | + $label = $this->item[ 'customLabel' ]; |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | $output = '<h5 class="selectable gfield field-id-' . esc_attr( $this->id ) . '">'; |
166 | 166 | |
167 | 167 | $label = esc_attr( $label ); |
168 | 168 | |
169 | - if ( ! empty( $this->item['parent'] ) ) { |
|
170 | - $label .= ' <small>(' . esc_attr( $this->item['parent']['label'] ) . ')</small>'; |
|
169 | + if ( ! empty( $this->item[ 'parent' ] ) ) { |
|
170 | + $label .= ' <small>(' . esc_attr( $this->item[ 'parent' ][ 'label' ] ) . ')</small>'; |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | // Name of field / widget |
@@ -183,10 +183,10 @@ discard block |
||
183 | 183 | |
184 | 184 | $output .= '</h5>'; |
185 | 185 | |
186 | - $container_class = ! empty( $this->item['parent'] ) ? ' gv-child-field' : ''; |
|
187 | - $data_form_id = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : ''; |
|
186 | + $container_class = ! empty( $this->item[ 'parent' ] ) ? ' gv-child-field' : ''; |
|
187 | + $data_form_id = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : ''; |
|
188 | 188 | |
189 | - $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>'; |
|
189 | + $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>'; |
|
190 | 190 | |
191 | 191 | return $output; |
192 | 192 | } |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | |
27 | 27 | <?php |
28 | 28 | |
29 | - do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
29 | + do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
30 | 30 | |
31 | - do_action('gravityview_render_field_pickers', 'directory' ); |
|
31 | + do_action('gravityview_render_field_pickers', 'directory' ); |
|
32 | 32 | |
33 | - ?> |
|
33 | + ?> |
|
34 | 34 | |
35 | 35 | <?php // list of available widgets to be shown in the popup ?> |
36 | 36 | <div id="directory-available-widgets" class="hide-if-js gv-tooltip"> |
@@ -55,13 +55,13 @@ discard block |
||
55 | 55 | |
56 | 56 | <div id="single-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
57 | 57 | <?php |
58 | - if(!empty( $curr_template ) ) { |
|
59 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
60 | - } |
|
61 | - ?> |
|
58 | + if(!empty( $curr_template ) ) { |
|
59 | + do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
60 | + } |
|
61 | + ?> |
|
62 | 62 | </div> |
63 | 63 | <?php |
64 | - do_action('gravityview_render_field_pickers', 'single' ); |
|
64 | + do_action('gravityview_render_field_pickers', 'single' ); |
|
65 | 65 | ?> |
66 | 66 | </div> |
67 | 67 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | </div> |
81 | 81 | |
82 | 82 | <?php |
83 | - do_action('gravityview_render_field_pickers', 'edit' ); |
|
83 | + do_action('gravityview_render_field_pickers', 'edit' ); |
|
84 | 84 | ?> |
85 | 85 | |
86 | 86 | </div> |
@@ -10,32 +10,32 @@ discard block |
||
10 | 10 | |
11 | 11 | <div id="directory-fields" class="gv-section"> |
12 | 12 | |
13 | - <h4><?php esc_html_e( 'Above Entries Widgets', 'gravityview'); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview'); ?></span></h4> |
|
13 | + <h4><?php esc_html_e( 'Above Entries Widgets', 'gravityview' ); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview' ); ?></span></h4> |
|
14 | 14 | |
15 | - <?php do_action('gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
15 | + <?php do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
16 | 16 | |
17 | - <h4><?php esc_html_e( 'Entries Fields', 'gravityview'); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview'); ?></span></h4> |
|
17 | + <h4><?php esc_html_e( 'Entries Fields', 'gravityview' ); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview' ); ?></span></h4> |
|
18 | 18 | |
19 | 19 | <div id="directory-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
20 | - <?php if(!empty( $curr_template ) ) { |
|
21 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
20 | + <?php if ( ! empty( $curr_template ) ) { |
|
21 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
22 | 22 | } ?> |
23 | 23 | </div> |
24 | 24 | |
25 | - <h4><?php esc_html_e( 'Below Entries Widgets', 'gravityview'); ?> <span><?php esc_html_e( 'These widgets will be shown below entries.', 'gravityview'); ?></span></h4> |
|
25 | + <h4><?php esc_html_e( 'Below Entries Widgets', 'gravityview' ); ?> <span><?php esc_html_e( 'These widgets will be shown below entries.', 'gravityview' ); ?></span></h4> |
|
26 | 26 | |
27 | 27 | <?php |
28 | 28 | |
29 | - do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
29 | + do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
30 | 30 | |
31 | - do_action('gravityview_render_field_pickers', 'directory' ); |
|
31 | + do_action( 'gravityview_render_field_pickers', 'directory' ); |
|
32 | 32 | |
33 | 33 | ?> |
34 | 34 | |
35 | 35 | <?php // list of available widgets to be shown in the popup ?> |
36 | 36 | <div id="directory-available-widgets" class="hide-if-js gv-tooltip"> |
37 | 37 | <span class="close"><i class="dashicons dashicons-dismiss"></i></span> |
38 | - <?php do_action('gravityview_render_available_widgets' ); ?> |
|
38 | + <?php do_action( 'gravityview_render_available_widgets' ); ?> |
|
39 | 39 | </div> |
40 | 40 | |
41 | 41 | </div> |
@@ -51,17 +51,17 @@ discard block |
||
51 | 51 | |
52 | 52 | <div id="single-fields" class="gv-section"> |
53 | 53 | |
54 | - <h4><?php esc_html_e( 'These fields will be shown in Single Entry view.', 'gravityview'); ?></h4> |
|
54 | + <h4><?php esc_html_e( 'These fields will be shown in Single Entry view.', 'gravityview' ); ?></h4> |
|
55 | 55 | |
56 | 56 | <div id="single-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
57 | 57 | <?php |
58 | - if(!empty( $curr_template ) ) { |
|
59 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
58 | + if ( ! empty( $curr_template ) ) { |
|
59 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
60 | 60 | } |
61 | 61 | ?> |
62 | 62 | </div> |
63 | 63 | <?php |
64 | - do_action('gravityview_render_field_pickers', 'single' ); |
|
64 | + do_action( 'gravityview_render_field_pickers', 'single' ); |
|
65 | 65 | ?> |
66 | 66 | </div> |
67 | 67 | |
@@ -71,16 +71,16 @@ discard block |
||
71 | 71 | |
72 | 72 | <div id="edit-fields" class="gv-section"> |
73 | 73 | |
74 | - <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview'); ?> <span><?php esc_html_e('If not configured, all form fields will be displayed.', 'gravityview'); ?></span></h4> |
|
74 | + <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview' ); ?> <span><?php esc_html_e( 'If not configured, all form fields will be displayed.', 'gravityview' ); ?></span></h4> |
|
75 | 75 | |
76 | 76 | <div id="edit-active-fields" class="gv-grid gv-grid-pad gv-grid-border"> |
77 | 77 | <?php |
78 | - do_action('gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
78 | + do_action( 'gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
79 | 79 | ?> |
80 | 80 | </div> |
81 | 81 | |
82 | 82 | <?php |
83 | - do_action('gravityview_render_field_pickers', 'edit' ); |
|
83 | + do_action( 'gravityview_render_field_pickers', 'edit' ); |
|
84 | 84 | ?> |
85 | 85 | |
86 | 86 | </div> |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | /** |
85 | 85 | * @var string The REST API functionality identifier. |
86 | 86 | */ |
87 | - const FEATURE_REST = 'rest_api'; |
|
87 | + const FEATURE_REST = 'rest_api'; |
|
88 | 88 | |
89 | 89 | /** |
90 | 90 | * Get the global instance of \GV\Plugin. |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | include_once $this->dir( 'includes/class-frontend-views.php' ); |
211 | 211 | include_once $this->dir( 'includes/class-gravityview-admin-bar.php' ); |
212 | 212 | include_once $this->dir( 'includes/class-gravityview-entry-list.php' ); |
213 | - include_once $this->dir( 'includes/class-gravityview-merge-tags.php'); /** @since 1.8.4 */ |
|
213 | + include_once $this->dir( 'includes/class-gravityview-merge-tags.php' ); /** @since 1.8.4 */ |
|
214 | 214 | include_once $this->dir( 'includes/class-data.php' ); |
215 | 215 | include_once $this->dir( 'includes/class-gravityview-shortcode.php' ); |
216 | 216 | include_once $this->dir( 'includes/class-gravityview-entry-link-shortcode.php' ); |
@@ -244,12 +244,12 @@ discard block |
||
244 | 244 | |
245 | 245 | $locale = get_locale(); |
246 | 246 | |
247 | - if ( function_exists('get_user_locale') && is_admin() ) { |
|
247 | + if ( function_exists( 'get_user_locale' ) && is_admin() ) { |
|
248 | 248 | $locale = get_user_locale(); |
249 | 249 | } |
250 | 250 | |
251 | 251 | $locale = apply_filters( 'plugin_locale', $locale, 'gravityview' ); |
252 | - $mofile = $this->dir( 'languages' ) . '/gravityview-'. $locale .'.mo'; |
|
252 | + $mofile = $this->dir( 'languages' ) . '/gravityview-' . $locale . '.mo'; |
|
253 | 253 | load_textdomain( 'gravityview', $mofile ); |
254 | 254 | } |
255 | 255 | } |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | */ |
383 | 383 | public function is_compatible_wordpress( $version = null ) { |
384 | 384 | |
385 | - if( ! $version ) { |
|
385 | + if ( ! $version ) { |
|
386 | 386 | $version = self::$min_wp_version; |
387 | 387 | } |
388 | 388 | |
@@ -423,8 +423,8 @@ discard block |
||
423 | 423 | * @return string The version of PHP. |
424 | 424 | */ |
425 | 425 | private function get_php_version() { |
426 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ? |
|
427 | - $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion(); |
|
426 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ? |
|
427 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion(); |
|
428 | 428 | } |
429 | 429 | |
430 | 430 | /** |
@@ -435,8 +435,8 @@ discard block |
||
435 | 435 | * @return string The version of WordPress. |
436 | 436 | */ |
437 | 437 | private function get_wordpress_version() { |
438 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ? |
|
439 | - $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version']; |
|
438 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ? |
|
439 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ]; |
|
440 | 440 | } |
441 | 441 | |
442 | 442 | /** |
@@ -447,13 +447,13 @@ discard block |
||
447 | 447 | * @return string|null The version of Gravity Forms or null if inactive. |
448 | 448 | */ |
449 | 449 | private function get_gravityforms_version() { |
450 | - if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) { |
|
450 | + if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) { |
|
451 | 451 | gravityview()->log->error( 'Gravity Forms is inactive or not installed.' ); |
452 | 452 | return null; |
453 | 453 | } |
454 | 454 | |
455 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ? |
|
456 | - $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version; |
|
455 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ? |
|
456 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version; |
|
457 | 457 | } |
458 | 458 | |
459 | 459 | /** |
@@ -509,9 +509,9 @@ discard block |
||
509 | 509 | $tables = array(); |
510 | 510 | |
511 | 511 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) ) { |
512 | - $tables []= \GFFormsModel::get_entry_meta_table_name(); |
|
512 | + $tables [ ] = \GFFormsModel::get_entry_meta_table_name(); |
|
513 | 513 | } |
514 | - $tables []= \GFFormsModel::get_lead_meta_table_name(); |
|
514 | + $tables [ ] = \GFFormsModel::get_lead_meta_table_name(); |
|
515 | 515 | |
516 | 516 | foreach ( $tables as $meta_table ) { |
517 | 517 | $sql = " |
@@ -529,13 +529,13 @@ discard block |
||
529 | 529 | $tables = array(); |
530 | 530 | |
531 | 531 | if ( version_compare( \GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_notes_table_name' ) ) { |
532 | - $tables[] = \GFFormsModel::get_entry_notes_table_name(); |
|
532 | + $tables[ ] = \GFFormsModel::get_entry_notes_table_name(); |
|
533 | 533 | } |
534 | 534 | |
535 | - $tables[] = \GFFormsModel::get_lead_notes_table_name(); |
|
535 | + $tables[ ] = \GFFormsModel::get_lead_notes_table_name(); |
|
536 | 536 | |
537 | - $disapproved = __('Disapproved the Entry for GravityView', 'gravityview'); |
|
538 | - $approved = __('Approved the Entry for GravityView', 'gravityview'); |
|
537 | + $disapproved = __( 'Disapproved the Entry for GravityView', 'gravityview' ); |
|
538 | + $approved = __( 'Approved the Entry for GravityView', 'gravityview' ); |
|
539 | 539 | |
540 | 540 | $suppress = $wpdb->suppress_errors(); |
541 | 541 | foreach ( $tables as $notes_table ) { |