@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @return array |
103 | 103 | */ |
104 | 104 | public function modify_app_settings_menu_title( $setting_tabs ) { |
105 | - $setting_tabs[0]['label'] = __( 'GravityView Settings', 'gravityview' ); |
|
105 | + $setting_tabs[ 0 ][ 'label' ] = __( 'GravityView Settings', 'gravityview' ); |
|
106 | 106 | return $setting_tabs; |
107 | 107 | } |
108 | 108 | |
@@ -308,15 +308,15 @@ discard block |
||
308 | 308 | </ul> |
309 | 309 | <div class="gv-followup widefat"> |
310 | 310 | <p><strong><label for="gv-reason-details"><?php esc_html_e( 'Comments', 'gravityview' ); ?></label></strong></p> |
311 | - <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> |
|
311 | + <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> |
|
312 | 312 | </div> |
313 | 313 | <div class="scale-description"> |
314 | 314 | <p><strong><?php esc_html_e( 'How likely are you to recommend GravityView?', 'gravityview' ); ?></strong></p> |
315 | 315 | <ul class="inline"> |
316 | 316 | <?php |
317 | 317 | $i = 0; |
318 | - while( $i < 11 ) { |
|
319 | - echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_'.$i.'" value="'.$i.'" type="radio"> '.$i.'</label></li>'; |
|
318 | + while ( $i < 11 ) { |
|
319 | + echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_' . $i . '" value="' . $i . '" type="radio"> ' . $i . '</label></li>'; |
|
320 | 320 | $i++; |
321 | 321 | } |
322 | 322 | ?> |
@@ -533,15 +533,15 @@ discard block |
||
533 | 533 | * @return string The HTML |
534 | 534 | */ |
535 | 535 | public function as_html( $field, $echo = true ) { |
536 | - $field['type'] = ( isset( $field['type'] ) && in_array( $field['type'], array( 'submit','reset','button' ) ) ) ? $field['type'] : 'submit'; |
|
536 | + $field[ 'type' ] = ( isset( $field[ 'type' ] ) && in_array( $field[ 'type' ], array( 'submit', 'reset', 'button' ) ) ) ? $field[ 'type' ] : 'submit'; |
|
537 | 537 | |
538 | 538 | $attributes = $this->get_field_attributes( $field ); |
539 | 539 | $default_value = Utils::get( $field, 'value', Utils::get( $field, 'default_value' ) ); |
540 | - $value = $this->get( $field['name'], $default_value ); |
|
540 | + $value = $this->get( $field[ 'name' ], $default_value ); |
|
541 | 541 | |
542 | 542 | |
543 | - $attributes['class'] = isset( $attributes['class'] ) ? esc_attr( $attributes['class'] ) : 'button-primary gfbutton'; |
|
544 | - $name = ( $field['name'] === 'gform-settings-save' ) ? $field['name'] : '_gaddon_setting_' . $field['name']; |
|
543 | + $attributes[ 'class' ] = isset( $attributes[ 'class' ] ) ? esc_attr( $attributes[ 'class' ] ) : 'button-primary gfbutton'; |
|
544 | + $name = ( $field[ 'name' ] === 'gform-settings-save' ) ? $field[ 'name' ] : '_gaddon_setting_' . $field[ 'name' ]; |
|
545 | 545 | |
546 | 546 | if ( empty( $value ) ) { |
547 | 547 | $value = __( 'Update Settings', 'gravityview' ); |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | $attributes = $this->get_field_attributes( $field ); |
551 | 551 | |
552 | 552 | $html = '<input |
553 | - type="' . $field['type'] . '" |
|
553 | + type="' . $field[ 'type' ] . '" |
|
554 | 554 | name="' . esc_attr( $name ) . '" |
555 | 555 | value="' . $value . '" ' . |
556 | 556 | implode( ' ', $attributes ) . |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | * @return bool |
582 | 582 | */ |
583 | 583 | public function is_save_postback() { |
584 | - return isset( $_POST['gform-settings-save'] ) && isset( $_POST['_gravityview_save_settings_nonce'] ); |
|
584 | + return isset( $_POST[ 'gform-settings-save' ] ) && isset( $_POST[ '_gravityview_save_settings_nonce' ] ); |
|
585 | 585 | } |
586 | 586 | |
587 | 587 | /** |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | */ |
592 | 592 | public function license_key_notice() { |
593 | 593 | |
594 | - if( $this->is_save_postback() ) { |
|
594 | + if ( $this->is_save_postback() ) { |
|
595 | 595 | $settings = $this->get_posted_settings(); |
596 | 596 | $license_key = \GV\Utils::get( $settings, 'license_key' ); |
597 | 597 | $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
@@ -612,7 +612,7 @@ discard block |
||
612 | 612 | * but didn't want to mess up the translation strings for the translators. |
613 | 613 | */ |
614 | 614 | $message = mb_substr( $message, 0, mb_strlen( $message ) - 1 ); |
615 | - $title = __( 'Inactive License', 'gravityview'); |
|
615 | + $title = __( 'Inactive License', 'gravityview' ); |
|
616 | 616 | $status = ''; |
617 | 617 | $update_below = false; |
618 | 618 | $primary_button_link = admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ); |
@@ -642,7 +642,7 @@ discard block |
||
642 | 642 | $update_below = __( 'Activate your license key below.', 'gravityview' ); |
643 | 643 | break; |
644 | 644 | } |
645 | - $url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content='.$license_status.'&utm_campaign=Admin%20Notice'; |
|
645 | + $url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content=' . $license_status . '&utm_campaign=Admin%20Notice'; |
|
646 | 646 | |
647 | 647 | // Show a different notice on settings page for inactive licenses (hide the buttons) |
648 | 648 | if ( $update_below && gravityview()->request->is_admin( '', 'settings' ) ) { |
@@ -686,7 +686,7 @@ discard block |
||
686 | 686 | public function scripts() { |
687 | 687 | $scripts = parent::scripts(); |
688 | 688 | |
689 | - $scripts[] = array( |
|
689 | + $scripts[ ] = array( |
|
690 | 690 | 'handle' => 'gform_tooltip_init', |
691 | 691 | 'enqueue' => array( |
692 | 692 | array( |
@@ -705,7 +705,7 @@ discard block |
||
705 | 705 | public function styles() { |
706 | 706 | $styles = parent::styles(); |
707 | 707 | |
708 | - $styles[] = array( |
|
708 | + $styles[ ] = array( |
|
709 | 709 | 'handle' => 'gravityview_settings', |
710 | 710 | 'src' => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ), |
711 | 711 | 'version' => Plugin::$version, |
@@ -736,7 +736,7 @@ discard block |
||
736 | 736 | * If multisite and not network admin, we don't want the settings to show. |
737 | 737 | * @since 1.7.6 |
738 | 738 | */ |
739 | - $show_submenu = ( ! is_multisite() ) || is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() ); |
|
739 | + $show_submenu = ( ! is_multisite() ) || is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() ); |
|
740 | 740 | |
741 | 741 | /** |
742 | 742 | * Override whether to show the Settings menu on a per-blog basis. |
@@ -784,26 +784,26 @@ discard block |
||
784 | 784 | 'label' => __( 'License Key', 'gravityview' ), |
785 | 785 | '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' ) ), |
786 | 786 | 'type' => 'edd_license', |
787 | - 'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ), |
|
787 | + 'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ), |
|
788 | 788 | 'data-pending-text' => __( 'Verifying license…', 'gravityview' ), |
789 | - 'default_value' => $default_settings['license_key'], |
|
789 | + 'default_value' => $default_settings[ 'license_key' ], |
|
790 | 790 | 'class' => ( '' == $this->get( 'license_key' ) ) ? 'activate code regular-text edd-license-key' : 'deactivate code regular-text edd-license-key', |
791 | 791 | ), |
792 | 792 | array( |
793 | 793 | 'name' => 'license_key_response', |
794 | - 'default_value' => $default_settings['license_key_response'], |
|
794 | + 'default_value' => $default_settings[ 'license_key_response' ], |
|
795 | 795 | 'type' => 'hidden', |
796 | 796 | ), |
797 | 797 | array( |
798 | 798 | 'name' => 'license_key_status', |
799 | - 'default_value' => $default_settings['license_key_status'], |
|
799 | + 'default_value' => $default_settings[ 'license_key_status' ], |
|
800 | 800 | 'type' => 'hidden', |
801 | 801 | ), |
802 | 802 | array( |
803 | 803 | 'name' => 'support-email', |
804 | 804 | 'type' => 'text', |
805 | 805 | 'validate' => 'email', |
806 | - 'default_value' => $default_settings['support-email'], |
|
806 | + 'default_value' => $default_settings[ 'support-email' ], |
|
807 | 807 | 'label' => __( 'Support Email', 'gravityview' ), |
808 | 808 | 'description' => __( 'In order to provide responses to your support requests, please provide your email address.', 'gravityview' ), |
809 | 809 | 'class' => 'code regular-text', |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | 'name' => 'support_port', |
816 | 816 | 'type' => 'radio', |
817 | 817 | 'label' => __( 'Show Support Port?', 'gravityview' ), |
818 | - 'default_value' => $default_settings['support_port'], |
|
818 | + 'default_value' => $default_settings[ 'support_port' ], |
|
819 | 819 | 'horizontal' => 1, |
820 | 820 | 'choices' => array( |
821 | 821 | array( |
@@ -834,7 +834,7 @@ discard block |
||
834 | 834 | 'name' => 'no-conflict-mode', |
835 | 835 | 'type' => 'radio', |
836 | 836 | 'label' => __( 'No-Conflict Mode', 'gravityview' ), |
837 | - 'default_value' => $default_settings['no-conflict-mode'], |
|
837 | + 'default_value' => $default_settings[ 'no-conflict-mode' ], |
|
838 | 838 | 'horizontal' => 1, |
839 | 839 | 'choices' => array( |
840 | 840 | array( |
@@ -856,7 +856,7 @@ discard block |
||
856 | 856 | 'name' => 'rest_api', |
857 | 857 | 'type' => 'radio', |
858 | 858 | 'label' => __( 'REST API', 'gravityview' ), |
859 | - 'default_value' => $default_settings['rest_api'], |
|
859 | + 'default_value' => $default_settings[ 'rest_api' ], |
|
860 | 860 | 'horizontal' => 1, |
861 | 861 | 'choices' => array( |
862 | 862 | array( |
@@ -875,7 +875,7 @@ discard block |
||
875 | 875 | 'name' => 'beta', |
876 | 876 | 'type' => 'checkbox', |
877 | 877 | 'label' => __( 'Become a Beta Tester', 'gravityview' ), |
878 | - 'default_value' => $default_settings['beta'], |
|
878 | + 'default_value' => $default_settings[ 'beta' ], |
|
879 | 879 | 'horizontal' => 1, |
880 | 880 | 'choices' => array( |
881 | 881 | array( |
@@ -908,17 +908,17 @@ discard block |
||
908 | 908 | * @since 1.7.4 |
909 | 909 | */ |
910 | 910 | foreach ( $fields as &$field ) { |
911 | - $field['name'] = isset( $field['name'] ) ? $field['name'] : Utils::get( $field, 'id' ); |
|
912 | - $field['label'] = isset( $field['label'] ) ? $field['label'] : Utils::get( $field, 'title' ); |
|
913 | - $field['default_value'] = isset( $field['default_value'] ) ? $field['default_value'] : Utils::get( $field, 'default' ); |
|
914 | - $field['description'] = isset( $field['description'] ) ? $field['description'] : Utils::get( $field, 'subtitle' ); |
|
911 | + $field[ 'name' ] = isset( $field[ 'name' ] ) ? $field[ 'name' ] : Utils::get( $field, 'id' ); |
|
912 | + $field[ 'label' ] = isset( $field[ 'label' ] ) ? $field[ 'label' ] : Utils::get( $field, 'title' ); |
|
913 | + $field[ 'default_value' ] = isset( $field[ 'default_value' ] ) ? $field[ 'default_value' ] : Utils::get( $field, 'default' ); |
|
914 | + $field[ 'description' ] = isset( $field[ 'description' ] ) ? $field[ 'description' ] : Utils::get( $field, 'subtitle' ); |
|
915 | 915 | |
916 | 916 | if ( $disabled_attribute ) { |
917 | - $field['disabled'] = $disabled_attribute; |
|
917 | + $field[ 'disabled' ] = $disabled_attribute; |
|
918 | 918 | } |
919 | 919 | |
920 | - if ( empty( $field['disabled'] ) ) { |
|
921 | - unset( $field['disabled'] ); |
|
920 | + if ( empty( $field[ 'disabled' ] ) ) { |
|
921 | + unset( $field[ 'disabled' ] ); |
|
922 | 922 | } |
923 | 923 | } |
924 | 924 | |
@@ -936,7 +936,7 @@ discard block |
||
936 | 936 | ); |
937 | 937 | |
938 | 938 | if ( $disabled_attribute ) { |
939 | - $button['disabled'] = $disabled_attribute; |
|
939 | + $button[ 'disabled' ] = $disabled_attribute; |
|
940 | 940 | } |
941 | 941 | |
942 | 942 | /** |
@@ -955,20 +955,20 @@ discard block |
||
955 | 955 | // If there are extensions, add a section for them |
956 | 956 | if ( ! empty( $extension_sections ) ) { |
957 | 957 | |
958 | - if( $disabled_attribute ) { |
|
958 | + if ( $disabled_attribute ) { |
|
959 | 959 | foreach ( $extension_sections as &$section ) { |
960 | - foreach ( $section['fields'] as &$field ) { |
|
961 | - $field['disabled'] = $disabled_attribute; |
|
960 | + foreach ( $section[ 'fields' ] as &$field ) { |
|
961 | + $field[ 'disabled' ] = $disabled_attribute; |
|
962 | 962 | } |
963 | 963 | } |
964 | 964 | } |
965 | 965 | |
966 | - $k = count( $extension_sections ) - 1 ; |
|
967 | - $extension_sections[ $k ]['fields'][] = $button; |
|
966 | + $k = count( $extension_sections ) - 1; |
|
967 | + $extension_sections[ $k ][ 'fields' ][ ] = $button; |
|
968 | 968 | $sections = array_merge( $sections, $extension_sections ); |
969 | 969 | } else { |
970 | 970 | // add the 'update settings' button to the general section |
971 | - $sections[0]['fields'][] = $button; |
|
971 | + $sections[ 0 ][ 'fields' ][ ] = $button; |
|
972 | 972 | } |
973 | 973 | |
974 | 974 | return $sections; |
@@ -1024,7 +1024,7 @@ discard block |
||
1024 | 1024 | protected function settings_edd_license( $field, $echo = true ) { |
1025 | 1025 | |
1026 | 1026 | if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
1027 | - $field['input_type'] = 'password'; |
|
1027 | + $field[ 'input_type' ] = 'password'; |
|
1028 | 1028 | } |
1029 | 1029 | |
1030 | 1030 | $text = $this->settings_text( $field, false ); |
@@ -1073,7 +1073,7 @@ discard block |
||
1073 | 1073 | public function single_setting_row_html( $field ) { |
1074 | 1074 | ?> |
1075 | 1075 | |
1076 | - <tr id="gaddon-setting-row-<?php echo esc_attr( $field['name'] ); ?>"> |
|
1076 | + <tr id="gaddon-setting-row-<?php echo esc_attr( $field[ 'name' ] ); ?>"> |
|
1077 | 1077 | <td colspan="2"> |
1078 | 1078 | <?php $this->single_setting( $field ); ?> |
1079 | 1079 | </td> |
@@ -1091,10 +1091,10 @@ discard block |
||
1091 | 1091 | * @return string |
1092 | 1092 | */ |
1093 | 1093 | public function settings_save( $field, $echo = true ) { |
1094 | - $field['type'] = 'submit'; |
|
1095 | - $field['name'] = 'gform-settings-save'; |
|
1096 | - $field['class'] = isset( $field['class'] ) ? $field['class'] : 'button-primary gfbutton'; |
|
1097 | - $field['value'] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
1094 | + $field[ 'type' ] = 'submit'; |
|
1095 | + $field[ 'name' ] = 'gform-settings-save'; |
|
1096 | + $field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] : 'button-primary gfbutton'; |
|
1097 | + $field[ 'value' ] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
1098 | 1098 | |
1099 | 1099 | $output = $this->settings_submit( $field, false ); |
1100 | 1100 | |
@@ -1125,8 +1125,8 @@ discard block |
||
1125 | 1125 | * @return void |
1126 | 1126 | */ |
1127 | 1127 | public function single_setting_row( $field ) { |
1128 | - $field['gv_description'] = Utils::get( $field, 'description' ); |
|
1129 | - $field['description'] = Utils::get( $field, 'subtitle' ); |
|
1128 | + $field[ 'gv_description' ] = Utils::get( $field, 'description' ); |
|
1129 | + $field[ 'description' ] = Utils::get( $field, 'subtitle' ); |
|
1130 | 1130 | parent::single_setting_row( $field ); |
1131 | 1131 | } |
1132 | 1132 | |
@@ -1138,7 +1138,7 @@ discard block |
||
1138 | 1138 | public function single_setting_label( $field ) { |
1139 | 1139 | parent::single_setting_label( $field ); |
1140 | 1140 | if ( $description = Utils::get( $field, 'gv_description' ) ) { |
1141 | - echo '<span class="description">'. $description .'</span>'; |
|
1141 | + echo '<span class="description">' . $description . '</span>'; |
|
1142 | 1142 | } |
1143 | 1143 | } |
1144 | 1144 | |
@@ -1175,9 +1175,9 @@ discard block |
||
1175 | 1175 | // If the posted key doesn't match the activated/deactivated key (set using the Activate License button, AJAX response), |
1176 | 1176 | // then we assume it's changed. If it's changed, unset the status and the previous response. |
1177 | 1177 | if ( $local_key !== $response_key ) { |
1178 | - unset( $posted_settings['license_key_response'] ); |
|
1179 | - unset( $posted_settings['license_key_status'] ); |
|
1180 | - \GFCommon::add_error_message( __('The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) ); |
|
1178 | + unset( $posted_settings[ 'license_key_response' ] ); |
|
1179 | + unset( $posted_settings[ 'license_key_status' ] ); |
|
1180 | + \GFCommon::add_error_message( __( 'The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) ); |
|
1181 | 1181 | } |
1182 | 1182 | return $posted_settings; |
1183 | 1183 | } |
@@ -134,28 +134,28 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function add_network_menu() { |
136 | 136 | |
137 | - if ( ! gravityview()->plugin->is_network_activated() ) { |
|
137 | + if ( ! gravityview()->plugin->is_network_activated() ) { |
|
138 | 138 | return; |
139 | 139 | } |
140 | 140 | |
141 | - add_menu_page( __( 'Settings', 'gravityview' ), __( 'GravityView', 'gravityview' ), $this->_capabilities_app_settings, "{$this->_slug}_settings", array( $this, 'app_tab_page' ), 'none' ); |
|
141 | + add_menu_page( __( 'Settings', 'gravityview' ), __( 'GravityView', 'gravityview' ), $this->_capabilities_app_settings, "{$this->_slug}_settings", array( $this, 'app_tab_page' ), 'none' ); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | /** |
145 | - * Uninstall all traces of GravityView |
|
146 | - * |
|
147 | - * Note: method is public because parent method is public |
|
148 | - * |
|
145 | + * Uninstall all traces of GravityView |
|
146 | + * |
|
147 | + * Note: method is public because parent method is public |
|
148 | + * |
|
149 | 149 | * @return bool |
150 | 150 | */ |
151 | 151 | public function uninstall() { |
152 | 152 | gravityview()->plugin->uninstall(); |
153 | 153 | |
154 | 154 | /** |
155 | - * Set the path so that Gravity Forms can de-activate GravityView |
|
156 | - * @see GFAddOn::uninstall_addon |
|
157 | - * @uses deactivate_plugins() |
|
158 | - */ |
|
155 | + * Set the path so that Gravity Forms can de-activate GravityView |
|
156 | + * @see GFAddOn::uninstall_addon |
|
157 | + * @uses deactivate_plugins() |
|
158 | + */ |
|
159 | 159 | $this->_path = GRAVITYVIEW_FILE; |
160 | 160 | |
161 | 161 | return true; |
@@ -185,42 +185,42 @@ discard block |
||
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
188 | - * Get an array of reasons why the plugin might be uninstalled |
|
189 | - * |
|
190 | - * @since 1.17.5 |
|
191 | - * |
|
188 | + * Get an array of reasons why the plugin might be uninstalled |
|
189 | + * |
|
190 | + * @since 1.17.5 |
|
191 | + * |
|
192 | 192 | * @return array Array of reasons with the label and followup questions for each uninstall reason |
193 | 193 | */ |
194 | 194 | private function get_uninstall_reasons() { |
195 | 195 | $reasons = array( |
196 | 196 | 'will-continue' => array( |
197 | - 'label' => esc_html__( 'I am going to continue using GravityView', 'gravityview' ), |
|
198 | - ), |
|
197 | + 'label' => esc_html__( 'I am going to continue using GravityView', 'gravityview' ), |
|
198 | + ), |
|
199 | 199 | 'no-longer-need' => array( |
200 | - 'label' => esc_html__( 'I no longer need GravityView', 'gravityview' ), |
|
201 | - ), |
|
200 | + 'label' => esc_html__( 'I no longer need GravityView', 'gravityview' ), |
|
201 | + ), |
|
202 | 202 | 'doesnt-work' => array( |
203 | - 'label' => esc_html__( 'The plugin doesn\'t work', 'gravityview' ), |
|
204 | - ), |
|
203 | + 'label' => esc_html__( 'The plugin doesn\'t work', 'gravityview' ), |
|
204 | + ), |
|
205 | 205 | 'found-other' => array( |
206 | - 'label' => esc_html__( 'I found a better plugin', 'gravityview' ), |
|
207 | - 'followup' => esc_attr__( 'What plugin you are using, and why?', 'gravityview' ), |
|
208 | - ), |
|
206 | + 'label' => esc_html__( 'I found a better plugin', 'gravityview' ), |
|
207 | + 'followup' => esc_attr__( 'What plugin you are using, and why?', 'gravityview' ), |
|
208 | + ), |
|
209 | 209 | 'other' => array( |
210 | - 'label' => esc_html__( 'Other', 'gravityview' ), |
|
211 | - ), |
|
210 | + 'label' => esc_html__( 'Other', 'gravityview' ), |
|
211 | + ), |
|
212 | 212 | ); |
213 | 213 | |
214 | 214 | shuffle( $reasons ); |
215 | 215 | |
216 | 216 | return $reasons; |
217 | - } |
|
217 | + } |
|
218 | 218 | |
219 | 219 | /** |
220 | - * Display a feedback form when the plugin is uninstalled |
|
221 | - * |
|
222 | - * @since 1.17.5 |
|
223 | - * |
|
220 | + * Display a feedback form when the plugin is uninstalled |
|
221 | + * |
|
222 | + * @since 1.17.5 |
|
223 | + * |
|
224 | 224 | * @return string HTML of the uninstallation form |
225 | 225 | */ |
226 | 226 | public function uninstall_form() { |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | <h2><?php esc_html_e( 'Why did you uninstall GravityView?', 'gravityview' ); ?></h2> |
301 | 301 | <ul> |
302 | 302 | <?php |
303 | - $reasons = $this->get_uninstall_reasons(); |
|
303 | + $reasons = $this->get_uninstall_reasons(); |
|
304 | 304 | foreach ( $reasons as $reason ) { |
305 | 305 | printf( '<li><label><input name="reason" type="radio" value="other" data-followup="%s"> %s</label></li>', Utils::get( $reason, 'followup' ), Utils::get( $reason, 'label' ) ); |
306 | 306 | } |
@@ -394,12 +394,12 @@ discard block |
||
394 | 394 | } |
395 | 395 | |
396 | 396 | public function app_settings_tab() { |
397 | - parent::app_settings_tab(); |
|
397 | + parent::app_settings_tab(); |
|
398 | 398 | |
399 | 399 | if ( $this->maybe_uninstall() ) { |
400 | - echo $this->uninstall_form(); |
|
400 | + echo $this->uninstall_form(); |
|
401 | 401 | } |
402 | - } |
|
402 | + } |
|
403 | 403 | |
404 | 404 | /** |
405 | 405 | * The Settings title |
@@ -557,8 +557,8 @@ discard block |
||
557 | 557 | type="' . $field['type'] . '" |
558 | 558 | name="' . esc_attr( $name ) . '" |
559 | 559 | value="' . $value . '" ' . |
560 | - implode( ' ', $attributes ) . |
|
561 | - ' />'; |
|
560 | + implode( ' ', $attributes ) . |
|
561 | + ' />'; |
|
562 | 562 | |
563 | 563 | if ( $echo ) { |
564 | 564 | echo $html; |
@@ -576,12 +576,12 @@ discard block |
||
576 | 576 | } |
577 | 577 | |
578 | 578 | /** |
579 | - * Check whether GravityView is being saved |
|
580 | - * |
|
581 | - * The generic is_save_postback() is true for all addons |
|
582 | - * |
|
583 | - * @since 2.0.8 |
|
584 | - * |
|
579 | + * Check whether GravityView is being saved |
|
580 | + * |
|
581 | + * The generic is_save_postback() is true for all addons |
|
582 | + * |
|
583 | + * @since 2.0.8 |
|
584 | + * |
|
585 | 585 | * @return bool |
586 | 586 | */ |
587 | 587 | public function is_save_postback() { |
@@ -595,16 +595,16 @@ discard block |
||
595 | 595 | */ |
596 | 596 | public function license_key_notice() { |
597 | 597 | |
598 | - if( $this->is_save_postback() ) { |
|
599 | - $settings = $this->get_posted_settings(); |
|
600 | - $license_key = \GV\Utils::get( $settings, 'license_key' ); |
|
601 | - $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
|
602 | - } else { |
|
603 | - $license_status = $this->get( 'license_key_status', 'inactive' ); |
|
604 | - $license_key = $this->get( 'license_key' ); |
|
605 | - } |
|
598 | + if( $this->is_save_postback() ) { |
|
599 | + $settings = $this->get_posted_settings(); |
|
600 | + $license_key = \GV\Utils::get( $settings, 'license_key' ); |
|
601 | + $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
|
602 | + } else { |
|
603 | + $license_status = $this->get( 'license_key_status', 'inactive' ); |
|
604 | + $license_key = $this->get( 'license_key' ); |
|
605 | + } |
|
606 | 606 | |
607 | - $license_id = empty( $license_key ) ? 'license' : $license_key; |
|
607 | + $license_id = empty( $license_key ) ? 'license' : $license_key; |
|
608 | 608 | |
609 | 609 | $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' ); |
610 | 610 | |
@@ -621,7 +621,7 @@ discard block |
||
621 | 621 | $update_below = false; |
622 | 622 | $primary_button_link = admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ); |
623 | 623 | |
624 | - switch ( $license_status ) { |
|
624 | + switch ( $license_status ) { |
|
625 | 625 | /** @since 1.17 */ |
626 | 626 | case 'expired': |
627 | 627 | $title = __( 'Expired License', 'gravityview' ); |
@@ -659,13 +659,13 @@ discard block |
||
659 | 659 | return; |
660 | 660 | } |
661 | 661 | |
662 | - \GravityView_Admin_Notices::add_notice( array( |
|
663 | - 'message' => $message, |
|
664 | - 'class' => 'notice notice-warning', |
|
665 | - 'title' => $title, |
|
666 | - 'cap' => 'gravityview_edit_settings', |
|
667 | - 'dismiss' => sha1( $license_status . '_' . $license_id . '_' . date( 'z' ) ), // Show every day, instead of every 8 weeks (which is the default) |
|
668 | - ) ); |
|
662 | + \GravityView_Admin_Notices::add_notice( array( |
|
663 | + 'message' => $message, |
|
664 | + 'class' => 'notice notice-warning', |
|
665 | + 'title' => $title, |
|
666 | + 'cap' => 'gravityview_edit_settings', |
|
667 | + 'dismiss' => sha1( $license_status . '_' . $license_id . '_' . date( 'z' ) ), // Show every day, instead of every 8 weeks (which is the default) |
|
668 | + ) ); |
|
669 | 669 | } |
670 | 670 | |
671 | 671 | /** |
@@ -679,12 +679,12 @@ discard block |
||
679 | 679 | } |
680 | 680 | |
681 | 681 | /** |
682 | - * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason. |
|
683 | - * |
|
684 | - * @since 1.21.5 |
|
685 | - * |
|
686 | - * @see GFAddOn::scripts() |
|
687 | - * |
|
682 | + * Add tooltip script to app settings page. Not enqueued by Gravity Forms for some reason. |
|
683 | + * |
|
684 | + * @since 1.21.5 |
|
685 | + * |
|
686 | + * @see GFAddOn::scripts() |
|
687 | + * |
|
688 | 688 | * @return array Array of scripts |
689 | 689 | */ |
690 | 690 | public function scripts() { |
@@ -693,10 +693,10 @@ discard block |
||
693 | 693 | $scripts[] = array( |
694 | 694 | 'handle' => 'gform_tooltip_init', |
695 | 695 | 'enqueue' => array( |
696 | - array( |
|
697 | - 'admin_page' => array( 'app_settings' ) |
|
698 | - ) |
|
699 | - ) |
|
696 | + array( |
|
697 | + 'admin_page' => array( 'app_settings' ) |
|
698 | + ) |
|
699 | + ) |
|
700 | 700 | ); |
701 | 701 | |
702 | 702 | return $scripts; |
@@ -714,10 +714,10 @@ discard block |
||
714 | 714 | 'src' => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ), |
715 | 715 | 'version' => Plugin::$version, |
716 | 716 | 'deps' => array( |
717 | - 'gform_admin', |
|
717 | + 'gform_admin', |
|
718 | 718 | 'gaddon_form_settings_css', |
719 | - 'gform_tooltip', |
|
720 | - 'gform_font_awesome', |
|
719 | + 'gform_tooltip', |
|
720 | + 'gform_font_awesome', |
|
721 | 721 | ), |
722 | 722 | 'enqueue' => array( |
723 | 723 | array( 'admin_page' => array( |
@@ -885,7 +885,7 @@ discard block |
||
885 | 885 | array( |
886 | 886 | 'label' => _x( 'Show me beta versions if they are available.', 'gravityview' ), |
887 | 887 | 'value' => '1', |
888 | - 'name' => 'beta', |
|
888 | + 'name' => 'beta', |
|
889 | 889 | ), |
890 | 890 | ), |
891 | 891 | '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' ), |
@@ -923,38 +923,38 @@ discard block |
||
923 | 923 | |
924 | 924 | if ( empty( $field['disabled'] ) ) { |
925 | 925 | unset( $field['disabled'] ); |
926 | - } |
|
926 | + } |
|
927 | 927 | } |
928 | 928 | |
929 | - $sections = array( |
|
930 | - array( |
|
931 | - 'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ), |
|
932 | - 'fields' => $fields, |
|
933 | - ) |
|
934 | - ); |
|
929 | + $sections = array( |
|
930 | + array( |
|
931 | + 'description' => sprintf( '<span class="version-info description">%s</span>', sprintf( __( 'You are running GravityView version %s', 'gravityview' ), Plugin::$version ) ), |
|
932 | + 'fields' => $fields, |
|
933 | + ) |
|
934 | + ); |
|
935 | 935 | |
936 | - // custom 'update settings' button |
|
937 | - $button = array( |
|
938 | - 'class' => 'button button-primary button-hero', |
|
939 | - 'type' => 'save', |
|
940 | - ); |
|
936 | + // custom 'update settings' button |
|
937 | + $button = array( |
|
938 | + 'class' => 'button button-primary button-hero', |
|
939 | + 'type' => 'save', |
|
940 | + ); |
|
941 | 941 | |
942 | 942 | if ( $disabled_attribute ) { |
943 | 943 | $button['disabled'] = $disabled_attribute; |
944 | 944 | } |
945 | 945 | |
946 | - /** |
|
947 | - * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page |
|
948 | - * Extensions can tap in here to insert their own section and settings. |
|
949 | - * <code> |
|
950 | - * $sections[] = array( |
|
951 | - * 'title' => __( 'GravityView My Extension Settings', 'gravityview' ), |
|
952 | - * 'fields' => $settings, |
|
953 | - * ); |
|
954 | - * </code> |
|
955 | - * @param array $extension_settings Empty array, ready for extension settings! |
|
956 | - */ |
|
957 | - $extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() ); |
|
946 | + /** |
|
947 | + * @filter `gravityview/settings/extension/sections` Modify the GravityView settings page |
|
948 | + * Extensions can tap in here to insert their own section and settings. |
|
949 | + * <code> |
|
950 | + * $sections[] = array( |
|
951 | + * 'title' => __( 'GravityView My Extension Settings', 'gravityview' ), |
|
952 | + * 'fields' => $settings, |
|
953 | + * ); |
|
954 | + * </code> |
|
955 | + * @param array $extension_settings Empty array, ready for extension settings! |
|
956 | + */ |
|
957 | + $extension_sections = apply_filters( 'gravityview/settings/extension/sections', array() ); |
|
958 | 958 | |
959 | 959 | // If there are extensions, add a section for them |
960 | 960 | if ( ! empty( $extension_sections ) ) { |
@@ -967,13 +967,13 @@ discard block |
||
967 | 967 | } |
968 | 968 | } |
969 | 969 | |
970 | - $k = count( $extension_sections ) - 1 ; |
|
971 | - $extension_sections[ $k ]['fields'][] = $button; |
|
970 | + $k = count( $extension_sections ) - 1 ; |
|
971 | + $extension_sections[ $k ]['fields'][] = $button; |
|
972 | 972 | $sections = array_merge( $sections, $extension_sections ); |
973 | 973 | } else { |
974 | - // add the 'update settings' button to the general section |
|
975 | - $sections[0]['fields'][] = $button; |
|
976 | - } |
|
974 | + // add the 'update settings' button to the general section |
|
975 | + $sections[0]['fields'][] = $button; |
|
976 | + } |
|
977 | 977 | |
978 | 978 | return $sections; |
979 | 979 | } |
@@ -1027,9 +1027,9 @@ discard block |
||
1027 | 1027 | */ |
1028 | 1028 | protected function settings_edd_license( $field, $echo = true ) { |
1029 | 1029 | |
1030 | - if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
|
1031 | - $field['input_type'] = 'password'; |
|
1032 | - } |
|
1030 | + if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
|
1031 | + $field['input_type'] = 'password'; |
|
1032 | + } |
|
1033 | 1033 | |
1034 | 1034 | $text = $this->settings_text( $field, false ); |
1035 | 1035 | |
@@ -1046,9 +1046,9 @@ discard block |
||
1046 | 1046 | |
1047 | 1047 | /** |
1048 | 1048 | * Allow pure HTML settings row |
1049 | - * |
|
1050 | - * @since 2.0.6 |
|
1051 | - * |
|
1049 | + * |
|
1050 | + * @since 2.0.6 |
|
1051 | + * |
|
1052 | 1052 | * @param array $field |
1053 | 1053 | * @param bool $echo Whether to echo the |
1054 | 1054 | * |
@@ -1114,19 +1114,19 @@ discard block |
||
1114 | 1114 | } |
1115 | 1115 | |
1116 | 1116 | /** |
1117 | - * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it |
|
1118 | - * |
|
1119 | - * Converts `$field['description']` to `$field['gv_description']` |
|
1120 | - * Converts `$field['subtitle']` to `$field['description']` |
|
1121 | - * |
|
1122 | - * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description` |
|
1123 | - * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description |
|
1124 | - * |
|
1125 | - * @since 1.21.5.2 |
|
1126 | - * |
|
1117 | + * Keep GravityView styling for `$field['description']`, even though Gravity Forms added support for it |
|
1118 | + * |
|
1119 | + * Converts `$field['description']` to `$field['gv_description']` |
|
1120 | + * Converts `$field['subtitle']` to `$field['description']` |
|
1121 | + * |
|
1122 | + * @see \GV\Addon_Settings::single_setting_label Converts `gv_description` back to `description` |
|
1123 | + * @see http://share.gravityview.co/P28uGp/2OIRKxog for image that shows subtitle vs description |
|
1124 | + * |
|
1125 | + * @since 1.21.5.2 |
|
1126 | + * |
|
1127 | 1127 | * @param array $field |
1128 | - * |
|
1129 | - * @return void |
|
1128 | + * |
|
1129 | + * @return void |
|
1130 | 1130 | */ |
1131 | 1131 | public function single_setting_row( $field ) { |
1132 | 1132 | $field['gv_description'] = Utils::get( $field, 'description' ); |
@@ -305,13 +305,13 @@ |
||
305 | 305 | $this->_remote_update_url, |
306 | 306 | $this->_path, |
307 | 307 | array( |
308 | - 'version' => $this->_version, // current version number |
|
309 | - 'license' => \GV\Utils::get( $license, 'license_key', \GV\Utils::get( $license, 'license', null ) ), |
|
310 | - 'item_id' => $this->_item_id, // The ID of the download on _remote_update_url |
|
311 | - 'item_name' => $this->_title, // name of this plugin |
|
312 | - 'author' => strip_tags( $this->_author ) // author of this plugin |
|
313 | - ) |
|
314 | - ); |
|
308 | + 'version' => $this->_version, // current version number |
|
309 | + 'license' => \GV\Utils::get( $license, 'license_key', \GV\Utils::get( $license, 'license', null ) ), |
|
310 | + 'item_id' => $this->_item_id, // The ID of the download on _remote_update_url |
|
311 | + 'item_name' => $this->_title, // name of this plugin |
|
312 | + 'author' => strip_tags( $this->_author ) // author of this plugin |
|
313 | + ) |
|
314 | + ); |
|
315 | 315 | } |
316 | 316 | |
317 | 317 | /** |
@@ -180,13 +180,13 @@ discard block |
||
180 | 180 | $tab = wp_parse_args( $tab_settings, $tab_defaults ); |
181 | 181 | |
182 | 182 | // Force the screen to be GravityView |
183 | - $tab['screen'] = 'gravityview'; |
|
183 | + $tab[ 'screen' ] = 'gravityview'; |
|
184 | 184 | |
185 | 185 | if ( class_exists( 'GravityView_Metabox_Tab' ) ) { |
186 | - $metabox = new \GravityView_Metabox_Tab( $tab['id'], $tab['title'], $tab['file'], $tab['icon-class'], $tab['callback'], $tab['callback_args'] ); |
|
186 | + $metabox = new \GravityView_Metabox_Tab( $tab[ 'id' ], $tab[ 'title' ], $tab[ 'file' ], $tab[ 'icon-class' ], $tab[ 'callback' ], $tab[ 'callback_args' ] ); |
|
187 | 187 | \GravityView_Metabox_Tabs::add( $metabox ); |
188 | 188 | } else { |
189 | - add_meta_box( 'gravityview_' . $tab['id'], $tab['title'], $tab['callback'], $tab['screen'], $tab['context'], $tab['priority'] ); |
|
189 | + add_meta_box( 'gravityview_' . $tab[ 'id' ], $tab[ 'title' ], $tab[ 'callback' ], $tab[ 'screen' ], $tab[ 'context' ], $tab[ 'priority' ] ); |
|
190 | 190 | } |
191 | 191 | } |
192 | 192 | |
@@ -211,14 +211,14 @@ discard block |
||
211 | 211 | */ |
212 | 212 | protected function is_extension_supported() { |
213 | 213 | |
214 | - self::$is_compatible = is_array( self::$is_compatible ) ? self::$is_compatible : array( get_called_class() => (bool) self::$is_compatible ); |
|
214 | + self::$is_compatible = is_array( self::$is_compatible ) ? self::$is_compatible : array( get_called_class() => (bool)self::$is_compatible ); |
|
215 | 215 | |
216 | 216 | if ( ! function_exists( 'gravityview' ) ) { |
217 | 217 | $message = sprintf( __( 'Could not activate the %s Extension; GravityView is not active.', 'gravityview' ), esc_html( $this->_title ) ); |
218 | - } else if ( false === version_compare( Plugin::$version, $this->_min_gravityview_version , ">=" ) ) { |
|
219 | - $message = sprintf( __( 'The %s Extension requires GravityView Version %s or newer.', 'gravityview' ), esc_html( $this->_title ), '<tt>'.$this->_min_gravityview_version.'</tt>' ); |
|
220 | - } else if ( isset( $this->_min_php_version ) && false === version_compare( phpversion(), $this->_min_php_version , ">=" ) ) { |
|
221 | - $message = sprintf( __( 'The %s Extension requires PHP Version %s or newer. Please ask your host to upgrade your server\'s PHP.', 'gravityview' ), esc_html( $this->_title ), '<tt>'.$this->_min_php_version.'</tt>' ); |
|
218 | + } else if ( false === version_compare( Plugin::$version, $this->_min_gravityview_version, ">=" ) ) { |
|
219 | + $message = sprintf( __( 'The %s Extension requires GravityView Version %s or newer.', 'gravityview' ), esc_html( $this->_title ), '<tt>' . $this->_min_gravityview_version . '</tt>' ); |
|
220 | + } else if ( isset( $this->_min_php_version ) && false === version_compare( phpversion(), $this->_min_php_version, ">=" ) ) { |
|
221 | + $message = sprintf( __( 'The %s Extension requires PHP Version %s or newer. Please ask your host to upgrade your server\'s PHP.', 'gravityview' ), esc_html( $this->_title ), '<tt>' . $this->_min_php_version . '</tt>' ); |
|
222 | 222 | } else if ( ! empty( $this->_max_gravityview_version ) && false === version_compare( $this->_max_gravityview_version, Plugin::$version, ">" ) ) { |
223 | 223 | $message = sprintf( __( 'The %s Extension is not compatible with this version of GravityView. Please update the Extension to the latest version.', 'gravityview' ), esc_html( $this->_title ) ); |
224 | 224 | } else { |
@@ -258,12 +258,12 @@ discard block |
||
258 | 258 | |
259 | 259 | $locale = get_locale(); |
260 | 260 | |
261 | - if ( function_exists('get_user_locale') && is_admin() ) { |
|
261 | + if ( function_exists( 'get_user_locale' ) && is_admin() ) { |
|
262 | 262 | $locale = get_user_locale(); |
263 | 263 | } |
264 | 264 | |
265 | 265 | // Traditional WordPress plugin locale filter |
266 | - $locale = apply_filters( 'plugin_locale', $locale, $this->_text_domain ); |
|
266 | + $locale = apply_filters( 'plugin_locale', $locale, $this->_text_domain ); |
|
267 | 267 | |
268 | 268 | $mofile = sprintf( '%1$s-%2$s.mo', $this->_text_domain, $locale ); |
269 | 269 | |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | public function settings() { |
292 | 292 | |
293 | 293 | // If doing ajax, get outta here |
294 | - if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX && 'update-plugin' !== Utils::_POST('action') ) ) { |
|
294 | + if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX && 'update-plugin' !== Utils::_POST( 'action' ) ) ) { |
|
295 | 295 | return; |
296 | 296 | } |
297 | 297 | |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | 'version' => $this->_version, // current version number |
309 | 309 | 'license' => \GV\Utils::get( $license, 'license_key', \GV\Utils::get( $license, 'license', null ) ), |
310 | 310 | 'item_id' => $this->_item_id, // The ID of the download on _remote_update_url |
311 | - 'item_name' => $this->_title, // name of this plugin |
|
311 | + 'item_name' => $this->_title, // name of this plugin |
|
312 | 312 | 'author' => strip_tags( $this->_author ) // author of this plugin |
313 | 313 | ) |
314 | 314 | ); |
@@ -337,16 +337,16 @@ discard block |
||
337 | 337 | */ |
338 | 338 | public static function add_notice( $notice = array() ) { |
339 | 339 | |
340 | - if ( is_array( $notice ) && empty( $notice['message'] ) ) { |
|
340 | + if ( is_array( $notice ) && empty( $notice[ 'message' ] ) ) { |
|
341 | 341 | gravityview()->log->error( 'Notice not set', array( 'data' => $notice ) ); |
342 | 342 | return; |
343 | 343 | } else if ( is_string( $notice ) ) { |
344 | 344 | $notice = array( 'message' => $notice ); |
345 | 345 | } |
346 | 346 | |
347 | - $notice['class'] = empty( $notice['class'] ) ? 'error' : $notice['class']; |
|
347 | + $notice[ 'class' ] = empty( $notice[ 'class' ] ) ? 'error' : $notice[ 'class' ]; |
|
348 | 348 | |
349 | - self::$admin_notices []= $notice; |
|
349 | + self::$admin_notices [ ] = $notice; |
|
350 | 350 | } |
351 | 351 | |
352 | 352 | /** |
@@ -360,8 +360,8 @@ discard block |
||
360 | 360 | } |
361 | 361 | |
362 | 362 | foreach ( self::$admin_notices as $key => $notice ) { |
363 | - echo '<div id="message" class="'. esc_attr( $notice['class'] ).'">'; |
|
364 | - echo wpautop( $notice['message'] ); |
|
363 | + echo '<div id="message" class="' . esc_attr( $notice[ 'class' ] ) . '">'; |
|
364 | + echo wpautop( $notice[ 'message' ] ); |
|
365 | 365 | echo '<div class="clear"></div>'; |
366 | 366 | echo '</div>'; |
367 | 367 | } |
@@ -102,10 +102,10 @@ discard block |
||
102 | 102 | |
103 | 103 | /** |
104 | 104 | * ID of the current post. May also be ID of the current View. |
105 | - * |
|
106 | - * @since 2.0.13 |
|
107 | - * |
|
108 | - * @var int |
|
105 | + * |
|
106 | + * @since 2.0.13 |
|
107 | + * |
|
108 | + * @var int |
|
109 | 109 | */ |
110 | 110 | public $post_id; |
111 | 111 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function prevent_maybe_process_form() { |
178 | 178 | |
179 | - if( ! $this->is_edit_entry_submission() ) { |
|
179 | + if( ! $this->is_edit_entry_submission() ) { |
|
180 | 180 | return; |
181 | 181 | } |
182 | 182 | |
@@ -210,14 +210,14 @@ discard block |
||
210 | 210 | * When Edit entry view is requested setup the vars |
211 | 211 | */ |
212 | 212 | private function setup_vars() { |
213 | - global $post; |
|
213 | + global $post; |
|
214 | 214 | |
215 | 215 | $gravityview_view = GravityView_View::getInstance(); |
216 | 216 | |
217 | 217 | |
218 | 218 | $entries = $gravityview_view->getEntries(); |
219 | - self::$original_entry = $entries[0]; |
|
220 | - $this->entry = $entries[0]; |
|
219 | + self::$original_entry = $entries[0]; |
|
220 | + $this->entry = $entries[0]; |
|
221 | 221 | |
222 | 222 | self::$original_form = $gravityview_view->getForm(); |
223 | 223 | $this->form = $gravityview_view->getForm(); |
@@ -359,8 +359,8 @@ discard block |
||
359 | 359 | |
360 | 360 | GFFormsModel::save_lead( $form, $this->entry ); |
361 | 361 | |
362 | - // Delete the values for hidden inputs |
|
363 | - $this->unset_hidden_field_values(); |
|
362 | + // Delete the values for hidden inputs |
|
363 | + $this->unset_hidden_field_values(); |
|
364 | 364 | |
365 | 365 | $this->entry['date_created'] = $date_created; |
366 | 366 | |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | // Perform actions normally performed after updating a lead |
371 | 371 | $this->after_update(); |
372 | 372 | |
373 | - /** |
|
373 | + /** |
|
374 | 374 | * Must be AFTER after_update()! |
375 | 375 | * @see https://github.com/gravityview/GravityView/issues/764 |
376 | 376 | */ |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | |
379 | 379 | /** |
380 | 380 | * @action `gravityview/edit_entry/after_update` Perform an action after the entry has been updated using Edit Entry |
381 | - * @since 2.1 Added $gv_data parameter |
|
381 | + * @since 2.1 Added $gv_data parameter |
|
382 | 382 | * @param array $form Gravity Forms form array |
383 | 383 | * @param string $entry_id Numeric ID of the entry that was updated |
384 | 384 | * @param GravityView_Edit_Entry_Render $this This object |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | * @return void |
403 | 403 | */ |
404 | 404 | private function unset_hidden_field_values() { |
405 | - global $wpdb; |
|
405 | + global $wpdb; |
|
406 | 406 | |
407 | 407 | /** |
408 | 408 | * @filter `gravityview/edit_entry/unset_hidden_field_values` Whether to delete values of fields hidden by conditional logic |
@@ -424,29 +424,29 @@ discard block |
||
424 | 424 | $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) ); |
425 | 425 | } |
426 | 426 | |
427 | - foreach ( $this->entry as $input_id => $field_value ) { |
|
427 | + foreach ( $this->entry as $input_id => $field_value ) { |
|
428 | 428 | |
429 | - $field = RGFormsModel::get_field( $this->form, $input_id ); |
|
429 | + $field = RGFormsModel::get_field( $this->form, $input_id ); |
|
430 | 430 | |
431 | - // Reset fields that are hidden |
|
432 | - // Don't pass $entry as fourth parameter; force using $_POST values to calculate conditional logic |
|
433 | - if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), NULL ) ) { |
|
431 | + // Reset fields that are hidden |
|
432 | + // Don't pass $entry as fourth parameter; force using $_POST values to calculate conditional logic |
|
433 | + if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), NULL ) ) { |
|
434 | 434 | |
435 | 435 | $empty_value = $field->get_value_save_entry( |
436 | 436 | is_array( $field->get_entry_inputs() ) ? array() : '', |
437 | 437 | $this->form, '', $this->entry['id'], $this->entry |
438 | 438 | ); |
439 | 439 | |
440 | - $lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id ); |
|
440 | + $lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id ); |
|
441 | 441 | |
442 | - GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value ); |
|
442 | + GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value ); |
|
443 | 443 | |
444 | - // Prevent the $_POST values of hidden fields from being used as default values when rendering the form |
|
444 | + // Prevent the $_POST values of hidden fields from being used as default values when rendering the form |
|
445 | 445 | // after submission |
446 | - $post_input_id = 'input_' . str_replace( '.', '_', $input_id ); |
|
447 | - $_POST[ $post_input_id ] = ''; |
|
448 | - } |
|
449 | - } |
|
446 | + $post_input_id = 'input_' . str_replace( '.', '_', $input_id ); |
|
447 | + $_POST[ $post_input_id ] = ''; |
|
448 | + } |
|
449 | + } |
|
450 | 450 | } |
451 | 451 | |
452 | 452 | /** |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | |
541 | 541 | $form = $this->filter_conditional_logic( $this->form ); |
542 | 542 | |
543 | - /** @var GF_Field $field */ |
|
543 | + /** @var GF_Field $field */ |
|
544 | 544 | foreach( $form['fields'] as $k => &$field ) { |
545 | 545 | |
546 | 546 | /** |
@@ -556,7 +556,7 @@ discard block |
||
556 | 556 | |
557 | 557 | if( isset( $field->inputs ) && is_array( $field->inputs ) ) { |
558 | 558 | foreach( $field->inputs as $key => $input ) { |
559 | - $field->inputs[ $key ][ 'id' ] = (string)$input['id']; |
|
559 | + $field->inputs[ $key ][ 'id' ] = (string)$input['id']; |
|
560 | 560 | } |
561 | 561 | } |
562 | 562 | } |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | foreach ( $this->fields_with_calculation as $field ) { |
592 | 592 | $inputs = $field->get_entry_inputs(); |
593 | 593 | if ( is_array( $inputs ) ) { |
594 | - foreach ( $inputs as $input ) { |
|
594 | + foreach ( $inputs as $input ) { |
|
595 | 595 | list( $field_id, $input_id ) = rgexplode( '.', $input['id'], 2 ); |
596 | 596 | |
597 | 597 | if ( 'product' === $field->type ) { |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | } |
611 | 611 | |
612 | 612 | GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input['id'] ); |
613 | - } |
|
613 | + } |
|
614 | 614 | } else { |
615 | 615 | // Set to what it previously was if it's not editable |
616 | 616 | if ( ! in_array( $field->id, $allowed_fields ) ) { |
@@ -656,7 +656,7 @@ discard block |
||
656 | 656 | $value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] ); |
657 | 657 | |
658 | 658 | $ary = ! empty( $value ) ? explode( '|:|', $value ) : array(); |
659 | - $ary = stripslashes_deep( $ary ); |
|
659 | + $ary = stripslashes_deep( $ary ); |
|
660 | 660 | $img_url = \GV\Utils::get( $ary, 0 ); |
661 | 661 | |
662 | 662 | $img_title = count( $ary ) > 1 ? $ary[1] : ''; |
@@ -729,7 +729,7 @@ discard block |
||
729 | 729 | private function maybe_update_post_fields( $form ) { |
730 | 730 | |
731 | 731 | if( empty( $this->entry['post_id'] ) ) { |
732 | - gravityview()->log->debug( 'This entry has no post fields. Continuing...' ); |
|
732 | + gravityview()->log->debug( 'This entry has no post fields. Continuing...' ); |
|
733 | 733 | return; |
734 | 734 | } |
735 | 735 | |
@@ -764,49 +764,49 @@ discard block |
||
764 | 764 | |
765 | 765 | switch( $field->type ) { |
766 | 766 | |
767 | - case 'post_title': |
|
768 | - $post_title = $value; |
|
769 | - if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) { |
|
770 | - $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp ); |
|
771 | - } |
|
772 | - $updated_post->post_title = $post_title; |
|
773 | - $updated_post->post_name = $post_title; |
|
774 | - unset( $post_title ); |
|
775 | - break; |
|
776 | - |
|
777 | - case 'post_content': |
|
778 | - $post_content = $value; |
|
779 | - if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) { |
|
780 | - $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true ); |
|
781 | - } |
|
782 | - $updated_post->post_content = $post_content; |
|
783 | - unset( $post_content ); |
|
784 | - break; |
|
785 | - case 'post_excerpt': |
|
786 | - $updated_post->post_excerpt = $value; |
|
787 | - break; |
|
788 | - case 'post_tags': |
|
789 | - wp_set_post_tags( $post_id, $value, false ); |
|
790 | - break; |
|
791 | - case 'post_category': |
|
792 | - break; |
|
793 | - case 'post_custom_field': |
|
767 | + case 'post_title': |
|
768 | + $post_title = $value; |
|
769 | + if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) { |
|
770 | + $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp ); |
|
771 | + } |
|
772 | + $updated_post->post_title = $post_title; |
|
773 | + $updated_post->post_name = $post_title; |
|
774 | + unset( $post_title ); |
|
775 | + break; |
|
776 | + |
|
777 | + case 'post_content': |
|
778 | + $post_content = $value; |
|
779 | + if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) { |
|
780 | + $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true ); |
|
781 | + } |
|
782 | + $updated_post->post_content = $post_content; |
|
783 | + unset( $post_content ); |
|
784 | + break; |
|
785 | + case 'post_excerpt': |
|
786 | + $updated_post->post_excerpt = $value; |
|
787 | + break; |
|
788 | + case 'post_tags': |
|
789 | + wp_set_post_tags( $post_id, $value, false ); |
|
790 | + break; |
|
791 | + case 'post_category': |
|
792 | + break; |
|
793 | + case 'post_custom_field': |
|
794 | 794 | if ( is_array( $value ) && ( floatval( $field_id ) !== floatval( $field->id ) ) ) { |
795 | 795 | $value = $value[ $field_id ]; |
796 | 796 | } |
797 | 797 | |
798 | - if( ! empty( $field->customFieldTemplateEnabled ) ) { |
|
799 | - $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true ); |
|
800 | - } |
|
798 | + if( ! empty( $field->customFieldTemplateEnabled ) ) { |
|
799 | + $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true ); |
|
800 | + } |
|
801 | 801 | |
802 | 802 | $value = $field->get_value_save_entry( $value, $form, '', $this->entry['id'], $this->entry ); |
803 | 803 | |
804 | - update_post_meta( $post_id, $field->postCustomFieldName, $value ); |
|
805 | - break; |
|
804 | + update_post_meta( $post_id, $field->postCustomFieldName, $value ); |
|
805 | + break; |
|
806 | 806 | |
807 | - case 'post_image': |
|
808 | - $value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id ); |
|
809 | - break; |
|
807 | + case 'post_image': |
|
808 | + $value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id ); |
|
809 | + break; |
|
810 | 810 | |
811 | 811 | } |
812 | 812 | |
@@ -963,14 +963,14 @@ discard block |
||
963 | 963 | ?><h2 class="gv-edit-entry-title"> |
964 | 964 | <span><?php |
965 | 965 | |
966 | - /** |
|
967 | - * @filter `gravityview_edit_entry_title` Modify the edit entry title |
|
968 | - * @param string $edit_entry_title Modify the "Edit Entry" title |
|
969 | - * @param GravityView_Edit_Entry_Render $this This object |
|
970 | - */ |
|
971 | - $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this ); |
|
966 | + /** |
|
967 | + * @filter `gravityview_edit_entry_title` Modify the edit entry title |
|
968 | + * @param string $edit_entry_title Modify the "Edit Entry" title |
|
969 | + * @param GravityView_Edit_Entry_Render $this This object |
|
970 | + */ |
|
971 | + $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this ); |
|
972 | 972 | |
973 | - echo esc_attr( $edit_entry_title ); |
|
973 | + echo esc_attr( $edit_entry_title ); |
|
974 | 974 | ?></span> |
975 | 975 | </h2> |
976 | 976 | |
@@ -1033,26 +1033,26 @@ discard block |
||
1033 | 1033 | |
1034 | 1034 | switch ( $edit_redirect ) { |
1035 | 1035 | |
1036 | - case '0': |
|
1037 | - $redirect_url = $back_link; |
|
1038 | - $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' ); |
|
1039 | - break; |
|
1040 | - |
|
1041 | - case '1': |
|
1042 | - $redirect_url = $directory_link = GravityView_API::directory_link(); |
|
1043 | - $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' ); |
|
1044 | - break; |
|
1045 | - |
|
1046 | - case '2': |
|
1047 | - $redirect_url = $edit_redirect_url; |
|
1048 | - $redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' ); |
|
1049 | - $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' ); |
|
1050 | - break; |
|
1051 | - |
|
1052 | - case '': |
|
1053 | - default: |
|
1054 | - $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' ); |
|
1055 | - break; |
|
1036 | + case '0': |
|
1037 | + $redirect_url = $back_link; |
|
1038 | + $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' ); |
|
1039 | + break; |
|
1040 | + |
|
1041 | + case '1': |
|
1042 | + $redirect_url = $directory_link = GravityView_API::directory_link(); |
|
1043 | + $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' ); |
|
1044 | + break; |
|
1045 | + |
|
1046 | + case '2': |
|
1047 | + $redirect_url = $edit_redirect_url; |
|
1048 | + $redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' ); |
|
1049 | + $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' ); |
|
1050 | + break; |
|
1051 | + |
|
1052 | + case '': |
|
1053 | + default: |
|
1054 | + $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' ); |
|
1055 | + break; |
|
1056 | 1056 | } |
1057 | 1057 | |
1058 | 1058 | if ( isset( $redirect_url ) ) { |
@@ -1109,7 +1109,7 @@ discard block |
||
1109 | 1109 | |
1110 | 1110 | ob_get_clean(); |
1111 | 1111 | |
1112 | - remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 ); |
|
1112 | + remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 ); |
|
1113 | 1113 | remove_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) ); |
1114 | 1114 | remove_filter( 'gform_disable_view_counter', '__return_true' ); |
1115 | 1115 | remove_filter( 'gform_field_input', array( $this, 'verify_user_can_edit_post' ), 5 ); |
@@ -1163,7 +1163,7 @@ discard block |
||
1163 | 1163 | |
1164 | 1164 | // for now we don't support Save and Continue feature. |
1165 | 1165 | if( ! self::$supports_save_and_continue ) { |
1166 | - unset( $form['save'] ); |
|
1166 | + unset( $form['save'] ); |
|
1167 | 1167 | } |
1168 | 1168 | |
1169 | 1169 | $form = $this->unselect_default_values( $form ); |
@@ -1190,30 +1190,30 @@ discard block |
||
1190 | 1190 | return $field_content; |
1191 | 1191 | } |
1192 | 1192 | |
1193 | - $message = null; |
|
1193 | + $message = null; |
|
1194 | 1194 | |
1195 | - // First, make sure they have the capability to edit the post. |
|
1196 | - if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) { |
|
1195 | + // First, make sure they have the capability to edit the post. |
|
1196 | + if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) { |
|
1197 | 1197 | |
1198 | - /** |
|
1199 | - * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post |
|
1200 | - * @param string $message The existing "You don't have permission..." text |
|
1201 | - */ |
|
1202 | - $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don’t have permission to edit this post.', 'gravityview') ); |
|
1198 | + /** |
|
1199 | + * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post |
|
1200 | + * @param string $message The existing "You don't have permission..." text |
|
1201 | + */ |
|
1202 | + $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don’t have permission to edit this post.', 'gravityview') ); |
|
1203 | 1203 | |
1204 | - } elseif( null === get_post( $this->entry['post_id'] ) ) { |
|
1205 | - /** |
|
1206 | - * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists |
|
1207 | - * @param string $message The existing "This field is not editable; the post no longer exists." text |
|
1208 | - */ |
|
1209 | - $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) ); |
|
1210 | - } |
|
1204 | + } elseif( null === get_post( $this->entry['post_id'] ) ) { |
|
1205 | + /** |
|
1206 | + * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists |
|
1207 | + * @param string $message The existing "This field is not editable; the post no longer exists." text |
|
1208 | + */ |
|
1209 | + $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) ); |
|
1210 | + } |
|
1211 | 1211 | |
1212 | - if( $message ) { |
|
1213 | - $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) ); |
|
1214 | - } |
|
1212 | + if( $message ) { |
|
1213 | + $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) ); |
|
1214 | + } |
|
1215 | 1215 | |
1216 | - return $field_content; |
|
1216 | + return $field_content; |
|
1217 | 1217 | } |
1218 | 1218 | |
1219 | 1219 | /** |
@@ -1241,7 +1241,7 @@ discard block |
||
1241 | 1241 | || ! empty( $field_content ) |
1242 | 1242 | || in_array( $field->type, array( 'honeypot' ) ) |
1243 | 1243 | ) { |
1244 | - return $field_content; |
|
1244 | + return $field_content; |
|
1245 | 1245 | } |
1246 | 1246 | |
1247 | 1247 | // SET SOME FIELD DEFAULTS TO PREVENT ISSUES |
@@ -1249,24 +1249,24 @@ discard block |
||
1249 | 1249 | |
1250 | 1250 | $field_value = $this->get_field_value( $field ); |
1251 | 1251 | |
1252 | - // Prevent any PHP warnings, like undefined index |
|
1253 | - ob_start(); |
|
1252 | + // Prevent any PHP warnings, like undefined index |
|
1253 | + ob_start(); |
|
1254 | 1254 | |
1255 | - $return = null; |
|
1255 | + $return = null; |
|
1256 | 1256 | |
1257 | 1257 | /** @var GravityView_Field $gv_field */ |
1258 | 1258 | if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) { |
1259 | 1259 | $return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field ); |
1260 | 1260 | } else { |
1261 | - $return = $field->get_field_input( $this->form, $field_value, $this->entry ); |
|
1262 | - } |
|
1261 | + $return = $field->get_field_input( $this->form, $field_value, $this->entry ); |
|
1262 | + } |
|
1263 | 1263 | |
1264 | - // If there was output, it's an error |
|
1265 | - $warnings = ob_get_clean(); |
|
1264 | + // If there was output, it's an error |
|
1265 | + $warnings = ob_get_clean(); |
|
1266 | 1266 | |
1267 | - if( !empty( $warnings ) ) { |
|
1268 | - gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) ); |
|
1269 | - } |
|
1267 | + if( !empty( $warnings ) ) { |
|
1268 | + gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) ); |
|
1269 | + } |
|
1270 | 1270 | |
1271 | 1271 | return $return; |
1272 | 1272 | } |
@@ -1301,8 +1301,8 @@ discard block |
||
1301 | 1301 | $input_id = strval( $input['id'] ); |
1302 | 1302 | |
1303 | 1303 | if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) { |
1304 | - $field_value[ $input_id ] = 'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ]; |
|
1305 | - $allow_pre_populated = false; |
|
1304 | + $field_value[ $input_id ] = 'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ]; |
|
1305 | + $allow_pre_populated = false; |
|
1306 | 1306 | } |
1307 | 1307 | |
1308 | 1308 | } |
@@ -1326,7 +1326,7 @@ discard block |
||
1326 | 1326 | if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) { |
1327 | 1327 | $categories = array(); |
1328 | 1328 | foreach ( explode( ',', $field_value ) as $cat_string ) { |
1329 | - $categories[] = GFCommon::format_post_category( $cat_string, true ); |
|
1329 | + $categories[] = GFCommon::format_post_category( $cat_string, true ); |
|
1330 | 1330 | } |
1331 | 1331 | $field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories ); |
1332 | 1332 | } |
@@ -1336,25 +1336,25 @@ discard block |
||
1336 | 1336 | // if value is empty get the default value if defined |
1337 | 1337 | $field_value = $field->get_value_default_if_empty( $field_value ); |
1338 | 1338 | |
1339 | - /** |
|
1340 | - * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed |
|
1341 | - * @since 1.11 |
|
1342 | - * @since 1.20 Added third param |
|
1343 | - * @param mixed $field_value field value used to populate the input |
|
1344 | - * @param object $field Gravity Forms field object ( Class GF_Field ) |
|
1345 | - * @param GravityView_Edit_Entry_Render $this Current object |
|
1346 | - */ |
|
1347 | - $field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this ); |
|
1348 | - |
|
1349 | - /** |
|
1350 | - * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type |
|
1351 | - * @since 1.17 |
|
1352 | - * @since 1.20 Added third param |
|
1353 | - * @param mixed $field_value field value used to populate the input |
|
1354 | - * @param GF_Field $field Gravity Forms field object |
|
1355 | - * @param GravityView_Edit_Entry_Render $this Current object |
|
1356 | - */ |
|
1357 | - $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this ); |
|
1339 | + /** |
|
1340 | + * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed |
|
1341 | + * @since 1.11 |
|
1342 | + * @since 1.20 Added third param |
|
1343 | + * @param mixed $field_value field value used to populate the input |
|
1344 | + * @param object $field Gravity Forms field object ( Class GF_Field ) |
|
1345 | + * @param GravityView_Edit_Entry_Render $this Current object |
|
1346 | + */ |
|
1347 | + $field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this ); |
|
1348 | + |
|
1349 | + /** |
|
1350 | + * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type |
|
1351 | + * @since 1.17 |
|
1352 | + * @since 1.20 Added third param |
|
1353 | + * @param mixed $field_value field value used to populate the input |
|
1354 | + * @param GF_Field $field Gravity Forms field object |
|
1355 | + * @param GravityView_Edit_Entry_Render $this Current object |
|
1356 | + */ |
|
1357 | + $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this ); |
|
1358 | 1358 | |
1359 | 1359 | return $field_value; |
1360 | 1360 | } |
@@ -1381,7 +1381,7 @@ discard block |
||
1381 | 1381 | // This is because we're doing admin form pretending to be front-end, so Gravity Forms |
1382 | 1382 | // expects certain field array items to be set. |
1383 | 1383 | foreach ( array( 'noDuplicates', 'adminOnly', 'inputType', 'isRequired', 'enablePrice', 'inputs', 'allowedExtensions' ) as $key ) { |
1384 | - $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL; |
|
1384 | + $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL; |
|
1385 | 1385 | } |
1386 | 1386 | |
1387 | 1387 | switch( RGFormsModel::get_input_type( $field ) ) { |
@@ -1395,61 +1395,61 @@ discard block |
||
1395 | 1395 | */ |
1396 | 1396 | case 'fileupload': |
1397 | 1397 | |
1398 | - // Set the previous value |
|
1399 | - $entry = $this->get_entry(); |
|
1398 | + // Set the previous value |
|
1399 | + $entry = $this->get_entry(); |
|
1400 | 1400 | |
1401 | - $input_name = 'input_'.$field->id; |
|
1402 | - $form_id = $form['id']; |
|
1401 | + $input_name = 'input_'.$field->id; |
|
1402 | + $form_id = $form['id']; |
|
1403 | 1403 | |
1404 | - $value = NULL; |
|
1404 | + $value = NULL; |
|
1405 | 1405 | |
1406 | - // Use the previous entry value as the default. |
|
1407 | - if( isset( $entry[ $field->id ] ) ) { |
|
1408 | - $value = $entry[ $field->id ]; |
|
1409 | - } |
|
1406 | + // Use the previous entry value as the default. |
|
1407 | + if( isset( $entry[ $field->id ] ) ) { |
|
1408 | + $value = $entry[ $field->id ]; |
|
1409 | + } |
|
1410 | 1410 | |
1411 | - // If this is a single upload file |
|
1412 | - if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) { |
|
1413 | - $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] ); |
|
1414 | - $value = $file_path['url']; |
|
1411 | + // If this is a single upload file |
|
1412 | + if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) { |
|
1413 | + $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] ); |
|
1414 | + $value = $file_path['url']; |
|
1415 | 1415 | |
1416 | - } else { |
|
1416 | + } else { |
|
1417 | 1417 | |
1418 | - // Fix PHP warning on line 1498 of form_display.php for post_image fields |
|
1419 | - // Fix PHP Notice: Undefined index: size in form_display.php on line 1511 |
|
1420 | - $_FILES[ $input_name ] = array('name' => '', 'size' => '' ); |
|
1418 | + // Fix PHP warning on line 1498 of form_display.php for post_image fields |
|
1419 | + // Fix PHP Notice: Undefined index: size in form_display.php on line 1511 |
|
1420 | + $_FILES[ $input_name ] = array('name' => '', 'size' => '' ); |
|
1421 | 1421 | |
1422 | - } |
|
1422 | + } |
|
1423 | 1423 | |
1424 | - if ( \GV\Utils::get( $field, "multipleFiles" ) ) { |
|
1424 | + if ( \GV\Utils::get( $field, "multipleFiles" ) ) { |
|
1425 | 1425 | |
1426 | - // If there are fresh uploads, process and merge them. |
|
1427 | - // Otherwise, use the passed values, which should be json-encoded array of URLs |
|
1428 | - if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) { |
|
1429 | - $value = empty( $value ) ? '[]' : $value; |
|
1430 | - $value = stripslashes_deep( $value ); |
|
1431 | - $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array()); |
|
1432 | - } |
|
1426 | + // If there are fresh uploads, process and merge them. |
|
1427 | + // Otherwise, use the passed values, which should be json-encoded array of URLs |
|
1428 | + if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) { |
|
1429 | + $value = empty( $value ) ? '[]' : $value; |
|
1430 | + $value = stripslashes_deep( $value ); |
|
1431 | + $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array()); |
|
1432 | + } |
|
1433 | 1433 | |
1434 | - } else { |
|
1434 | + } else { |
|
1435 | 1435 | |
1436 | - // A file already exists when editing an entry |
|
1437 | - // We set this to solve issue when file upload fields are required. |
|
1438 | - GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value; |
|
1436 | + // A file already exists when editing an entry |
|
1437 | + // We set this to solve issue when file upload fields are required. |
|
1438 | + GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value; |
|
1439 | 1439 | |
1440 | - } |
|
1440 | + } |
|
1441 | 1441 | |
1442 | - $this->entry[ $input_name ] = $value; |
|
1443 | - $_POST[ $input_name ] = $value; |
|
1442 | + $this->entry[ $input_name ] = $value; |
|
1443 | + $_POST[ $input_name ] = $value; |
|
1444 | 1444 | |
1445 | - break; |
|
1445 | + break; |
|
1446 | 1446 | |
1447 | 1447 | case 'number': |
1448 | - // Fix "undefined index" issue at line 1286 in form_display.php |
|
1449 | - if( !isset( $_POST['input_'.$field->id ] ) ) { |
|
1450 | - $_POST['input_'.$field->id ] = NULL; |
|
1451 | - } |
|
1452 | - break; |
|
1448 | + // Fix "undefined index" issue at line 1286 in form_display.php |
|
1449 | + if( !isset( $_POST['input_'.$field->id ] ) ) { |
|
1450 | + $_POST['input_'.$field->id ] = NULL; |
|
1451 | + } |
|
1452 | + break; |
|
1453 | 1453 | } |
1454 | 1454 | |
1455 | 1455 | } |
@@ -1534,43 +1534,43 @@ discard block |
||
1534 | 1534 | case 'fileupload' : |
1535 | 1535 | case 'post_image': |
1536 | 1536 | |
1537 | - // in case nothing is uploaded but there are already files saved |
|
1538 | - if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) { |
|
1539 | - $field->failed_validation = false; |
|
1540 | - unset( $field->validation_message ); |
|
1541 | - } |
|
1537 | + // in case nothing is uploaded but there are already files saved |
|
1538 | + if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) { |
|
1539 | + $field->failed_validation = false; |
|
1540 | + unset( $field->validation_message ); |
|
1541 | + } |
|
1542 | 1542 | |
1543 | - // validate if multi file upload reached max number of files [maxFiles] => 2 |
|
1544 | - if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) { |
|
1543 | + // validate if multi file upload reached max number of files [maxFiles] => 2 |
|
1544 | + if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) { |
|
1545 | 1545 | |
1546 | - $input_name = 'input_' . $field->id; |
|
1547 | - //uploaded |
|
1548 | - $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array(); |
|
1546 | + $input_name = 'input_' . $field->id; |
|
1547 | + //uploaded |
|
1548 | + $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array(); |
|
1549 | 1549 | |
1550 | - //existent |
|
1551 | - $entry = $this->get_entry(); |
|
1552 | - $value = NULL; |
|
1553 | - if( isset( $entry[ $field->id ] ) ) { |
|
1554 | - $value = json_decode( $entry[ $field->id ], true ); |
|
1555 | - } |
|
1550 | + //existent |
|
1551 | + $entry = $this->get_entry(); |
|
1552 | + $value = NULL; |
|
1553 | + if( isset( $entry[ $field->id ] ) ) { |
|
1554 | + $value = json_decode( $entry[ $field->id ], true ); |
|
1555 | + } |
|
1556 | 1556 | |
1557 | - // count uploaded files and existent entry files |
|
1558 | - $count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) + |
|
1559 | - ( is_array( $value ) ? count( $value ) : 0 ); |
|
1557 | + // count uploaded files and existent entry files |
|
1558 | + $count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) + |
|
1559 | + ( is_array( $value ) ? count( $value ) : 0 ); |
|
1560 | 1560 | |
1561 | - if( $count_files > $field->maxFiles ) { |
|
1562 | - $field->validation_message = __( 'Maximum number of files reached', 'gravityview' ); |
|
1563 | - $field->failed_validation = 1; |
|
1564 | - $gv_valid = false; |
|
1561 | + if( $count_files > $field->maxFiles ) { |
|
1562 | + $field->validation_message = __( 'Maximum number of files reached', 'gravityview' ); |
|
1563 | + $field->failed_validation = 1; |
|
1564 | + $gv_valid = false; |
|
1565 | 1565 | |
1566 | - // in case of error make sure the newest upload files are removed from the upload input |
|
1567 | - GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null; |
|
1568 | - } |
|
1566 | + // in case of error make sure the newest upload files are removed from the upload input |
|
1567 | + GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null; |
|
1568 | + } |
|
1569 | 1569 | |
1570 | - } |
|
1570 | + } |
|
1571 | 1571 | |
1572 | 1572 | |
1573 | - break; |
|
1573 | + break; |
|
1574 | 1574 | |
1575 | 1575 | } |
1576 | 1576 | |
@@ -1581,47 +1581,47 @@ discard block |
||
1581 | 1581 | |
1582 | 1582 | switch ( $field_type ) { |
1583 | 1583 | |
1584 | - // Captchas don't need to be re-entered. |
|
1585 | - case 'captcha': |
|
1584 | + // Captchas don't need to be re-entered. |
|
1585 | + case 'captcha': |
|
1586 | 1586 | |
1587 | - // Post Image fields aren't editable, so we un-fail them. |
|
1588 | - case 'post_image': |
|
1589 | - $field->failed_validation = false; |
|
1590 | - unset( $field->validation_message ); |
|
1591 | - break; |
|
1587 | + // Post Image fields aren't editable, so we un-fail them. |
|
1588 | + case 'post_image': |
|
1589 | + $field->failed_validation = false; |
|
1590 | + unset( $field->validation_message ); |
|
1591 | + break; |
|
1592 | 1592 | |
1593 | 1593 | } |
1594 | 1594 | |
1595 | 1595 | // You can't continue inside a switch, so we do it after. |
1596 | 1596 | if( empty( $field->failed_validation ) ) { |
1597 | - continue; |
|
1597 | + continue; |
|
1598 | 1598 | } |
1599 | 1599 | |
1600 | 1600 | // checks if the No Duplicates option is not validating entry against itself, since |
1601 | 1601 | // we're editing a stored entry, it would also assume it's a duplicate. |
1602 | 1602 | if( !empty( $field->noDuplicates ) ) { |
1603 | 1603 | |
1604 | - $entry = $this->get_entry(); |
|
1604 | + $entry = $this->get_entry(); |
|
1605 | 1605 | |
1606 | - // If the value of the entry is the same as the stored value |
|
1607 | - // Then we can assume it's not a duplicate, it's the same. |
|
1608 | - if( !empty( $entry ) && $value == $entry[ $field->id ] ) { |
|
1609 | - //if value submitted was not changed, then don't validate |
|
1610 | - $field->failed_validation = false; |
|
1606 | + // If the value of the entry is the same as the stored value |
|
1607 | + // Then we can assume it's not a duplicate, it's the same. |
|
1608 | + if( !empty( $entry ) && $value == $entry[ $field->id ] ) { |
|
1609 | + //if value submitted was not changed, then don't validate |
|
1610 | + $field->failed_validation = false; |
|
1611 | 1611 | |
1612 | - unset( $field->validation_message ); |
|
1612 | + unset( $field->validation_message ); |
|
1613 | 1613 | |
1614 | - gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', array( 'data' => $entry ) ); |
|
1614 | + gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', array( 'data' => $entry ) ); |
|
1615 | 1615 | |
1616 | - continue; |
|
1617 | - } |
|
1616 | + continue; |
|
1617 | + } |
|
1618 | 1618 | } |
1619 | 1619 | |
1620 | 1620 | // if here then probably we are facing the validation 'At least one field must be filled out' |
1621 | 1621 | if( GFFormDisplay::is_empty( $field, $this->form_id ) && empty( $field->isRequired ) ) { |
1622 | - unset( $field->validation_message ); |
|
1623 | - $field->validation_message = false; |
|
1624 | - continue; |
|
1622 | + unset( $field->validation_message ); |
|
1623 | + $field->validation_message = false; |
|
1624 | + continue; |
|
1625 | 1625 | } |
1626 | 1626 | |
1627 | 1627 | $gv_valid = false; |
@@ -1685,8 +1685,8 @@ discard block |
||
1685 | 1685 | // Hide fields depending on admin settings |
1686 | 1686 | $fields = $this->filter_fields( $form['fields'], $edit_fields ); |
1687 | 1687 | |
1688 | - // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't. |
|
1689 | - $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id ); |
|
1688 | + // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't. |
|
1689 | + $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id ); |
|
1690 | 1690 | |
1691 | 1691 | /** |
1692 | 1692 | * @filter `gravityview/edit_entry/form_fields` Modify the fields displayed in Edit Entry form |
@@ -1746,11 +1746,11 @@ discard block |
||
1746 | 1746 | // The edit tab has been configured, so we loop through to configured settings |
1747 | 1747 | foreach ( $configured_fields as $configured_field ) { |
1748 | 1748 | |
1749 | - /** @var GF_Field $field */ |
|
1750 | - foreach ( $fields as $field ) { |
|
1749 | + /** @var GF_Field $field */ |
|
1750 | + foreach ( $fields as $field ) { |
|
1751 | 1751 | if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) { |
1752 | - $edit_fields[] = $this->merge_field_properties( $field, $configured_field ); |
|
1753 | - break; |
|
1752 | + $edit_fields[] = $this->merge_field_properties( $field, $configured_field ); |
|
1753 | + break; |
|
1754 | 1754 | } |
1755 | 1755 | |
1756 | 1756 | } |
@@ -1806,28 +1806,28 @@ discard block |
||
1806 | 1806 | */ |
1807 | 1807 | private function filter_admin_only_fields( $fields = array(), $edit_fields = null, $form = array(), $view_id = 0 ) { |
1808 | 1808 | |
1809 | - /** |
|
1809 | + /** |
|
1810 | 1810 | * @filter `gravityview/edit_entry/use_gf_admin_only_setting` When Edit tab isn't configured, should the Gravity Forms "Admin Only" field settings be used to control field display to non-admins? Default: true |
1811 | - * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators. |
|
1812 | - * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions |
|
1813 | - * @since 1.9.1 |
|
1814 | - * @param boolean $use_gf_adminonly_setting True: Hide field if set to Admin Only in GF and the user is not an admin. False: show field based on GV permissions, ignoring GF permissions. |
|
1815 | - * @param array $form GF Form array |
|
1816 | - * @param int $view_id View ID |
|
1817 | - */ |
|
1818 | - $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id ); |
|
1819 | - |
|
1820 | - if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) { |
|
1811 | + * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators. |
|
1812 | + * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions |
|
1813 | + * @since 1.9.1 |
|
1814 | + * @param boolean $use_gf_adminonly_setting True: Hide field if set to Admin Only in GF and the user is not an admin. False: show field based on GV permissions, ignoring GF permissions. |
|
1815 | + * @param array $form GF Form array |
|
1816 | + * @param int $view_id View ID |
|
1817 | + */ |
|
1818 | + $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id ); |
|
1819 | + |
|
1820 | + if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) { |
|
1821 | 1821 | foreach( $fields as $k => $field ) { |
1822 | 1822 | if( $field->adminOnly ) { |
1823 | - unset( $fields[ $k ] ); |
|
1823 | + unset( $fields[ $k ] ); |
|
1824 | 1824 | } |
1825 | 1825 | } |
1826 | 1826 | return array_values( $fields ); |
1827 | 1827 | } |
1828 | 1828 | |
1829 | - foreach( $fields as &$field ) { |
|
1830 | - $field->adminOnly = false; |
|
1829 | + foreach( $fields as &$field ) { |
|
1830 | + $field->adminOnly = false; |
|
1831 | 1831 | } |
1832 | 1832 | |
1833 | 1833 | return $fields; |
@@ -1847,13 +1847,13 @@ discard block |
||
1847 | 1847 | */ |
1848 | 1848 | private function unselect_default_values( $form ) { |
1849 | 1849 | |
1850 | - foreach ( $form['fields'] as &$field ) { |
|
1850 | + foreach ( $form['fields'] as &$field ) { |
|
1851 | 1851 | |
1852 | 1852 | if ( empty( $field->choices ) ) { |
1853 | - continue; |
|
1853 | + continue; |
|
1854 | 1854 | } |
1855 | 1855 | |
1856 | - foreach ( $field->choices as &$choice ) { |
|
1856 | + foreach ( $field->choices as &$choice ) { |
|
1857 | 1857 | if ( \GV\Utils::get( $choice, 'isSelected' ) ) { |
1858 | 1858 | $choice['isSelected'] = false; |
1859 | 1859 | } |
@@ -1890,36 +1890,36 @@ discard block |
||
1890 | 1890 | |
1891 | 1891 | if( 'checkbox' === $field->type ) { |
1892 | 1892 | foreach ( $field->get_entry_inputs() as $key => $input ) { |
1893 | - $input_id = $input['id']; |
|
1894 | - $choice = $field->choices[ $key ]; |
|
1895 | - $value = \GV\Utils::get( $this->entry, $input_id ); |
|
1896 | - $match = RGFormsModel::choice_value_match( $field, $choice, $value ); |
|
1897 | - if( $match ) { |
|
1898 | - $field->choices[ $key ]['isSelected'] = true; |
|
1899 | - } |
|
1893 | + $input_id = $input['id']; |
|
1894 | + $choice = $field->choices[ $key ]; |
|
1895 | + $value = \GV\Utils::get( $this->entry, $input_id ); |
|
1896 | + $match = RGFormsModel::choice_value_match( $field, $choice, $value ); |
|
1897 | + if( $match ) { |
|
1898 | + $field->choices[ $key ]['isSelected'] = true; |
|
1899 | + } |
|
1900 | 1900 | } |
1901 | 1901 | } else { |
1902 | 1902 | |
1903 | 1903 | // We need to run through each field to set the default values |
1904 | 1904 | foreach ( $this->entry as $field_id => $field_value ) { |
1905 | 1905 | |
1906 | - if( floatval( $field_id ) === floatval( $field->id ) ) { |
|
1906 | + if( floatval( $field_id ) === floatval( $field->id ) ) { |
|
1907 | 1907 | |
1908 | - if( 'list' === $field->type ) { |
|
1909 | - $list_rows = maybe_unserialize( $field_value ); |
|
1908 | + if( 'list' === $field->type ) { |
|
1909 | + $list_rows = maybe_unserialize( $field_value ); |
|
1910 | 1910 | |
1911 | - $list_field_value = array(); |
|
1912 | - foreach ( (array) $list_rows as $row ) { |
|
1913 | - foreach ( (array) $row as $column ) { |
|
1914 | - $list_field_value[] = $column; |
|
1915 | - } |
|
1916 | - } |
|
1911 | + $list_field_value = array(); |
|
1912 | + foreach ( (array) $list_rows as $row ) { |
|
1913 | + foreach ( (array) $row as $column ) { |
|
1914 | + $list_field_value[] = $column; |
|
1915 | + } |
|
1916 | + } |
|
1917 | 1917 | |
1918 | - $field->defaultValue = serialize( $list_field_value ); |
|
1919 | - } else { |
|
1920 | - $field->defaultValue = $field_value; |
|
1921 | - } |
|
1922 | - } |
|
1918 | + $field->defaultValue = serialize( $list_field_value ); |
|
1919 | + } else { |
|
1920 | + $field->defaultValue = $field_value; |
|
1921 | + } |
|
1922 | + } |
|
1923 | 1923 | } |
1924 | 1924 | } |
1925 | 1925 | } |
@@ -1973,7 +1973,7 @@ discard block |
||
1973 | 1973 | foreach ( $form['fields'] as &$field ) { |
1974 | 1974 | foreach ( $remove_conditions_rule as $_remove_conditions_r ) { |
1975 | 1975 | |
1976 | - list( $rule_field_id, $rule_i ) = $_remove_conditions_r; |
|
1976 | + list( $rule_field_id, $rule_i ) = $_remove_conditions_r; |
|
1977 | 1977 | |
1978 | 1978 | if ( $field['id'] == $rule_field_id ) { |
1979 | 1979 | unset( $field->conditionalLogic['rules'][ $rule_i ] ); |
@@ -2024,7 +2024,7 @@ discard block |
||
2024 | 2024 | return $has_conditional_logic; |
2025 | 2025 | } |
2026 | 2026 | |
2027 | - /** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */ |
|
2027 | + /** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */ |
|
2028 | 2028 | return apply_filters( 'gravityview/edit_entry/conditional_logic', $has_conditional_logic, $form ); |
2029 | 2029 | } |
2030 | 2030 | |
@@ -2091,14 +2091,14 @@ discard block |
||
2091 | 2091 | |
2092 | 2092 | if( $echo && $error !== true ) { |
2093 | 2093 | |
2094 | - $error = esc_html( $error ); |
|
2094 | + $error = esc_html( $error ); |
|
2095 | 2095 | |
2096 | - /** |
|
2097 | - * @since 1.9 |
|
2098 | - */ |
|
2099 | - if ( ! empty( $this->entry ) ) { |
|
2100 | - $error .= ' ' . gravityview_get_link( '#', _x('Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) ); |
|
2101 | - } |
|
2096 | + /** |
|
2097 | + * @since 1.9 |
|
2098 | + */ |
|
2099 | + if ( ! empty( $this->entry ) ) { |
|
2100 | + $error .= ' ' . gravityview_get_link( '#', _x('Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) ); |
|
2101 | + } |
|
2102 | 2102 | |
2103 | 2103 | echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error'); |
2104 | 2104 | } |
@@ -123,16 +123,16 @@ discard block |
||
123 | 123 | function load() { |
124 | 124 | |
125 | 125 | /** @define "GRAVITYVIEW_DIR" "../../../" */ |
126 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-approve-entries.php' ); |
|
126 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-approve-entries.php' ); |
|
127 | 127 | |
128 | 128 | // Don't display an embedded form when editing an entry |
129 | 129 | add_action( 'wp_head', array( $this, 'prevent_render_form' ) ); |
130 | 130 | add_action( 'wp_footer', array( $this, 'prevent_render_form' ) ); |
131 | 131 | |
132 | 132 | // Stop Gravity Forms processing what is ours! |
133 | - add_filter( 'wp', array( $this, 'prevent_maybe_process_form'), 8 ); |
|
133 | + add_filter( 'wp', array( $this, 'prevent_maybe_process_form' ), 8 ); |
|
134 | 134 | |
135 | - add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry') ); |
|
135 | + add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry' ) ); |
|
136 | 136 | |
137 | 137 | add_action( 'gravityview_edit_entry', array( $this, 'init' ), 10, 4 ); |
138 | 138 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | add_filter( 'gform_plupload_settings', array( $this, 'modify_fileupload_settings' ), 10, 3 ); |
144 | 144 | |
145 | 145 | // Add fields expected by GFFormDisplay::validate() |
146 | - add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation') ); |
|
146 | + add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation' ) ); |
|
147 | 147 | |
148 | 148 | // Fix multiselect value for GF 2.2 |
149 | 149 | add_filter( 'gravityview/edit_entry/field_value_multiselect', array( $this, 'fix_multiselect_value_serialization' ), 10, 3 ); |
@@ -160,8 +160,8 @@ discard block |
||
160 | 160 | * @return void |
161 | 161 | */ |
162 | 162 | public function prevent_render_form() { |
163 | - if( $this->is_edit_entry() ) { |
|
164 | - if( 'wp_head' === current_filter() ) { |
|
163 | + if ( $this->is_edit_entry() ) { |
|
164 | + if ( 'wp_head' === current_filter() ) { |
|
165 | 165 | add_filter( 'gform_shortcode_form', '__return_empty_string' ); |
166 | 166 | } else { |
167 | 167 | remove_filter( 'gform_shortcode_form', '__return_empty_string' ); |
@@ -176,14 +176,14 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function prevent_maybe_process_form() { |
178 | 178 | |
179 | - if( ! $this->is_edit_entry_submission() ) { |
|
179 | + if ( ! $this->is_edit_entry_submission() ) { |
|
180 | 180 | return; |
181 | 181 | } |
182 | 182 | |
183 | 183 | gravityview()->log->debug( 'GravityView_Edit_Entry[prevent_maybe_process_form] Removing GFForms::maybe_process_form() action.' ); |
184 | 184 | |
185 | - remove_action( 'wp', array( 'RGForms', 'maybe_process_form'), 9 ); |
|
186 | - remove_action( 'wp', array( 'GFForms', 'maybe_process_form'), 9 ); |
|
185 | + remove_action( 'wp', array( 'RGForms', 'maybe_process_form' ), 9 ); |
|
186 | + remove_action( 'wp', array( 'GFForms', 'maybe_process_form' ), 9 ); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | /** |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | */ |
193 | 193 | public function is_edit_entry() { |
194 | 194 | |
195 | - $is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET['edit'] ); |
|
195 | + $is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET[ 'edit' ] ); |
|
196 | 196 | |
197 | 197 | return ( $is_edit_entry || $this->is_edit_entry_submission() ); |
198 | 198 | } |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | * @return boolean |
204 | 204 | */ |
205 | 205 | public function is_edit_entry_submission() { |
206 | - return !empty( $_POST[ self::$nonce_field ] ); |
|
206 | + return ! empty( $_POST[ self::$nonce_field ] ); |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
@@ -216,16 +216,16 @@ discard block |
||
216 | 216 | |
217 | 217 | |
218 | 218 | $entries = $gravityview_view->getEntries(); |
219 | - self::$original_entry = $entries[0]; |
|
220 | - $this->entry = $entries[0]; |
|
219 | + self::$original_entry = $entries[ 0 ]; |
|
220 | + $this->entry = $entries[ 0 ]; |
|
221 | 221 | |
222 | 222 | self::$original_form = $gravityview_view->getForm(); |
223 | 223 | $this->form = $gravityview_view->getForm(); |
224 | - $this->form_id = $this->entry['form_id']; |
|
224 | + $this->form_id = $this->entry[ 'form_id' ]; |
|
225 | 225 | $this->view_id = $gravityview_view->getViewId(); |
226 | 226 | $this->post_id = \GV\Utils::get( $post, 'ID', null ); |
227 | 227 | |
228 | - self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry['id'] ); |
|
228 | + self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry[ 'id' ] ); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | |
@@ -284,9 +284,9 @@ discard block |
||
284 | 284 | private function print_scripts() { |
285 | 285 | $gravityview_view = GravityView_View::getInstance(); |
286 | 286 | |
287 | - wp_register_script( 'gform_gravityforms', GFCommon::get_base_url().'/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) ); |
|
287 | + wp_register_script( 'gform_gravityforms', GFCommon::get_base_url() . '/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) ); |
|
288 | 288 | |
289 | - GFFormDisplay::enqueue_form_scripts( $gravityview_view->getForm(), false); |
|
289 | + GFFormDisplay::enqueue_form_scripts( $gravityview_view->getForm(), false ); |
|
290 | 290 | |
291 | 291 | wp_localize_script( 'gravityview-fe-view', 'gvGlobals', array( 'cookiepath' => COOKIEPATH ) ); |
292 | 292 | |
@@ -302,19 +302,19 @@ discard block |
||
302 | 302 | */ |
303 | 303 | private function process_save( $gv_data ) { |
304 | 304 | |
305 | - if ( empty( $_POST ) || ! isset( $_POST['lid'] ) ) { |
|
305 | + if ( empty( $_POST ) || ! isset( $_POST[ 'lid' ] ) ) { |
|
306 | 306 | return; |
307 | 307 | } |
308 | 308 | |
309 | 309 | // Make sure the entry, view, and form IDs are all correct |
310 | 310 | $valid = $this->verify_nonce(); |
311 | 311 | |
312 | - if ( !$valid ) { |
|
312 | + if ( ! $valid ) { |
|
313 | 313 | gravityview()->log->error( 'Nonce validation failed.' ); |
314 | 314 | return; |
315 | 315 | } |
316 | 316 | |
317 | - if ( $this->entry['id'] !== $_POST['lid'] ) { |
|
317 | + if ( $this->entry[ 'id' ] !== $_POST[ 'lid' ] ) { |
|
318 | 318 | gravityview()->log->error( 'Entry ID did not match posted entry ID.' ); |
319 | 319 | return; |
320 | 320 | } |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | |
326 | 326 | $this->validate(); |
327 | 327 | |
328 | - if( $this->is_valid ) { |
|
328 | + if ( $this->is_valid ) { |
|
329 | 329 | |
330 | 330 | gravityview()->log->debug( 'Submission is valid.' ); |
331 | 331 | |
@@ -337,15 +337,15 @@ discard block |
||
337 | 337 | /** |
338 | 338 | * @hack to avoid the capability validation of the method save_lead for GF 1.9+ |
339 | 339 | */ |
340 | - unset( $_GET['page'] ); |
|
340 | + unset( $_GET[ 'page' ] ); |
|
341 | 341 | |
342 | - $date_created = $this->entry['date_created']; |
|
342 | + $date_created = $this->entry[ 'date_created' ]; |
|
343 | 343 | |
344 | 344 | /** |
345 | 345 | * @hack to force Gravity Forms to use $read_value_from_post in GFFormsModel::save_lead() |
346 | 346 | * @since 1.17.2 |
347 | 347 | */ |
348 | - unset( $this->entry['date_created'] ); |
|
348 | + unset( $this->entry[ 'date_created' ] ); |
|
349 | 349 | |
350 | 350 | /** |
351 | 351 | * @action `gravityview/edit_entry/before_update` Perform an action after the entry has been updated using Edit Entry |
@@ -355,14 +355,14 @@ discard block |
||
355 | 355 | * @param GravityView_Edit_Entry_Render $this This object |
356 | 356 | * @param GravityView_View_Data $gv_data The View data |
357 | 357 | */ |
358 | - do_action( 'gravityview/edit_entry/before_update', $form, $this->entry['id'], $this, $gv_data ); |
|
358 | + do_action( 'gravityview/edit_entry/before_update', $form, $this->entry[ 'id' ], $this, $gv_data ); |
|
359 | 359 | |
360 | 360 | GFFormsModel::save_lead( $form, $this->entry ); |
361 | 361 | |
362 | 362 | // Delete the values for hidden inputs |
363 | 363 | $this->unset_hidden_field_values(); |
364 | 364 | |
365 | - $this->entry['date_created'] = $date_created; |
|
365 | + $this->entry[ 'date_created' ] = $date_created; |
|
366 | 366 | |
367 | 367 | // Process calculation fields |
368 | 368 | $this->update_calculation_fields(); |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | * @param GravityView_Edit_Entry_Render $this This object |
385 | 385 | * @param GravityView_View_Data $gv_data The View data |
386 | 386 | */ |
387 | - do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry['id'], $this, $gv_data ); |
|
387 | + do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry[ 'id' ], $this, $gv_data ); |
|
388 | 388 | |
389 | 389 | } else { |
390 | 390 | gravityview()->log->error( 'Submission is NOT valid.', array( 'entry' => $this->entry ) ); |
@@ -412,16 +412,16 @@ discard block |
||
412 | 412 | */ |
413 | 413 | $unset_hidden_field_values = apply_filters( 'gravityview/edit_entry/unset_hidden_field_values', true, $this ); |
414 | 414 | |
415 | - if( ! $unset_hidden_field_values ) { |
|
415 | + if ( ! $unset_hidden_field_values ) { |
|
416 | 416 | return; |
417 | 417 | } |
418 | 418 | |
419 | 419 | if ( version_compare( GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) { |
420 | 420 | $entry_meta_table = GFFormsModel::get_entry_meta_table_name(); |
421 | - $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $this->entry['id'] ) ); |
|
421 | + $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $this->entry[ 'id' ] ) ); |
|
422 | 422 | } else { |
423 | 423 | $lead_detail_table = GFFormsModel::get_lead_details_table_name(); |
424 | - $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) ); |
|
424 | + $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry[ 'id' ] ) ); |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | foreach ( $this->entry as $input_id => $field_value ) { |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | |
435 | 435 | $empty_value = $field->get_value_save_entry( |
436 | 436 | is_array( $field->get_entry_inputs() ) ? array() : '', |
437 | - $this->form, '', $this->entry['id'], $this->entry |
|
437 | + $this->form, '', $this->entry[ 'id' ], $this->entry |
|
438 | 438 | ); |
439 | 439 | |
440 | 440 | $lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id ); |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | } |
505 | 505 | |
506 | 506 | /** No file is being uploaded. */ |
507 | - if ( empty( $_FILES[ $input_name ]['name'] ) ) { |
|
507 | + if ( empty( $_FILES[ $input_name ][ 'name' ] ) ) { |
|
508 | 508 | /** So return the original upload */ |
509 | 509 | return $entry[ $input_id ]; |
510 | 510 | } |
@@ -522,11 +522,11 @@ discard block |
||
522 | 522 | * @return mixed |
523 | 523 | */ |
524 | 524 | public function modify_fileupload_settings( $plupload_init, $form_id, $instance ) { |
525 | - if( ! $this->is_edit_entry() ) { |
|
525 | + if ( ! $this->is_edit_entry() ) { |
|
526 | 526 | return $plupload_init; |
527 | 527 | } |
528 | 528 | |
529 | - $plupload_init['gf_vars']['max_files'] = 0; |
|
529 | + $plupload_init[ 'gf_vars' ][ 'max_files' ] = 0; |
|
530 | 530 | |
531 | 531 | return $plupload_init; |
532 | 532 | } |
@@ -541,27 +541,27 @@ discard block |
||
541 | 541 | $form = $this->filter_conditional_logic( $this->form ); |
542 | 542 | |
543 | 543 | /** @var GF_Field $field */ |
544 | - foreach( $form['fields'] as $k => &$field ) { |
|
544 | + foreach ( $form[ 'fields' ] as $k => &$field ) { |
|
545 | 545 | |
546 | 546 | /** |
547 | 547 | * Remove the fields with calculation formulas before save to avoid conflicts with GF logic |
548 | 548 | * @since 1.16.3 |
549 | 549 | * @var GF_Field $field |
550 | 550 | */ |
551 | - if( $field->has_calculation() ) { |
|
552 | - unset( $form['fields'][ $k ] ); |
|
551 | + if ( $field->has_calculation() ) { |
|
552 | + unset( $form[ 'fields' ][ $k ] ); |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | $field->adminOnly = false; |
556 | 556 | |
557 | - if( isset( $field->inputs ) && is_array( $field->inputs ) ) { |
|
558 | - foreach( $field->inputs as $key => $input ) { |
|
559 | - $field->inputs[ $key ][ 'id' ] = (string)$input['id']; |
|
557 | + if ( isset( $field->inputs ) && is_array( $field->inputs ) ) { |
|
558 | + foreach ( $field->inputs as $key => $input ) { |
|
559 | + $field->inputs[ $key ][ 'id' ] = (string)$input[ 'id' ]; |
|
560 | 560 | } |
561 | 561 | } |
562 | 562 | } |
563 | 563 | |
564 | - $form['fields'] = array_values( $form['fields'] ); |
|
564 | + $form[ 'fields' ] = array_values( $form[ 'fields' ] ); |
|
565 | 565 | |
566 | 566 | return $form; |
567 | 567 | } |
@@ -573,14 +573,14 @@ discard block |
||
573 | 573 | $update = false; |
574 | 574 | |
575 | 575 | // get the most up to date entry values |
576 | - $entry = GFAPI::get_entry( $this->entry['id'] ); |
|
576 | + $entry = GFAPI::get_entry( $this->entry[ 'id' ] ); |
|
577 | 577 | |
578 | 578 | if ( version_compare( GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) { |
579 | 579 | $entry_meta_table = GFFormsModel::get_entry_meta_table_name(); |
580 | - $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $entry['id'] ) ); |
|
580 | + $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $entry[ 'id' ] ) ); |
|
581 | 581 | } else { |
582 | 582 | $lead_detail_table = GFFormsModel::get_lead_details_table_name(); |
583 | - $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $entry['id'] ) ); |
|
583 | + $current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $entry[ 'id' ] ) ); |
|
584 | 584 | } |
585 | 585 | |
586 | 586 | |
@@ -592,24 +592,24 @@ discard block |
||
592 | 592 | $inputs = $field->get_entry_inputs(); |
593 | 593 | if ( is_array( $inputs ) ) { |
594 | 594 | foreach ( $inputs as $input ) { |
595 | - list( $field_id, $input_id ) = rgexplode( '.', $input['id'], 2 ); |
|
595 | + list( $field_id, $input_id ) = rgexplode( '.', $input[ 'id' ], 2 ); |
|
596 | 596 | |
597 | 597 | if ( 'product' === $field->type ) { |
598 | - $input_name = 'input_' . str_replace( '.', '_', $input['id'] ); |
|
598 | + $input_name = 'input_' . str_replace( '.', '_', $input[ 'id' ] ); |
|
599 | 599 | |
600 | 600 | // Only allow quantity to be set if it's allowed to be edited |
601 | 601 | if ( in_array( $field_id, $allowed_fields ) && $input_id == 3 ) { |
602 | 602 | } else { // otherwise set to what it previously was |
603 | - $_POST[ $input_name ] = $entry[ $input['id'] ]; |
|
603 | + $_POST[ $input_name ] = $entry[ $input[ 'id' ] ]; |
|
604 | 604 | } |
605 | 605 | } else { |
606 | 606 | // Set to what it previously was if it's not editable |
607 | 607 | if ( ! in_array( $field_id, $allowed_fields ) ) { |
608 | - $_POST[ $input_name ] = $entry[ $input['id'] ]; |
|
608 | + $_POST[ $input_name ] = $entry[ $input[ 'id' ] ]; |
|
609 | 609 | } |
610 | 610 | } |
611 | 611 | |
612 | - GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input['id'] ); |
|
612 | + GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input[ 'id' ] ); |
|
613 | 613 | } |
614 | 614 | } else { |
615 | 615 | // Set to what it previously was if it's not editable |
@@ -649,19 +649,19 @@ discard block |
||
649 | 649 | |
650 | 650 | $input_name = 'input_' . $field_id; |
651 | 651 | |
652 | - if ( !empty( $_FILES[ $input_name ]['name'] ) ) { |
|
652 | + if ( ! empty( $_FILES[ $input_name ][ 'name' ] ) ) { |
|
653 | 653 | |
654 | 654 | // We have a new image |
655 | 655 | |
656 | - $value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] ); |
|
656 | + $value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ] ); |
|
657 | 657 | |
658 | 658 | $ary = ! empty( $value ) ? explode( '|:|', $value ) : array(); |
659 | 659 | $ary = stripslashes_deep( $ary ); |
660 | 660 | $img_url = \GV\Utils::get( $ary, 0 ); |
661 | 661 | |
662 | - $img_title = count( $ary ) > 1 ? $ary[1] : ''; |
|
663 | - $img_caption = count( $ary ) > 2 ? $ary[2] : ''; |
|
664 | - $img_description = count( $ary ) > 3 ? $ary[3] : ''; |
|
662 | + $img_title = count( $ary ) > 1 ? $ary[ 1 ] : ''; |
|
663 | + $img_caption = count( $ary ) > 2 ? $ary[ 2 ] : ''; |
|
664 | + $img_description = count( $ary ) > 3 ? $ary[ 3 ] : ''; |
|
665 | 665 | |
666 | 666 | $image_meta = array( |
667 | 667 | 'post_excerpt' => $img_caption, |
@@ -670,7 +670,7 @@ discard block |
||
670 | 670 | |
671 | 671 | //adding title only if it is not empty. It will default to the file name if it is not in the array |
672 | 672 | if ( ! empty( $img_title ) ) { |
673 | - $image_meta['post_title'] = $img_title; |
|
673 | + $image_meta[ 'post_title' ] = $img_title; |
|
674 | 674 | } |
675 | 675 | |
676 | 676 | /** |
@@ -728,15 +728,15 @@ discard block |
||
728 | 728 | */ |
729 | 729 | private function maybe_update_post_fields( $form ) { |
730 | 730 | |
731 | - if( empty( $this->entry['post_id'] ) ) { |
|
731 | + if ( empty( $this->entry[ 'post_id' ] ) ) { |
|
732 | 732 | gravityview()->log->debug( 'This entry has no post fields. Continuing...' ); |
733 | 733 | return; |
734 | 734 | } |
735 | 735 | |
736 | - $post_id = $this->entry['post_id']; |
|
736 | + $post_id = $this->entry[ 'post_id' ]; |
|
737 | 737 | |
738 | 738 | // Security check |
739 | - if( false === GVCommon::has_cap( 'edit_post', $post_id ) ) { |
|
739 | + if ( false === GVCommon::has_cap( 'edit_post', $post_id ) ) { |
|
740 | 740 | gravityview()->log->error( 'The current user does not have the ability to edit Post #{post_id}', array( 'post_id' => $post_id ) ); |
741 | 741 | return; |
742 | 742 | } |
@@ -749,25 +749,25 @@ discard block |
||
749 | 749 | |
750 | 750 | $field = RGFormsModel::get_field( $form, $field_id ); |
751 | 751 | |
752 | - if( ! $field ) { |
|
752 | + if ( ! $field ) { |
|
753 | 753 | continue; |
754 | 754 | } |
755 | 755 | |
756 | - if( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) { |
|
756 | + if ( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) { |
|
757 | 757 | |
758 | 758 | // Get the value of the field, including $_POSTed value |
759 | 759 | $value = RGFormsModel::get_field_value( $field ); |
760 | 760 | |
761 | 761 | // Use temporary entry variable, to make values available to fill_post_template() and update_post_image() |
762 | 762 | $entry_tmp = $this->entry; |
763 | - $entry_tmp["{$field_id}"] = $value; |
|
763 | + $entry_tmp[ "{$field_id}" ] = $value; |
|
764 | 764 | |
765 | - switch( $field->type ) { |
|
765 | + switch ( $field->type ) { |
|
766 | 766 | |
767 | 767 | case 'post_title': |
768 | 768 | $post_title = $value; |
769 | 769 | if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) { |
770 | - $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp ); |
|
770 | + $post_title = $this->fill_post_template( $form[ 'postTitleTemplate' ], $form, $entry_tmp ); |
|
771 | 771 | } |
772 | 772 | $updated_post->post_title = $post_title; |
773 | 773 | $updated_post->post_name = $post_title; |
@@ -777,7 +777,7 @@ discard block |
||
777 | 777 | case 'post_content': |
778 | 778 | $post_content = $value; |
779 | 779 | if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) { |
780 | - $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true ); |
|
780 | + $post_content = $this->fill_post_template( $form[ 'postContentTemplate' ], $form, $entry_tmp, true ); |
|
781 | 781 | } |
782 | 782 | $updated_post->post_content = $post_content; |
783 | 783 | unset( $post_content ); |
@@ -795,11 +795,11 @@ discard block |
||
795 | 795 | $value = $value[ $field_id ]; |
796 | 796 | } |
797 | 797 | |
798 | - if( ! empty( $field->customFieldTemplateEnabled ) ) { |
|
798 | + if ( ! empty( $field->customFieldTemplateEnabled ) ) { |
|
799 | 799 | $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true ); |
800 | 800 | } |
801 | 801 | |
802 | - $value = $field->get_value_save_entry( $value, $form, '', $this->entry['id'], $this->entry ); |
|
802 | + $value = $field->get_value_save_entry( $value, $form, '', $this->entry[ 'id' ], $this->entry ); |
|
803 | 803 | |
804 | 804 | update_post_meta( $post_id, $field->postCustomFieldName, $value ); |
805 | 805 | break; |
@@ -811,7 +811,7 @@ discard block |
||
811 | 811 | } |
812 | 812 | |
813 | 813 | // update entry after |
814 | - $this->entry["{$field_id}"] = $value; |
|
814 | + $this->entry[ "{$field_id}" ] = $value; |
|
815 | 815 | |
816 | 816 | $update_entry = true; |
817 | 817 | |
@@ -820,11 +820,11 @@ discard block |
||
820 | 820 | |
821 | 821 | } |
822 | 822 | |
823 | - if( $update_entry ) { |
|
823 | + if ( $update_entry ) { |
|
824 | 824 | |
825 | 825 | $return_entry = GFAPI::update_entry( $this->entry ); |
826 | 826 | |
827 | - if( is_wp_error( $return_entry ) ) { |
|
827 | + if ( is_wp_error( $return_entry ) ) { |
|
828 | 828 | gravityview()->log->error( 'Updating the entry post fields failed', array( 'data' => array( '$this->entry' => $this->entry, '$return_entry' => $return_entry ) ) ); |
829 | 829 | } else { |
830 | 830 | gravityview()->log->debug( 'Updating the entry post fields for post #{post_id} succeeded', array( 'post_id' => $post_id ) ); |
@@ -834,7 +834,7 @@ discard block |
||
834 | 834 | |
835 | 835 | $return_post = wp_update_post( $updated_post, true ); |
836 | 836 | |
837 | - if( is_wp_error( $return_post ) ) { |
|
837 | + if ( is_wp_error( $return_post ) ) { |
|
838 | 838 | $return_post->add_data( $updated_post, '$updated_post' ); |
839 | 839 | gravityview()->log->error( 'Updating the post content failed', array( 'data' => compact( 'updated_post', 'return_post' ) ) ); |
840 | 840 | } else { |
@@ -868,7 +868,7 @@ discard block |
||
868 | 868 | $output = GFCommon::replace_variables( $output, $form, $entry, false, false, false ); |
869 | 869 | |
870 | 870 | // replace conditional shortcodes |
871 | - if( $do_shortcode ) { |
|
871 | + if ( $do_shortcode ) { |
|
872 | 872 | $output = do_shortcode( $output ); |
873 | 873 | } |
874 | 874 | |
@@ -887,19 +887,19 @@ discard block |
||
887 | 887 | */ |
888 | 888 | private function after_update() { |
889 | 889 | |
890 | - do_action( 'gform_after_update_entry', $this->form, $this->entry['id'], self::$original_entry ); |
|
891 | - do_action( "gform_after_update_entry_{$this->form['id']}", $this->form, $this->entry['id'], self::$original_entry ); |
|
890 | + do_action( 'gform_after_update_entry', $this->form, $this->entry[ 'id' ], self::$original_entry ); |
|
891 | + do_action( "gform_after_update_entry_{$this->form[ 'id' ]}", $this->form, $this->entry[ 'id' ], self::$original_entry ); |
|
892 | 892 | |
893 | 893 | // Re-define the entry now that we've updated it. |
894 | - $entry = RGFormsModel::get_lead( $this->entry['id'] ); |
|
894 | + $entry = RGFormsModel::get_lead( $this->entry[ 'id' ] ); |
|
895 | 895 | |
896 | 896 | $entry = GFFormsModel::set_entry_meta( $entry, self::$original_form ); |
897 | 897 | |
898 | 898 | if ( version_compare( GFFormsModel::get_database_version(), '2.3-dev-1', '<' ) ) { |
899 | 899 | // We need to clear the cache because Gravity Forms caches the field values, which |
900 | 900 | // we have just updated. |
901 | - foreach ($this->form['fields'] as $key => $field) { |
|
902 | - GFFormsModel::refresh_lead_field_value( $entry['id'], $field->id ); |
|
901 | + foreach ( $this->form[ 'fields' ] as $key => $field ) { |
|
902 | + GFFormsModel::refresh_lead_field_value( $entry[ 'id' ], $field->id ); |
|
903 | 903 | } |
904 | 904 | } |
905 | 905 | |
@@ -909,11 +909,11 @@ discard block |
||
909 | 909 | * @since develop |
910 | 910 | */ |
911 | 911 | if ( $allowed_feeds = $this->view->settings->get( 'edit_feeds', array() ) ) { |
912 | - $feeds = GFAPI::get_feeds( null, $entry['form_id'] ); |
|
912 | + $feeds = GFAPI::get_feeds( null, $entry[ 'form_id' ] ); |
|
913 | 913 | if ( ! is_wp_error( $feeds ) ) { |
914 | 914 | $registered_feeds = array(); |
915 | 915 | foreach ( GFAddOn::get_registered_addons() as $registered_feed ) { |
916 | - if ( is_subclass_of( $registered_feed, 'GFFeedAddOn' ) ) { |
|
916 | + if ( is_subclass_of( $registered_feed, 'GFFeedAddOn' ) ) { |
|
917 | 917 | if ( method_exists( $registered_feed, 'get_instance' ) ) { |
918 | 918 | $registered_feed = call_user_func( array( $registered_feed, 'get_instance' ) ); |
919 | 919 | $registered_feeds[ $registered_feed->get_slug() ] = $registered_feed; |
@@ -921,8 +921,8 @@ discard block |
||
921 | 921 | } |
922 | 922 | } |
923 | 923 | foreach ( $feeds as $feed ) { |
924 | - if ( in_array( $feed['id'], $allowed_feeds ) ) { |
|
925 | - if ( $feed_object = \GV\Utils::get( $registered_feeds, $feed['addon_slug'] ) ) { |
|
924 | + if ( in_array( $feed[ 'id' ], $allowed_feeds ) ) { |
|
925 | + if ( $feed_object = \GV\Utils::get( $registered_feeds, $feed[ 'addon_slug' ] ) ) { |
|
926 | 926 | $returned_entry = $feed_object->process_feed( $feed, $entry, self::$original_form ); |
927 | 927 | if ( is_array( $returned_entry ) && rgar( $returned_entry, 'id' ) ) { |
928 | 928 | $entry = $returned_entry; |
@@ -952,7 +952,7 @@ discard block |
||
952 | 952 | |
953 | 953 | <div class="gv-edit-entry-wrapper"><?php |
954 | 954 | |
955 | - $javascript = gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/inline-javascript.php', $this ); |
|
955 | + $javascript = gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/inline-javascript.php', $this ); |
|
956 | 956 | |
957 | 957 | /** |
958 | 958 | * Fixes weird wpautop() issue |
@@ -968,7 +968,7 @@ discard block |
||
968 | 968 | * @param string $edit_entry_title Modify the "Edit Entry" title |
969 | 969 | * @param GravityView_Edit_Entry_Render $this This object |
970 | 970 | */ |
971 | - $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this ); |
|
971 | + $edit_entry_title = apply_filters( 'gravityview_edit_entry_title', __( 'Edit Entry', 'gravityview' ), $this ); |
|
972 | 972 | |
973 | 973 | echo esc_attr( $edit_entry_title ); |
974 | 974 | ?></span> |
@@ -1018,13 +1018,13 @@ discard block |
||
1018 | 1018 | |
1019 | 1019 | $back_link = remove_query_arg( array( 'page', 'view', 'edit' ) ); |
1020 | 1020 | |
1021 | - if( ! $this->is_valid ){ |
|
1021 | + if ( ! $this->is_valid ) { |
|
1022 | 1022 | |
1023 | 1023 | // Keeping this compatible with Gravity Forms. |
1024 | - $validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>"; |
|
1025 | - $message = apply_filters("gform_validation_message_{$this->form['id']}", apply_filters("gform_validation_message", $validation_message, $this->form), $this->form); |
|
1024 | + $validation_message = "<div class='validation_error'>" . __( 'There was a problem with your submission.', 'gravityview' ) . " " . __( 'Errors have been highlighted below.', 'gravityview' ) . "</div>"; |
|
1025 | + $message = apply_filters( "gform_validation_message_{$this->form[ 'id' ]}", apply_filters( "gform_validation_message", $validation_message, $this->form ), $this->form ); |
|
1026 | 1026 | |
1027 | - echo GVCommon::generate_notice( $message , 'gv-error' ); |
|
1027 | + echo GVCommon::generate_notice( $message, 'gv-error' ); |
|
1028 | 1028 | |
1029 | 1029 | } else { |
1030 | 1030 | $view = \GV\View::by_id( $this->view_id ); |
@@ -1035,23 +1035,23 @@ discard block |
||
1035 | 1035 | |
1036 | 1036 | case '0': |
1037 | 1037 | $redirect_url = $back_link; |
1038 | - $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' ); |
|
1038 | + $entry_updated_message = sprintf( esc_attr_x( 'Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview' ), '<a href="' . esc_url( $redirect_url ) . '">', '</a>' ); |
|
1039 | 1039 | break; |
1040 | 1040 | |
1041 | 1041 | case '1': |
1042 | 1042 | $redirect_url = $directory_link = GravityView_API::directory_link(); |
1043 | - $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' ); |
|
1043 | + $entry_updated_message = sprintf( esc_attr_x( 'Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.', 'gravityview' ), '<a href="' . esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' ); |
|
1044 | 1044 | break; |
1045 | 1045 | |
1046 | 1046 | case '2': |
1047 | 1047 | $redirect_url = $edit_redirect_url; |
1048 | 1048 | $redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' ); |
1049 | - $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' ); |
|
1049 | + $entry_updated_message = sprintf( esc_attr_x( 'Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.', 'gravityview' ), '<a href="' . esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' ); |
|
1050 | 1050 | break; |
1051 | 1051 | |
1052 | 1052 | case '': |
1053 | 1053 | default: |
1054 | - $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' ); |
|
1054 | + $entry_updated_message = sprintf( esc_attr__( 'Entry Updated. %sReturn to Entry%s', 'gravityview' ), '<a href="' . esc_url( $back_link ) . '">', '</a>' ); |
|
1055 | 1055 | break; |
1056 | 1056 | } |
1057 | 1057 | |
@@ -1067,7 +1067,7 @@ discard block |
||
1067 | 1067 | * @param array $entry Gravity Forms entry array |
1068 | 1068 | * @param string $back_link URL to return to the original entry. @since 1.6 |
1069 | 1069 | */ |
1070 | - $message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message , $this->view_id, $this->entry, $back_link ); |
|
1070 | + $message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message, $this->view_id, $this->entry, $back_link ); |
|
1071 | 1071 | |
1072 | 1072 | echo GVCommon::generate_notice( $message ); |
1073 | 1073 | } |
@@ -1091,21 +1091,21 @@ discard block |
||
1091 | 1091 | */ |
1092 | 1092 | do_action( 'gravityview/edit-entry/render/before', $this ); |
1093 | 1093 | |
1094 | - add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields'), 5000, 3 ); |
|
1095 | - add_filter( 'gform_submit_button', array( $this, 'render_form_buttons') ); |
|
1094 | + add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000, 3 ); |
|
1095 | + add_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) ); |
|
1096 | 1096 | add_filter( 'gform_disable_view_counter', '__return_true' ); |
1097 | 1097 | |
1098 | 1098 | add_filter( 'gform_field_input', array( $this, 'verify_user_can_edit_post' ), 5, 5 ); |
1099 | 1099 | add_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10, 5 ); |
1100 | 1100 | |
1101 | 1101 | // We need to remove the fake $_GET['page'] arg to avoid rendering form as if in admin. |
1102 | - unset( $_GET['page'] ); |
|
1102 | + unset( $_GET[ 'page' ] ); |
|
1103 | 1103 | |
1104 | 1104 | // TODO: Verify multiple-page forms |
1105 | 1105 | |
1106 | 1106 | ob_start(); // Prevent PHP warnings possibly caused by prefilling list fields for conditional logic |
1107 | 1107 | |
1108 | - $html = GFFormDisplay::get_form( $this->form['id'], false, false, true, $this->entry ); |
|
1108 | + $html = GFFormDisplay::get_form( $this->form[ 'id' ], false, false, true, $this->entry ); |
|
1109 | 1109 | |
1110 | 1110 | ob_get_clean(); |
1111 | 1111 | |
@@ -1131,7 +1131,7 @@ discard block |
||
1131 | 1131 | * @return string |
1132 | 1132 | */ |
1133 | 1133 | public function render_form_buttons() { |
1134 | - return gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/form-buttons.php', $this ); |
|
1134 | + return gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/form-buttons.php', $this ); |
|
1135 | 1135 | } |
1136 | 1136 | |
1137 | 1137 | |
@@ -1151,10 +1151,10 @@ discard block |
||
1151 | 1151 | public function filter_modify_form_fields( $form, $ajax = false, $field_values = '' ) { |
1152 | 1152 | |
1153 | 1153 | // In case we have validated the form, use it to inject the validation results into the form render |
1154 | - if( isset( $this->form_after_validation ) ) { |
|
1154 | + if ( isset( $this->form_after_validation ) ) { |
|
1155 | 1155 | $form = $this->form_after_validation; |
1156 | 1156 | } else { |
1157 | - $form['fields'] = $this->get_configured_edit_fields( $form, $this->view_id ); |
|
1157 | + $form[ 'fields' ] = $this->get_configured_edit_fields( $form, $this->view_id ); |
|
1158 | 1158 | } |
1159 | 1159 | |
1160 | 1160 | $form = $this->filter_conditional_logic( $form ); |
@@ -1162,8 +1162,8 @@ discard block |
||
1162 | 1162 | $form = $this->prefill_conditional_logic( $form ); |
1163 | 1163 | |
1164 | 1164 | // for now we don't support Save and Continue feature. |
1165 | - if( ! self::$supports_save_and_continue ) { |
|
1166 | - unset( $form['save'] ); |
|
1165 | + if ( ! self::$supports_save_and_continue ) { |
|
1166 | + unset( $form[ 'save' ] ); |
|
1167 | 1167 | } |
1168 | 1168 | |
1169 | 1169 | $form = $this->unselect_default_values( $form ); |
@@ -1186,31 +1186,31 @@ discard block |
||
1186 | 1186 | */ |
1187 | 1187 | public function verify_user_can_edit_post( $field_content = '', $field, $value, $lead_id = 0, $form_id ) { |
1188 | 1188 | |
1189 | - if( ! GFCommon::is_post_field( $field ) ) { |
|
1189 | + if ( ! GFCommon::is_post_field( $field ) ) { |
|
1190 | 1190 | return $field_content; |
1191 | 1191 | } |
1192 | 1192 | |
1193 | 1193 | $message = null; |
1194 | 1194 | |
1195 | 1195 | // First, make sure they have the capability to edit the post. |
1196 | - if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) { |
|
1196 | + if ( false === current_user_can( 'edit_post', $this->entry[ 'post_id' ] ) ) { |
|
1197 | 1197 | |
1198 | 1198 | /** |
1199 | 1199 | * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post |
1200 | 1200 | * @param string $message The existing "You don't have permission..." text |
1201 | 1201 | */ |
1202 | - $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don’t have permission to edit this post.', 'gravityview') ); |
|
1202 | + $message = apply_filters( 'gravityview/edit_entry/unsupported_post_field_text', __( 'You don’t have permission to edit this post.', 'gravityview' ) ); |
|
1203 | 1203 | |
1204 | - } elseif( null === get_post( $this->entry['post_id'] ) ) { |
|
1204 | + } elseif ( null === get_post( $this->entry[ 'post_id' ] ) ) { |
|
1205 | 1205 | /** |
1206 | 1206 | * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists |
1207 | 1207 | * @param string $message The existing "This field is not editable; the post no longer exists." text |
1208 | 1208 | */ |
1209 | - $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) ); |
|
1209 | + $message = apply_filters( 'gravityview/edit_entry/no_post_text', __( 'This field is not editable; the post no longer exists.', 'gravityview' ) ); |
|
1210 | 1210 | } |
1211 | 1211 | |
1212 | - if( $message ) { |
|
1213 | - $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) ); |
|
1212 | + if ( $message ) { |
|
1213 | + $field_content = sprintf( '<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) ); |
|
1214 | 1214 | } |
1215 | 1215 | |
1216 | 1216 | return $field_content; |
@@ -1234,8 +1234,8 @@ discard block |
||
1234 | 1234 | |
1235 | 1235 | // If the form has been submitted, then we don't need to pre-fill the values, |
1236 | 1236 | // Except for fileupload type and when a field input is overridden- run always!! |
1237 | - if( |
|
1238 | - ( $this->is_edit_entry_submission() && !in_array( $field->type, array( 'fileupload', 'post_image' ) ) ) |
|
1237 | + if ( |
|
1238 | + ( $this->is_edit_entry_submission() && ! in_array( $field->type, array( 'fileupload', 'post_image' ) ) ) |
|
1239 | 1239 | && false === ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) |
1240 | 1240 | && ! GFCommon::is_product_field( $field->type ) |
1241 | 1241 | || ! empty( $field_content ) |
@@ -1255,7 +1255,7 @@ discard block |
||
1255 | 1255 | $return = null; |
1256 | 1256 | |
1257 | 1257 | /** @var GravityView_Field $gv_field */ |
1258 | - if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) { |
|
1258 | + if ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) { |
|
1259 | 1259 | $return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field ); |
1260 | 1260 | } else { |
1261 | 1261 | $return = $field->get_field_input( $this->form, $field_value, $this->entry ); |
@@ -1264,7 +1264,7 @@ discard block |
||
1264 | 1264 | // If there was output, it's an error |
1265 | 1265 | $warnings = ob_get_clean(); |
1266 | 1266 | |
1267 | - if( !empty( $warnings ) ) { |
|
1267 | + if ( ! empty( $warnings ) ) { |
|
1268 | 1268 | gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) ); |
1269 | 1269 | } |
1270 | 1270 | |
@@ -1289,7 +1289,7 @@ discard block |
||
1289 | 1289 | $override_saved_value = apply_filters( 'gravityview/edit_entry/pre_populate/override', false, $field ); |
1290 | 1290 | |
1291 | 1291 | // We're dealing with multiple inputs (e.g. checkbox) but not time or date (as it doesn't store data in input IDs) |
1292 | - if( isset( $field->inputs ) && is_array( $field->inputs ) && !in_array( $field->type, array( 'time', 'date' ) ) ) { |
|
1292 | + if ( isset( $field->inputs ) && is_array( $field->inputs ) && ! in_array( $field->type, array( 'time', 'date' ) ) ) { |
|
1293 | 1293 | |
1294 | 1294 | $field_value = array(); |
1295 | 1295 | |
@@ -1298,10 +1298,10 @@ discard block |
||
1298 | 1298 | |
1299 | 1299 | foreach ( (array)$field->inputs as $input ) { |
1300 | 1300 | |
1301 | - $input_id = strval( $input['id'] ); |
|
1301 | + $input_id = strval( $input[ 'id' ] ); |
|
1302 | 1302 | |
1303 | 1303 | if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) { |
1304 | - $field_value[ $input_id ] = 'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ]; |
|
1304 | + $field_value[ $input_id ] = 'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ]; |
|
1305 | 1305 | $allow_pre_populated = false; |
1306 | 1306 | } |
1307 | 1307 | |
@@ -1309,7 +1309,7 @@ discard block |
||
1309 | 1309 | |
1310 | 1310 | $pre_value = $field->get_value_submission( array(), false ); |
1311 | 1311 | |
1312 | - $field_value = ! $allow_pre_populated && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value; |
|
1312 | + $field_value = ! $allow_pre_populated && ! ( $override_saved_value && ! gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value; |
|
1313 | 1313 | |
1314 | 1314 | } else { |
1315 | 1315 | |
@@ -1320,13 +1320,13 @@ discard block |
||
1320 | 1320 | |
1321 | 1321 | // saved field entry value (if empty, fallback to the pre-populated value, if exists) |
1322 | 1322 | // or pre-populated value if not empty and set to override saved value |
1323 | - $field_value = isset( $this->entry[ $id ] ) && ! gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value; |
|
1323 | + $field_value = isset( $this->entry[ $id ] ) && ! gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && ! gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value; |
|
1324 | 1324 | |
1325 | 1325 | // in case field is post_category but inputType is select, multi-select or radio, convert value into array of category IDs. |
1326 | - if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) { |
|
1326 | + if ( 'post_category' === $field->type && ! gv_empty( $field_value, false, false ) ) { |
|
1327 | 1327 | $categories = array(); |
1328 | 1328 | foreach ( explode( ',', $field_value ) as $cat_string ) { |
1329 | - $categories[] = GFCommon::format_post_category( $cat_string, true ); |
|
1329 | + $categories[ ] = GFCommon::format_post_category( $cat_string, true ); |
|
1330 | 1330 | } |
1331 | 1331 | $field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories ); |
1332 | 1332 | } |
@@ -1354,7 +1354,7 @@ discard block |
||
1354 | 1354 | * @param GF_Field $field Gravity Forms field object |
1355 | 1355 | * @param GravityView_Edit_Entry_Render $this Current object |
1356 | 1356 | */ |
1357 | - $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this ); |
|
1357 | + $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type, $field_value, $field, $this ); |
|
1358 | 1358 | |
1359 | 1359 | return $field_value; |
1360 | 1360 | } |
@@ -1371,12 +1371,12 @@ discard block |
||
1371 | 1371 | */ |
1372 | 1372 | public function gform_pre_validation( $form ) { |
1373 | 1373 | |
1374 | - if( ! $this->verify_nonce() ) { |
|
1374 | + if ( ! $this->verify_nonce() ) { |
|
1375 | 1375 | return $form; |
1376 | 1376 | } |
1377 | 1377 | |
1378 | 1378 | // Fix PHP warning regarding undefined index. |
1379 | - foreach ( $form['fields'] as &$field) { |
|
1379 | + foreach ( $form[ 'fields' ] as &$field ) { |
|
1380 | 1380 | |
1381 | 1381 | // This is because we're doing admin form pretending to be front-end, so Gravity Forms |
1382 | 1382 | // expects certain field array items to be set. |
@@ -1384,7 +1384,7 @@ discard block |
||
1384 | 1384 | $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL; |
1385 | 1385 | } |
1386 | 1386 | |
1387 | - switch( RGFormsModel::get_input_type( $field ) ) { |
|
1387 | + switch ( RGFormsModel::get_input_type( $field ) ) { |
|
1388 | 1388 | |
1389 | 1389 | /** |
1390 | 1390 | * this whole fileupload hack is because in the admin, Gravity Forms simply doesn't update any fileupload field if it's empty, but it DOES in the frontend. |
@@ -1398,26 +1398,26 @@ discard block |
||
1398 | 1398 | // Set the previous value |
1399 | 1399 | $entry = $this->get_entry(); |
1400 | 1400 | |
1401 | - $input_name = 'input_'.$field->id; |
|
1402 | - $form_id = $form['id']; |
|
1401 | + $input_name = 'input_' . $field->id; |
|
1402 | + $form_id = $form[ 'id' ]; |
|
1403 | 1403 | |
1404 | 1404 | $value = NULL; |
1405 | 1405 | |
1406 | 1406 | // Use the previous entry value as the default. |
1407 | - if( isset( $entry[ $field->id ] ) ) { |
|
1407 | + if ( isset( $entry[ $field->id ] ) ) { |
|
1408 | 1408 | $value = $entry[ $field->id ]; |
1409 | 1409 | } |
1410 | 1410 | |
1411 | 1411 | // If this is a single upload file |
1412 | - if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) { |
|
1413 | - $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] ); |
|
1414 | - $value = $file_path['url']; |
|
1412 | + if ( ! empty( $_FILES[ $input_name ] ) && ! empty( $_FILES[ $input_name ][ 'name' ] ) ) { |
|
1413 | + $file_path = GFFormsModel::get_file_upload_path( $form[ 'id' ], $_FILES[ $input_name ][ 'name' ] ); |
|
1414 | + $value = $file_path[ 'url' ]; |
|
1415 | 1415 | |
1416 | 1416 | } else { |
1417 | 1417 | |
1418 | 1418 | // Fix PHP warning on line 1498 of form_display.php for post_image fields |
1419 | 1419 | // Fix PHP Notice: Undefined index: size in form_display.php on line 1511 |
1420 | - $_FILES[ $input_name ] = array('name' => '', 'size' => '' ); |
|
1420 | + $_FILES[ $input_name ] = array( 'name' => '', 'size' => '' ); |
|
1421 | 1421 | |
1422 | 1422 | } |
1423 | 1423 | |
@@ -1425,10 +1425,10 @@ discard block |
||
1425 | 1425 | |
1426 | 1426 | // If there are fresh uploads, process and merge them. |
1427 | 1427 | // Otherwise, use the passed values, which should be json-encoded array of URLs |
1428 | - if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) { |
|
1428 | + if ( isset( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) { |
|
1429 | 1429 | $value = empty( $value ) ? '[]' : $value; |
1430 | 1430 | $value = stripslashes_deep( $value ); |
1431 | - $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array()); |
|
1431 | + $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ], array() ); |
|
1432 | 1432 | } |
1433 | 1433 | |
1434 | 1434 | } else { |
@@ -1446,8 +1446,8 @@ discard block |
||
1446 | 1446 | |
1447 | 1447 | case 'number': |
1448 | 1448 | // Fix "undefined index" issue at line 1286 in form_display.php |
1449 | - if( !isset( $_POST['input_'.$field->id ] ) ) { |
|
1450 | - $_POST['input_'.$field->id ] = NULL; |
|
1449 | + if ( ! isset( $_POST[ 'input_' . $field->id ] ) ) { |
|
1450 | + $_POST[ 'input_' . $field->id ] = NULL; |
|
1451 | 1451 | } |
1452 | 1452 | break; |
1453 | 1453 | } |
@@ -1484,7 +1484,7 @@ discard block |
||
1484 | 1484 | * You can enter whatever you want! |
1485 | 1485 | * We try validating, and customize the results using `self::custom_validation()` |
1486 | 1486 | */ |
1487 | - add_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10, 4); |
|
1487 | + add_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10, 4 ); |
|
1488 | 1488 | |
1489 | 1489 | // Needed by the validate funtion |
1490 | 1490 | $failed_validation_page = NULL; |
@@ -1492,14 +1492,14 @@ discard block |
||
1492 | 1492 | |
1493 | 1493 | // Prevent entry limit from running when editing an entry, also |
1494 | 1494 | // prevent form scheduling from preventing editing |
1495 | - unset( $this->form['limitEntries'], $this->form['scheduleForm'] ); |
|
1495 | + unset( $this->form[ 'limitEntries' ], $this->form[ 'scheduleForm' ] ); |
|
1496 | 1496 | |
1497 | 1497 | // Hide fields depending on Edit Entry settings |
1498 | - $this->form['fields'] = $this->get_configured_edit_fields( $this->form, $this->view_id ); |
|
1498 | + $this->form[ 'fields' ] = $this->get_configured_edit_fields( $this->form, $this->view_id ); |
|
1499 | 1499 | |
1500 | 1500 | $this->is_valid = GFFormDisplay::validate( $this->form, $field_values, 1, $failed_validation_page ); |
1501 | 1501 | |
1502 | - remove_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10 ); |
|
1502 | + remove_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10 ); |
|
1503 | 1503 | } |
1504 | 1504 | |
1505 | 1505 | |
@@ -1522,7 +1522,7 @@ discard block |
||
1522 | 1522 | |
1523 | 1523 | $gv_valid = true; |
1524 | 1524 | |
1525 | - foreach ( $validation_results['form']['fields'] as $key => &$field ) { |
|
1525 | + foreach ( $validation_results[ 'form' ][ 'fields' ] as $key => &$field ) { |
|
1526 | 1526 | |
1527 | 1527 | $value = RGFormsModel::get_field_value( $field ); |
1528 | 1528 | $field_type = RGFormsModel::get_input_type( $field ); |
@@ -1535,22 +1535,22 @@ discard block |
||
1535 | 1535 | case 'post_image': |
1536 | 1536 | |
1537 | 1537 | // in case nothing is uploaded but there are already files saved |
1538 | - if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) { |
|
1538 | + if ( ! empty( $field->failed_validation ) && ! empty( $field->isRequired ) && ! empty( $value ) ) { |
|
1539 | 1539 | $field->failed_validation = false; |
1540 | 1540 | unset( $field->validation_message ); |
1541 | 1541 | } |
1542 | 1542 | |
1543 | 1543 | // validate if multi file upload reached max number of files [maxFiles] => 2 |
1544 | - if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) { |
|
1544 | + if ( \GV\Utils::get( $field, 'maxFiles' ) && \GV\Utils::get( $field, 'multipleFiles' ) ) { |
|
1545 | 1545 | |
1546 | 1546 | $input_name = 'input_' . $field->id; |
1547 | 1547 | //uploaded |
1548 | - $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array(); |
|
1548 | + $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] : array(); |
|
1549 | 1549 | |
1550 | 1550 | //existent |
1551 | 1551 | $entry = $this->get_entry(); |
1552 | 1552 | $value = NULL; |
1553 | - if( isset( $entry[ $field->id ] ) ) { |
|
1553 | + if ( isset( $entry[ $field->id ] ) ) { |
|
1554 | 1554 | $value = json_decode( $entry[ $field->id ], true ); |
1555 | 1555 | } |
1556 | 1556 | |
@@ -1558,13 +1558,13 @@ discard block |
||
1558 | 1558 | $count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) + |
1559 | 1559 | ( is_array( $value ) ? count( $value ) : 0 ); |
1560 | 1560 | |
1561 | - if( $count_files > $field->maxFiles ) { |
|
1561 | + if ( $count_files > $field->maxFiles ) { |
|
1562 | 1562 | $field->validation_message = __( 'Maximum number of files reached', 'gravityview' ); |
1563 | 1563 | $field->failed_validation = 1; |
1564 | 1564 | $gv_valid = false; |
1565 | 1565 | |
1566 | 1566 | // in case of error make sure the newest upload files are removed from the upload input |
1567 | - GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null; |
|
1567 | + GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ] = null; |
|
1568 | 1568 | } |
1569 | 1569 | |
1570 | 1570 | } |
@@ -1575,7 +1575,7 @@ discard block |
||
1575 | 1575 | } |
1576 | 1576 | |
1577 | 1577 | // This field has failed validation. |
1578 | - if( !empty( $field->failed_validation ) ) { |
|
1578 | + if ( ! empty( $field->failed_validation ) ) { |
|
1579 | 1579 | |
1580 | 1580 | gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field is invalid.', array( 'data' => array( 'field' => $field, 'value' => $value ) ) ); |
1581 | 1581 | |
@@ -1593,19 +1593,19 @@ discard block |
||
1593 | 1593 | } |
1594 | 1594 | |
1595 | 1595 | // You can't continue inside a switch, so we do it after. |
1596 | - if( empty( $field->failed_validation ) ) { |
|
1596 | + if ( empty( $field->failed_validation ) ) { |
|
1597 | 1597 | continue; |
1598 | 1598 | } |
1599 | 1599 | |
1600 | 1600 | // checks if the No Duplicates option is not validating entry against itself, since |
1601 | 1601 | // we're editing a stored entry, it would also assume it's a duplicate. |
1602 | - if( !empty( $field->noDuplicates ) ) { |
|
1602 | + if ( ! empty( $field->noDuplicates ) ) { |
|
1603 | 1603 | |
1604 | 1604 | $entry = $this->get_entry(); |
1605 | 1605 | |
1606 | 1606 | // If the value of the entry is the same as the stored value |
1607 | 1607 | // Then we can assume it's not a duplicate, it's the same. |
1608 | - if( !empty( $entry ) && $value == $entry[ $field->id ] ) { |
|
1608 | + if ( ! empty( $entry ) && $value == $entry[ $field->id ] ) { |
|
1609 | 1609 | //if value submitted was not changed, then don't validate |
1610 | 1610 | $field->failed_validation = false; |
1611 | 1611 | |
@@ -1618,7 +1618,7 @@ discard block |
||
1618 | 1618 | } |
1619 | 1619 | |
1620 | 1620 | // if here then probably we are facing the validation 'At least one field must be filled out' |
1621 | - if( GFFormDisplay::is_empty( $field, $this->form_id ) && empty( $field->isRequired ) ) { |
|
1621 | + if ( GFFormDisplay::is_empty( $field, $this->form_id ) && empty( $field->isRequired ) ) { |
|
1622 | 1622 | unset( $field->validation_message ); |
1623 | 1623 | $field->validation_message = false; |
1624 | 1624 | continue; |
@@ -1630,12 +1630,12 @@ discard block |
||
1630 | 1630 | |
1631 | 1631 | } |
1632 | 1632 | |
1633 | - $validation_results['is_valid'] = $gv_valid; |
|
1633 | + $validation_results[ 'is_valid' ] = $gv_valid; |
|
1634 | 1634 | |
1635 | 1635 | gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Validation results.', array( 'data' => $validation_results ) ); |
1636 | 1636 | |
1637 | 1637 | // We'll need this result when rendering the form ( on GFFormDisplay::get_form ) |
1638 | - $this->form_after_validation = $validation_results['form']; |
|
1638 | + $this->form_after_validation = $validation_results[ 'form' ]; |
|
1639 | 1639 | |
1640 | 1640 | return $validation_results; |
1641 | 1641 | } |
@@ -1648,7 +1648,7 @@ discard block |
||
1648 | 1648 | */ |
1649 | 1649 | public function get_entry() { |
1650 | 1650 | |
1651 | - if( empty( $this->entry ) ) { |
|
1651 | + if ( empty( $this->entry ) ) { |
|
1652 | 1652 | // Get the database value of the entry that's being edited |
1653 | 1653 | $this->entry = gravityview_get_entry( GravityView_frontend::is_single_entry() ); |
1654 | 1654 | } |
@@ -1680,10 +1680,10 @@ discard block |
||
1680 | 1680 | } |
1681 | 1681 | |
1682 | 1682 | // If edit tab not yet configured, show all fields |
1683 | - $edit_fields = !empty( $properties['edit_edit-fields'] ) ? $properties['edit_edit-fields'] : NULL; |
|
1683 | + $edit_fields = ! empty( $properties[ 'edit_edit-fields' ] ) ? $properties[ 'edit_edit-fields' ] : NULL; |
|
1684 | 1684 | |
1685 | 1685 | // Hide fields depending on admin settings |
1686 | - $fields = $this->filter_fields( $form['fields'], $edit_fields ); |
|
1686 | + $fields = $this->filter_fields( $form[ 'fields' ], $edit_fields ); |
|
1687 | 1687 | |
1688 | 1688 | // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't. |
1689 | 1689 | $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id ); |
@@ -1715,7 +1715,7 @@ discard block |
||
1715 | 1715 | */ |
1716 | 1716 | private function filter_fields( $fields, $configured_fields ) { |
1717 | 1717 | |
1718 | - if( empty( $fields ) || !is_array( $fields ) ) { |
|
1718 | + if ( empty( $fields ) || ! is_array( $fields ) ) { |
|
1719 | 1719 | return $fields; |
1720 | 1720 | } |
1721 | 1721 | |
@@ -1728,18 +1728,18 @@ discard block |
||
1728 | 1728 | |
1729 | 1729 | // Remove the fields that have calculation properties and keep them to be used later |
1730 | 1730 | // @since 1.16.2 |
1731 | - if( $field->has_calculation() ) { |
|
1732 | - $this->fields_with_calculation[] = $field; |
|
1731 | + if ( $field->has_calculation() ) { |
|
1732 | + $this->fields_with_calculation[ ] = $field; |
|
1733 | 1733 | // don't remove the calculation fields on form render. |
1734 | 1734 | } |
1735 | 1735 | |
1736 | - if( in_array( $field->type, $field_type_blacklist ) ) { |
|
1736 | + if ( in_array( $field->type, $field_type_blacklist ) ) { |
|
1737 | 1737 | unset( $fields[ $key ] ); |
1738 | 1738 | } |
1739 | 1739 | } |
1740 | 1740 | |
1741 | 1741 | // The Edit tab has not been configured, so we return all fields by default. |
1742 | - if( empty( $configured_fields ) ) { |
|
1742 | + if ( empty( $configured_fields ) ) { |
|
1743 | 1743 | return array_values( $fields ); |
1744 | 1744 | } |
1745 | 1745 | |
@@ -1748,8 +1748,8 @@ discard block |
||
1748 | 1748 | |
1749 | 1749 | /** @var GF_Field $field */ |
1750 | 1750 | foreach ( $fields as $field ) { |
1751 | - if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) { |
|
1752 | - $edit_fields[] = $this->merge_field_properties( $field, $configured_field ); |
|
1751 | + if ( intval( $configured_field[ 'id' ] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) { |
|
1752 | + $edit_fields[ ] = $this->merge_field_properties( $field, $configured_field ); |
|
1753 | 1753 | break; |
1754 | 1754 | } |
1755 | 1755 | |
@@ -1772,14 +1772,14 @@ discard block |
||
1772 | 1772 | |
1773 | 1773 | $return_field = $field; |
1774 | 1774 | |
1775 | - if( empty( $field_setting['show_label'] ) ) { |
|
1775 | + if ( empty( $field_setting[ 'show_label' ] ) ) { |
|
1776 | 1776 | $return_field->label = ''; |
1777 | - } elseif ( !empty( $field_setting['custom_label'] ) ) { |
|
1778 | - $return_field->label = $field_setting['custom_label']; |
|
1777 | + } elseif ( ! empty( $field_setting[ 'custom_label' ] ) ) { |
|
1778 | + $return_field->label = $field_setting[ 'custom_label' ]; |
|
1779 | 1779 | } |
1780 | 1780 | |
1781 | - if( !empty( $field_setting['custom_class'] ) ) { |
|
1782 | - $return_field->cssClass .= ' '. gravityview_sanitize_html_class( $field_setting['custom_class'] ); |
|
1781 | + if ( ! empty( $field_setting[ 'custom_class' ] ) ) { |
|
1782 | + $return_field->cssClass .= ' ' . gravityview_sanitize_html_class( $field_setting[ 'custom_class' ] ); |
|
1783 | 1783 | } |
1784 | 1784 | |
1785 | 1785 | /** |
@@ -1817,16 +1817,16 @@ discard block |
||
1817 | 1817 | */ |
1818 | 1818 | $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id ); |
1819 | 1819 | |
1820 | - if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) { |
|
1821 | - foreach( $fields as $k => $field ) { |
|
1822 | - if( $field->adminOnly ) { |
|
1820 | + if ( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry[ 'id' ] ) ) { |
|
1821 | + foreach ( $fields as $k => $field ) { |
|
1822 | + if ( $field->adminOnly ) { |
|
1823 | 1823 | unset( $fields[ $k ] ); |
1824 | 1824 | } |
1825 | 1825 | } |
1826 | 1826 | return array_values( $fields ); |
1827 | 1827 | } |
1828 | 1828 | |
1829 | - foreach( $fields as &$field ) { |
|
1829 | + foreach ( $fields as &$field ) { |
|
1830 | 1830 | $field->adminOnly = false; |
1831 | 1831 | } |
1832 | 1832 | |
@@ -1847,7 +1847,7 @@ discard block |
||
1847 | 1847 | */ |
1848 | 1848 | private function unselect_default_values( $form ) { |
1849 | 1849 | |
1850 | - foreach ( $form['fields'] as &$field ) { |
|
1850 | + foreach ( $form[ 'fields' ] as &$field ) { |
|
1851 | 1851 | |
1852 | 1852 | if ( empty( $field->choices ) ) { |
1853 | 1853 | continue; |
@@ -1855,7 +1855,7 @@ discard block |
||
1855 | 1855 | |
1856 | 1856 | foreach ( $field->choices as &$choice ) { |
1857 | 1857 | if ( \GV\Utils::get( $choice, 'isSelected' ) ) { |
1858 | - $choice['isSelected'] = false; |
|
1858 | + $choice[ 'isSelected' ] = false; |
|
1859 | 1859 | } |
1860 | 1860 | } |
1861 | 1861 | } |
@@ -1880,22 +1880,22 @@ discard block |
||
1880 | 1880 | */ |
1881 | 1881 | function prefill_conditional_logic( $form ) { |
1882 | 1882 | |
1883 | - if( ! GFFormDisplay::has_conditional_logic( $form ) ) { |
|
1883 | + if ( ! GFFormDisplay::has_conditional_logic( $form ) ) { |
|
1884 | 1884 | return $form; |
1885 | 1885 | } |
1886 | 1886 | |
1887 | 1887 | // Have Conditional Logic pre-fill fields as if the data were default values |
1888 | 1888 | /** @var GF_Field $field */ |
1889 | - foreach ( $form['fields'] as &$field ) { |
|
1889 | + foreach ( $form[ 'fields' ] as &$field ) { |
|
1890 | 1890 | |
1891 | - if( 'checkbox' === $field->type ) { |
|
1891 | + if ( 'checkbox' === $field->type ) { |
|
1892 | 1892 | foreach ( $field->get_entry_inputs() as $key => $input ) { |
1893 | - $input_id = $input['id']; |
|
1893 | + $input_id = $input[ 'id' ]; |
|
1894 | 1894 | $choice = $field->choices[ $key ]; |
1895 | 1895 | $value = \GV\Utils::get( $this->entry, $input_id ); |
1896 | 1896 | $match = RGFormsModel::choice_value_match( $field, $choice, $value ); |
1897 | - if( $match ) { |
|
1898 | - $field->choices[ $key ]['isSelected'] = true; |
|
1897 | + if ( $match ) { |
|
1898 | + $field->choices[ $key ][ 'isSelected' ] = true; |
|
1899 | 1899 | } |
1900 | 1900 | } |
1901 | 1901 | } else { |
@@ -1903,15 +1903,15 @@ discard block |
||
1903 | 1903 | // We need to run through each field to set the default values |
1904 | 1904 | foreach ( $this->entry as $field_id => $field_value ) { |
1905 | 1905 | |
1906 | - if( floatval( $field_id ) === floatval( $field->id ) ) { |
|
1906 | + if ( floatval( $field_id ) === floatval( $field->id ) ) { |
|
1907 | 1907 | |
1908 | - if( 'list' === $field->type ) { |
|
1908 | + if ( 'list' === $field->type ) { |
|
1909 | 1909 | $list_rows = maybe_unserialize( $field_value ); |
1910 | 1910 | |
1911 | 1911 | $list_field_value = array(); |
1912 | - foreach ( (array) $list_rows as $row ) { |
|
1913 | - foreach ( (array) $row as $column ) { |
|
1914 | - $list_field_value[] = $column; |
|
1912 | + foreach ( (array)$list_rows as $row ) { |
|
1913 | + foreach ( (array)$row as $column ) { |
|
1914 | + $list_field_value[ ] = $column; |
|
1915 | 1915 | } |
1916 | 1916 | } |
1917 | 1917 | |
@@ -1944,32 +1944,32 @@ discard block |
||
1944 | 1944 | * @see https://github.com/gravityview/GravityView/issues/840 |
1945 | 1945 | * @since develop |
1946 | 1946 | */ |
1947 | - $the_form = GFAPI::get_form( $form['id'] ); |
|
1947 | + $the_form = GFAPI::get_form( $form[ 'id' ] ); |
|
1948 | 1948 | $editable_ids = array(); |
1949 | - foreach ( $form['fields'] as $field ) { |
|
1950 | - $editable_ids[] = $field['id']; // wp_list_pluck is destructive in this context |
|
1949 | + foreach ( $form[ 'fields' ] as $field ) { |
|
1950 | + $editable_ids[ ] = $field[ 'id' ]; // wp_list_pluck is destructive in this context |
|
1951 | 1951 | } |
1952 | 1952 | $remove_conditions_rule = array(); |
1953 | - foreach ( $the_form['fields'] as $field ) { |
|
1954 | - if ( ! empty( $field->conditionalLogic ) && ! empty( $field->conditionalLogic['rules'] ) ) { |
|
1955 | - foreach ( $field->conditionalLogic['rules'] as $i => $rule ) { |
|
1956 | - if ( ! in_array( $rule['fieldId'], $editable_ids ) ) { |
|
1953 | + foreach ( $the_form[ 'fields' ] as $field ) { |
|
1954 | + if ( ! empty( $field->conditionalLogic ) && ! empty( $field->conditionalLogic[ 'rules' ] ) ) { |
|
1955 | + foreach ( $field->conditionalLogic[ 'rules' ] as $i => $rule ) { |
|
1956 | + if ( ! in_array( $rule[ 'fieldId' ], $editable_ids ) ) { |
|
1957 | 1957 | /** |
1958 | 1958 | * This conditional field is not editable in this View. |
1959 | 1959 | * We need to remove the rule, but only if it matches. |
1960 | 1960 | */ |
1961 | - if ( $_field = GFAPI::get_field( $the_form, $rule['fieldId'] ) ) { |
|
1961 | + if ( $_field = GFAPI::get_field( $the_form, $rule[ 'fieldId' ] ) ) { |
|
1962 | 1962 | $value = $_field->get_value_export( $this->entry ); |
1963 | - } elseif ( isset( $this->entry[ $rule['fieldId'] ] ) ) { |
|
1964 | - $value = $this->entry[ $rule['fieldId'] ]; |
|
1963 | + } elseif ( isset( $this->entry[ $rule[ 'fieldId' ] ] ) ) { |
|
1964 | + $value = $this->entry[ $rule[ 'fieldId' ] ]; |
|
1965 | 1965 | } else { |
1966 | - $value = gform_get_meta( $this->entry['id'], $rule['fieldId'] ); |
|
1966 | + $value = gform_get_meta( $this->entry[ 'id' ], $rule[ 'fieldId' ] ); |
|
1967 | 1967 | } |
1968 | 1968 | |
1969 | - $match = GFFormsModel::matches_operation( $value, $rule['value'], $rule['operator'] ); |
|
1969 | + $match = GFFormsModel::matches_operation( $value, $rule[ 'value' ], $rule[ 'operator' ] ); |
|
1970 | 1970 | |
1971 | 1971 | if ( $match ) { |
1972 | - $remove_conditions_rule[] = array( $field['id'], $i ); |
|
1972 | + $remove_conditions_rule[ ] = array( $field[ 'id' ], $i ); |
|
1973 | 1973 | } |
1974 | 1974 | } |
1975 | 1975 | } |
@@ -1977,21 +1977,21 @@ discard block |
||
1977 | 1977 | } |
1978 | 1978 | |
1979 | 1979 | if ( $remove_conditions_rule ) { |
1980 | - foreach ( $form['fields'] as &$field ) { |
|
1980 | + foreach ( $form[ 'fields' ] as &$field ) { |
|
1981 | 1981 | foreach ( $remove_conditions_rule as $_remove_conditions_r ) { |
1982 | 1982 | |
1983 | 1983 | list( $rule_field_id, $rule_i ) = $_remove_conditions_r; |
1984 | 1984 | |
1985 | - if ( $field['id'] == $rule_field_id ) { |
|
1986 | - unset( $field->conditionalLogic['rules'][ $rule_i ] ); |
|
1987 | - gravityview()->log->debug( 'Removed conditional rule #{rule} for field {field_id}', array( 'rule' => $rule_i, 'field_id' => $field['id'] ) ); |
|
1985 | + if ( $field[ 'id' ] == $rule_field_id ) { |
|
1986 | + unset( $field->conditionalLogic[ 'rules' ][ $rule_i ] ); |
|
1987 | + gravityview()->log->debug( 'Removed conditional rule #{rule} for field {field_id}', array( 'rule' => $rule_i, 'field_id' => $field[ 'id' ] ) ); |
|
1988 | 1988 | } |
1989 | 1989 | } |
1990 | 1990 | } |
1991 | 1991 | } |
1992 | 1992 | |
1993 | 1993 | /** Normalize the indices... */ |
1994 | - $form['fields'] = array_values( $form['fields'] ); |
|
1994 | + $form[ 'fields' ] = array_values( $form[ 'fields' ] ); |
|
1995 | 1995 | |
1996 | 1996 | /** |
1997 | 1997 | * @filter `gravityview/edit_entry/conditional_logic` Should the Edit Entry form use Gravity Forms conditional logic showing/hiding of fields? |
@@ -2001,16 +2001,16 @@ discard block |
||
2001 | 2001 | */ |
2002 | 2002 | $use_conditional_logic = apply_filters( 'gravityview/edit_entry/conditional_logic', true, $form ); |
2003 | 2003 | |
2004 | - if( $use_conditional_logic ) { |
|
2004 | + if ( $use_conditional_logic ) { |
|
2005 | 2005 | return $form; |
2006 | 2006 | } |
2007 | 2007 | |
2008 | - foreach( $form['fields'] as &$field ) { |
|
2008 | + foreach ( $form[ 'fields' ] as &$field ) { |
|
2009 | 2009 | /* @var GF_Field $field */ |
2010 | 2010 | $field->conditionalLogic = null; |
2011 | 2011 | } |
2012 | 2012 | |
2013 | - unset( $form['button']['conditionalLogic'] ); |
|
2013 | + unset( $form[ 'button' ][ 'conditionalLogic' ] ); |
|
2014 | 2014 | |
2015 | 2015 | return $form; |
2016 | 2016 | |
@@ -2027,7 +2027,7 @@ discard block |
||
2027 | 2027 | */ |
2028 | 2028 | public function manage_conditional_logic( $has_conditional_logic, $form ) { |
2029 | 2029 | |
2030 | - if( ! $this->is_edit_entry() ) { |
|
2030 | + if ( ! $this->is_edit_entry() ) { |
|
2031 | 2031 | return $has_conditional_logic; |
2032 | 2032 | } |
2033 | 2033 | |
@@ -2059,44 +2059,44 @@ discard block |
||
2059 | 2059 | * 2. There are two entries embedded using oEmbed |
2060 | 2060 | * 3. One of the entries has just been saved |
2061 | 2061 | */ |
2062 | - if( !empty( $_POST['lid'] ) && !empty( $_GET['entry'] ) && ( $_POST['lid'] !== $_GET['entry'] ) ) { |
|
2062 | + if ( ! empty( $_POST[ 'lid' ] ) && ! empty( $_GET[ 'entry' ] ) && ( $_POST[ 'lid' ] !== $_GET[ 'entry' ] ) ) { |
|
2063 | 2063 | |
2064 | 2064 | $error = true; |
2065 | 2065 | |
2066 | 2066 | } |
2067 | 2067 | |
2068 | - if( !empty( $_GET['entry'] ) && (string)$this->entry['id'] !== $_GET['entry'] ) { |
|
2068 | + if ( ! empty( $_GET[ 'entry' ] ) && (string)$this->entry[ 'id' ] !== $_GET[ 'entry' ] ) { |
|
2069 | 2069 | |
2070 | 2070 | $error = true; |
2071 | 2071 | |
2072 | - } elseif( ! $this->verify_nonce() ) { |
|
2072 | + } elseif ( ! $this->verify_nonce() ) { |
|
2073 | 2073 | |
2074 | 2074 | /** |
2075 | 2075 | * If the Entry is embedded, there may be two entries on the same page. |
2076 | 2076 | * If that's the case, and one is being edited, the other should fail gracefully and not display an error. |
2077 | 2077 | */ |
2078 | - if( GravityView_oEmbed::getInstance()->get_entry_id() ) { |
|
2078 | + if ( GravityView_oEmbed::getInstance()->get_entry_id() ) { |
|
2079 | 2079 | $error = true; |
2080 | 2080 | } else { |
2081 | - $error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview'); |
|
2081 | + $error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview' ); |
|
2082 | 2082 | } |
2083 | 2083 | |
2084 | 2084 | } |
2085 | 2085 | |
2086 | - if( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) { |
|
2087 | - $error = __( 'You do not have permission to edit this entry.', 'gravityview'); |
|
2086 | + if ( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) { |
|
2087 | + $error = __( 'You do not have permission to edit this entry.', 'gravityview' ); |
|
2088 | 2088 | } |
2089 | 2089 | |
2090 | - if( $this->entry['status'] === 'trash' ) { |
|
2091 | - $error = __('You cannot edit the entry; it is in the trash.', 'gravityview' ); |
|
2090 | + if ( $this->entry[ 'status' ] === 'trash' ) { |
|
2091 | + $error = __( 'You cannot edit the entry; it is in the trash.', 'gravityview' ); |
|
2092 | 2092 | } |
2093 | 2093 | |
2094 | 2094 | // No errors; everything's fine here! |
2095 | - if( empty( $error ) ) { |
|
2095 | + if ( empty( $error ) ) { |
|
2096 | 2096 | return true; |
2097 | 2097 | } |
2098 | 2098 | |
2099 | - if( $echo && $error !== true ) { |
|
2099 | + if ( $echo && $error !== true ) { |
|
2100 | 2100 | |
2101 | 2101 | $error = esc_html( $error ); |
2102 | 2102 | |
@@ -2104,10 +2104,10 @@ discard block |
||
2104 | 2104 | * @since 1.9 |
2105 | 2105 | */ |
2106 | 2106 | if ( ! empty( $this->entry ) ) { |
2107 | - $error .= ' ' . gravityview_get_link( '#', _x('Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) ); |
|
2107 | + $error .= ' ' . gravityview_get_link( '#', _x( 'Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) ); |
|
2108 | 2108 | } |
2109 | 2109 | |
2110 | - echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error'); |
|
2110 | + echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error' ); |
|
2111 | 2111 | } |
2112 | 2112 | |
2113 | 2113 | gravityview()->log->error( '{error}', array( 'error' => $error ) ); |
@@ -2127,17 +2127,17 @@ discard block |
||
2127 | 2127 | |
2128 | 2128 | $error = NULL; |
2129 | 2129 | |
2130 | - if( ! $this->check_user_cap_edit_field( $field ) ) { |
|
2131 | - $error = __( 'You do not have permission to edit this field.', 'gravityview'); |
|
2130 | + if ( ! $this->check_user_cap_edit_field( $field ) ) { |
|
2131 | + $error = __( 'You do not have permission to edit this field.', 'gravityview' ); |
|
2132 | 2132 | } |
2133 | 2133 | |
2134 | 2134 | // No errors; everything's fine here! |
2135 | - if( empty( $error ) ) { |
|
2135 | + if ( empty( $error ) ) { |
|
2136 | 2136 | return true; |
2137 | 2137 | } |
2138 | 2138 | |
2139 | - if( $echo ) { |
|
2140 | - echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error'); |
|
2139 | + if ( $echo ) { |
|
2140 | + echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error' ); |
|
2141 | 2141 | } |
2142 | 2142 | |
2143 | 2143 | gravityview()->log->error( '{error}', array( 'error' => $error ) ); |
@@ -2158,14 +2158,14 @@ discard block |
||
2158 | 2158 | private function check_user_cap_edit_field( $field ) { |
2159 | 2159 | |
2160 | 2160 | // If they can edit any entries (as defined in Gravity Forms), we're good. |
2161 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) { |
|
2161 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) { |
|
2162 | 2162 | return true; |
2163 | 2163 | } |
2164 | 2164 | |
2165 | - $field_cap = isset( $field['allow_edit_cap'] ) ? $field['allow_edit_cap'] : false; |
|
2165 | + $field_cap = isset( $field[ 'allow_edit_cap' ] ) ? $field[ 'allow_edit_cap' ] : false; |
|
2166 | 2166 | |
2167 | - if( $field_cap ) { |
|
2168 | - return GVCommon::has_cap( $field['allow_edit_cap'] ); |
|
2167 | + if ( $field_cap ) { |
|
2168 | + return GVCommon::has_cap( $field[ 'allow_edit_cap' ] ); |
|
2169 | 2169 | } |
2170 | 2170 | |
2171 | 2171 | return false; |
@@ -2179,17 +2179,17 @@ discard block |
||
2179 | 2179 | public function verify_nonce() { |
2180 | 2180 | |
2181 | 2181 | // Verify form submitted for editing single |
2182 | - if( $this->is_edit_entry_submission() ) { |
|
2182 | + if ( $this->is_edit_entry_submission() ) { |
|
2183 | 2183 | $valid = wp_verify_nonce( $_POST[ self::$nonce_field ], self::$nonce_field ); |
2184 | 2184 | } |
2185 | 2185 | |
2186 | 2186 | // Verify |
2187 | - else if( ! $this->is_edit_entry() ) { |
|
2187 | + else if ( ! $this->is_edit_entry() ) { |
|
2188 | 2188 | $valid = false; |
2189 | 2189 | } |
2190 | 2190 | |
2191 | 2191 | else { |
2192 | - $valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key ); |
|
2192 | + $valid = wp_verify_nonce( $_GET[ 'edit' ], self::$nonce_key ); |
|
2193 | 2193 | } |
2194 | 2194 | |
2195 | 2195 | /** |
@@ -27,32 +27,32 @@ discard block |
||
27 | 27 | add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 ); |
28 | 28 | |
29 | 29 | // Tooltips |
30 | - add_filter( 'gform_tooltips', array( $this, 'tooltips') ); |
|
30 | + add_filter( 'gform_tooltips', array( $this, 'tooltips' ) ); |
|
31 | 31 | |
32 | 32 | // adding styles and scripts |
33 | - add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 ); |
|
34 | - add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') ); |
|
35 | - add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') ); |
|
36 | - add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') ); |
|
37 | - add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') ); |
|
38 | - |
|
39 | - add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 ); |
|
40 | - add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 ); |
|
41 | - add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers') ); |
|
42 | - add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 ); |
|
43 | - add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') ); |
|
44 | - add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 ); |
|
33 | + add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 ); |
|
34 | + add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) ); |
|
35 | + add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
|
36 | + add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) ); |
|
37 | + add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
|
38 | + |
|
39 | + add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 ); |
|
40 | + add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 ); |
|
41 | + add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers' ) ); |
|
42 | + add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 ); |
|
43 | + add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) ); |
|
44 | + add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 ); |
|
45 | 45 | |
46 | 46 | // @todo check if this hook is needed.. |
47 | 47 | //add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 ); |
48 | 48 | |
49 | 49 | // Add Connected Form column |
50 | - add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) ); |
|
50 | + add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) ); |
|
51 | 51 | |
52 | 52 | add_filter( 'gform_toolbar_menu', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 ); |
53 | 53 | add_action( 'gform_form_actions', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 ); |
54 | 54 | |
55 | - add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content'), 10, 2 ); |
|
55 | + add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content' ), 10, 2 ); |
|
56 | 56 | |
57 | 57 | add_action( 'restrict_manage_posts', array( $this, 'add_view_dropdown' ) ); |
58 | 58 | |
@@ -71,11 +71,11 @@ discard block |
||
71 | 71 | */ |
72 | 72 | function suggest_support_articles( $localization_data = array() ) { |
73 | 73 | |
74 | - if( ! gravityview()->request->is_view() ) { |
|
74 | + if ( ! gravityview()->request->is_view() ) { |
|
75 | 75 | return $localization_data; |
76 | 76 | } |
77 | 77 | |
78 | - $localization_data['suggest'] = array( |
|
78 | + $localization_data[ 'suggest' ] = array( |
|
79 | 79 | '57ef23539033602e61d4a560', |
80 | 80 | '54c67bb9e4b0512429885513', |
81 | 81 | '54c67bb9e4b0512429885512', |
@@ -96,13 +96,13 @@ discard block |
||
96 | 96 | public function filter_pre_get_posts_by_gravityview_form_id( &$query ) { |
97 | 97 | global $pagenow; |
98 | 98 | |
99 | - if ( !is_admin() ) { |
|
99 | + if ( ! is_admin() ) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | |
103 | - $form_id = isset( $_GET['gravityview_form_id'] ) ? (int) $_GET['gravityview_form_id'] : false; |
|
103 | + $form_id = isset( $_GET[ 'gravityview_form_id' ] ) ? (int)$_GET[ 'gravityview_form_id' ] : false; |
|
104 | 104 | |
105 | - if( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) { |
|
105 | + if ( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) { |
|
106 | 106 | return; |
107 | 107 | } |
108 | 108 | |
@@ -119,18 +119,18 @@ discard block |
||
119 | 119 | function add_view_dropdown() { |
120 | 120 | $current_screen = get_current_screen(); |
121 | 121 | |
122 | - if( 'gravityview' !== $current_screen->post_type ) { |
|
122 | + if ( 'gravityview' !== $current_screen->post_type ) { |
|
123 | 123 | return; |
124 | 124 | } |
125 | 125 | |
126 | 126 | $forms = gravityview_get_forms(); |
127 | 127 | $current_form = \GV\Utils::_GET( 'gravityview_form_id' ); |
128 | 128 | // If there are no forms to select, show no forms. |
129 | - if( !empty( $forms ) ) { ?> |
|
129 | + if ( ! empty( $forms ) ) { ?> |
|
130 | 130 | <select name="gravityview_form_id" id="gravityview_form_id"> |
131 | 131 | <option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option> |
132 | - <?php foreach( $forms as $form ) { ?> |
|
133 | - <option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option> |
|
132 | + <?php foreach ( $forms as $form ) { ?> |
|
133 | + <option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option> |
|
134 | 134 | <?php } ?> |
135 | 135 | </select> |
136 | 136 | <?php } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | */ |
144 | 144 | public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) { |
145 | 145 | _deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' ); |
146 | - GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id ); |
|
146 | + GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id ); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -168,13 +168,13 @@ discard block |
||
168 | 168 | |
169 | 169 | $priority = 0; |
170 | 170 | |
171 | - if( 'form_list' === GFForms::get_page() ) { |
|
171 | + if ( 'form_list' === GFForms::get_page() ) { |
|
172 | 172 | $priority = 790; |
173 | 173 | } |
174 | 174 | |
175 | - if( empty( $connected_views ) ) { |
|
175 | + if ( empty( $connected_views ) ) { |
|
176 | 176 | |
177 | - $menu_items['gravityview'] = array( |
|
177 | + $menu_items[ 'gravityview' ] = array( |
|
178 | 178 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
179 | 179 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
180 | 180 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -190,22 +190,22 @@ discard block |
||
190 | 190 | $sub_menu_items = array(); |
191 | 191 | foreach ( (array)$connected_views as $view ) { |
192 | 192 | |
193 | - if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
193 | + if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
194 | 194 | continue; |
195 | 195 | } |
196 | 196 | |
197 | - $label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
197 | + $label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
198 | 198 | |
199 | - $sub_menu_items[] = array( |
|
199 | + $sub_menu_items[ ] = array( |
|
200 | 200 | 'label' => esc_attr( $label ), |
201 | - 'url' => admin_url( 'post.php?action=edit&post='.$view->ID ), |
|
201 | + 'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ), |
|
202 | 202 | ); |
203 | 203 | } |
204 | 204 | |
205 | 205 | // If there were no items added, then let's create the parent menu |
206 | - if( $sub_menu_items ) { |
|
206 | + if ( $sub_menu_items ) { |
|
207 | 207 | |
208 | - $sub_menu_items[] = array( |
|
208 | + $sub_menu_items[ ] = array( |
|
209 | 209 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
210 | 210 | 'link_class' => 'gv-create-view', |
211 | 211 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -214,14 +214,14 @@ discard block |
||
214 | 214 | ); |
215 | 215 | |
216 | 216 | // Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown |
217 | - $sub_menu_items[] = array( |
|
217 | + $sub_menu_items[ ] = array( |
|
218 | 218 | 'url' => '#', |
219 | 219 | 'label' => '', |
220 | 220 | 'menu_class' => 'hidden', |
221 | 221 | 'capabilities' => '', |
222 | 222 | ); |
223 | 223 | |
224 | - $menu_items['gravityview'] = array( |
|
224 | + $menu_items[ 'gravityview' ] = array( |
|
225 | 225 | 'label' => __( 'Connected Views', 'gravityview' ), |
226 | 226 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
227 | 227 | 'title' => __( 'GravityView Views using this form as a data source', 'gravityview' ), |
@@ -250,8 +250,8 @@ discard block |
||
250 | 250 | $add = array( 'captcha', 'page' ); |
251 | 251 | |
252 | 252 | // Don't allowing editing the following values: |
253 | - if( $context === 'edit' ) { |
|
254 | - $add[] = 'post_id'; |
|
253 | + if ( $context === 'edit' ) { |
|
254 | + $add[ ] = 'post_id'; |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | $return = array_merge( $array, $add ); |
@@ -274,32 +274,32 @@ discard block |
||
274 | 274 | foreach ( $default_args as $key => $arg ) { |
275 | 275 | |
276 | 276 | // If an arg has `tooltip` defined, but it's false, don't display a tooltip |
277 | - if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; } |
|
277 | + if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; } |
|
278 | 278 | |
279 | 279 | // By default, use `tooltip` if defined. |
280 | - $tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip']; |
|
280 | + $tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ]; |
|
281 | 281 | |
282 | 282 | // Otherwise, use the description as a tooltip. |
283 | - if( empty( $tooltip ) && !empty( $arg['desc'] ) ) { |
|
284 | - $tooltip = $arg['desc']; |
|
283 | + if ( empty( $tooltip ) && ! empty( $arg[ 'desc' ] ) ) { |
|
284 | + $tooltip = $arg[ 'desc' ]; |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | // If there's no tooltip set, continue |
288 | - if( empty( $tooltip ) ) { |
|
288 | + if ( empty( $tooltip ) ) { |
|
289 | 289 | continue; |
290 | 290 | } |
291 | 291 | |
292 | 292 | // Add the tooltip |
293 | - $gv_tooltips[ 'gv_'.$key ] = array( |
|
294 | - 'title' => $arg['label'], |
|
293 | + $gv_tooltips[ 'gv_' . $key ] = array( |
|
294 | + 'title' => $arg[ 'label' ], |
|
295 | 295 | 'value' => $tooltip, |
296 | 296 | ); |
297 | 297 | |
298 | 298 | } |
299 | 299 | |
300 | - $gv_tooltips['gv_css_merge_tags'] = array( |
|
301 | - 'title' => __('CSS Merge Tags', 'gravityview'), |
|
302 | - 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' ) |
|
300 | + $gv_tooltips[ 'gv_css_merge_tags' ] = array( |
|
301 | + 'title' => __( 'CSS Merge Tags', 'gravityview' ), |
|
302 | + 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' ) |
|
303 | 303 | ); |
304 | 304 | |
305 | 305 | /** |
@@ -317,9 +317,9 @@ discard block |
||
317 | 317 | |
318 | 318 | foreach ( $gv_tooltips as $key => $tooltip ) { |
319 | 319 | |
320 | - $title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>'; |
|
320 | + $title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>'; |
|
321 | 321 | |
322 | - $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) ); |
|
322 | + $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) ); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | return $tooltips; |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | * |
334 | 334 | * @return void |
335 | 335 | */ |
336 | - public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
336 | + public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
337 | 337 | |
338 | 338 | $output = ''; |
339 | 339 | |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | // Generate backup if label doesn't exist: `example_name` => `Example Name` |
356 | 356 | $template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) ); |
357 | 357 | |
358 | - $output = $template ? $template['label'] : $template_id_pretty; |
|
358 | + $output = $template ? $template[ 'label' ] : $template_id_pretty; |
|
359 | 359 | |
360 | 360 | break; |
361 | 361 | |
@@ -396,44 +396,44 @@ discard block |
||
396 | 396 | static public function get_connected_form_links( $form, $include_form_link = true ) { |
397 | 397 | |
398 | 398 | // Either the form is empty or the form ID is 0, not yet set. |
399 | - if( empty( $form ) ) { |
|
399 | + if ( empty( $form ) ) { |
|
400 | 400 | return ''; |
401 | 401 | } |
402 | 402 | |
403 | 403 | // The $form is passed as the form ID |
404 | - if( !is_array( $form ) ) { |
|
404 | + if ( ! is_array( $form ) ) { |
|
405 | 405 | $form = gravityview_get_form( $form ); |
406 | 406 | } |
407 | 407 | |
408 | - $form_id = $form['id']; |
|
408 | + $form_id = $form[ 'id' ]; |
|
409 | 409 | $links = array(); |
410 | 410 | |
411 | - if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
411 | + if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
412 | 412 | $form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $form_id ) ); |
413 | - $form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>'; |
|
414 | - $links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>'; |
|
413 | + $form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>'; |
|
414 | + $links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>'; |
|
415 | 415 | } else { |
416 | - $form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>'; |
|
416 | + $form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>'; |
|
417 | 417 | } |
418 | 418 | |
419 | - if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
419 | + if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
420 | 420 | $entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&id=%d', $form_id ) ); |
421 | - $links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>'; |
|
421 | + $links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>'; |
|
422 | 422 | } |
423 | 423 | |
424 | - if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
424 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
425 | 425 | $settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&view=settings&id=%d', $form_id ) ); |
426 | - $links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>'; |
|
426 | + $links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>'; |
|
427 | 427 | } |
428 | 428 | |
429 | - if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) { |
|
429 | + if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) { |
|
430 | 430 | $preview_url = site_url( sprintf( '?gf_page=preview&id=%d', $form_id ) ); |
431 | - $links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>'; |
|
431 | + $links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>'; |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | $output = ''; |
435 | 435 | |
436 | - if( !empty( $include_form_link ) ) { |
|
436 | + if ( ! empty( $include_form_link ) ) { |
|
437 | 437 | $output .= $form_link; |
438 | 438 | } |
439 | 439 | |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | */ |
446 | 446 | $links = apply_filters( 'gravityview_connected_form_links', $links, $form ); |
447 | 447 | |
448 | - $output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>'; |
|
448 | + $output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>'; |
|
449 | 449 | |
450 | 450 | return $output; |
451 | 451 | } |
@@ -459,8 +459,8 @@ discard block |
||
459 | 459 | // Get the date column and save it for later to add back in. |
460 | 460 | // This adds it after the Data Source column. |
461 | 461 | // This way, we don't need to do array_slice, array_merge, etc. |
462 | - $date = $columns['date']; |
|
463 | - unset( $columns['date'] ); |
|
462 | + $date = $columns[ 'date' ]; |
|
463 | + unset( $columns[ 'date' ] ); |
|
464 | 464 | |
465 | 465 | $data_source_required_caps = array( |
466 | 466 | 'gravityforms_edit_forms', |
@@ -471,14 +471,14 @@ discard block |
||
471 | 471 | 'gravityforms_preview_forms', |
472 | 472 | ); |
473 | 473 | |
474 | - if( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
475 | - $columns['gv_connected_form'] = __( 'Data Source', 'gravityview' ); |
|
474 | + if ( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
475 | + $columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' ); |
|
476 | 476 | } |
477 | 477 | |
478 | - $columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
478 | + $columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
479 | 479 | |
480 | 480 | // Add the date back in. |
481 | - $columns['date'] = $date; |
|
481 | + $columns[ 'date' ] = $date; |
|
482 | 482 | |
483 | 483 | return $columns; |
484 | 484 | } |
@@ -492,12 +492,12 @@ discard block |
||
492 | 492 | */ |
493 | 493 | function save_postdata( $post_id ) { |
494 | 494 | |
495 | - if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){ |
|
495 | + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
496 | 496 | return; |
497 | 497 | } |
498 | 498 | |
499 | 499 | // validate post_type |
500 | - if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) { |
|
500 | + if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) { |
|
501 | 501 | return; |
502 | 502 | } |
503 | 503 | |
@@ -512,65 +512,65 @@ discard block |
||
512 | 512 | $statii = array(); |
513 | 513 | |
514 | 514 | // check if this is a start fresh View |
515 | - if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) { |
|
515 | + if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) { |
|
516 | 516 | |
517 | - $form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : ''; |
|
517 | + $form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : ''; |
|
518 | 518 | // save form id |
519 | - $statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
519 | + $statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
520 | 520 | |
521 | 521 | } |
522 | 522 | |
523 | - if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) { |
|
523 | + if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) { |
|
524 | 524 | gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) ); |
525 | 525 | return; |
526 | 526 | } |
527 | 527 | |
528 | 528 | // Was this a start fresh? |
529 | - if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) { |
|
530 | - $statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
529 | + if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) { |
|
530 | + $statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
531 | 531 | } else { |
532 | - $statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
532 | + $statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
533 | 533 | } |
534 | 534 | |
535 | 535 | // Check if we have a template id |
536 | - if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) { |
|
536 | + if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) { |
|
537 | 537 | |
538 | - $template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : ''; |
|
538 | + $template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : ''; |
|
539 | 539 | |
540 | 540 | // now save template id |
541 | - $statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
541 | + $statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
542 | 542 | } |
543 | 543 | |
544 | 544 | |
545 | 545 | // save View Configuration metabox |
546 | - if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) { |
|
546 | + if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) { |
|
547 | 547 | |
548 | 548 | // template settings |
549 | - if( empty( $_POST['template_settings'] ) ) { |
|
550 | - $_POST['template_settings'] = array(); |
|
549 | + if ( empty( $_POST[ 'template_settings' ] ) ) { |
|
550 | + $_POST[ 'template_settings' ] = array(); |
|
551 | 551 | } |
552 | - $statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] ); |
|
552 | + $statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] ); |
|
553 | 553 | |
554 | 554 | $fields = array(); |
555 | 555 | |
556 | 556 | // Directory&single Visible Fields |
557 | - if( !empty( $preset_fields ) ) { |
|
557 | + if ( ! empty( $preset_fields ) ) { |
|
558 | 558 | |
559 | 559 | $fields = $preset_fields; |
560 | 560 | |
561 | - } elseif( !empty( $_POST['gv_fields'] ) ) { |
|
561 | + } elseif ( ! empty( $_POST[ 'gv_fields' ] ) ) { |
|
562 | 562 | $fields = _gravityview_process_posted_fields(); |
563 | 563 | } |
564 | 564 | |
565 | 565 | $fields = wp_slash( $fields ); |
566 | 566 | |
567 | - $statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
567 | + $statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
568 | 568 | |
569 | 569 | // Directory Visible Widgets |
570 | - if( empty( $_POST['widgets'] ) ) { |
|
571 | - $_POST['widgets'] = array(); |
|
570 | + if ( empty( $_POST[ 'widgets' ] ) ) { |
|
571 | + $_POST[ 'widgets' ] = array(); |
|
572 | 572 | } |
573 | - $statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] ); |
|
573 | + $statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] ); |
|
574 | 574 | |
575 | 575 | } // end save view configuration |
576 | 576 | |
@@ -580,7 +580,7 @@ discard block |
||
580 | 580 | * @param array $statii Array of statuses of the post meta saving processes. If saving worked, each key should be mapped to a value of the post ID (`directory_widgets` => `124`). If failed (or didn't change), the value will be false. |
581 | 581 | * @since 1.17.2 |
582 | 582 | */ |
583 | - do_action('gravityview_view_saved', $post_id, $statii ); |
|
583 | + do_action( 'gravityview_view_saved', $post_id, $statii ); |
|
584 | 584 | |
585 | 585 | gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) ); |
586 | 586 | } |
@@ -624,20 +624,20 @@ discard block |
||
624 | 624 | |
625 | 625 | $output = ''; |
626 | 626 | |
627 | - if( !empty( $fields ) ) { |
|
627 | + if ( ! empty( $fields ) ) { |
|
628 | 628 | |
629 | - foreach( $fields as $id => $details ) { |
|
629 | + foreach ( $fields as $id => $details ) { |
|
630 | 630 | |
631 | - if( in_array( $details['type'], (array) $blacklist_field_types ) ) { |
|
631 | + if ( in_array( $details[ 'type' ], (array)$blacklist_field_types ) ) { |
|
632 | 632 | continue; |
633 | 633 | } |
634 | 634 | |
635 | 635 | // Edit mode only allows editing the parent fields, not single inputs. |
636 | - if( $context === 'edit' && !empty( $details['parent'] ) ) { |
|
636 | + if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) { |
|
637 | 637 | continue; |
638 | 638 | } |
639 | 639 | |
640 | - $output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, $settings = array(), $form ); |
|
640 | + $output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, $settings = array(), $form ); |
|
641 | 641 | |
642 | 642 | } // End foreach |
643 | 643 | } |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | echo $output; |
646 | 646 | |
647 | 647 | // For the EDIT view we only want to allow the form fields. |
648 | - if( $context === 'edit' ) { |
|
648 | + if ( $context === 'edit' ) { |
|
649 | 649 | return; |
650 | 650 | } |
651 | 651 | |
@@ -669,16 +669,16 @@ discard block |
||
669 | 669 | $additional_fields = apply_filters( 'gravityview_additional_fields', array( |
670 | 670 | array( |
671 | 671 | 'label_text' => __( '+ Add All Fields', 'gravityview' ), |
672 | - 'desc' => __('Add all the available fields at once.', 'gravityview'), |
|
672 | + 'desc' => __( 'Add all the available fields at once.', 'gravityview' ), |
|
673 | 673 | 'field_id' => 'all-fields', |
674 | 674 | 'label_type' => 'field', |
675 | 675 | 'input_type' => NULL, |
676 | 676 | 'field_options' => NULL, |
677 | 677 | 'settings_html' => NULL, |
678 | 678 | ) |
679 | - )); |
|
679 | + ) ); |
|
680 | 680 | |
681 | - if( !empty( $additional_fields )) { |
|
681 | + if ( ! empty( $additional_fields ) ) { |
|
682 | 682 | foreach ( (array)$additional_fields as $item ) { |
683 | 683 | |
684 | 684 | // Prevent items from not having index set |
@@ -689,16 +689,16 @@ discard block |
||
689 | 689 | 'input_type' => NULL, |
690 | 690 | 'field_options' => NULL, |
691 | 691 | 'settings_html' => NULL, |
692 | - )); |
|
692 | + ) ); |
|
693 | 693 | |
694 | 694 | // Backward compat. |
695 | - if( !empty( $item['field_options'] ) ) { |
|
695 | + if ( ! empty( $item[ 'field_options' ] ) ) { |
|
696 | 696 | // Use settings_html from now on. |
697 | - $item['settings_html'] = $item['field_options']; |
|
697 | + $item[ 'settings_html' ] = $item[ 'field_options' ]; |
|
698 | 698 | } |
699 | 699 | |
700 | 700 | // Render a label for each of them |
701 | - echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form ); |
|
701 | + echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form ); |
|
702 | 702 | |
703 | 703 | } |
704 | 704 | } |
@@ -711,54 +711,54 @@ discard block |
||
711 | 711 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
712 | 712 | * @return array |
713 | 713 | */ |
714 | - function get_entry_default_fields($form, $zone) { |
|
714 | + function get_entry_default_fields( $form, $zone ) { |
|
715 | 715 | |
716 | 716 | $entry_default_fields = array(); |
717 | 717 | |
718 | - if( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
718 | + if ( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
719 | 719 | |
720 | 720 | $entry_default_fields = array( |
721 | 721 | 'id' => array( |
722 | - 'label' => __('Entry ID', 'gravityview'), |
|
722 | + 'label' => __( 'Entry ID', 'gravityview' ), |
|
723 | 723 | 'type' => 'id', |
724 | - 'desc' => __('The unique ID of the entry.', 'gravityview'), |
|
724 | + 'desc' => __( 'The unique ID of the entry.', 'gravityview' ), |
|
725 | 725 | ), |
726 | 726 | 'date_created' => array( |
727 | - 'label' => __('Entry Date', 'gravityview'), |
|
728 | - 'desc' => __('The date the entry was created.', 'gravityview'), |
|
727 | + 'label' => __( 'Entry Date', 'gravityview' ), |
|
728 | + 'desc' => __( 'The date the entry was created.', 'gravityview' ), |
|
729 | 729 | 'type' => 'date_created', |
730 | 730 | ), |
731 | 731 | 'source_url' => array( |
732 | - 'label' => __('Source URL', 'gravityview'), |
|
732 | + 'label' => __( 'Source URL', 'gravityview' ), |
|
733 | 733 | 'type' => 'source_url', |
734 | - 'desc' => __('The URL of the page where the form was submitted.', 'gravityview'), |
|
734 | + 'desc' => __( 'The URL of the page where the form was submitted.', 'gravityview' ), |
|
735 | 735 | ), |
736 | 736 | 'ip' => array( |
737 | - 'label' => __('User IP', 'gravityview'), |
|
737 | + 'label' => __( 'User IP', 'gravityview' ), |
|
738 | 738 | 'type' => 'ip', |
739 | - 'desc' => __('The IP Address of the user who created the entry.', 'gravityview'), |
|
739 | + 'desc' => __( 'The IP Address of the user who created the entry.', 'gravityview' ), |
|
740 | 740 | ), |
741 | 741 | 'created_by' => array( |
742 | - 'label' => __('User', 'gravityview'), |
|
742 | + 'label' => __( 'User', 'gravityview' ), |
|
743 | 743 | 'type' => 'created_by', |
744 | - 'desc' => __('Details of the logged-in user who created the entry (if any).', 'gravityview'), |
|
744 | + 'desc' => __( 'Details of the logged-in user who created the entry (if any).', 'gravityview' ), |
|
745 | 745 | ), |
746 | 746 | |
747 | 747 | /** |
748 | 748 | * @since 1.7.2 |
749 | 749 | */ |
750 | 750 | 'other_entries' => array( |
751 | - 'label' => __('Other Entries', 'gravityview'), |
|
751 | + 'label' => __( 'Other Entries', 'gravityview' ), |
|
752 | 752 | 'type' => 'other_entries', |
753 | - 'desc' => __('Display other entries created by the entry creator.', 'gravityview'), |
|
753 | + 'desc' => __( 'Display other entries created by the entry creator.', 'gravityview' ), |
|
754 | 754 | ), |
755 | 755 | ); |
756 | 756 | |
757 | - if( 'single' !== $zone) { |
|
757 | + if ( 'single' !== $zone ) { |
|
758 | 758 | |
759 | - $entry_default_fields['entry_link'] = array( |
|
760 | - 'label' => __('Link to Entry', 'gravityview'), |
|
761 | - 'desc' => __('A dedicated link to the single entry with customizable text.', 'gravityview'), |
|
759 | + $entry_default_fields[ 'entry_link' ] = array( |
|
760 | + 'label' => __( 'Link to Entry', 'gravityview' ), |
|
761 | + 'desc' => __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ), |
|
762 | 762 | 'type' => 'entry_link', |
763 | 763 | ); |
764 | 764 | } |
@@ -768,19 +768,19 @@ discard block |
||
768 | 768 | /** |
769 | 769 | * @since 1.2 |
770 | 770 | */ |
771 | - $entry_default_fields['custom'] = array( |
|
772 | - 'label' => __('Custom Content', 'gravityview'), |
|
771 | + $entry_default_fields[ 'custom' ] = array( |
|
772 | + 'label' => __( 'Custom Content', 'gravityview' ), |
|
773 | 773 | 'type' => 'custom', |
774 | - 'desc' => __('Insert custom text or HTML.', 'gravityview'), |
|
774 | + 'desc' => __( 'Insert custom text or HTML.', 'gravityview' ), |
|
775 | 775 | ); |
776 | 776 | |
777 | 777 | /** |
778 | 778 | * @since develop |
779 | 779 | */ |
780 | - $entry_default_fields['sequence'] = array( |
|
781 | - 'label' => __('Result Number', 'gravityview'), |
|
780 | + $entry_default_fields[ 'sequence' ] = array( |
|
781 | + 'label' => __( 'Result Number', 'gravityview' ), |
|
782 | 782 | 'type' => 'sequence', |
783 | - 'desc' => __('Display a sequential result number for each entry.', 'gravityview'), |
|
783 | + 'desc' => __( 'Display a sequential result number for each entry.', 'gravityview' ), |
|
784 | 784 | ); |
785 | 785 | |
786 | 786 | /** |
@@ -789,7 +789,7 @@ discard block |
||
789 | 789 | * @param string|array $form form_ID or form object |
790 | 790 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
791 | 791 | */ |
792 | - return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone); |
|
792 | + return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone ); |
|
793 | 793 | } |
794 | 794 | |
795 | 795 | /** |
@@ -800,7 +800,7 @@ discard block |
||
800 | 800 | */ |
801 | 801 | function get_available_fields( $form = '', $zone = NULL ) { |
802 | 802 | |
803 | - if( empty( $form ) ) { |
|
803 | + if ( empty( $form ) ) { |
|
804 | 804 | gravityview()->log->error( '$form is empty' ); |
805 | 805 | return array(); |
806 | 806 | } |
@@ -809,7 +809,7 @@ discard block |
||
809 | 809 | $fields = gravityview_get_form_fields( $form, true ); |
810 | 810 | |
811 | 811 | // get meta fields ( only if form was already created ) |
812 | - if( !is_array( $form ) ) { |
|
812 | + if ( ! is_array( $form ) ) { |
|
813 | 813 | $meta_fields = gravityview_get_entry_meta( $form ); |
814 | 814 | } else { |
815 | 815 | $meta_fields = array(); |
@@ -822,7 +822,7 @@ discard block |
||
822 | 822 | $fields = $fields + $meta_fields + $default_fields; |
823 | 823 | |
824 | 824 | // Move Custom Content to top |
825 | - $fields = array( 'custom' => $fields['custom'] ) + $fields; |
|
825 | + $fields = array( 'custom' => $fields[ 'custom' ] ) + $fields; |
|
826 | 826 | |
827 | 827 | return $fields; |
828 | 828 | } |
@@ -836,11 +836,11 @@ discard block |
||
836 | 836 | |
837 | 837 | $widgets = $this->get_registered_widgets(); |
838 | 838 | |
839 | - if( !empty( $widgets ) ) { |
|
839 | + if ( ! empty( $widgets ) ) { |
|
840 | 840 | |
841 | - foreach( $widgets as $id => $details ) { |
|
841 | + foreach ( $widgets as $id => $details ) { |
|
842 | 842 | |
843 | - echo new GravityView_Admin_View_Widget( $details['label'], $id, $details ); |
|
843 | + echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details ); |
|
844 | 844 | |
845 | 845 | } |
846 | 846 | } |
@@ -869,7 +869,7 @@ discard block |
||
869 | 869 | function render_active_areas( $template_id, $type, $zone, $rows, $values ) { |
870 | 870 | global $post; |
871 | 871 | |
872 | - if( $type === 'widget' ) { |
|
872 | + if ( $type === 'widget' ) { |
|
873 | 873 | $button_label = __( 'Add Widget', 'gravityview' ); |
874 | 874 | } else { |
875 | 875 | $button_label = __( 'Add Field', 'gravityview' ); |
@@ -881,10 +881,10 @@ discard block |
||
881 | 881 | $form_id = null; |
882 | 882 | |
883 | 883 | // if saved values, get available fields to label everyone |
884 | - if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) { |
|
884 | + if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) { |
|
885 | 885 | |
886 | - if( !empty( $_POST['template_id'] ) ) { |
|
887 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
886 | + if ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
887 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
888 | 888 | } else { |
889 | 889 | $form_id = $form = gravityview_get_form_id( $post->ID ); |
890 | 890 | } |
@@ -902,44 +902,44 @@ discard block |
||
902 | 902 | } |
903 | 903 | } |
904 | 904 | |
905 | - foreach( $rows as $row ) : |
|
906 | - foreach( $row as $col => $areas ) : |
|
907 | - $column = ($col == '2-2') ? '1-2' : $col; ?> |
|
905 | + foreach ( $rows as $row ) : |
|
906 | + foreach ( $row as $col => $areas ) : |
|
907 | + $column = ( $col == '2-2' ) ? '1-2' : $col; ?> |
|
908 | 908 | |
909 | 909 | <div class="gv-grid-col-<?php echo esc_attr( $column ); ?>"> |
910 | 910 | |
911 | - <?php foreach( $areas as $area ) : ?> |
|
911 | + <?php foreach ( $areas as $area ) : ?> |
|
912 | 912 | |
913 | - <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
914 | - <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>"> |
|
913 | + <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
914 | + <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"> |
|
915 | 915 | |
916 | 916 | <?php // render saved fields |
917 | 917 | |
918 | - if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) { |
|
918 | + if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) { |
|
919 | 919 | |
920 | - foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) { |
|
920 | + foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) { |
|
921 | 921 | |
922 | 922 | // Maybe has a form ID |
923 | - $form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id']; |
|
923 | + $form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ]; |
|
924 | 924 | |
925 | 925 | $input_type = NULL; |
926 | 926 | |
927 | 927 | if ( $form_id ) { |
928 | - $original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ; |
|
928 | + $original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false; |
|
929 | 929 | } else { |
930 | - $original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ; |
|
930 | + $original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false; |
|
931 | 931 | } |
932 | 932 | |
933 | - if ( !$original_item ) { |
|
934 | - gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) ); |
|
933 | + if ( ! $original_item ) { |
|
934 | + gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array( ' data' => array( 'available_items' => $available_items, 'field' => $field ) ) ); |
|
935 | 935 | |
936 | 936 | $original_item = $field; |
937 | 937 | } else { |
938 | - $input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL; |
|
938 | + $input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL; |
|
939 | 939 | } |
940 | 940 | |
941 | 941 | // Field options dialog box |
942 | - $field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field['id'], $original_item['label'], $zone .'_'. $area['areaid'], $input_type, $uniqid, $field, $zone, $original_item ); |
|
942 | + $field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field[ 'id' ], $original_item[ 'label' ], $zone . '_' . $area[ 'areaid' ], $input_type, $uniqid, $field, $zone, $original_item ); |
|
943 | 943 | |
944 | 944 | $item = array( |
945 | 945 | 'input_type' => $input_type, |
@@ -952,23 +952,23 @@ discard block |
||
952 | 952 | $item = wp_parse_args( $item, $original_item ); |
953 | 953 | } |
954 | 954 | |
955 | - switch( $type ) { |
|
955 | + switch ( $type ) { |
|
956 | 956 | case 'widget': |
957 | - echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field ); |
|
957 | + echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field ); |
|
958 | 958 | break; |
959 | 959 | default: |
960 | - echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id ); |
|
960 | + echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id ); |
|
961 | 961 | } |
962 | 962 | } |
963 | 963 | |
964 | 964 | } // End if zone is not empty ?> |
965 | 965 | |
966 | - <span class="drop-message"><?php echo sprintf(esc_attr__('"+ %s" or drag existing %ss here.', 'gravityview'), $button_label, $type ); ?></span> |
|
966 | + <span class="drop-message"><?php echo sprintf( esc_attr__( '"+ %s" or drag existing %ss here.', 'gravityview' ), $button_label, $type ); ?></span> |
|
967 | 967 | </div> |
968 | 968 | <div class="gv-droppable-area-action"> |
969 | - <a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ '.esc_html( $button_label ); ?></a> |
|
969 | + <a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ ' . esc_html( $button_label ); ?></a> |
|
970 | 970 | |
971 | - <p class="gv-droppable-area-title"><strong><?php echo esc_html( $area['title'] ); ?></strong><?php if( !empty( $area['subtitle'] ) ) { ?><span class="gv-droppable-area-subtitle"> – <?php echo esc_html( $area['subtitle'] ); ?></span><?php } ?></p> |
|
971 | + <p class="gv-droppable-area-title"><strong><?php echo esc_html( $area[ 'title' ] ); ?></strong><?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?><span class="gv-droppable-area-subtitle"> – <?php echo esc_html( $area[ 'subtitle' ] ); ?></span><?php } ?></p> |
|
972 | 972 | </div> |
973 | 973 | </div> |
974 | 974 | |
@@ -991,7 +991,7 @@ discard block |
||
991 | 991 | $default_widget_areas = \GV\Widget::get_default_widget_areas(); |
992 | 992 | |
993 | 993 | $widgets = array(); |
994 | - if( !empty( $post_id ) ) { |
|
994 | + if ( ! empty( $post_id ) ) { |
|
995 | 995 | $widgets = gravityview_get_directory_widgets( $post_id ); |
996 | 996 | } |
997 | 997 | |
@@ -1024,7 +1024,7 @@ discard block |
||
1024 | 1024 | // list of available fields to be shown in the popup |
1025 | 1025 | $forms = gravityview_get_forms( 'any' ); |
1026 | 1026 | |
1027 | - $form_ids = array_map( function ($form) { return $form['id']; }, $forms); |
|
1027 | + $form_ids = array_map( function( $form ) { return $form[ 'id' ]; }, $forms ); |
|
1028 | 1028 | |
1029 | 1029 | foreach ( $form_ids as $form_id ) { |
1030 | 1030 | $filter_field_id = sprintf( 'gv-field-filter-%s-%d', $context, $form_id ); |
@@ -1037,7 +1037,7 @@ discard block |
||
1037 | 1037 | </div> |
1038 | 1038 | |
1039 | 1039 | <div id="available-fields-<?php echo $filter_field_id; ?>" aria-live="polite" role="listbox"> |
1040 | - <?php do_action('gravityview_render_available_fields', $form_id, $context ); ?> |
|
1040 | + <?php do_action( 'gravityview_render_available_fields', $form_id, $context ); ?> |
|
1041 | 1041 | </div> |
1042 | 1042 | |
1043 | 1043 | <div class="gv-no-results hidden description"><?php esc_html_e( 'No fields were found matching the search.', 'gravityview' ); ?></div> |
@@ -1056,7 +1056,7 @@ discard block |
||
1056 | 1056 | * @return string HTML of the active areas |
1057 | 1057 | */ |
1058 | 1058 | function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) { |
1059 | - if( empty( $template_id ) ) { |
|
1059 | + if ( empty( $template_id ) ) { |
|
1060 | 1060 | gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) ); |
1061 | 1061 | return ''; |
1062 | 1062 | } |
@@ -1070,12 +1070,12 @@ discard block |
||
1070 | 1070 | */ |
1071 | 1071 | $template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context ); |
1072 | 1072 | |
1073 | - if( empty( $template_areas ) ) { |
|
1073 | + if ( empty( $template_areas ) ) { |
|
1074 | 1074 | |
1075 | 1075 | gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) ); |
1076 | 1076 | $output = '<div>'; |
1077 | - $output .= '<h2 class="description" style="font-size: 16px; margin:0">'. sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>'.$template_id.'</em>' ) .'</h2>'; |
|
1078 | - $output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">'.esc_html__('The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview').'</p>'; |
|
1077 | + $output .= '<h2 class="description" style="font-size: 16px; margin:0">' . sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>' . $template_id . '</em>' ) . '</h2>'; |
|
1078 | + $output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">' . esc_html__( 'The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview' ) . '</p>'; |
|
1079 | 1079 | $output .= '</div>'; |
1080 | 1080 | } else { |
1081 | 1081 | |
@@ -1090,7 +1090,7 @@ discard block |
||
1090 | 1090 | |
1091 | 1091 | } |
1092 | 1092 | |
1093 | - if( $echo ) { |
|
1093 | + if ( $echo ) { |
|
1094 | 1094 | echo $output; |
1095 | 1095 | } |
1096 | 1096 | |
@@ -1110,32 +1110,32 @@ discard block |
||
1110 | 1110 | $is_widgets_page = ( $pagenow === 'widgets.php' ); |
1111 | 1111 | |
1112 | 1112 | // Add the GV font (with the Astronaut) |
1113 | - wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version ); |
|
1113 | + wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), \GV\Plugin::$version ); |
|
1114 | 1114 | wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version ); |
1115 | 1115 | |
1116 | - wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true ); |
|
1116 | + wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), \GV\Plugin::$version, true ); |
|
1117 | 1117 | |
1118 | - if( GFForms::get_page() === 'form_list' ) { |
|
1118 | + if ( GFForms::get_page() === 'form_list' ) { |
|
1119 | 1119 | wp_enqueue_style( 'gravityview_views_styles' ); |
1120 | 1120 | return; |
1121 | 1121 | } |
1122 | 1122 | |
1123 | 1123 | // Don't process any scripts below here if it's not a GravityView page. |
1124 | - if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1124 | + if ( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1125 | 1125 | return; |
1126 | 1126 | } |
1127 | 1127 | |
1128 | 1128 | wp_enqueue_script( 'jquery-ui-datepicker' ); |
1129 | - wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version ); |
|
1129 | + wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), \GV\Plugin::$version ); |
|
1130 | 1130 | |
1131 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
1131 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
1132 | 1132 | |
1133 | 1133 | //enqueue scripts |
1134 | 1134 | wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version ); |
1135 | 1135 | |
1136 | - wp_localize_script('gravityview_views_scripts', 'gvGlobals', array( |
|
1136 | + wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array( |
|
1137 | 1137 | 'cookiepath' => COOKIEPATH, |
1138 | - 'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ), |
|
1138 | + 'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ), |
|
1139 | 1139 | 'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ), |
1140 | 1140 | 'label_viewname' => __( 'Enter View name here', 'gravityview' ), |
1141 | 1141 | 'label_close' => __( 'Close', 'gravityview' ), |
@@ -1147,7 +1147,7 @@ discard block |
||
1147 | 1147 | 'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ), |
1148 | 1148 | 'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ), |
1149 | 1149 | 'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ), |
1150 | - )); |
|
1150 | + ) ); |
|
1151 | 1151 | |
1152 | 1152 | wp_enqueue_style( 'gravityview_views_styles' ); |
1153 | 1153 | |
@@ -1174,7 +1174,7 @@ discard block |
||
1174 | 1174 | ); |
1175 | 1175 | |
1176 | 1176 | if ( wp_is_mobile() ) { |
1177 | - $scripts[] = 'jquery-touch-punch'; |
|
1177 | + $scripts[ ] = 'jquery-touch-punch'; |
|
1178 | 1178 | } |
1179 | 1179 | |
1180 | 1180 | wp_enqueue_script( $scripts ); |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | private function __construct() {} |
86 | 86 | |
87 | 87 | private function initialize() { |
88 | - add_action( 'wp', array( $this, 'parse_content'), 11 ); |
|
88 | + add_action( 'wp', array( $this, 'parse_content' ), 11 ); |
|
89 | 89 | add_filter( 'parse_query', array( $this, 'parse_query_fix_frontpage' ), 10 ); |
90 | - add_action( 'template_redirect', array( $this, 'set_entry_data'), 1 ); |
|
90 | + add_action( 'template_redirect', array( $this, 'set_entry_data' ), 1 ); |
|
91 | 91 | |
92 | 92 | // Enqueue scripts and styles after GravityView_Template::register_styles() |
93 | 93 | add_action( 'wp_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 20 ); |
@@ -236,12 +236,12 @@ discard block |
||
236 | 236 | |
237 | 237 | $this->context_view_id = $view_id; |
238 | 238 | |
239 | - } elseif ( isset( $_GET['gvid'] ) && $multiple_views ) { |
|
239 | + } elseif ( isset( $_GET[ 'gvid' ] ) && $multiple_views ) { |
|
240 | 240 | /** |
241 | 241 | * used on a has_multiple_views context |
242 | 242 | * @see GravityView_API::entry_link |
243 | 243 | */ |
244 | - $this->context_view_id = $_GET['gvid']; |
|
244 | + $this->context_view_id = $_GET[ 'gvid' ]; |
|
245 | 245 | |
246 | 246 | } elseif ( ! $multiple_views ) { |
247 | 247 | $array_keys = array_keys( $this->getGvOutputData()->get_views() ); |
@@ -278,25 +278,25 @@ discard block |
||
278 | 278 | global $wp_rewrite; |
279 | 279 | |
280 | 280 | $is_front_page = ( $query->is_home || $query->is_page ); |
281 | - $show_on_front = ( 'page' === get_option('show_on_front') ); |
|
282 | - $front_page_id = get_option('page_on_front'); |
|
281 | + $show_on_front = ( 'page' === get_option( 'show_on_front' ) ); |
|
282 | + $front_page_id = get_option( 'page_on_front' ); |
|
283 | 283 | |
284 | - if ( $is_front_page && $show_on_front && $front_page_id ) { |
|
284 | + if ( $is_front_page && $show_on_front && $front_page_id ) { |
|
285 | 285 | |
286 | 286 | // Force to be an array, potentially a query string ( entry=16 ) |
287 | 287 | $_query = wp_parse_args( $query->query ); |
288 | 288 | |
289 | 289 | // pagename can be set and empty depending on matched rewrite rules. Ignore an empty pagename. |
290 | - if ( isset( $_query['pagename'] ) && '' === $_query['pagename'] ) { |
|
291 | - unset( $_query['pagename'] ); |
|
290 | + if ( isset( $_query[ 'pagename' ] ) && '' === $_query[ 'pagename' ] ) { |
|
291 | + unset( $_query[ 'pagename' ] ); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | // this is where will break from core wordpress |
295 | 295 | /** @internal Don't use this filter; it will be unnecessary soon - it's just a patch for specific use case */ |
296 | 296 | $ignore = apply_filters( 'gravityview/internal/ignored_endpoints', array( 'preview', 'page', 'paged', 'cpage' ), $query ); |
297 | 297 | $endpoints = \GV\Utils::get( $wp_rewrite, 'endpoints' ); |
298 | - foreach ( (array) $endpoints as $endpoint ) { |
|
299 | - $ignore[] = $endpoint[1]; |
|
298 | + foreach ( (array)$endpoints as $endpoint ) { |
|
299 | + $ignore[ ] = $endpoint[ 1 ]; |
|
300 | 300 | } |
301 | 301 | unset( $endpoints ); |
302 | 302 | |
@@ -306,21 +306,21 @@ discard block |
||
306 | 306 | // - The query includes keys that are associated with registered endpoints. `entry`, for example. |
307 | 307 | if ( empty( $_query ) || ! array_diff( array_keys( $_query ), $ignore ) ) { |
308 | 308 | |
309 | - $qv =& $query->query_vars; |
|
309 | + $qv = & $query->query_vars; |
|
310 | 310 | |
311 | 311 | // Prevent redirect when on the single entry endpoint |
312 | - if( self::is_single_entry() ) { |
|
312 | + if ( self::is_single_entry() ) { |
|
313 | 313 | add_filter( 'redirect_canonical', '__return_false' ); |
314 | 314 | } |
315 | 315 | |
316 | 316 | $query->is_page = true; |
317 | 317 | $query->is_home = false; |
318 | - $qv['page_id'] = $front_page_id; |
|
318 | + $qv[ 'page_id' ] = $front_page_id; |
|
319 | 319 | |
320 | 320 | // Correct <!--nextpage--> for page_on_front |
321 | - if ( ! empty( $qv['paged'] ) ) { |
|
322 | - $qv['page'] = $qv['paged']; |
|
323 | - unset( $qv['paged'] ); |
|
321 | + if ( ! empty( $qv[ 'paged' ] ) ) { |
|
322 | + $qv[ 'page' ] = $qv[ 'paged' ]; |
|
323 | + unset( $qv[ 'paged' ] ); |
|
324 | 324 | } |
325 | 325 | } |
326 | 326 | |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | |
351 | 351 | $this->setIsGravityviewPostType( get_post_type( $post ) === 'gravityview' ); |
352 | 352 | |
353 | - $post_id = $this->getPostId() ? $this->getPostId() : (isset( $post ) ? $post->ID : null ); |
|
353 | + $post_id = $this->getPostId() ? $this->getPostId() : ( isset( $post ) ? $post->ID : null ); |
|
354 | 354 | $this->setPostId( $post_id ); |
355 | 355 | $post_has_shortcode = ! empty( $post->post_content ) ? gravityview_has_shortcode_r( $post->post_content, 'gravityview' ) : false; |
356 | 356 | $this->setPostHasShortcode( $this->isGravityviewPostType() ? null : ! empty( $post_has_shortcode ) ); |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | |
387 | 387 | $search_method = GravityView_Widget_Search::getInstance()->get_search_method(); |
388 | 388 | |
389 | - if( 'post' === $search_method ) { |
|
389 | + if ( 'post' === $search_method ) { |
|
390 | 390 | $get = $_POST; |
391 | 391 | } else { |
392 | 392 | $get = $_GET; |
@@ -443,20 +443,20 @@ discard block |
||
443 | 443 | * @param boolean $in_the_loop Whether to apply the filter to the menu title and the meta tag <title> - outside the loop |
444 | 444 | * @param array $entry Current entry |
445 | 445 | */ |
446 | - $apply_outside_loop = apply_filters( 'gravityview/single/title/out_loop' , in_the_loop(), $entry ); |
|
446 | + $apply_outside_loop = apply_filters( 'gravityview/single/title/out_loop', in_the_loop(), $entry ); |
|
447 | 447 | |
448 | 448 | if ( ! $apply_outside_loop ) { |
449 | 449 | return $title; |
450 | 450 | } |
451 | 451 | |
452 | 452 | // User reported WooCommerce doesn't pass two args. |
453 | - if ( empty( $passed_post_id ) ) { |
|
453 | + if ( empty( $passed_post_id ) ) { |
|
454 | 454 | return $title; |
455 | 455 | } |
456 | 456 | |
457 | 457 | // Don't modify the title for anything other than the current view/post. |
458 | 458 | // This is true for embedded shortcodes and Views. |
459 | - if ( is_object( $post ) && (int) $post->ID !== (int) $passed_post_id ) { |
|
459 | + if ( is_object( $post ) && (int)$post->ID !== (int)$passed_post_id ) { |
|
460 | 460 | return $title; |
461 | 461 | } |
462 | 462 | |
@@ -468,7 +468,7 @@ discard block |
||
468 | 468 | $view_meta = $this->getGvOutputData()->get_view( $context_view_id ); |
469 | 469 | } else { |
470 | 470 | foreach ( $this->getGvOutputData()->get_views() as $view_id => $view_data ) { |
471 | - if ( intval( $view_data['form_id'] ) === intval( $entry['form_id'] ) ) { |
|
471 | + if ( intval( $view_data[ 'form_id' ] ) === intval( $entry[ 'form_id' ] ) ) { |
|
472 | 472 | $view_meta = $view_data; |
473 | 473 | break; |
474 | 474 | } |
@@ -476,12 +476,12 @@ discard block |
||
476 | 476 | } |
477 | 477 | |
478 | 478 | /** Deprecated stuff in the future. See the branch above. */ |
479 | - if ( ! empty( $view_meta['atts']['single_title'] ) ) { |
|
479 | + if ( ! empty( $view_meta[ 'atts' ][ 'single_title' ] ) ) { |
|
480 | 480 | |
481 | - $title = $view_meta['atts']['single_title']; |
|
481 | + $title = $view_meta[ 'atts' ][ 'single_title' ]; |
|
482 | 482 | |
483 | 483 | // We are allowing HTML in the fields, so no escaping the output |
484 | - $title = GravityView_API::replace_variables( $title, $view_meta['form'], $entry ); |
|
484 | + $title = GravityView_API::replace_variables( $title, $view_meta[ 'form' ], $entry ); |
|
485 | 485 | |
486 | 486 | $title = do_shortcode( $title ); |
487 | 487 | } |
@@ -552,7 +552,7 @@ discard block |
||
552 | 552 | |
553 | 553 | $context = GravityView_View::getInstance()->getContext(); |
554 | 554 | |
555 | - switch( $context ) { |
|
555 | + switch ( $context ) { |
|
556 | 556 | case 'directory': |
557 | 557 | $tab = __( 'Multiple Entries', 'gravityview' ); |
558 | 558 | break; |
@@ -566,12 +566,12 @@ discard block |
||
566 | 566 | } |
567 | 567 | |
568 | 568 | |
569 | - $title = sprintf( esc_html_x('The %s layout has not been configured.', 'Displayed when a View is not configured. %s is replaced by the tab label', 'gravityview' ), $tab ); |
|
569 | + $title = sprintf( esc_html_x( 'The %s layout has not been configured.', 'Displayed when a View is not configured. %s is replaced by the tab label', 'gravityview' ), $tab ); |
|
570 | 570 | $edit_link = admin_url( sprintf( 'post.php?post=%d&action=edit#%s-view', $view_id, $context ) ); |
571 | - $action_text = sprintf( esc_html__('Add fields to %s', 'gravityview' ), $tab ); |
|
571 | + $action_text = sprintf( esc_html__( 'Add fields to %s', 'gravityview' ), $tab ); |
|
572 | 572 | $message = esc_html__( 'You can only see this message because you are able to edit this View.', 'gravityview' ); |
573 | 573 | |
574 | - $image = sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', $tab, esc_url(plugins_url( sprintf( 'assets/images/tab-%s.png', $context ), GRAVITYVIEW_FILE ) ) ); |
|
574 | + $image = sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', $tab, esc_url( plugins_url( sprintf( 'assets/images/tab-%s.png', $context ), GRAVITYVIEW_FILE ) ) ); |
|
575 | 575 | $output = sprintf( '<h3>%s <strong><a href="%s">%s</a></strong></h3><p>%s</p>', $title, esc_url( $edit_link ), $action_text, $message ); |
576 | 576 | |
577 | 577 | echo GVCommon::generate_notice( $output . $image, 'gv-error error', 'edit_gravityview', $view_id ); |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | $direct_access = apply_filters( 'gravityview_direct_access', true, $view->ID ); |
620 | 620 | $embed_only = $view->settings->get( 'embed_only' ); |
621 | 621 | |
622 | - if( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) { |
|
622 | + if ( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) { |
|
623 | 623 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
624 | 624 | } |
625 | 625 | |
@@ -666,7 +666,7 @@ discard block |
||
666 | 666 | $datetime_format = 'Y-m-d H:i:s'; |
667 | 667 | $search_is_outside_view_bounds = false; |
668 | 668 | |
669 | - if( ! empty( $search_criteria[ $key ] ) ) { |
|
669 | + if ( ! empty( $search_criteria[ $key ] ) ) { |
|
670 | 670 | |
671 | 671 | $search_date = strtotime( $search_criteria[ $key ] ); |
672 | 672 | |
@@ -694,14 +694,14 @@ discard block |
||
694 | 694 | if ( empty( $search_criteria[ $key ] ) || $search_is_outside_view_bounds ) { |
695 | 695 | |
696 | 696 | // Then we override the search and re-set the start date |
697 | - $return_search_criteria[ $key ] = date_i18n( $datetime_format , $date, true ); |
|
697 | + $return_search_criteria[ $key ] = date_i18n( $datetime_format, $date, true ); |
|
698 | 698 | } |
699 | 699 | } |
700 | 700 | } |
701 | 701 | |
702 | - if( isset( $return_search_criteria['start_date'] ) && isset( $return_search_criteria['end_date'] ) ) { |
|
702 | + if ( isset( $return_search_criteria[ 'start_date' ] ) && isset( $return_search_criteria[ 'end_date' ] ) ) { |
|
703 | 703 | // The start date is AFTER the end date. This will result in no results, but let's not force the issue. |
704 | - if ( strtotime( $return_search_criteria['start_date'] ) > strtotime( $return_search_criteria['end_date'] ) ) { |
|
704 | + if ( strtotime( $return_search_criteria[ 'start_date' ] ) > strtotime( $return_search_criteria[ 'end_date' ] ) ) { |
|
705 | 705 | gravityview()->log->error( 'Invalid search: the start date is after the end date.', array( 'data' => $return_search_criteria ) ); |
706 | 706 | } |
707 | 707 | } |
@@ -720,19 +720,19 @@ discard block |
||
720 | 720 | public static function process_search_only_approved( $args, $search_criteria ) { |
721 | 721 | |
722 | 722 | /** @since 1.19 */ |
723 | - if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
723 | + if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
724 | 724 | gravityview()->log->debug( 'User can moderate entries; showing all approval statuses' ); |
725 | 725 | return $search_criteria; |
726 | 726 | } |
727 | 727 | |
728 | - if ( ! empty( $args['show_only_approved'] ) ) { |
|
728 | + if ( ! empty( $args[ 'show_only_approved' ] ) ) { |
|
729 | 729 | |
730 | - $search_criteria['field_filters'][] = array( |
|
730 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
731 | 731 | 'key' => GravityView_Entry_Approval::meta_key, |
732 | 732 | 'value' => GravityView_Entry_Approval_Status::APPROVED |
733 | 733 | ); |
734 | 734 | |
735 | - $search_criteria['field_filters']['mode'] = 'all'; // force all the criterias to be met |
|
735 | + $search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; // force all the criterias to be met |
|
736 | 736 | |
737 | 737 | gravityview()->log->debug( '[process_search_only_approved] Search Criteria if show only approved: ', array( 'data' => $search_criteria ) ); |
738 | 738 | } |
@@ -759,18 +759,18 @@ discard block |
||
759 | 759 | */ |
760 | 760 | public static function is_entry_approved( $entry, $args = array() ) { |
761 | 761 | |
762 | - if ( empty( $entry['id'] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args['show_only_approved'] ) ) { |
|
762 | + if ( empty( $entry[ 'id' ] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args[ 'show_only_approved' ] ) ) { |
|
763 | 763 | // is implicitly approved if entry is null or View settings doesn't require to check for approval |
764 | 764 | return true; |
765 | 765 | } |
766 | 766 | |
767 | 767 | /** @since 1.19 */ |
768 | - if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
768 | + if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
769 | 769 | gravityview()->log->debug( 'User can moderate entries, so entry is approved for viewing' ); |
770 | 770 | return true; |
771 | 771 | } |
772 | 772 | |
773 | - $is_approved = gform_get_meta( $entry['id'], GravityView_Entry_Approval::meta_key ); |
|
773 | + $is_approved = gform_get_meta( $entry[ 'id' ], GravityView_Entry_Approval::meta_key ); |
|
774 | 774 | |
775 | 775 | return GravityView_Entry_Approval_Status::is_approved( $is_approved ); |
776 | 776 | } |
@@ -794,7 +794,7 @@ discard block |
||
794 | 794 | * Compatibility with filters hooking in `gravityview_search_criteria` instead of `gravityview_fe_search_criteria`. |
795 | 795 | */ |
796 | 796 | $criteria = apply_filters( 'gravityview_search_criteria', array(), array( $form_id ), \GV\Utils::get( $args, 'id' ) ); |
797 | - $search_criteria = isset( $criteria['search_criteria'] ) ? $criteria['search_criteria'] : array( 'field_filters' => array() ); |
|
797 | + $search_criteria = isset( $criteria[ 'search_criteria' ] ) ? $criteria[ 'search_criteria' ] : array( 'field_filters' => array() ); |
|
798 | 798 | |
799 | 799 | /** |
800 | 800 | * @filter `gravityview_fe_search_criteria` Modify the search criteria |
@@ -810,29 +810,29 @@ discard block |
||
810 | 810 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after hook gravityview_fe_search_criteria: ', array( 'data' =>$search_criteria ) ); |
811 | 811 | |
812 | 812 | // implicity search |
813 | - if ( ! empty( $args['search_value'] ) ) { |
|
813 | + if ( ! empty( $args[ 'search_value' ] ) ) { |
|
814 | 814 | |
815 | 815 | // Search operator options. Options: `is` or `contains` |
816 | - $operator = ! empty( $args['search_operator'] ) && in_array( $args['search_operator'], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args['search_operator'] : 'contains'; |
|
816 | + $operator = ! empty( $args[ 'search_operator' ] ) && in_array( $args[ 'search_operator' ], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args[ 'search_operator' ] : 'contains'; |
|
817 | 817 | |
818 | - $search_criteria['field_filters'][] = array( |
|
818 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
819 | 819 | 'key' => \GV\Utils::_GET( 'search_field', \GV\Utils::get( $args, 'search_field' ) ), // The field ID to search |
820 | - 'value' => _wp_specialchars( $args['search_value'] ), // The value to search. Encode ampersands but not quotes. |
|
820 | + 'value' => _wp_specialchars( $args[ 'search_value' ] ), // The value to search. Encode ampersands but not quotes. |
|
821 | 821 | 'operator' => $operator, |
822 | 822 | ); |
823 | 823 | |
824 | 824 | // Lock search mode to "all" with implicit presearch filter. |
825 | - $search_criteria['field_filters']['mode'] = 'all'; |
|
825 | + $search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; |
|
826 | 826 | } |
827 | 827 | |
828 | - if( $search_criteria !== $original_search_criteria ) { |
|
828 | + if ( $search_criteria !== $original_search_criteria ) { |
|
829 | 829 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after implicity search: ', array( 'data' => $search_criteria ) ); |
830 | 830 | } |
831 | 831 | |
832 | 832 | // Handle setting date range |
833 | 833 | $search_criteria = self::process_search_dates( $args, $search_criteria ); |
834 | 834 | |
835 | - if( $search_criteria !== $original_search_criteria ) { |
|
835 | + if ( $search_criteria !== $original_search_criteria ) { |
|
836 | 836 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after date params: ', array( 'data' => $search_criteria ) ); |
837 | 837 | } |
838 | 838 | |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | * @filter `gravityview_status` Modify entry status requirements to be included in search results. |
844 | 844 | * @param string $status Default: `active`. Accepts all Gravity Forms entry statuses, including `spam` and `trash` |
845 | 845 | */ |
846 | - $search_criteria['status'] = apply_filters( 'gravityview_status', 'active', $args ); |
|
846 | + $search_criteria[ 'status' ] = apply_filters( 'gravityview_status', 'active', $args ); |
|
847 | 847 | |
848 | 848 | return $search_criteria; |
849 | 849 | } |
@@ -956,7 +956,7 @@ discard block |
||
956 | 956 | 'search_criteria' => $search_criteria, |
957 | 957 | 'sorting' => self::updateViewSorting( $args, $form_id ), |
958 | 958 | 'paging' => $paging, |
959 | - 'cache' => isset( $args['cache'] ) ? $args['cache'] : true, |
|
959 | + 'cache' => isset( $args[ 'cache' ] ) ? $args[ 'cache' ] : true, |
|
960 | 960 | ); |
961 | 961 | |
962 | 962 | /** |
@@ -981,7 +981,7 @@ discard block |
||
981 | 981 | * @param array $parameters Array with `search_criteria`, `sorting` and `paging` keys. |
982 | 982 | * @param array $args View configuration args. |
983 | 983 | */ |
984 | - $parameters = apply_filters( 'gravityview_get_entries_'.\GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id ); |
|
984 | + $parameters = apply_filters( 'gravityview_get_entries_' . \GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id ); |
|
985 | 985 | |
986 | 986 | gravityview()->log->debug( '$parameters passed to gravityview_get_entries(): ', array( 'data' => $parameters ) ); |
987 | 987 | |
@@ -1006,17 +1006,17 @@ discard block |
||
1006 | 1006 | $default_page_size = apply_filters( 'gravityview_default_page_size', 25 ); |
1007 | 1007 | |
1008 | 1008 | // Paging & offset |
1009 | - $page_size = ! empty( $args['page_size'] ) ? intval( $args['page_size'] ) : $default_page_size; |
|
1009 | + $page_size = ! empty( $args[ 'page_size' ] ) ? intval( $args[ 'page_size' ] ) : $default_page_size; |
|
1010 | 1010 | |
1011 | 1011 | if ( -1 === $page_size ) { |
1012 | 1012 | $page_size = PHP_INT_MAX; |
1013 | 1013 | } |
1014 | 1014 | |
1015 | - $curr_page = empty( $_GET['pagenum'] ) ? 1 : intval( $_GET['pagenum'] ); |
|
1015 | + $curr_page = empty( $_GET[ 'pagenum' ] ) ? 1 : intval( $_GET[ 'pagenum' ] ); |
|
1016 | 1016 | $offset = ( $curr_page - 1 ) * $page_size; |
1017 | 1017 | |
1018 | - if ( ! empty( $args['offset'] ) ) { |
|
1019 | - $offset += intval( $args['offset'] ); |
|
1018 | + if ( ! empty( $args[ 'offset' ] ) ) { |
|
1019 | + $offset += intval( $args[ 'offset' ] ); |
|
1020 | 1020 | } |
1021 | 1021 | |
1022 | 1022 | $paging = array( |
@@ -1040,8 +1040,8 @@ discard block |
||
1040 | 1040 | */ |
1041 | 1041 | public static function updateViewSorting( $args, $form_id ) { |
1042 | 1042 | $sorting = array(); |
1043 | - $sort_field_id = isset( $_GET['sort'] ) ? $_GET['sort'] : \GV\Utils::get( $args, 'sort_field' ); |
|
1044 | - $sort_direction = isset( $_GET['dir'] ) ? $_GET['dir'] : \GV\Utils::get( $args, 'sort_direction' ); |
|
1043 | + $sort_field_id = isset( $_GET[ 'sort' ] ) ? $_GET[ 'sort' ] : \GV\Utils::get( $args, 'sort_field' ); |
|
1044 | + $sort_direction = isset( $_GET[ 'dir' ] ) ? $_GET[ 'dir' ] : \GV\Utils::get( $args, 'sort_direction' ); |
|
1045 | 1045 | |
1046 | 1046 | if ( is_array( $sort_field_id ) ) { |
1047 | 1047 | $sort_field_id = array_pop( $sort_field_id ); |
@@ -1072,10 +1072,10 @@ discard block |
||
1072 | 1072 | $form = GFAPI::get_form( $form_id ); |
1073 | 1073 | |
1074 | 1074 | // Get the first GF_Field field ID, set as the key for entry randomization |
1075 | - if ( ! empty( $form['fields'] ) ) { |
|
1075 | + if ( ! empty( $form[ 'fields' ] ) ) { |
|
1076 | 1076 | |
1077 | 1077 | /** @var GF_Field $field */ |
1078 | - foreach ( $form['fields'] as $field ) { |
|
1078 | + foreach ( $form[ 'fields' ] as $field ) { |
|
1079 | 1079 | if ( ! is_a( $field, 'GF_Field' ) ) { |
1080 | 1080 | continue; |
1081 | 1081 | } |
@@ -1120,7 +1120,7 @@ discard block |
||
1120 | 1120 | if ( is_array( $sort_field_id ) ) { |
1121 | 1121 | $modified_ids = array(); |
1122 | 1122 | foreach ( $sort_field_id as $_sort_field_id ) { |
1123 | - $modified_ids []= self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id ); |
|
1123 | + $modified_ids [ ] = self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id ); |
|
1124 | 1124 | } |
1125 | 1125 | return $modified_ids; |
1126 | 1126 | } |
@@ -1129,11 +1129,11 @@ discard block |
||
1129 | 1129 | |
1130 | 1130 | $sort_field = GFFormsModel::get_field( $form, $sort_field_id ); |
1131 | 1131 | |
1132 | - if( ! $sort_field ) { |
|
1132 | + if ( ! $sort_field ) { |
|
1133 | 1133 | return $sort_field_id; |
1134 | 1134 | } |
1135 | 1135 | |
1136 | - switch ( $sort_field['type'] ) { |
|
1136 | + switch ( $sort_field[ 'type' ] ) { |
|
1137 | 1137 | |
1138 | 1138 | case 'address': |
1139 | 1139 | // Sorting by full address |
@@ -1150,7 +1150,7 @@ discard block |
||
1150 | 1150 | */ |
1151 | 1151 | $address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id ); |
1152 | 1152 | |
1153 | - switch( strtolower( $address_part ) ){ |
|
1153 | + switch ( strtolower( $address_part ) ) { |
|
1154 | 1154 | case 'street': |
1155 | 1155 | $sort_field_id .= '.1'; |
1156 | 1156 | break; |
@@ -1223,7 +1223,7 @@ discard block |
||
1223 | 1223 | if ( ! class_exists( '\GV\Entry' ) ) { |
1224 | 1224 | |
1225 | 1225 | // Not using gravityview()->log->error(), since that may not exist yet either! |
1226 | - do_action( 'gravityview_log_error', '\GV\Entry not defined yet. Backtrace: ' . wp_debug_backtrace_summary() ); |
|
1226 | + do_action( 'gravityview_log_error', '\GV\Entry not defined yet. Backtrace: ' . wp_debug_backtrace_summary() ); |
|
1227 | 1227 | |
1228 | 1228 | return null; |
1229 | 1229 | } |
@@ -1240,7 +1240,7 @@ discard block |
||
1240 | 1240 | */ |
1241 | 1241 | $single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry ); |
1242 | 1242 | |
1243 | - if ( empty( $single_entry ) ){ |
|
1243 | + if ( empty( $single_entry ) ) { |
|
1244 | 1244 | return false; |
1245 | 1245 | } else { |
1246 | 1246 | return $single_entry; |
@@ -1262,7 +1262,7 @@ discard block |
||
1262 | 1262 | $views = $this->getGvOutputData()->get_views(); |
1263 | 1263 | |
1264 | 1264 | foreach ( $views as $view_id => $data ) { |
1265 | - $view = \GV\View::by_id( $data['id'] ); |
|
1265 | + $view = \GV\View::by_id( $data[ 'id' ] ); |
|
1266 | 1266 | $view_id = $view->ID; |
1267 | 1267 | $template_id = gravityview_get_template_id( $view->ID ); |
1268 | 1268 | $data = $view->as_data(); |
@@ -1271,7 +1271,7 @@ discard block |
||
1271 | 1271 | * Don't enqueue the scripts or styles if it's not going to be displayed. |
1272 | 1272 | * @since 1.15 |
1273 | 1273 | */ |
1274 | - if( is_user_logged_in() && false === GVCommon::has_cap( 'read_gravityview', $view_id ) ) { |
|
1274 | + if ( is_user_logged_in() && false === GVCommon::has_cap( 'read_gravityview', $view_id ) ) { |
|
1275 | 1275 | continue; |
1276 | 1276 | } |
1277 | 1277 | |
@@ -1288,13 +1288,13 @@ discard block |
||
1288 | 1288 | * @filter `gravity_view_lightbox_script` Override the lightbox script to enqueue. Default: `thickbox` |
1289 | 1289 | * @param string $script_slug If you want to use a different lightbox script, return the name of it here. |
1290 | 1290 | */ |
1291 | - $js_dependencies[] = apply_filters( 'gravity_view_lightbox_script', 'thickbox' ); |
|
1291 | + $js_dependencies[ ] = apply_filters( 'gravity_view_lightbox_script', 'thickbox' ); |
|
1292 | 1292 | |
1293 | 1293 | /** |
1294 | 1294 | * @filter `gravity_view_lightbox_style` Modify the lightbox CSS slug. Default: `thickbox` |
1295 | 1295 | * @param string $script_slug If you want to use a different lightbox script, return the name of its CSS file here. |
1296 | 1296 | */ |
1297 | - $css_dependencies[] = apply_filters( 'gravity_view_lightbox_style', 'thickbox' ); |
|
1297 | + $css_dependencies[ ] = apply_filters( 'gravity_view_lightbox_style', 'thickbox' ); |
|
1298 | 1298 | } |
1299 | 1299 | |
1300 | 1300 | /** |
@@ -1302,19 +1302,19 @@ discard block |
||
1302 | 1302 | * @see https://github.com/katzwebservices/GravityView/issues/536 |
1303 | 1303 | * @since 1.15 |
1304 | 1304 | */ |
1305 | - if( gravityview_view_has_single_checkbox_or_radio( $data['form'], $data['fields'] ) ) { |
|
1306 | - $css_dependencies[] = 'dashicons'; |
|
1305 | + if ( gravityview_view_has_single_checkbox_or_radio( $data[ 'form' ], $data[ 'fields' ] ) ) { |
|
1306 | + $css_dependencies[ ] = 'dashicons'; |
|
1307 | 1307 | } |
1308 | 1308 | |
1309 | 1309 | wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version, true ); |
1310 | 1310 | |
1311 | 1311 | $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
1312 | 1312 | |
1313 | - wp_register_script( 'gravityview-fe-view', plugins_url( 'assets/js/fe-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), apply_filters( 'gravityview_js_dependencies', $js_dependencies ) , GravityView_Plugin::version, true ); |
|
1313 | + wp_register_script( 'gravityview-fe-view', plugins_url( 'assets/js/fe-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), apply_filters( 'gravityview_js_dependencies', $js_dependencies ), GravityView_Plugin::version, true ); |
|
1314 | 1314 | |
1315 | 1315 | wp_enqueue_script( 'gravityview-fe-view' ); |
1316 | 1316 | |
1317 | - if ( ! empty( $data['atts']['sort_columns'] ) ) { |
|
1317 | + if ( ! empty( $data[ 'atts' ][ 'sort_columns' ] ) ) { |
|
1318 | 1318 | wp_enqueue_style( 'gravityview_font', plugins_url( 'assets/css/font.css', GRAVITYVIEW_FILE ), $css_dependencies, GravityView_Plugin::version, 'all' ); |
1319 | 1319 | } |
1320 | 1320 | |
@@ -1377,7 +1377,7 @@ discard block |
||
1377 | 1377 | public static function add_style( $template_id ) { |
1378 | 1378 | |
1379 | 1379 | if ( ! empty( $template_id ) && wp_style_is( 'gravityview_style_' . $template_id, 'registered' ) ) { |
1380 | - gravityview()->log->debug( 'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) ); |
|
1380 | + gravityview()->log->debug( 'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) ); |
|
1381 | 1381 | wp_enqueue_style( 'gravityview_style_' . $template_id ); |
1382 | 1382 | } elseif ( empty( $template_id ) ) { |
1383 | 1383 | gravityview()->log->error( 'Cannot add template style; template_id is empty' ); |
@@ -1408,11 +1408,11 @@ discard block |
||
1408 | 1408 | * Not a table-based template; don't add sort icons |
1409 | 1409 | * @since 1.12 |
1410 | 1410 | */ |
1411 | - if( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) { |
|
1411 | + if ( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) { |
|
1412 | 1412 | return $label; |
1413 | 1413 | } |
1414 | 1414 | |
1415 | - if ( ! $this->is_field_sortable( $field['id'], $form ) ) { |
|
1415 | + if ( ! $this->is_field_sortable( $field[ 'id' ], $form ) ) { |
|
1416 | 1416 | return $label; |
1417 | 1417 | } |
1418 | 1418 | |
@@ -1420,29 +1420,29 @@ discard block |
||
1420 | 1420 | |
1421 | 1421 | $class = 'gv-sort'; |
1422 | 1422 | |
1423 | - $sort_field_id = self::_override_sorting_id_by_field_type( $field['id'], $form['id'] ); |
|
1423 | + $sort_field_id = self::_override_sorting_id_by_field_type( $field[ 'id' ], $form[ 'id' ] ); |
|
1424 | 1424 | |
1425 | 1425 | $sort_args = array( |
1426 | - 'sort' => $field['id'], |
|
1426 | + 'sort' => $field[ 'id' ], |
|
1427 | 1427 | 'dir' => 'asc', |
1428 | 1428 | ); |
1429 | 1429 | |
1430 | - if ( ! empty( $sorting['key'] ) && (string) $sort_field_id === (string) $sorting['key'] ) { |
|
1430 | + if ( ! empty( $sorting[ 'key' ] ) && (string)$sort_field_id === (string)$sorting[ 'key' ] ) { |
|
1431 | 1431 | //toggle sorting direction. |
1432 | - if ( 'asc' === $sorting['direction'] ) { |
|
1433 | - $sort_args['dir'] = 'desc'; |
|
1432 | + if ( 'asc' === $sorting[ 'direction' ] ) { |
|
1433 | + $sort_args[ 'dir' ] = 'desc'; |
|
1434 | 1434 | $class .= ' gv-icon-sort-desc'; |
1435 | 1435 | } else { |
1436 | - $sort_args['dir'] = 'asc'; |
|
1436 | + $sort_args[ 'dir' ] = 'asc'; |
|
1437 | 1437 | $class .= ' gv-icon-sort-asc'; |
1438 | 1438 | } |
1439 | 1439 | } else { |
1440 | 1440 | $class .= ' gv-icon-caret-up-down'; |
1441 | 1441 | } |
1442 | 1442 | |
1443 | - $url = add_query_arg( $sort_args, remove_query_arg( array('pagenum') ) ); |
|
1443 | + $url = add_query_arg( $sort_args, remove_query_arg( array( 'pagenum' ) ) ); |
|
1444 | 1444 | |
1445 | - return '<a href="'. esc_url_raw( $url ) .'" class="'. $class .'" ></a> '. $label; |
|
1445 | + return '<a href="' . esc_url_raw( $url ) . '" class="' . $class . '" ></a> ' . $label; |
|
1446 | 1446 | |
1447 | 1447 | } |
1448 | 1448 | |
@@ -1460,7 +1460,7 @@ discard block |
||
1460 | 1460 | |
1461 | 1461 | $field_type = $field_id; |
1462 | 1462 | |
1463 | - if( is_numeric( $field_id ) ) { |
|
1463 | + if ( is_numeric( $field_id ) ) { |
|
1464 | 1464 | $field = GFFormsModel::get_field( $form, $field_id ); |
1465 | 1465 | $field_type = $field ? $field->type : $field_id; |
1466 | 1466 | } |
@@ -1483,7 +1483,7 @@ discard block |
||
1483 | 1483 | return false; |
1484 | 1484 | } |
1485 | 1485 | |
1486 | - return apply_filters( "gravityview/sortable/formfield_{$form['id']}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) ); |
|
1486 | + return apply_filters( "gravityview/sortable/formfield_{$form[ 'id' ]}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) ); |
|
1487 | 1487 | |
1488 | 1488 | } |
1489 | 1489 |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'type' => 'radio', |
65 | 65 | 'full_width' => true, |
66 | 66 | 'label' => esc_html__( 'Search Mode', 'gravityview' ), |
67 | - 'desc' => __('Should search results match all search fields, or any?', 'gravityview'), |
|
67 | + 'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ), |
|
68 | 68 | 'value' => 'any', |
69 | 69 | 'class' => 'hide-if-js', |
70 | 70 | 'options' => array( |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | // admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999 |
88 | 88 | add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 ); |
89 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
89 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
90 | 90 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
91 | 91 | |
92 | 92 | // ajax - get the searchable fields |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | $script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
231 | 231 | $script_source = empty( $script_min ) ? '/source' : ''; |
232 | 232 | |
233 | - wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js'.$script_source.'/admin-search-widget'.$script_min.'.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), \GV\Plugin::$version ); |
|
233 | + wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js' . $script_source . '/admin-search-widget' . $script_min . '.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), \GV\Plugin::$version ); |
|
234 | 234 | |
235 | 235 | wp_localize_script( 'gravityview_searchwidget_admin', 'gvSearchVar', array( |
236 | 236 | 'nonce' => wp_create_nonce( 'gravityview_ajaxsearchwidget' ), |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | * @return array Scripts allowed in no-conflict mode, plus the search widget script |
253 | 253 | */ |
254 | 254 | public function register_no_conflict( $allowed ) { |
255 | - $allowed[] = 'gravityview_searchwidget_admin'; |
|
255 | + $allowed[ ] = 'gravityview_searchwidget_admin'; |
|
256 | 256 | return $allowed; |
257 | 257 | } |
258 | 258 | |
@@ -265,24 +265,24 @@ discard block |
||
265 | 265 | */ |
266 | 266 | public static function get_searchable_fields() { |
267 | 267 | |
268 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) { |
|
268 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) { |
|
269 | 269 | exit( '0' ); |
270 | 270 | } |
271 | 271 | |
272 | 272 | $form = ''; |
273 | 273 | |
274 | 274 | // Fetch the form for the current View |
275 | - if ( ! empty( $_POST['view_id'] ) ) { |
|
275 | + if ( ! empty( $_POST[ 'view_id' ] ) ) { |
|
276 | 276 | |
277 | - $form = gravityview_get_form_id( $_POST['view_id'] ); |
|
277 | + $form = gravityview_get_form_id( $_POST[ 'view_id' ] ); |
|
278 | 278 | |
279 | - } elseif ( ! empty( $_POST['formid'] ) ) { |
|
279 | + } elseif ( ! empty( $_POST[ 'formid' ] ) ) { |
|
280 | 280 | |
281 | - $form = (int) $_POST['formid']; |
|
281 | + $form = (int)$_POST[ 'formid' ]; |
|
282 | 282 | |
283 | - } elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
283 | + } elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
284 | 284 | |
285 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
285 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
286 | 286 | |
287 | 287 | } |
288 | 288 | |
@@ -332,14 +332,14 @@ discard block |
||
332 | 332 | ); |
333 | 333 | |
334 | 334 | if ( gravityview()->plugin->supports( \GV\Plugin::FEATURE_GFQUERY ) ) { |
335 | - $custom_fields['is_approved'] = array( |
|
335 | + $custom_fields[ 'is_approved' ] = array( |
|
336 | 336 | 'text' => esc_html__( 'Approval Status', 'gravityview' ), |
337 | 337 | 'type' => 'multi', |
338 | 338 | ); |
339 | 339 | } |
340 | 340 | |
341 | - foreach( $custom_fields as $custom_field_key => $custom_field ) { |
|
342 | - $output .= sprintf( '<option value="%s" %s data-inputtypes="%s" data-placeholder="%s">%s</option>', $custom_field_key, selected( $custom_field_key, $current, false ), $custom_field['type'], self::get_field_label( array('field' => $custom_field_key ) ), $custom_field['text'] ); |
|
341 | + foreach ( $custom_fields as $custom_field_key => $custom_field ) { |
|
342 | + $output .= sprintf( '<option value="%s" %s data-inputtypes="%s" data-placeholder="%s">%s</option>', $custom_field_key, selected( $custom_field_key, $current, false ), $custom_field[ 'type' ], self::get_field_label( array( 'field' => $custom_field_key ) ), $custom_field[ 'text' ] ); |
|
343 | 343 | } |
344 | 344 | |
345 | 345 | // Get fields with sub-inputs and no parent |
@@ -361,13 +361,13 @@ discard block |
||
361 | 361 | |
362 | 362 | foreach ( $fields as $id => $field ) { |
363 | 363 | |
364 | - if ( in_array( $field['type'], $blacklist_field_types ) ) { |
|
364 | + if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) { |
|
365 | 365 | continue; |
366 | 366 | } |
367 | 367 | |
368 | - $types = self::get_search_input_types( $id, $field['type'] ); |
|
368 | + $types = self::get_search_input_types( $id, $field[ 'type' ] ); |
|
369 | 369 | |
370 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>'; |
|
370 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>'; |
|
371 | 371 | } |
372 | 372 | } |
373 | 373 | |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | public static function get_search_input_types( $field_id = '', $field_type = null ) { |
391 | 391 | |
392 | 392 | // @todo - This needs to be improved - many fields have . including products and addresses |
393 | - if ( false !== strpos( (string) $field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
393 | + if ( false !== strpos( (string)$field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
394 | 394 | $input_type = 'boolean'; // on/off checkbox |
395 | 395 | } elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) { |
396 | 396 | $input_type = 'multi'; //multiselect |
@@ -436,19 +436,19 @@ discard block |
||
436 | 436 | $post_id = 0; |
437 | 437 | |
438 | 438 | // We're in the WordPress Widget context, and an overriding post ID has been set. |
439 | - if ( ! empty( $widget_args['post_id'] ) ) { |
|
440 | - $post_id = absint( $widget_args['post_id'] ); |
|
439 | + if ( ! empty( $widget_args[ 'post_id' ] ) ) { |
|
440 | + $post_id = absint( $widget_args[ 'post_id' ] ); |
|
441 | 441 | } |
442 | 442 | // We're in the WordPress Widget context, and the base View ID should be used |
443 | - else if ( ! empty( $widget_args['view_id'] ) ) { |
|
444 | - $post_id = absint( $widget_args['view_id'] ); |
|
443 | + else if ( ! empty( $widget_args[ 'view_id' ] ) ) { |
|
444 | + $post_id = absint( $widget_args[ 'view_id' ] ); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | $args = gravityview_get_permalink_query_args( $post_id ); |
448 | 448 | |
449 | 449 | // Add hidden fields to the search form |
450 | 450 | foreach ( $args as $key => $value ) { |
451 | - $search_fields[] = array( |
|
451 | + $search_fields[ ] = array( |
|
452 | 452 | 'name' => $key, |
453 | 453 | 'input' => 'hidden', |
454 | 454 | 'value' => $value, |
@@ -487,28 +487,28 @@ discard block |
||
487 | 487 | /** |
488 | 488 | * Include the sidebar Widgets. |
489 | 489 | */ |
490 | - $widgets = (array) get_option( 'widget_gravityview_search', array() ); |
|
490 | + $widgets = (array)get_option( 'widget_gravityview_search', array() ); |
|
491 | 491 | |
492 | 492 | foreach ( $widgets as $widget ) { |
493 | - if ( ! empty( $widget['view_id'] ) && $widget['view_id'] == $view->ID ) { |
|
494 | - if( $_fields = json_decode( $widget['search_fields'], true ) ) { |
|
493 | + if ( ! empty( $widget[ 'view_id' ] ) && $widget[ 'view_id' ] == $view->ID ) { |
|
494 | + if ( $_fields = json_decode( $widget[ 'search_fields' ], true ) ) { |
|
495 | 495 | foreach ( $_fields as $field ) { |
496 | - if ( empty( $field['form_id'] ) ) { |
|
497 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
496 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
497 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
498 | 498 | } |
499 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
499 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
500 | 500 | } |
501 | 501 | } |
502 | 502 | } |
503 | 503 | } |
504 | 504 | |
505 | 505 | foreach ( $view->widgets->by_id( $this->get_widget_id() )->all() as $widget ) { |
506 | - if( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
506 | + if ( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
507 | 507 | foreach ( $_fields as $field ) { |
508 | - if ( empty( $field['form_id'] ) ) { |
|
509 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
508 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
509 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
510 | 510 | } |
511 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
511 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
512 | 512 | } |
513 | 513 | } |
514 | 514 | } |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | return $search_criteria; // Return the original criteria, GF_Query modification kicks in later |
539 | 539 | } |
540 | 540 | |
541 | - if( 'post' === $this->search_method ) { |
|
541 | + if ( 'post' === $this->search_method ) { |
|
542 | 542 | $get = $_POST; |
543 | 543 | } else { |
544 | 544 | $get = $_GET; |
@@ -557,15 +557,15 @@ discard block |
||
557 | 557 | $get = gv_map_deep( $get, 'rawurldecode' ); |
558 | 558 | |
559 | 559 | // Make sure array key is set up |
560 | - $search_criteria['field_filters'] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
560 | + $search_criteria[ 'field_filters' ] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
561 | 561 | |
562 | 562 | $searchable_fields = $this->get_view_searchable_fields( $view ); |
563 | 563 | $searchable_field_objects = $this->get_view_searchable_fields( $view, true ); |
564 | 564 | |
565 | 565 | // add free search |
566 | - if ( isset( $get['gv_search'] ) && '' !== $get['gv_search'] && in_array( 'search_all', $searchable_fields ) ) { |
|
566 | + if ( isset( $get[ 'gv_search' ] ) && '' !== $get[ 'gv_search' ] && in_array( 'search_all', $searchable_fields ) ) { |
|
567 | 567 | |
568 | - $search_all_value = trim( $get['gv_search'] ); |
|
568 | + $search_all_value = trim( $get[ 'gv_search' ] ); |
|
569 | 569 | |
570 | 570 | /** |
571 | 571 | * @filter `gravityview/search-all-split-words` Search for each word separately or the whole phrase? |
@@ -590,7 +590,7 @@ discard block |
||
590 | 590 | } |
591 | 591 | |
592 | 592 | foreach ( $words as $word ) { |
593 | - $search_criteria['field_filters'][] = array( |
|
593 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
594 | 594 | 'key' => null, // The field ID to search |
595 | 595 | 'value' => $word, // The value to search |
596 | 596 | 'operator' => 'contains', // What to search in. Options: `is` or `contains` |
@@ -603,14 +603,14 @@ discard block |
||
603 | 603 | /** |
604 | 604 | * Get and normalize the dates according to the input format. |
605 | 605 | */ |
606 | - if ( $curr_start = ! empty( $get['gv_start'] ) ? $get['gv_start'] : '' ) { |
|
607 | - if( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
606 | + if ( $curr_start = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_start' ] : '' ) { |
|
607 | + if ( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
608 | 608 | $curr_start = $curr_start_date->format( 'Y-m-d' ); |
609 | 609 | } |
610 | 610 | } |
611 | 611 | |
612 | - if ( $curr_end = ! empty( $get['gv_start'] ) ? ( ! empty( $get['gv_end'] ) ? $get['gv_end'] : '' ) : '' ) { |
|
613 | - if( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
612 | + if ( $curr_end = ! empty( $get[ 'gv_start' ] ) ? ( ! empty( $get[ 'gv_end' ] ) ? $get[ 'gv_end' ] : '' ) : '' ) { |
|
613 | + if ( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
614 | 614 | $curr_end = $curr_end_date->format( 'Y-m-d' ); |
615 | 615 | } |
616 | 616 | } |
@@ -645,22 +645,22 @@ discard block |
||
645 | 645 | */ |
646 | 646 | if ( ! empty( $curr_start ) ) { |
647 | 647 | $curr_start = date( 'Y-m-d H:i:s', strtotime( $curr_start ) ); |
648 | - $search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
648 | + $search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
649 | 649 | } |
650 | 650 | |
651 | 651 | if ( ! empty( $curr_end ) ) { |
652 | 652 | // Fast-forward 24 hour on the end time |
653 | 653 | $curr_end = date( 'Y-m-d H:i:s', strtotime( $curr_end ) + DAY_IN_SECONDS ); |
654 | - $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
655 | - if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
656 | - $search_criteria['end_date'] = date( 'Y-m-d H:i:s', strtotime( $search_criteria['end_date'] ) - 1 ); |
|
654 | + $search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
655 | + if ( strpos( $search_criteria[ 'end_date' ], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
656 | + $search_criteria[ 'end_date' ] = date( 'Y-m-d H:i:s', strtotime( $search_criteria[ 'end_date' ] ) - 1 ); |
|
657 | 657 | } |
658 | 658 | } |
659 | 659 | } |
660 | 660 | |
661 | 661 | // search for a specific entry ID |
662 | 662 | if ( ! empty( $get[ 'gv_id' ] ) && in_array( 'entry_id', $searchable_fields ) ) { |
663 | - $search_criteria['field_filters'][] = array( |
|
663 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
664 | 664 | 'key' => 'id', |
665 | 665 | 'value' => absint( $get[ 'gv_id' ] ), |
666 | 666 | 'operator' => $this->get_operator( $get, 'gv_id', array( '=' ), '=' ), |
@@ -669,20 +669,20 @@ discard block |
||
669 | 669 | |
670 | 670 | // search for a specific Created_by ID |
671 | 671 | if ( ! empty( $get[ 'gv_by' ] ) && in_array( 'created_by', $searchable_fields ) ) { |
672 | - $search_criteria['field_filters'][] = array( |
|
672 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
673 | 673 | 'key' => 'created_by', |
674 | - 'value' => $get['gv_by'], |
|
674 | + 'value' => $get[ 'gv_by' ], |
|
675 | 675 | 'operator' => $this->get_operator( $get, 'gv_by', array( '=' ), '=' ), |
676 | 676 | ); |
677 | 677 | } |
678 | 678 | |
679 | 679 | // Get search mode passed in URL |
680 | - $mode = isset( $get['mode'] ) && in_array( $get['mode'], array( 'any', 'all' ) ) ? $get['mode'] : 'any'; |
|
680 | + $mode = isset( $get[ 'mode' ] ) && in_array( $get[ 'mode' ], array( 'any', 'all' ) ) ? $get[ 'mode' ] : 'any'; |
|
681 | 681 | |
682 | 682 | // get the other search filters |
683 | 683 | foreach ( $get as $key => $value ) { |
684 | 684 | |
685 | - if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[0], false, false ) ) ) { |
|
685 | + if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[ 0 ], false, false ) ) ) { |
|
686 | 686 | continue; // Not a filter, or empty |
687 | 687 | } |
688 | 688 | |
@@ -696,19 +696,19 @@ discard block |
||
696 | 696 | continue; |
697 | 697 | } |
698 | 698 | |
699 | - if ( ! isset( $filter['operator'] ) ) { |
|
700 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
699 | + if ( ! isset( $filter[ 'operator' ] ) ) { |
|
700 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
701 | 701 | } |
702 | 702 | |
703 | - if ( isset( $filter[0]['value'] ) ) { |
|
704 | - $search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter ); |
|
703 | + if ( isset( $filter[ 0 ][ 'value' ] ) ) { |
|
704 | + $search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter ); |
|
705 | 705 | |
706 | 706 | // if date range type, set search mode to ALL |
707 | - if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>=', '<=', '>', '<' ) ) ) { |
|
707 | + if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>=', '<=', '>', '<' ) ) ) { |
|
708 | 708 | $mode = 'all'; |
709 | 709 | } |
710 | - } elseif( !empty( $filter ) ) { |
|
711 | - $search_criteria['field_filters'][] = $filter; |
|
710 | + } elseif ( ! empty( $filter ) ) { |
|
711 | + $search_criteria[ 'field_filters' ][ ] = $filter; |
|
712 | 712 | } |
713 | 713 | } |
714 | 714 | |
@@ -717,7 +717,7 @@ discard block |
||
717 | 717 | * @since 1.5.1 |
718 | 718 | * @param[out,in] string $mode Search mode (`any` vs `all`) |
719 | 719 | */ |
720 | - $search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode ); |
|
720 | + $search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode ); |
|
721 | 721 | |
722 | 722 | gravityview()->log->debug( 'Returned Search Criteria: ', array( 'data' => $search_criteria ) ); |
723 | 723 | |
@@ -751,19 +751,19 @@ discard block |
||
751 | 751 | |
752 | 752 | $query_class = $view->get_query_class(); |
753 | 753 | |
754 | - if ( empty( $search_criteria['field_filters'] ) ) { |
|
754 | + if ( empty( $search_criteria[ 'field_filters' ] ) ) { |
|
755 | 755 | return; |
756 | 756 | } |
757 | 757 | |
758 | 758 | $widgets = $view->widgets->by_id( $this->widget_id ); |
759 | 759 | if ( $widgets->count() ) { |
760 | 760 | $widgets = $widgets->all(); |
761 | - $widget = $widgets[0]; |
|
761 | + $widget = $widgets[ 0 ]; |
|
762 | 762 | |
763 | 763 | $search_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ); |
764 | 764 | |
765 | - foreach ( (array) $search_fields as $search_field ) { |
|
766 | - if ( 'created_by' === $search_field['field'] && 'input_text' === $search_field['input'] ) { |
|
765 | + foreach ( (array)$search_fields as $search_field ) { |
|
766 | + if ( 'created_by' === $search_field[ 'field' ] && 'input_text' === $search_field[ 'input' ] ) { |
|
767 | 767 | $created_by_text_mode = true; |
768 | 768 | } |
769 | 769 | } |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | $extra_conditions = array(); |
773 | 773 | $mode = 'any'; |
774 | 774 | |
775 | - foreach ( $search_criteria['field_filters'] as &$filter ) { |
|
775 | + foreach ( $search_criteria[ 'field_filters' ] as &$filter ) { |
|
776 | 776 | if ( ! is_array( $filter ) ) { |
777 | 777 | if ( in_array( strtolower( $filter ), array( 'any', 'all' ) ) ) { |
778 | 778 | $mode = $filter; |
@@ -781,13 +781,13 @@ discard block |
||
781 | 781 | } |
782 | 782 | |
783 | 783 | // Construct a manual query for unapproved statuses |
784 | - if ( 'is_approved' === $filter['key'] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array) $filter['value'] ) ) { |
|
785 | - $_tmp_query = new $query_class( $view->form->ID, array( |
|
784 | + if ( 'is_approved' === $filter[ 'key' ] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array)$filter[ 'value' ] ) ) { |
|
785 | + $_tmp_query = new $query_class( $view->form->ID, array( |
|
786 | 786 | 'field_filters' => array( |
787 | 787 | array( |
788 | 788 | 'operator' => 'in', |
789 | 789 | 'key' => 'is_approved', |
790 | - 'value' => (array) $filter['value'], |
|
790 | + 'value' => (array)$filter[ 'value' ], |
|
791 | 791 | ), |
792 | 792 | array( |
793 | 793 | 'operator' => 'is', |
@@ -799,30 +799,30 @@ discard block |
||
799 | 799 | ) ); |
800 | 800 | $_tmp_query_parts = $_tmp_query->_introspect(); |
801 | 801 | |
802 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
802 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
803 | 803 | |
804 | 804 | $filter = false; |
805 | 805 | continue; |
806 | 806 | } |
807 | 807 | |
808 | 808 | // Construct manual query for text mode creator search |
809 | - if ( 'created_by' === $filter['key'] && ! empty( $created_by_text_mode ) ) { |
|
810 | - $extra_conditions[] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
809 | + if ( 'created_by' === $filter[ 'key' ] && ! empty( $created_by_text_mode ) ) { |
|
810 | + $extra_conditions[ ] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
811 | 811 | $filter = false; |
812 | 812 | continue; |
813 | 813 | } |
814 | 814 | |
815 | 815 | // By default, we want searches to be wildcard for each field. |
816 | - $filter['operator'] = empty( $filter['operator'] ) ? 'contains' : $filter['operator']; |
|
816 | + $filter[ 'operator' ] = empty( $filter[ 'operator' ] ) ? 'contains' : $filter[ 'operator' ]; |
|
817 | 817 | |
818 | 818 | // For multichoice, let's have an in (OR) search. |
819 | - if ( is_array( $filter['value'] ) ) { |
|
820 | - $filter['operator'] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
819 | + if ( is_array( $filter[ 'value' ] ) ) { |
|
820 | + $filter[ 'operator' ] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
821 | 821 | } |
822 | 822 | |
823 | 823 | // Default form with joins functionality |
824 | - if ( empty( $filter['form_id'] ) ) { |
|
825 | - $filter['form_id'] = $view->form ? $view->form->ID : 0; |
|
824 | + if ( empty( $filter[ 'form_id' ] ) ) { |
|
825 | + $filter[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
826 | 826 | } |
827 | 827 | |
828 | 828 | /** |
@@ -832,28 +832,28 @@ discard block |
||
832 | 832 | * @since develop |
833 | 833 | * @param \GV\View $view The View we're operating on. |
834 | 834 | */ |
835 | - $filter['operator'] = apply_filters( 'gravityview_search_operator', $filter['operator'], $filter, $view ); |
|
835 | + $filter[ 'operator' ] = apply_filters( 'gravityview_search_operator', $filter[ 'operator' ], $filter, $view ); |
|
836 | 836 | } |
837 | 837 | |
838 | - if ( ! empty( $search_criteria['start_date'] ) || ! empty( $search_criteria['end_date'] ) ) { |
|
838 | + if ( ! empty( $search_criteria[ 'start_date' ] ) || ! empty( $search_criteria[ 'end_date' ] ) ) { |
|
839 | 839 | $date_criteria = array(); |
840 | 840 | |
841 | - if ( isset( $search_criteria['start_date'] ) ) { |
|
842 | - $date_criteria['start_date'] = $search_criteria['start_date']; |
|
841 | + if ( isset( $search_criteria[ 'start_date' ] ) ) { |
|
842 | + $date_criteria[ 'start_date' ] = $search_criteria[ 'start_date' ]; |
|
843 | 843 | } |
844 | 844 | |
845 | - if ( isset( $search_criteria['end_date'] ) ) { |
|
846 | - $date_criteria['end_date'] = $search_criteria['end_date']; |
|
845 | + if ( isset( $search_criteria[ 'end_date' ] ) ) { |
|
846 | + $date_criteria[ 'end_date' ] = $search_criteria[ 'end_date' ]; |
|
847 | 847 | } |
848 | 848 | |
849 | 849 | $_tmp_query = new $query_class( $view->form->ID, $date_criteria ); |
850 | 850 | $_tmp_query_parts = $_tmp_query->_introspect(); |
851 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
851 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
852 | 852 | } |
853 | 853 | |
854 | 854 | $search_conditions = array(); |
855 | 855 | |
856 | - if ( $filters = array_filter( $search_criteria['field_filters'] ) ) { |
|
856 | + if ( $filters = array_filter( $search_criteria[ 'field_filters' ] ) ) { |
|
857 | 857 | |
858 | 858 | foreach ( $filters as $filter ) { |
859 | 859 | if ( ! is_array( $filter ) ) { |
@@ -866,20 +866,20 @@ discard block |
||
866 | 866 | * code by reusing what's inside GF_Query already as they |
867 | 867 | * take care of many small things like forcing numeric, etc. |
868 | 868 | */ |
869 | - $_tmp_query = new $query_class( $filter['form_id'], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
869 | + $_tmp_query = new $query_class( $filter[ 'form_id' ], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
870 | 870 | $_tmp_query_parts = $_tmp_query->_introspect(); |
871 | - $search_condition = $_tmp_query_parts['where']; |
|
871 | + $search_condition = $_tmp_query_parts[ 'where' ]; |
|
872 | 872 | |
873 | - if ( empty( $filter['key'] ) && $search_condition->expressions ) { |
|
874 | - $search_conditions[] = $search_condition; // new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view ); |
|
873 | + if ( empty( $filter[ 'key' ] ) && $search_condition->expressions ) { |
|
874 | + $search_conditions[ ] = $search_condition; // new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view ); |
|
875 | 875 | } else { |
876 | 876 | $left = $search_condition->left; |
877 | 877 | $alias = $query->_alias( $left->field_id, $left->source, $left->is_entry_column() ? 't' : 'm' ); |
878 | 878 | |
879 | 879 | if ( $view->joins && $left->field_id == GF_Query_Column::META ) { |
880 | - $search_conditions[] = new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view ); |
|
880 | + $search_conditions[ ] = new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view ); |
|
881 | 881 | } else { |
882 | - $search_conditions[] = new GF_Query_Condition( |
|
882 | + $search_conditions[ ] = new GF_Query_Condition( |
|
883 | 883 | new GF_Query_Column( $left->field_id, $left->source, $alias ), |
884 | 884 | $search_condition->operator, |
885 | 885 | $search_condition->right |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | /** |
902 | 902 | * Combine the parts as a new WHERE clause. |
903 | 903 | */ |
904 | - $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts['where'] ), $search_conditions, $extra_conditions ) ); |
|
904 | + $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts[ 'where' ] ), $search_conditions, $extra_conditions ) ); |
|
905 | 905 | $query->where( $where ); |
906 | 906 | } |
907 | 907 | |
@@ -924,7 +924,7 @@ discard block |
||
924 | 924 | $field_id = str_replace( 'filter_', '', $key ); |
925 | 925 | |
926 | 926 | // calculates field_id, removing 'filter_' and for '_' for advanced fields ( like name or checkbox ) |
927 | - if ( preg_match('/^[0-9_]+$/ism', $field_id ) ) { |
|
927 | + if ( preg_match( '/^[0-9_]+$/ism', $field_id ) ) { |
|
928 | 928 | $field_id = str_replace( '_', '.', $field_id ); |
929 | 929 | } |
930 | 930 | |
@@ -981,7 +981,7 @@ discard block |
||
981 | 981 | // form is in searchable fields |
982 | 982 | $found = false; |
983 | 983 | foreach ( $searchable_fields as $field ) { |
984 | - if ( $field_id == $field['field'] && $form->ID == $field['form_id'] ) { |
|
984 | + if ( $field_id == $field[ 'field' ] && $form->ID == $field[ 'form_id' ] ) { |
|
985 | 985 | $found = true; |
986 | 986 | break; |
987 | 987 | } |
@@ -1017,7 +1017,7 @@ discard block |
||
1017 | 1017 | |
1018 | 1018 | case 'select': |
1019 | 1019 | case 'radio': |
1020 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1020 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1021 | 1021 | break; |
1022 | 1022 | |
1023 | 1023 | case 'post_category': |
@@ -1031,7 +1031,7 @@ discard block |
||
1031 | 1031 | |
1032 | 1032 | foreach ( $value as $val ) { |
1033 | 1033 | $cat = get_term( $val, 'category' ); |
1034 | - $filter[] = array( |
|
1034 | + $filter[ ] = array( |
|
1035 | 1035 | 'key' => $field_id, |
1036 | 1036 | 'value' => esc_attr( $cat->name ) . ':' . $val, |
1037 | 1037 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1050,7 +1050,7 @@ discard block |
||
1050 | 1050 | $filter = array(); |
1051 | 1051 | |
1052 | 1052 | foreach ( $value as $val ) { |
1053 | - $filter[] = array( 'key' => $field_id, 'value' => $val ); |
|
1053 | + $filter[ ] = array( 'key' => $field_id, 'value' => $val ); |
|
1054 | 1054 | } |
1055 | 1055 | |
1056 | 1056 | break; |
@@ -1059,9 +1059,9 @@ discard block |
||
1059 | 1059 | // convert checkbox on/off into the correct search filter |
1060 | 1060 | if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field->inputs ) && ! empty( $form_field->choices ) ) { |
1061 | 1061 | foreach ( $form_field->inputs as $k => $input ) { |
1062 | - if ( $input['id'] == $field_id ) { |
|
1063 | - $filter['value'] = $form_field->choices[ $k ]['value']; |
|
1064 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1062 | + if ( $input[ 'id' ] == $field_id ) { |
|
1063 | + $filter[ 'value' ] = $form_field->choices[ $k ][ 'value' ]; |
|
1064 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1065 | 1065 | break; |
1066 | 1066 | } |
1067 | 1067 | } |
@@ -1071,7 +1071,7 @@ discard block |
||
1071 | 1071 | $filter = array(); |
1072 | 1072 | |
1073 | 1073 | foreach ( $value as $val ) { |
1074 | - $filter[] = array( |
|
1074 | + $filter[ ] = array( |
|
1075 | 1075 | 'key' => $field_id, |
1076 | 1076 | 'value' => $val, |
1077 | 1077 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1092,9 +1092,9 @@ discard block |
||
1092 | 1092 | foreach ( $words as $word ) { |
1093 | 1093 | if ( ! empty( $word ) && strlen( $word ) > 1 ) { |
1094 | 1094 | // Keep the same key for each filter |
1095 | - $filter['value'] = $word; |
|
1095 | + $filter[ 'value' ] = $word; |
|
1096 | 1096 | // Add a search for the value |
1097 | - $filters[] = $filter; |
|
1097 | + $filters[ ] = $filter; |
|
1098 | 1098 | } |
1099 | 1099 | } |
1100 | 1100 | |
@@ -1108,19 +1108,19 @@ discard block |
||
1108 | 1108 | |
1109 | 1109 | foreach ( $searchable_fields as $searchable_field ) { |
1110 | 1110 | |
1111 | - if( $form_field->ID !== $searchable_field['field'] ) { |
|
1111 | + if ( $form_field->ID !== $searchable_field[ 'field' ] ) { |
|
1112 | 1112 | continue; |
1113 | 1113 | } |
1114 | 1114 | |
1115 | 1115 | // Only exact-match dropdowns, not text search |
1116 | - if( in_array( $searchable_field['input'], array( 'text', 'search' ), true ) ) { |
|
1116 | + if ( in_array( $searchable_field[ 'input' ], array( 'text', 'search' ), true ) ) { |
|
1117 | 1117 | continue; |
1118 | 1118 | } |
1119 | 1119 | |
1120 | 1120 | $input_id = gravityview_get_input_id_from_id( $form_field->ID ); |
1121 | 1121 | |
1122 | 1122 | if ( 4 === $input_id ) { |
1123 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1123 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1124 | 1124 | }; |
1125 | 1125 | } |
1126 | 1126 | } |
@@ -1147,12 +1147,12 @@ discard block |
||
1147 | 1147 | * @since 1.16.3 |
1148 | 1148 | * Safeguard until GF implements '<=' operator |
1149 | 1149 | */ |
1150 | - if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1150 | + if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1151 | 1151 | $operator = '<'; |
1152 | 1152 | $date = date( 'Y-m-d', strtotime( self::get_formatted_date( $date, 'Y-m-d', $date_format ) . ' +1 day' ) ); |
1153 | 1153 | } |
1154 | 1154 | |
1155 | - $filter[] = array( |
|
1155 | + $filter[ ] = array( |
|
1156 | 1156 | 'key' => $field_id, |
1157 | 1157 | 'value' => self::get_formatted_date( $date, 'Y-m-d', $date_format ), |
1158 | 1158 | 'operator' => $this->get_operator( $get, $key, array( $operator ), $operator ), |
@@ -1160,8 +1160,8 @@ discard block |
||
1160 | 1160 | } |
1161 | 1161 | } else { |
1162 | 1162 | $date = $value; |
1163 | - $filter['value'] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1164 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1163 | + $filter[ 'value' ] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1164 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1165 | 1165 | } |
1166 | 1166 | |
1167 | 1167 | break; |
@@ -1192,7 +1192,7 @@ discard block |
||
1192 | 1192 | 'ymd_dot' => 'Y.m.d', |
1193 | 1193 | ); |
1194 | 1194 | |
1195 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
1195 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
1196 | 1196 | $format = $datepicker[ $field->dateFormat ]; |
1197 | 1197 | } |
1198 | 1198 | |
@@ -1229,7 +1229,7 @@ discard block |
||
1229 | 1229 | public function add_template_path( $file_paths ) { |
1230 | 1230 | |
1231 | 1231 | // Index 100 is the default GravityView template path. |
1232 | - $file_paths[102] = self::$file . 'templates/'; |
|
1232 | + $file_paths[ 102 ] = self::$file . 'templates/'; |
|
1233 | 1233 | |
1234 | 1234 | return $file_paths; |
1235 | 1235 | } |
@@ -1248,7 +1248,7 @@ discard block |
||
1248 | 1248 | $has_date = false; |
1249 | 1249 | |
1250 | 1250 | foreach ( $search_fields as $k => $field ) { |
1251 | - if ( in_array( $field['input'], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1251 | + if ( in_array( $field[ 'input' ], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1252 | 1252 | $has_date = true; |
1253 | 1253 | break; |
1254 | 1254 | } |
@@ -1275,7 +1275,7 @@ discard block |
||
1275 | 1275 | } |
1276 | 1276 | |
1277 | 1277 | // get configured search fields |
1278 | - $search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : ''; |
|
1278 | + $search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : ''; |
|
1279 | 1279 | |
1280 | 1280 | if ( empty( $search_fields ) || ! is_array( $search_fields ) ) { |
1281 | 1281 | gravityview()->log->debug( 'No search fields configured for widget:', array( 'data' => $widget_args ) ); |
@@ -1291,40 +1291,40 @@ discard block |
||
1291 | 1291 | |
1292 | 1292 | $updated_field = $this->get_search_filter_details( $updated_field ); |
1293 | 1293 | |
1294 | - switch ( $field['field'] ) { |
|
1294 | + switch ( $field[ 'field' ] ) { |
|
1295 | 1295 | |
1296 | 1296 | case 'search_all': |
1297 | - $updated_field['key'] = 'search_all'; |
|
1298 | - $updated_field['input'] = 'search_all'; |
|
1299 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1297 | + $updated_field[ 'key' ] = 'search_all'; |
|
1298 | + $updated_field[ 'input' ] = 'search_all'; |
|
1299 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1300 | 1300 | break; |
1301 | 1301 | |
1302 | 1302 | case 'entry_date': |
1303 | - $updated_field['key'] = 'entry_date'; |
|
1304 | - $updated_field['input'] = 'entry_date'; |
|
1305 | - $updated_field['value'] = array( |
|
1303 | + $updated_field[ 'key' ] = 'entry_date'; |
|
1304 | + $updated_field[ 'input' ] = 'entry_date'; |
|
1305 | + $updated_field[ 'value' ] = array( |
|
1306 | 1306 | 'start' => $this->rgget_or_rgpost( 'gv_start' ), |
1307 | 1307 | 'end' => $this->rgget_or_rgpost( 'gv_end' ), |
1308 | 1308 | ); |
1309 | 1309 | break; |
1310 | 1310 | |
1311 | 1311 | case 'entry_id': |
1312 | - $updated_field['key'] = 'entry_id'; |
|
1313 | - $updated_field['input'] = 'entry_id'; |
|
1314 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1312 | + $updated_field[ 'key' ] = 'entry_id'; |
|
1313 | + $updated_field[ 'input' ] = 'entry_id'; |
|
1314 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1315 | 1315 | break; |
1316 | 1316 | |
1317 | 1317 | case 'created_by': |
1318 | - $updated_field['key'] = 'created_by'; |
|
1319 | - $updated_field['name'] = 'gv_by'; |
|
1320 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1321 | - $updated_field['choices'] = self::get_created_by_choices( $view ); |
|
1318 | + $updated_field[ 'key' ] = 'created_by'; |
|
1319 | + $updated_field[ 'name' ] = 'gv_by'; |
|
1320 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1321 | + $updated_field[ 'choices' ] = self::get_created_by_choices( $view ); |
|
1322 | 1322 | break; |
1323 | 1323 | |
1324 | 1324 | case 'is_approved': |
1325 | - $updated_field['key'] = 'is_approved'; |
|
1326 | - $updated_field['value'] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1327 | - $updated_field['choices'] = self::get_is_approved_choices(); |
|
1325 | + $updated_field[ 'key' ] = 'is_approved'; |
|
1326 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1327 | + $updated_field[ 'choices' ] = self::get_is_approved_choices(); |
|
1328 | 1328 | break; |
1329 | 1329 | } |
1330 | 1330 | |
@@ -1343,16 +1343,16 @@ discard block |
||
1343 | 1343 | */ |
1344 | 1344 | $gravityview_view->search_fields = apply_filters( 'gravityview_widget_search_filters', $search_fields, $this, $widget_args, $context ); |
1345 | 1345 | |
1346 | - $gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal'; |
|
1346 | + $gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal'; |
|
1347 | 1347 | |
1348 | 1348 | /** @since 1.14 */ |
1349 | - $gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any'; |
|
1349 | + $gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any'; |
|
1350 | 1350 | |
1351 | - $custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
1351 | + $custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
1352 | 1352 | |
1353 | 1353 | $gravityview_view->search_class = self::get_search_class( $custom_class ); |
1354 | 1354 | |
1355 | - $gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false; |
|
1355 | + $gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false; |
|
1356 | 1356 | |
1357 | 1357 | if ( $this->has_date_field( $search_fields ) ) { |
1358 | 1358 | // enqueue datepicker stuff only if needed! |
@@ -1374,10 +1374,10 @@ discard block |
||
1374 | 1374 | public static function get_search_class( $custom_class = '' ) { |
1375 | 1375 | $gravityview_view = GravityView_View::getInstance(); |
1376 | 1376 | |
1377 | - $search_class = 'gv-search-'.$gravityview_view->search_layout; |
|
1377 | + $search_class = 'gv-search-' . $gravityview_view->search_layout; |
|
1378 | 1378 | |
1379 | - if ( ! empty( $custom_class ) ) { |
|
1380 | - $search_class .= ' '.$custom_class; |
|
1379 | + if ( ! empty( $custom_class ) ) { |
|
1380 | + $search_class .= ' ' . $custom_class; |
|
1381 | 1381 | } |
1382 | 1382 | |
1383 | 1383 | /** |
@@ -1421,9 +1421,9 @@ discard block |
||
1421 | 1421 | |
1422 | 1422 | if ( ! $label ) { |
1423 | 1423 | |
1424 | - $label = isset( $form_field['label'] ) ? $form_field['label'] : ''; |
|
1424 | + $label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : ''; |
|
1425 | 1425 | |
1426 | - switch( $field['field'] ) { |
|
1426 | + switch ( $field[ 'field' ] ) { |
|
1427 | 1427 | case 'search_all': |
1428 | 1428 | $label = __( 'Search Entries:', 'gravityview' ); |
1429 | 1429 | break; |
@@ -1435,10 +1435,10 @@ discard block |
||
1435 | 1435 | break; |
1436 | 1436 | default: |
1437 | 1437 | // If this is a field input, not a field |
1438 | - if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) { |
|
1438 | + if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) { |
|
1439 | 1439 | |
1440 | 1440 | // Get the label for the field in question, which returns an array |
1441 | - $items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) ); |
|
1441 | + $items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) ); |
|
1442 | 1442 | |
1443 | 1443 | // Get the item with the `label` key |
1444 | 1444 | $values = wp_list_pluck( $items, 'label' ); |
@@ -1477,32 +1477,32 @@ discard block |
||
1477 | 1477 | $form = $gravityview_view->getForm(); |
1478 | 1478 | |
1479 | 1479 | // for advanced field ids (eg, first name / last name ) |
1480 | - $name = 'filter_' . str_replace( '.', '_', $field['field'] ); |
|
1480 | + $name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] ); |
|
1481 | 1481 | |
1482 | 1482 | // get searched value from $_GET/$_POST (string or array) |
1483 | 1483 | $value = $this->rgget_or_rgpost( $name ); |
1484 | 1484 | |
1485 | 1485 | // get form field details |
1486 | - $form_field = gravityview_get_field( $form, $field['field'] ); |
|
1486 | + $form_field = gravityview_get_field( $form, $field[ 'field' ] ); |
|
1487 | 1487 | |
1488 | 1488 | $filter = array( |
1489 | - 'key' => $field['field'], |
|
1489 | + 'key' => $field[ 'field' ], |
|
1490 | 1490 | 'name' => $name, |
1491 | 1491 | 'label' => self::get_field_label( $field, $form_field ), |
1492 | - 'input' => $field['input'], |
|
1492 | + 'input' => $field[ 'input' ], |
|
1493 | 1493 | 'value' => $value, |
1494 | - 'type' => $form_field['type'], |
|
1494 | + 'type' => $form_field[ 'type' ], |
|
1495 | 1495 | ); |
1496 | 1496 | |
1497 | 1497 | // collect choices |
1498 | - if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) { |
|
1499 | - $filter['choices'] = gravityview_get_terms_choices(); |
|
1500 | - } elseif ( ! empty( $form_field['choices'] ) ) { |
|
1501 | - $filter['choices'] = $form_field['choices']; |
|
1498 | + if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) { |
|
1499 | + $filter[ 'choices' ] = gravityview_get_terms_choices(); |
|
1500 | + } elseif ( ! empty( $form_field[ 'choices' ] ) ) { |
|
1501 | + $filter[ 'choices' ] = $form_field[ 'choices' ]; |
|
1502 | 1502 | } |
1503 | 1503 | |
1504 | - if ( 'date_range' === $field['input'] && empty( $value ) ) { |
|
1505 | - $filter['value'] = array( 'start' => '', 'end' => '' ); |
|
1504 | + if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) { |
|
1505 | + $filter[ 'value' ] = array( 'start' => '', 'end' => '' ); |
|
1506 | 1506 | } |
1507 | 1507 | |
1508 | 1508 | return $filter; |
@@ -1537,7 +1537,7 @@ discard block |
||
1537 | 1537 | * @param \GV\View $view The view. |
1538 | 1538 | */ |
1539 | 1539 | $text = apply_filters( 'gravityview/search/created_by/text', $user->display_name, $user, $view ); |
1540 | - $choices[] = array( |
|
1540 | + $choices[ ] = array( |
|
1541 | 1541 | 'value' => $user->ID, |
1542 | 1542 | 'text' => $text, |
1543 | 1543 | ); |
@@ -1557,9 +1557,9 @@ discard block |
||
1557 | 1557 | |
1558 | 1558 | $choices = array(); |
1559 | 1559 | foreach ( GravityView_Entry_Approval_Status::get_all() as $status ) { |
1560 | - $choices[] = array( |
|
1561 | - 'value' => $status['value'], |
|
1562 | - 'text' => $status['label'], |
|
1560 | + $choices[ ] = array( |
|
1561 | + 'value' => $status[ 'value' ], |
|
1562 | + 'text' => $status[ 'label' ], |
|
1563 | 1563 | ); |
1564 | 1564 | } |
1565 | 1565 | |
@@ -1611,7 +1611,7 @@ discard block |
||
1611 | 1611 | */ |
1612 | 1612 | public function add_datepicker_js_dependency( $js_dependencies ) { |
1613 | 1613 | |
1614 | - $js_dependencies[] = 'jquery-ui-datepicker'; |
|
1614 | + $js_dependencies[ ] = 'jquery-ui-datepicker'; |
|
1615 | 1615 | |
1616 | 1616 | return $js_dependencies; |
1617 | 1617 | } |
@@ -1655,7 +1655,7 @@ discard block |
||
1655 | 1655 | 'isRTL' => is_rtl(), |
1656 | 1656 | ), $view_data ); |
1657 | 1657 | |
1658 | - $localizations['datepicker'] = $datepicker_settings; |
|
1658 | + $localizations[ 'datepicker' ] = $datepicker_settings; |
|
1659 | 1659 | |
1660 | 1660 | return $localizations; |
1661 | 1661 | |
@@ -1682,7 +1682,7 @@ discard block |
||
1682 | 1682 | * @return void |
1683 | 1683 | */ |
1684 | 1684 | private function maybe_enqueue_flexibility() { |
1685 | - if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
1685 | + if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) { |
|
1686 | 1686 | wp_enqueue_script( 'gv-flexibility' ); |
1687 | 1687 | } |
1688 | 1688 | } |
@@ -1704,7 +1704,7 @@ discard block |
||
1704 | 1704 | add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 ); |
1705 | 1705 | |
1706 | 1706 | $scheme = is_ssl() ? 'https://' : 'http://'; |
1707 | - wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1707 | + wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1708 | 1708 | |
1709 | 1709 | /** |
1710 | 1710 | * @filter `gravityview_search_datepicker_class` |
@@ -1783,7 +1783,7 @@ discard block |
||
1783 | 1783 | public function add_preview_inputs() { |
1784 | 1784 | global $wp; |
1785 | 1785 | |
1786 | - if ( ! is_preview() || ! current_user_can( 'publish_gravityviews') ) { |
|
1786 | + if ( ! is_preview() || ! current_user_can( 'publish_gravityviews' ) ) { |
|
1787 | 1787 | return; |
1788 | 1788 | } |
1789 | 1789 | |
@@ -1835,7 +1835,7 @@ discard block |
||
1835 | 1835 | */ |
1836 | 1836 | class GravityView_Widget_Search_Author_GF_Query_Condition extends \GF_Query_Condition { |
1837 | 1837 | public function __construct( $filter, $view ) { |
1838 | - $this->value = $filter['value']; |
|
1838 | + $this->value = $filter[ 'value' ]; |
|
1839 | 1839 | $this->view = $view; |
1840 | 1840 | } |
1841 | 1841 | |
@@ -1867,11 +1867,11 @@ discard block |
||
1867 | 1867 | $conditions = array(); |
1868 | 1868 | |
1869 | 1869 | foreach ( $user_fields as $user_field ) { |
1870 | - $conditions[] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1870 | + $conditions[ ] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1871 | 1871 | } |
1872 | 1872 | |
1873 | 1873 | foreach ( $user_meta_fields as $meta_field ) { |
1874 | - $conditions[] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1874 | + $conditions[ ] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1875 | 1875 | } |
1876 | 1876 | |
1877 | 1877 | $conditions = '(' . implode( ' OR ', $conditions ) . ')'; |
@@ -1898,7 +1898,7 @@ discard block |
||
1898 | 1898 | $conditions = array(); |
1899 | 1899 | |
1900 | 1900 | if ( $this->search_condition->left->field_id === \GF_Query_Column::META ) { |
1901 | - $conditions[] = sprintf( "EXISTS(SELECT * FROM `$table` WHERE `meta_value` %s %s AND `entry_id` = `%s`.`id`)", |
|
1901 | + $conditions[ ] = sprintf( "EXISTS(SELECT * FROM `$table` WHERE `meta_value` %s %s AND `entry_id` = `%s`.`id`)", |
|
1902 | 1902 | $this->search_condition->operator, $this->search_condition->right->sql( $query ), $query->search->left->alias ); |
1903 | 1903 | } |
1904 | 1904 |
@@ -5,243 +5,243 @@ |
||
5 | 5 | */ |
6 | 6 | class GravityView_Change_Entry_Creator { |
7 | 7 | |
8 | - function __construct() { |
|
9 | - |
|
10 | - /** |
|
11 | - * @since 1.5.1 |
|
12 | - */ |
|
13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
14 | - |
|
15 | - // ONLY ADMIN FROM HERE ON. |
|
16 | - if( !is_admin() ) { return; } |
|
17 | - |
|
18 | - /** |
|
19 | - * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
20 | - * @since 1.7.4 |
|
21 | - * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
22 | - */ |
|
23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
24 | - return; |
|
25 | - } |
|
26 | - |
|
27 | - /** |
|
28 | - * Use `init` to fix bbPress warning |
|
29 | - * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
30 | - */ |
|
31 | - add_action('init', array( $this, 'load'), 100 ); |
|
32 | - |
|
33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
34 | - |
|
35 | - } |
|
36 | - |
|
37 | - /** |
|
38 | - * When an user is created using the User Registration add-on, assign the entry to them |
|
39 | - * |
|
40 | - * @since 1.5.1 |
|
41 | - * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
42 | - * @param int $user_id WordPress User ID |
|
43 | - * @param array $config User registration feed configuration |
|
44 | - * @param array $entry GF Entry array |
|
45 | - * @param string $password User password |
|
46 | - * @return void |
|
47 | - */ |
|
48 | - function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
49 | - |
|
50 | - /** |
|
51 | - * Disable assigning the new user to the entry by returning false. |
|
52 | - * @param int $user_id WordPress User ID |
|
53 | - * @param array $config User registration feed configuration |
|
54 | - * @param array $entry GF Entry array |
|
55 | - */ |
|
56 | - $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
57 | - |
|
58 | - // If filter returns false, do not process |
|
59 | - if( empty( $assign_to_lead ) ) { |
|
60 | - return; |
|
61 | - } |
|
62 | - |
|
63 | - // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
64 | - $result = RGFormsModel::update_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
65 | - |
|
66 | - if ( false === $result ) { |
|
67 | - $status = __('Error', 'gravityview'); |
|
68 | - global $wpdb; |
|
69 | - $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
|
70 | - } else { |
|
71 | - $status = __('Success', 'gravityview'); |
|
72 | - $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
73 | - } |
|
74 | - |
|
75 | - gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
|
76 | - |
|
77 | - /** |
|
78 | - * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
79 | - * @since 1.21.5 |
|
80 | - * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
81 | - */ |
|
82 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
83 | - return; |
|
84 | - } |
|
85 | - |
|
86 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
87 | - |
|
88 | - } |
|
89 | - |
|
90 | - /** |
|
91 | - * Disable previous functionality; use this one as the canonical. |
|
92 | - * @return void |
|
93 | - */ |
|
94 | - function prevent_conflicts() { |
|
95 | - |
|
96 | - // Plugin that was provided here: |
|
97 | - // @link https://gravityview.co/support/documentation/201991205/ |
|
98 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
100 | - |
|
101 | - } |
|
102 | - |
|
103 | - /** |
|
104 | - * @since 3.6.3 |
|
105 | - * @return void |
|
106 | - */ |
|
107 | - function load() { |
|
108 | - |
|
109 | - // Does GF exist? |
|
110 | - if( !class_exists('GFCommon') ) { |
|
111 | - return; |
|
112 | - } |
|
113 | - |
|
114 | - // Can the user edit entries? |
|
115 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
116 | - return; |
|
117 | - } |
|
118 | - |
|
119 | - // If screen mode isn't set, then we're in the wrong place. |
|
120 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
121 | - return; |
|
122 | - } |
|
123 | - |
|
124 | - // Now, no validation is required in the methods; let's hook in. |
|
125 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
126 | - |
|
127 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
128 | - |
|
129 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
130 | - |
|
131 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
135 | - * @return void |
|
136 | - */ |
|
137 | - function set_screen_mode() { |
|
138 | - |
|
139 | - if( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) { |
|
140 | - return; |
|
141 | - } |
|
142 | - |
|
143 | - // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
144 | - if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
145 | - $_POST["screen_mode"] = 'edit'; |
|
146 | - } |
|
147 | - |
|
148 | - } |
|
149 | - |
|
150 | - /** |
|
151 | - * When the entry creator is changed, add a note to the entry |
|
152 | - * @param array $form GF entry array |
|
153 | - * @param int $entry_id Entry ID |
|
154 | - * @return void |
|
155 | - */ |
|
156 | - function update_entry_creator($form, $entry_id) { |
|
157 | - global $current_user; |
|
8 | + function __construct() { |
|
9 | + |
|
10 | + /** |
|
11 | + * @since 1.5.1 |
|
12 | + */ |
|
13 | + add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
14 | + |
|
15 | + // ONLY ADMIN FROM HERE ON. |
|
16 | + if( !is_admin() ) { return; } |
|
17 | + |
|
18 | + /** |
|
19 | + * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
20 | + * @since 1.7.4 |
|
21 | + * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
22 | + */ |
|
23 | + if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
24 | + return; |
|
25 | + } |
|
26 | + |
|
27 | + /** |
|
28 | + * Use `init` to fix bbPress warning |
|
29 | + * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
30 | + */ |
|
31 | + add_action('init', array( $this, 'load'), 100 ); |
|
32 | + |
|
33 | + add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
34 | + |
|
35 | + } |
|
36 | + |
|
37 | + /** |
|
38 | + * When an user is created using the User Registration add-on, assign the entry to them |
|
39 | + * |
|
40 | + * @since 1.5.1 |
|
41 | + * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
42 | + * @param int $user_id WordPress User ID |
|
43 | + * @param array $config User registration feed configuration |
|
44 | + * @param array $entry GF Entry array |
|
45 | + * @param string $password User password |
|
46 | + * @return void |
|
47 | + */ |
|
48 | + function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
49 | + |
|
50 | + /** |
|
51 | + * Disable assigning the new user to the entry by returning false. |
|
52 | + * @param int $user_id WordPress User ID |
|
53 | + * @param array $config User registration feed configuration |
|
54 | + * @param array $entry GF Entry array |
|
55 | + */ |
|
56 | + $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
57 | + |
|
58 | + // If filter returns false, do not process |
|
59 | + if( empty( $assign_to_lead ) ) { |
|
60 | + return; |
|
61 | + } |
|
62 | + |
|
63 | + // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
64 | + $result = RGFormsModel::update_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
65 | + |
|
66 | + if ( false === $result ) { |
|
67 | + $status = __('Error', 'gravityview'); |
|
68 | + global $wpdb; |
|
69 | + $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
|
70 | + } else { |
|
71 | + $status = __('Success', 'gravityview'); |
|
72 | + $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
73 | + } |
|
74 | + |
|
75 | + gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
|
76 | + |
|
77 | + /** |
|
78 | + * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
79 | + * @since 1.21.5 |
|
80 | + * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
81 | + */ |
|
82 | + if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
83 | + return; |
|
84 | + } |
|
85 | + |
|
86 | + GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
87 | + |
|
88 | + } |
|
89 | + |
|
90 | + /** |
|
91 | + * Disable previous functionality; use this one as the canonical. |
|
92 | + * @return void |
|
93 | + */ |
|
94 | + function prevent_conflicts() { |
|
95 | + |
|
96 | + // Plugin that was provided here: |
|
97 | + // @link https://gravityview.co/support/documentation/201991205/ |
|
98 | + remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | + remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
100 | + |
|
101 | + } |
|
102 | + |
|
103 | + /** |
|
104 | + * @since 3.6.3 |
|
105 | + * @return void |
|
106 | + */ |
|
107 | + function load() { |
|
108 | + |
|
109 | + // Does GF exist? |
|
110 | + if( !class_exists('GFCommon') ) { |
|
111 | + return; |
|
112 | + } |
|
113 | + |
|
114 | + // Can the user edit entries? |
|
115 | + if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
116 | + return; |
|
117 | + } |
|
118 | + |
|
119 | + // If screen mode isn't set, then we're in the wrong place. |
|
120 | + if( empty( $_REQUEST['screen_mode'] ) ) { |
|
121 | + return; |
|
122 | + } |
|
123 | + |
|
124 | + // Now, no validation is required in the methods; let's hook in. |
|
125 | + add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
126 | + |
|
127 | + add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
128 | + |
|
129 | + add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
130 | + |
|
131 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
135 | + * @return void |
|
136 | + */ |
|
137 | + function set_screen_mode() { |
|
138 | + |
|
139 | + if( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) { |
|
140 | + return; |
|
141 | + } |
|
142 | + |
|
143 | + // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
144 | + if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
145 | + $_POST["screen_mode"] = 'edit'; |
|
146 | + } |
|
147 | + |
|
148 | + } |
|
149 | + |
|
150 | + /** |
|
151 | + * When the entry creator is changed, add a note to the entry |
|
152 | + * @param array $form GF entry array |
|
153 | + * @param int $entry_id Entry ID |
|
154 | + * @return void |
|
155 | + */ |
|
156 | + function update_entry_creator($form, $entry_id) { |
|
157 | + global $current_user; |
|
158 | 158 | |
159 | - // Update the entry |
|
160 | - $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
159 | + // Update the entry |
|
160 | + $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
161 | 161 | |
162 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
162 | + RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
163 | 163 | |
164 | - // If the creator has changed, let's add a note about who it used to be. |
|
165 | - $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
164 | + // If the creator has changed, let's add a note about who it used to be. |
|
165 | + $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
166 | 166 | |
167 | - // If there's no owner and there didn't used to be, keep going |
|
168 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
169 | - return; |
|
170 | - } |
|
167 | + // If there's no owner and there didn't used to be, keep going |
|
168 | + if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
169 | + return; |
|
170 | + } |
|
171 | 171 | |
172 | - // If the values have changed |
|
173 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
172 | + // If the values have changed |
|
173 | + if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
174 | 174 | |
175 | - $user_data = get_userdata($current_user->ID); |
|
175 | + $user_data = get_userdata($current_user->ID); |
|
176 | 176 | |
177 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
177 | + $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
178 | 178 | |
179 | - $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
179 | + $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
180 | 180 | |
181 | - if( !empty( $originally_created_by ) ) { |
|
182 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
183 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
184 | - } |
|
181 | + if( !empty( $originally_created_by ) ) { |
|
182 | + $originally_created_by_user_data = get_userdata($originally_created_by); |
|
183 | + $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
184 | + } |
|
185 | 185 | |
186 | - if( !empty( $created_by ) ) { |
|
187 | - $created_by_user_data = get_userdata($created_by); |
|
188 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
189 | - } |
|
186 | + if( !empty( $created_by ) ) { |
|
187 | + $created_by_user_data = get_userdata($created_by); |
|
188 | + $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
189 | + } |
|
190 | 190 | |
191 | - GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
192 | - } |
|
191 | + GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
192 | + } |
|
193 | 193 | |
194 | - } |
|
194 | + } |
|
195 | 195 | |
196 | - /** |
|
197 | - * Output the select to change the entry creator |
|
198 | - * @param int $form_id GF Form ID |
|
199 | - * @param array $entry GF entry array |
|
200 | - * @return void |
|
201 | - */ |
|
202 | - function add_select($form_id, $entry ) { |
|
196 | + /** |
|
197 | + * Output the select to change the entry creator |
|
198 | + * @param int $form_id GF Form ID |
|
199 | + * @param array $entry GF entry array |
|
200 | + * @return void |
|
201 | + */ |
|
202 | + function add_select($form_id, $entry ) { |
|
203 | 203 | |
204 | - if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
205 | - return; |
|
206 | - } |
|
204 | + if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
205 | + return; |
|
206 | + } |
|
207 | 207 | |
208 | - $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
208 | + $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
209 | 209 | |
210 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
210 | + $users = GVCommon::get_users( 'change_entry_creator' ); |
|
211 | 211 | |
212 | - $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
212 | + $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
213 | 213 | |
214 | - // Make sure that the entry creator is included in the users list. If not, add them. |
|
215 | - if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
214 | + // Make sure that the entry creator is included in the users list. If not, add them. |
|
215 | + if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
216 | 216 | |
217 | - if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
218 | - $users = array_merge( $users, $created_by_user ); |
|
219 | - } |
|
220 | - } |
|
217 | + if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
218 | + $users = array_merge( $users, $created_by_user ); |
|
219 | + } |
|
220 | + } |
|
221 | 221 | |
222 | - $output = '<label for="change_created_by">'; |
|
223 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
224 | - $output .= '</label>'; |
|
222 | + $output = '<label for="change_created_by">'; |
|
223 | + $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
224 | + $output .= '</label>'; |
|
225 | 225 | |
226 | - // If there are users who are not being shown, show a warning. |
|
227 | - // TODO: Use AJAX instead of <select> |
|
228 | - $count_users = count_users(); |
|
229 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
230 | - $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
231 | - } |
|
226 | + // If there are users who are not being shown, show a warning. |
|
227 | + // TODO: Use AJAX instead of <select> |
|
228 | + $count_users = count_users(); |
|
229 | + if( sizeof( $users ) < $count_users['total_users'] ) { |
|
230 | + $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
231 | + } |
|
232 | 232 | |
233 | - $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
234 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
235 | - foreach($users as $user) { |
|
236 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
237 | - } |
|
238 | - $output .= '</select>'; |
|
239 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
233 | + $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
234 | + $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
235 | + foreach($users as $user) { |
|
236 | + $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
237 | + } |
|
238 | + $output .= '</select>'; |
|
239 | + $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
240 | 240 | |
241 | - unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
241 | + unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
242 | 242 | |
243 | - echo $output; |
|
244 | - } |
|
243 | + echo $output; |
|
244 | + } |
|
245 | 245 | |
246 | 246 | } |
247 | 247 |
@@ -10,17 +10,17 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * @since 1.5.1 |
12 | 12 | */ |
13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
13 | + add_action( 'gform_user_registered', array( $this, 'assign_new_user_to_lead' ), 10, 4 ); |
|
14 | 14 | |
15 | 15 | // ONLY ADMIN FROM HERE ON. |
16 | - if( !is_admin() ) { return; } |
|
16 | + if ( ! is_admin() ) { return; } |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
20 | 20 | * @since 1.7.4 |
21 | 21 | * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
22 | 22 | */ |
23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
23 | + if ( apply_filters( 'gravityview_disable_change_entry_creator', false ) ) { |
|
24 | 24 | return; |
25 | 25 | } |
26 | 26 | |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | * Use `init` to fix bbPress warning |
29 | 29 | * @see https://bbpress.trac.wordpress.org/ticket/2309 |
30 | 30 | */ |
31 | - add_action('init', array( $this, 'load'), 100 ); |
|
31 | + add_action( 'init', array( $this, 'load' ), 100 ); |
|
32 | 32 | |
33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
33 | + add_action( 'plugins_loaded', array( $this, 'prevent_conflicts' ) ); |
|
34 | 34 | |
35 | 35 | } |
36 | 36 | |
@@ -56,20 +56,20 @@ discard block |
||
56 | 56 | $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
57 | 57 | |
58 | 58 | // If filter returns false, do not process |
59 | - if( empty( $assign_to_lead ) ) { |
|
59 | + if ( empty( $assign_to_lead ) ) { |
|
60 | 60 | return; |
61 | 61 | } |
62 | 62 | |
63 | 63 | // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
64 | - $result = RGFormsModel::update_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
64 | + $result = RGFormsModel::update_entry_property( (int)$entry[ 'id' ], 'created_by', (int)$user_id, false, true ); |
|
65 | 65 | |
66 | 66 | if ( false === $result ) { |
67 | - $status = __('Error', 'gravityview'); |
|
67 | + $status = __( 'Error', 'gravityview' ); |
|
68 | 68 | global $wpdb; |
69 | 69 | $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
70 | 70 | } else { |
71 | - $status = __('Success', 'gravityview'); |
|
72 | - $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
71 | + $status = __( 'Success', 'gravityview' ); |
|
72 | + $note = sprintf( _x( '%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview' ), $status, $user_id ); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
@@ -79,11 +79,11 @@ discard block |
||
79 | 79 | * @since 1.21.5 |
80 | 80 | * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
81 | 81 | */ |
82 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
82 | + if ( apply_filters( 'gravityview_disable_change_entry_creator_note', false ) ) { |
|
83 | 83 | return; |
84 | 84 | } |
85 | 85 | |
86 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
86 | + GravityView_Entry_Notes::add_note( $entry[ 'id' ], -1, 'GravityView', $note, 'gravityview' ); |
|
87 | 87 | |
88 | 88 | } |
89 | 89 | |
@@ -95,8 +95,8 @@ discard block |
||
95 | 95 | |
96 | 96 | // Plugin that was provided here: |
97 | 97 | // @link https://gravityview.co/support/documentation/201991205/ |
98 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
98 | + remove_action( "gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | + remove_action( "gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
100 | 100 | |
101 | 101 | } |
102 | 102 | |
@@ -107,26 +107,26 @@ discard block |
||
107 | 107 | function load() { |
108 | 108 | |
109 | 109 | // Does GF exist? |
110 | - if( !class_exists('GFCommon') ) { |
|
110 | + if ( ! class_exists( 'GFCommon' ) ) { |
|
111 | 111 | return; |
112 | 112 | } |
113 | 113 | |
114 | 114 | // Can the user edit entries? |
115 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
115 | + if ( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
116 | 116 | return; |
117 | 117 | } |
118 | 118 | |
119 | 119 | // If screen mode isn't set, then we're in the wrong place. |
120 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
120 | + if ( empty( $_REQUEST[ 'screen_mode' ] ) ) { |
|
121 | 121 | return; |
122 | 122 | } |
123 | 123 | |
124 | 124 | // Now, no validation is required in the methods; let's hook in. |
125 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
125 | + add_action( 'admin_init', array( &$this, 'set_screen_mode' ) ); |
|
126 | 126 | |
127 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
127 | + add_action( "gform_entry_info", array( &$this, 'add_select' ), 10, 2 ); |
|
128 | 128 | |
129 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
129 | + add_action( "gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2 ); |
|
130 | 130 | |
131 | 131 | } |
132 | 132 | |
@@ -136,13 +136,13 @@ discard block |
||
136 | 136 | */ |
137 | 137 | function set_screen_mode() { |
138 | 138 | |
139 | - if( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) { |
|
139 | + if ( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) { |
|
140 | 140 | return; |
141 | 141 | } |
142 | 142 | |
143 | 143 | // If $_GET['screen_mode'] is set to edit, set $_POST value |
144 | - if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
145 | - $_POST["screen_mode"] = 'edit'; |
|
144 | + if ( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
145 | + $_POST[ "screen_mode" ] = 'edit'; |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | } |
@@ -153,11 +153,11 @@ discard block |
||
153 | 153 | * @param int $entry_id Entry ID |
154 | 154 | * @return void |
155 | 155 | */ |
156 | - function update_entry_creator($form, $entry_id) { |
|
156 | + function update_entry_creator( $form, $entry_id ) { |
|
157 | 157 | global $current_user; |
158 | 158 | |
159 | 159 | // Update the entry |
160 | - $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
160 | + $created_by = absint( \GV\Utils::_POST( 'created_by' ) ); |
|
161 | 161 | |
162 | 162 | RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
163 | 163 | |
@@ -165,30 +165,30 @@ discard block |
||
165 | 165 | $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
166 | 166 | |
167 | 167 | // If there's no owner and there didn't used to be, keep going |
168 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
168 | + if ( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
169 | 169 | return; |
170 | 170 | } |
171 | 171 | |
172 | 172 | // If the values have changed |
173 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
173 | + if ( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
174 | 174 | |
175 | - $user_data = get_userdata($current_user->ID); |
|
175 | + $user_data = get_userdata( $current_user->ID ); |
|
176 | 176 | |
177 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
177 | + $user_format = _x( '%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview' ); |
|
178 | 178 | |
179 | - $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
179 | + $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview' ); |
|
180 | 180 | |
181 | - if( !empty( $originally_created_by ) ) { |
|
182 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
181 | + if ( ! empty( $originally_created_by ) ) { |
|
182 | + $originally_created_by_user_data = get_userdata( $originally_created_by ); |
|
183 | 183 | $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
184 | 184 | } |
185 | 185 | |
186 | - if( !empty( $created_by ) ) { |
|
187 | - $created_by_user_data = get_userdata($created_by); |
|
186 | + if ( ! empty( $created_by ) ) { |
|
187 | + $created_by_user_data = get_userdata( $created_by ); |
|
188 | 188 | $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
189 | 189 | } |
190 | 190 | |
191 | - GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
191 | + GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __( 'Changed entry creator from %s to %s', 'gravityview' ), $original_name, $created_by_name ), 'note' ); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | } |
@@ -199,9 +199,9 @@ discard block |
||
199 | 199 | * @param array $entry GF entry array |
200 | 200 | * @return void |
201 | 201 | */ |
202 | - function add_select($form_id, $entry ) { |
|
202 | + function add_select( $form_id, $entry ) { |
|
203 | 203 | |
204 | - if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
204 | + if ( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
205 | 205 | return; |
206 | 206 | } |
207 | 207 | |
@@ -220,23 +220,23 @@ discard block |
||
220 | 220 | } |
221 | 221 | |
222 | 222 | $output = '<label for="change_created_by">'; |
223 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
223 | + $output .= esc_html__( 'Change Entry Creator:', 'gravityview' ); |
|
224 | 224 | $output .= '</label>'; |
225 | 225 | |
226 | 226 | // If there are users who are not being shown, show a warning. |
227 | 227 | // TODO: Use AJAX instead of <select> |
228 | 228 | $count_users = count_users(); |
229 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
229 | + if ( sizeof( $users ) < $count_users[ 'total_users' ] ) { |
|
230 | 230 | $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
231 | 231 | } |
232 | 232 | |
233 | 233 | $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
234 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
235 | - foreach($users as $user) { |
|
236 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
234 | + $output .= '<option value="' . selected( $entry[ 'created_by' ], '0', false ) . '"> — ' . esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview' ) . ' — </option>'; |
|
235 | + foreach ( $users as $user ) { |
|
236 | + $output .= '<option value="' . $user->ID . '"' . selected( $entry[ 'created_by' ], $user->ID, false ) . '>' . esc_attr( $user->display_name . ' (' . $user->user_nicename . ')' ) . '</option>'; |
|
237 | 237 | } |
238 | 238 | $output .= '</select>'; |
239 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
239 | + $output .= '<input name="originally_created_by" value="' . esc_attr( $entry[ 'created_by' ] ) . '" type="hidden" />'; |
|
240 | 240 | |
241 | 241 | unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
242 | 242 |
@@ -102,8 +102,7 @@ discard block |
||
102 | 102 | $entries = $view->get_entries( gravityview()->request ); |
103 | 103 | } |
104 | 104 | |
105 | - $page = \GV\Utils::get( $parameters['paging'], 'current_page' ) ? |
|
106 | - : ( ( ( $parameters['paging']['offset'] - $view->settings->get( 'offset' ) ) / $parameters['paging']['page_size'] ) + 1 ); |
|
105 | + $page = \GV\Utils::get( $parameters[ 'paging' ], 'current_page' ) ?: ( ( ( $parameters[ 'paging' ][ 'offset' ] - $view->settings->get( 'offset' ) ) / $parameters[ 'paging' ][ 'page_size' ] ) + 1 ); |
|
107 | 106 | |
108 | 107 | /** Set paging, count and unwrap the entries. */ |
109 | 108 | $paging = array( |
@@ -142,17 +141,17 @@ discard block |
||
142 | 141 | * @return null|string The value of a field in an entry. |
143 | 142 | */ |
144 | 143 | function GravityView_API_field_value( $entry, $field_settings, $format ) { |
145 | - if ( empty( $entry['form_id'] ) || empty( $field_settings['id'] ) ) { |
|
144 | + if ( empty( $entry[ 'form_id' ] ) || empty( $field_settings[ 'id' ] ) ) { |
|
146 | 145 | gravityview()->log->error( 'No entry or field_settings[id] supplied', array( 'data' => array( func_get_args() ) ) ); |
147 | 146 | return null; |
148 | 147 | } |
149 | 148 | |
150 | - if ( ! empty( $entry['_multi'] ) && ! empty( $field_settings['form_id'] ) && ! empty( $entry['_multi'][ $field_settings['form_id'] ] ) ) { |
|
151 | - $multientry = \GV\Multi_Entry::from_entries( array_map( '\GV\GF_Entry::from_entry', $entry['_multi'] ) ); |
|
152 | - $entry = $entry['_multi'][ $field_settings['form_id'] ]; |
|
149 | + if ( ! empty( $entry[ '_multi' ] ) && ! empty( $field_settings[ 'form_id' ] ) && ! empty( $entry[ '_multi' ][ $field_settings[ 'form_id' ] ] ) ) { |
|
150 | + $multientry = \GV\Multi_Entry::from_entries( array_map( '\GV\GF_Entry::from_entry', $entry[ '_multi' ] ) ); |
|
151 | + $entry = $entry[ '_multi' ][ $field_settings[ 'form_id' ] ]; |
|
153 | 152 | } |
154 | 153 | |
155 | - if ( empty( $entry['id'] ) || ! $entry = \GV\GF_Entry::by_id( $entry['id'] ) ) { |
|
154 | + if ( empty( $entry[ 'id' ] ) || ! $entry = \GV\GF_Entry::by_id( $entry[ 'id' ] ) ) { |
|
156 | 155 | gravityview()->log->error( 'Invalid \GV\GF_Entry supplied', array( 'data' => $entry ) ); |
157 | 156 | return null; |
158 | 157 | } |
@@ -162,18 +161,18 @@ discard block |
||
162 | 161 | * |
163 | 162 | * Fields with a numeric ID are Gravity Forms ones. |
164 | 163 | */ |
165 | - $source = is_numeric( $field_settings['id'] ) ? \GV\Source::BACKEND_GRAVITYFORMS : \GV\Source::BACKEND_INTERNAL;; |
|
164 | + $source = is_numeric( $field_settings[ 'id' ] ) ? \GV\Source::BACKEND_GRAVITYFORMS : \GV\Source::BACKEND_INTERNAL; ; |
|
166 | 165 | |
167 | 166 | /** Initialize the future field. */ |
168 | 167 | switch ( $source ): |
169 | 168 | /** The Gravity Forms backend. */ |
170 | 169 | case \GV\Source::BACKEND_GRAVITYFORMS: |
171 | - if ( ! $form = \GV\GF_Form::by_id( $entry['form_id'] ) ) { |
|
170 | + if ( ! $form = \GV\GF_Form::by_id( $entry[ 'form_id' ] ) ) { |
|
172 | 171 | gravityview()->log->error( 'No form Gravity Form found for entry', array( 'data' => $entry ) ); |
173 | 172 | return null; |
174 | 173 | } |
175 | 174 | |
176 | - if ( ! $field = $form::get_field( $form, $field_settings['id'] ) ) { |
|
175 | + if ( ! $field = $form::get_field( $form, $field_settings[ 'id' ] ) ) { |
|
177 | 176 | return null; |
178 | 177 | } |
179 | 178 | |
@@ -181,7 +180,7 @@ discard block |
||
181 | 180 | |
182 | 181 | /** Our internal backend. */ |
183 | 182 | case \GV\Source::BACKEND_INTERNAL: |
184 | - if ( ! $field = \GV\Internal_Source::get_field( $field_settings['id'] ) ) { |
|
183 | + if ( ! $field = \GV\Internal_Source::get_field( $field_settings[ 'id' ] ) ) { |
|
185 | 184 | return null; |
186 | 185 | } |
187 | 186 | |
@@ -215,13 +214,13 @@ discard block |
||
215 | 214 | |
216 | 215 | /** A bail condition. */ |
217 | 216 | $bail = function( $label, $field_settings, $entry, $force_show_label, $form ) { |
218 | - if ( ! empty( $field_settings['show_label'] ) || $force_show_label ) { |
|
217 | + if ( ! empty( $field_settings[ 'show_label' ] ) || $force_show_label ) { |
|
219 | 218 | |
220 | - $label = isset( $field_settings['label'] ) ? $field_settings['label'] : ''; |
|
219 | + $label = isset( $field_settings[ 'label' ] ) ? $field_settings[ 'label' ] : ''; |
|
221 | 220 | |
222 | 221 | // Use Gravity Forms label by default, but if a custom label is defined in GV, use it. |
223 | - if ( ! empty( $field_settings['custom_label'] ) ) { |
|
224 | - $label = \GravityView_API::replace_variables( $field_settings['custom_label'], $form, $entry ); |
|
222 | + if ( ! empty( $field_settings[ 'custom_label' ] ) ) { |
|
223 | + $label = \GravityView_API::replace_variables( $field_settings[ 'custom_label' ], $form, $entry ); |
|
225 | 224 | } |
226 | 225 | |
227 | 226 | /** |
@@ -247,19 +246,19 @@ discard block |
||
247 | 246 | |
248 | 247 | $label = ''; |
249 | 248 | |
250 | - if ( ! empty( $entry['_multi'] ) && ! empty( $field_settings['form_id'] ) && ! empty( $entry['_multi'][ $field_settings['form_id'] ] ) ) { |
|
251 | - $entry = $entry['_multi'][ $field_settings['form_id'] ]; |
|
252 | - if ( $_form = \GV\GF_Form::by_id( $field_settings['form_id'] ) ) { |
|
249 | + if ( ! empty( $entry[ '_multi' ] ) && ! empty( $field_settings[ 'form_id' ] ) && ! empty( $entry[ '_multi' ][ $field_settings[ 'form_id' ] ] ) ) { |
|
250 | + $entry = $entry[ '_multi' ][ $field_settings[ 'form_id' ] ]; |
|
251 | + if ( $_form = \GV\GF_Form::by_id( $field_settings[ 'form_id' ] ) ) { |
|
253 | 252 | $form = $_form->form; |
254 | 253 | } |
255 | 254 | } |
256 | 255 | |
257 | - if ( empty( $entry['form_id'] ) || empty( $field_settings['id'] ) ) { |
|
256 | + if ( empty( $entry[ 'form_id' ] ) || empty( $field_settings[ 'id' ] ) ) { |
|
258 | 257 | gravityview()->log->error( 'No entry or field_settings[id] supplied', array( 'data' => array( func_get_args() ) ) ); |
259 | 258 | return $bail( $label, $field_settings, $entry, $force_show_label, $form ); |
260 | 259 | } |
261 | 260 | |
262 | - if ( empty( $entry['id'] ) || ! $gv_entry = \GV\GF_Entry::by_id( $entry['id'] ) ) { |
|
261 | + if ( empty( $entry[ 'id' ] ) || ! $gv_entry = \GV\GF_Entry::by_id( $entry[ 'id' ] ) ) { |
|
263 | 262 | gravityview()->log->error( 'Invalid \GV\GF_Entry supplied', array( 'data' => $entry ) ); |
264 | 263 | return $bail( $label, $field_settings, $entry, $force_show_label, $form ); |
265 | 264 | } |
@@ -271,31 +270,31 @@ discard block |
||
271 | 270 | * |
272 | 271 | * Fields with a numeric ID are Gravity Forms ones. |
273 | 272 | */ |
274 | - $source = is_numeric( $field_settings['id'] ) ? \GV\Source::BACKEND_GRAVITYFORMS : \GV\Source::BACKEND_INTERNAL; |
|
273 | + $source = is_numeric( $field_settings[ 'id' ] ) ? \GV\Source::BACKEND_GRAVITYFORMS : \GV\Source::BACKEND_INTERNAL; |
|
275 | 274 | |
276 | 275 | /** Initialize the future field. */ |
277 | 276 | switch ( $source ): |
278 | 277 | /** The Gravity Forms backend. */ |
279 | 278 | case \GV\Source::BACKEND_GRAVITYFORMS: |
280 | - if ( ! $gf_form = \GV\GF_Form::by_id( $entry['form_id'] ) ) { |
|
279 | + if ( ! $gf_form = \GV\GF_Form::by_id( $entry[ 'form_id' ] ) ) { |
|
281 | 280 | gravityview()->log->error( 'No form Gravity Form found for entry', array( 'data' => $entry ) ); |
282 | 281 | return $bail( $label, $field_settings, $entry->as_entry(), $force_show_label, $form ); |
283 | 282 | } |
284 | 283 | |
285 | - if ( ! $field = $gf_form::get_field( $gf_form, $field_settings['id'] ) ) { |
|
286 | - gravityview()->log->error( 'No field found for specified form and field ID #{field_id}', array( 'field_id' => $field_settings['id'], 'data' => $form ) ); |
|
284 | + if ( ! $field = $gf_form::get_field( $gf_form, $field_settings[ 'id' ] ) ) { |
|
285 | + gravityview()->log->error( 'No field found for specified form and field ID #{field_id}', array( 'field_id' => $field_settings[ 'id' ], 'data' => $form ) ); |
|
287 | 286 | return $bail( $label, $field_settings, $entry->as_entry(), $force_show_label, $gf_form->form ); |
288 | 287 | } |
289 | - if ( empty( $field_settings['show_label'] ) ) { |
|
288 | + if ( empty( $field_settings[ 'show_label' ] ) ) { |
|
290 | 289 | /** The label never wins... */ |
291 | - $field_settings['label'] = ''; |
|
290 | + $field_settings[ 'label' ] = ''; |
|
292 | 291 | } |
293 | 292 | |
294 | 293 | break; |
295 | 294 | |
296 | 295 | /** Our internal backend. */ |
297 | 296 | case \GV\Source::BACKEND_INTERNAL: |
298 | - if ( ! $field = \GV\Internal_Source::get_field( $field_settings['id'] ) ) { |
|
297 | + if ( ! $field = \GV\Internal_Source::get_field( $field_settings[ 'id' ] ) ) { |
|
299 | 298 | return $bail( $label, $field_settings, $entry->as_entry(), $force_show_label, $form ); |
300 | 299 | } |
301 | 300 | break; |
@@ -307,8 +306,8 @@ discard block |
||
307 | 306 | break; |
308 | 307 | endswitch; |
309 | 308 | |
310 | - if( $force_show_label ) { |
|
311 | - $field_settings['show_label'] = '1'; |
|
309 | + if ( $force_show_label ) { |
|
310 | + $field_settings[ 'show_label' ] = '1'; |
|
312 | 311 | } |
313 | 312 | |
314 | 313 | /** Add the field settings. */ |
@@ -444,7 +443,7 @@ discard block |
||
444 | 443 | '\GravityView_View::_current_entry' => \GravityView_View::getInstance()->getCurrentEntry(), |
445 | 444 | '\GravityView_View::fields' => \GravityView_View::getInstance()->getFields(), |
446 | 445 | '\GravityView_View::_current_field' => \GravityView_View::getInstance()->getCurrentField(), |
447 | - 'wp_actions[loop_start]' => empty( $wp_actions['loop_start'] ) ? 0 : $wp_actions['loop_start'], |
|
446 | + 'wp_actions[loop_start]' => empty( $wp_actions[ 'loop_start' ] ) ? 0 : $wp_actions[ 'loop_start' ], |
|
448 | 447 | 'wp_query::in_the_loop' => $wp_query->in_the_loop, |
449 | 448 | ); |
450 | 449 | } |
@@ -532,7 +531,7 @@ discard block |
||
532 | 531 | break; |
533 | 532 | case 'wp_actions[loop_start]': |
534 | 533 | global $wp_actions; |
535 | - $wp_actions['loop_start'] = $value; |
|
534 | + $wp_actions[ 'loop_start' ] = $value; |
|
536 | 535 | break; |
537 | 536 | case 'wp_query::in_the_loop': |
538 | 537 | global $wp_query; |
@@ -629,9 +628,7 @@ discard block |
||
629 | 628 | case 'request': |
630 | 629 | self::thaw( array( |
631 | 630 | '\GravityView_View::context' => ( |
632 | - $value->is_entry() ? 'single' : |
|
633 | - ( $value->is_edit_entry() ? 'edit' : |
|
634 | - ( $value->is_view() ? 'directory': null ) |
|
631 | + $value->is_entry() ? 'single' : ( $value->is_edit_entry() ? 'edit' : ( $value->is_view() ? 'directory' : null ) |
|
635 | 632 | ) |
636 | 633 | ), |
637 | 634 | '\GravityView_frontend::is_search' => $value->is_search(), |
@@ -685,14 +682,14 @@ discard block |
||
685 | 682 | global $wp_query, $wp_actions; |
686 | 683 | |
687 | 684 | $wp_query->in_the_loop = false; |
688 | - $wp_actions['loop_start'] = 0; |
|
685 | + $wp_actions[ 'loop_start' ] = 0; |
|
689 | 686 | } |
690 | 687 | } |
691 | 688 | |
692 | 689 | |
693 | 690 | /** Add some global fix for field capability discrepancies. */ |
694 | 691 | add_filter( 'gravityview/configuration/fields', function( $fields ) { |
695 | - if ( empty( $fields ) ) { |
|
692 | + if ( empty( $fields ) ) { |
|
696 | 693 | return $fields; |
697 | 694 | } |
698 | 695 | |
@@ -719,11 +716,11 @@ discard block |
||
719 | 716 | } |
720 | 717 | |
721 | 718 | foreach ( $_fields as $uid => &$_field ) { |
722 | - if ( ! isset( $_field['only_loggedin'] ) ) { |
|
719 | + if ( ! isset( $_field[ 'only_loggedin' ] ) ) { |
|
723 | 720 | continue; |
724 | 721 | } |
725 | 722 | /** If we do not require login, we don't require a cap. */ |
726 | - $_field['only_loggedin'] != '1' && ( $_field['only_loggedin_cap'] = '' ); |
|
723 | + $_field[ 'only_loggedin' ] != '1' && ( $_field[ 'only_loggedin_cap' ] = '' ); |
|
727 | 724 | } |
728 | 725 | } |
729 | 726 | return $fields; |
@@ -754,8 +751,8 @@ discard block |
||
754 | 751 | } |
755 | 752 | |
756 | 753 | foreach ( $_fields as $uid => &$_field ) { |
757 | - if ( ! empty( $_field['id'] ) && is_numeric( $_field['id'] ) && empty( $_field['form_id'] ) ) { |
|
758 | - $_field['form_id'] = $view->form->ID; |
|
754 | + if ( ! empty( $_field[ 'id' ] ) && is_numeric( $_field[ 'id' ] ) && empty( $_field[ 'form_id' ] ) ) { |
|
755 | + $_field[ 'form_id' ] = $view->form->ID; |
|
759 | 756 | } |
760 | 757 | } |
761 | 758 | } |
@@ -769,25 +766,25 @@ discard block |
||
769 | 766 | if ( class_exists( '\GravityView_frontend' ) ) { |
770 | 767 | global $wp_filter; |
771 | 768 | |
772 | - if ( empty( $wp_filter['gravityview_after'] ) ) { |
|
769 | + if ( empty( $wp_filter[ 'gravityview_after' ] ) ) { |
|
773 | 770 | return; |
774 | 771 | } |
775 | 772 | |
776 | 773 | /** WordPress 4.6 and lower compatibility, when WP_Hook classes were still absent. */ |
777 | - if ( is_array( $wp_filter['gravityview_after'] ) ) { |
|
778 | - if ( ! empty( $wp_filter['gravityview_after'][10] ) ) { |
|
779 | - foreach ( $wp_filter['gravityview_after'][10] as $function_key => $callback ) { |
|
774 | + if ( is_array( $wp_filter[ 'gravityview_after' ] ) ) { |
|
775 | + if ( ! empty( $wp_filter[ 'gravityview_after' ][ 10 ] ) ) { |
|
776 | + foreach ( $wp_filter[ 'gravityview_after' ][ 10 ] as $function_key => $callback ) { |
|
780 | 777 | if ( strpos( $function_key, 'context_not_configured_warning' ) ) { |
781 | - unset( $wp_filter['gravityview_after'][10][ $function_key ] ); |
|
778 | + unset( $wp_filter[ 'gravityview_after' ][ 10 ][ $function_key ] ); |
|
782 | 779 | } |
783 | 780 | } |
784 | 781 | } |
785 | 782 | return; |
786 | 783 | } |
787 | 784 | |
788 | - foreach ( $wp_filter['gravityview_after']->callbacks[10] as $function_key => $callback ) { |
|
785 | + foreach ( $wp_filter[ 'gravityview_after' ]->callbacks[ 10 ] as $function_key => $callback ) { |
|
789 | 786 | if ( strpos( $function_key, 'context_not_configured_warning' ) ) { |
790 | - unset( $wp_filter['gravityview_after']->callbacks[10][ $function_key ] ); |
|
787 | + unset( $wp_filter[ 'gravityview_after' ]->callbacks[ 10 ][ $function_key ] ); |
|
791 | 788 | } |
792 | 789 | } |
793 | 790 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | $this->label = esc_html__( 'Number Sequence', 'gravityview' ); |
40 | 40 | |
41 | - add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'field_tooltips') ); |
|
41 | + add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'field_tooltips' ) ); |
|
42 | 42 | |
43 | 43 | parent::__construct(); |
44 | 44 | } |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | |
53 | 53 | $return = $tooltips; |
54 | 54 | |
55 | - $return['reverse_sequence'] = array( |
|
56 | - 'title' => __('Reverse the order of the result numbers', 'gravityview'), |
|
57 | - 'value' => __('Output the number sequence in descending order. If enabled, numbers will count down from high to low.', 'gravityview'), |
|
55 | + $return[ 'reverse_sequence' ] = array( |
|
56 | + 'title' => __( 'Reverse the order of the result numbers', 'gravityview' ), |
|
57 | + 'value' => __( 'Output the number sequence in descending order. If enabled, numbers will count down from high to low.', 'gravityview' ), |
|
58 | 58 | ); |
59 | 59 | |
60 | 60 | return $return; |
@@ -62,13 +62,13 @@ discard block |
||
62 | 62 | |
63 | 63 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
64 | 64 | |
65 | - unset ( $field_options['search_filter'] ); |
|
65 | + unset ( $field_options[ 'search_filter' ] ); |
|
66 | 66 | |
67 | 67 | $new_fields = array( |
68 | 68 | 'start' => array( |
69 | 69 | 'type' => 'number', |
70 | 70 | 'label' => __( 'First Number in the Sequence', 'gravityview' ), |
71 | - 'desc' => __('For each entry, the displayed number will increase by one. When displaying ten entries, the first entry will display "1", and the last entry will show "10".', 'gravityview'), |
|
71 | + 'desc' => __( 'For each entry, the displayed number will increase by one. When displaying ten entries, the first entry will display "1", and the last entry will show "10".', 'gravityview' ), |
|
72 | 72 | 'value' => '1', |
73 | 73 | 'merge_tags' => false, |
74 | 74 | ), |
@@ -124,17 +124,17 @@ discard block |
||
124 | 124 | $return = $text; |
125 | 125 | |
126 | 126 | $context = new \GV\Template_Context(); |
127 | - $context->view = \GV\View::by_id( $view_data['view_id'] ); |
|
127 | + $context->view = \GV\View::by_id( $view_data[ 'view_id' ] ); |
|
128 | 128 | $context->entry = \GV\GF_Entry::from_entry( $entry ); |
129 | 129 | |
130 | 130 | $gv_field = \GV\Internal_Field::by_id( 'sequence' ); |
131 | 131 | $merge_tag_context = \GV\Utils::get( $legacy_field, 'UID' ); |
132 | - $merge_tag_context = $entry['id'] . "/{$merge_tag_context}"; |
|
132 | + $merge_tag_context = $entry[ 'id' ] . "/{$merge_tag_context}"; |
|
133 | 133 | |
134 | 134 | foreach ( $matches as $match ) { |
135 | 135 | |
136 | - $full_tag = $match[0]; |
|
137 | - $property = $match[1]; |
|
136 | + $full_tag = $match[ 0 ]; |
|
137 | + $property = $match[ 1 ]; |
|
138 | 138 | |
139 | 139 | $gv_field->reverse = false; |
140 | 140 | $gv_field->start = 1; |
@@ -153,12 +153,12 @@ discard block |
||
153 | 153 | |
154 | 154 | // If there is a field with the ID of the start number, the merge tag won't work. |
155 | 155 | // In that case, you can use "=" instead: `{sequence start=10}` |
156 | - if( 1 === sizeof( $maybe_start ) ) { |
|
156 | + if ( 1 === sizeof( $maybe_start ) ) { |
|
157 | 157 | $maybe_start = explode( '=', $modifier ); |
158 | 158 | } |
159 | 159 | |
160 | 160 | if ( 'start' === rgar( $maybe_start, 0 ) && is_numeric( rgar( $maybe_start, 1 ) ) ) { |
161 | - $gv_field->start = (int) rgar( $maybe_start, 1 ); |
|
161 | + $gv_field->start = (int)rgar( $maybe_start, 1 ); |
|
162 | 162 | } |
163 | 163 | } |
164 | 164 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | $merge_tag_context_modifiers = $merge_tag_context . '/' . var_export( $gv_field->reverse, true ) . '/' . $gv_field->start; |
170 | 170 | |
171 | 171 | if ( ! isset( $merge_tag_sequences[ $merge_tag_context_modifiers ] ) ) { |
172 | - $gv_field->UID = $legacy_field['UID'] . '/' . var_export( $gv_field->reverse, true ) . '/' . $gv_field->start; |
|
172 | + $gv_field->UID = $legacy_field[ 'UID' ] . '/' . var_export( $gv_field->reverse, true ) . '/' . $gv_field->start; |
|
173 | 173 | $context->field = $gv_field; |
174 | 174 | $sequence = $merge_tag_sequences[ $merge_tag_context_modifiers ] = $this->get_sequence( $context ); |
175 | 175 | } else { |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | $total = $context->view->get_entries()->total(); |
215 | 215 | remove_filter( 'gform_gf_query_sql', $callback ); |
216 | 216 | |
217 | - unset( $sql_query['paginate'] ); |
|
217 | + unset( $sql_query[ 'paginate' ] ); |
|
218 | 218 | |
219 | 219 | global $wpdb; |
220 | 220 |