@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | function __construct() { |
23 | 23 | |
24 | 24 | $this->widget_id = 'poll'; |
25 | - $this->widget_description = __('Displays the results of Poll Fields that exist in the form.', 'gravityview' ); |
|
26 | - $this->widget_subtitle = sprintf( _x('Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' ); |
|
25 | + $this->widget_description = __( 'Displays the results of Poll Fields that exist in the form.', 'gravityview' ); |
|
26 | + $this->widget_subtitle = sprintf( _x( 'Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' ); |
|
27 | 27 | |
28 | 28 | $default_values = array( |
29 | 29 | 'header' => 1, |
@@ -32,27 +32,27 @@ discard block |
||
32 | 32 | |
33 | 33 | $settings = array( |
34 | 34 | 'percentages' => array( |
35 | - 'label' => __('Display Percentages', 'gravityview'), |
|
35 | + 'label' => __( 'Display Percentages', 'gravityview' ), |
|
36 | 36 | 'type' => 'checkbox', |
37 | 37 | 'value' => true, |
38 | 38 | 'tooltip' => __( 'Display results percentages as part of results? Supported values are: true, false. Defaults to "true".', 'gravityview' ), |
39 | 39 | ), |
40 | 40 | 'counts' => array( |
41 | - 'label' => __('Display Counts', 'gravityview'), |
|
41 | + 'label' => __( 'Display Counts', 'gravityview' ), |
|
42 | 42 | 'type' => 'checkbox', |
43 | 43 | 'value' => true, |
44 | 44 | 'tooltip' => __( 'Display number of times each choice has been selected when displaying results? Supported values are: true, false. Defaults to "true".', 'gravityview' ), |
45 | 45 | ), |
46 | 46 | 'style' => array( |
47 | 47 | 'type' => 'select', |
48 | - 'label' => __('Style', 'gravityview'), |
|
48 | + 'label' => __( 'Style', 'gravityview' ), |
|
49 | 49 | 'tooltip' => __( 'The Polls Add-On currently supports 4 built in styles: red, green, orange, blue. Defaults to "green".', 'gravityview' ), |
50 | 50 | 'value' => 'green', |
51 | 51 | 'choices' => array( |
52 | - 'green' => __('Green', 'gravityview'), |
|
53 | - 'blue' => __('Blue', 'gravityview'), |
|
54 | - 'red' => __('Red', 'gravityview'), |
|
55 | - 'orange' => __('Orange', 'gravityview'), |
|
52 | + 'green' => __( 'Green', 'gravityview' ), |
|
53 | + 'blue' => __( 'Blue', 'gravityview' ), |
|
54 | + 'red' => __( 'Red', 'gravityview' ), |
|
55 | + 'orange' => __( 'Orange', 'gravityview' ), |
|
56 | 56 | ), |
57 | 57 | ), |
58 | 58 | ); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
63 | 63 | } |
64 | 64 | |
65 | - parent::__construct( __( 'Poll Results', 'gravityview' ) , null, $default_values, $settings ); |
|
65 | + parent::__construct( __( 'Poll Results', 'gravityview' ), null, $default_values, $settings ); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -89,11 +89,11 @@ discard block |
||
89 | 89 | |
90 | 90 | $GFPolls = GFPolls::get_instance(); |
91 | 91 | |
92 | - wp_enqueue_script('gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array('jquery'), $GFPolls->_version); |
|
92 | + wp_enqueue_script( 'gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array( 'jquery' ), $GFPolls->_version ); |
|
93 | 93 | |
94 | 94 | $GFPolls->localize_scripts(); |
95 | 95 | |
96 | - wp_enqueue_style('gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version); |
|
96 | + wp_enqueue_style( 'gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version ); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function pre_render_frontend() { |
105 | 105 | |
106 | - if( ! class_exists('GFPolls') ) { |
|
106 | + if ( ! class_exists( 'GFPolls' ) ) { |
|
107 | 107 | |
108 | 108 | gravityview()->log->error( 'Poll Widget not displayed; the Poll Addon is not loaded' ); |
109 | 109 | |
@@ -112,10 +112,10 @@ discard block |
||
112 | 112 | |
113 | 113 | $view = gravityview()->views->get(); |
114 | 114 | |
115 | - $poll_fields = array( $view->form->form['id'] => GFCommon::get_fields_by_type( $view->form, array( 'poll' ) ) ); |
|
115 | + $poll_fields = array( $view->form->form[ 'id' ] => GFCommon::get_fields_by_type( $view->form, array( 'poll' ) ) ); |
|
116 | 116 | |
117 | 117 | foreach ( $view->joins as $join ) { |
118 | - $poll_fields[ $join->join_on->form['id'] ] = GFCommon::get_fields_by_type( $join->join_on->form, array( 'poll' ) ); |
|
118 | + $poll_fields[ $join->join_on->form[ 'id' ] ] = GFCommon::get_fields_by_type( $join->join_on->form, array( 'poll' ) ); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | $poll_fields = array_filter( $poll_fields ); |
@@ -167,12 +167,12 @@ discard block |
||
167 | 167 | */ |
168 | 168 | public function render_frontend( $widget_args, $content = '', $context = '' ) { |
169 | 169 | |
170 | - if( ! $this->pre_render_frontend() ) { |
|
170 | + if ( ! $this->pre_render_frontend() ) { |
|
171 | 171 | return; |
172 | 172 | } |
173 | 173 | |
174 | 174 | // Make sure the class is loaded in DataTables |
175 | - if( !class_exists( 'GFFormDisplay' ) ) { |
|
175 | + if ( ! class_exists( 'GFFormDisplay' ) ) { |
|
176 | 176 | include_once( GFCommon::get_base_path() . '/form_display.php' ); |
177 | 177 | } |
178 | 178 | |
@@ -180,14 +180,14 @@ discard block |
||
180 | 180 | |
181 | 181 | $settings = $this->get_frontend_settings( $widget_args ); |
182 | 182 | |
183 | - $percentages = empty( $settings['percentages'] ) ? 'false' : 'true'; |
|
183 | + $percentages = empty( $settings[ 'percentages' ] ) ? 'false' : 'true'; |
|
184 | 184 | |
185 | - $counts = empty( $settings['counts'] ) ? 'false' : 'true'; |
|
185 | + $counts = empty( $settings[ 'counts' ] ) ? 'false' : 'true'; |
|
186 | 186 | |
187 | - if( !empty( $settings['field'] ) ) { |
|
188 | - $merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings['field'], $settings['style'], $percentages, $counts ); |
|
187 | + if ( ! empty( $settings[ 'field' ] ) ) { |
|
188 | + $merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings[ 'field' ], $settings[ 'style' ], $percentages, $counts ); |
|
189 | 189 | } else { |
190 | - $merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings['style'], $percentages, $counts ); |
|
190 | + $merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings[ 'style' ], $percentages, $counts ); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | $gravityview_view = GravityView_View::getInstance(); |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | $gravityview_view->poll_settings = $settings; |
198 | 198 | $gravityview_view->poll_fields = $this->poll_fields; |
199 | 199 | |
200 | - $gravityview_view->render('widget', 'poll', false ); |
|
200 | + $gravityview_view->render( 'widget', 'poll', false ); |
|
201 | 201 | |
202 | 202 | unset( $gravityview_view->poll_merge_tag, $gravityview_view->poll_settings, $gravityview_view->poll_form, $gravityview_view->poll_fields ); |
203 | 203 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function the_field( \GV\Field $field ) { |
28 | 28 | $renderer = new Field_Renderer(); |
29 | - $source = is_numeric( $field->ID ) ? ( GF_Form::by_id( $field->form_id ) ? : $this->view->form ) : new Internal_Source(); |
|
29 | + $source = is_numeric( $field->ID ) ? ( GF_Form::by_id( $field->form_id ) ?: $this->view->form ) : new Internal_Source(); |
|
30 | 30 | |
31 | 31 | return $renderer->render( $field, $this->view, $source, $this->entry->from_field( $field ), $this->request ); |
32 | 32 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | foreach ( $fields->all() as $field ) { |
64 | 64 | $context = Template_Context::from_template( $this, compact( 'field' ) ); |
65 | 65 | |
66 | - $form = \GV\GF_Form::by_id( $field->form_id ) ? : $this->view->form; |
|
66 | + $form = \GV\GF_Form::by_id( $field->form_id ) ?: $this->view->form; |
|
67 | 67 | $entry = $this->entry->from_field( $field ); |
68 | 68 | |
69 | 69 | if ( ! $entry ) { |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @return string |
27 | 27 | */ |
28 | 28 | public function the_field( \GV\Field $field, $extras = null ) { |
29 | - $form = \GV\GF_Form::by_id( $field->form_id ) ? : $this->view->form; |
|
29 | + $form = \GV\GF_Form::by_id( $field->form_id ) ?: $this->view->form; |
|
30 | 30 | $entry = $this->entry->from_field( $field ); |
31 | 31 | |
32 | 32 | if ( ! $entry ) { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | $renderer = new Field_Renderer(); |
37 | - $source = is_numeric( $field->ID ) ? ( GF_Form::by_id( $field->form_id ) ? : $this->view->form ) : new Internal_Source(); |
|
37 | + $source = is_numeric( $field->ID ) ? ( GF_Form::by_id( $field->form_id ) ?: $this->view->form ) : new Internal_Source(); |
|
38 | 38 | |
39 | 39 | $value = $renderer->render( $field, $this->view, $source, $entry, $this->request ); |
40 | 40 | |
@@ -62,13 +62,13 @@ discard block |
||
62 | 62 | $hide_empty = apply_filters( 'gravityview/render/hide-empty-zone', Utils::get( $extras, 'hide_empty', $this->view->settings->get( 'hide_empty', false ) ), $context ); |
63 | 63 | |
64 | 64 | if ( is_numeric( $field->ID ) ) { |
65 | - $extras['field'] = $field->as_configuration(); |
|
65 | + $extras[ 'field' ] = $field->as_configuration(); |
|
66 | 66 | } |
67 | 67 | |
68 | - $extras['entry'] = $this->entry->as_entry(); |
|
69 | - $extras['hide_empty'] = $hide_empty; |
|
70 | - $extras['label'] = $label; |
|
71 | - $extras['value'] = $value; |
|
68 | + $extras[ 'entry' ] = $this->entry->as_entry(); |
|
69 | + $extras[ 'hide_empty' ] = $hide_empty; |
|
70 | + $extras[ 'label' ] = $label; |
|
71 | + $extras[ 'value' ] = $value; |
|
72 | 72 | |
73 | 73 | return \gravityview_field_output( $extras, $context ); |
74 | 74 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | |
14 | 14 | /** |
15 | 15 | * @var string The hash key used to generate secure message history |
16 | - * @since 2.2.5 |
|
16 | + * @since 2.2.5 |
|
17 | 17 | */ |
18 | 18 | const beacon_key = 'lCXlwbQR707kipR+J0MCqcxrhGOHjGF0ldD6yNbGM0w='; |
19 | 19 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | 'payment_id' => '', |
111 | 111 | 'customer_name' => '', |
112 | 112 | 'customer_email' => '', |
113 | - 'price_id' => '0', |
|
113 | + 'price_id' => '0', |
|
114 | 114 | ) ); |
115 | 115 | |
116 | 116 | // This is just HTML we don't need. |
@@ -127,9 +127,9 @@ discard block |
||
127 | 127 | case 3: |
128 | 128 | $package = 'All Access'; |
129 | 129 | break; |
130 | - case 4: |
|
131 | - $package = 'Lifetime'; |
|
132 | - break; |
|
130 | + case 4: |
|
131 | + $package = 'Lifetime'; |
|
132 | + break; |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | $current_user = wp_get_current_user(); |
@@ -159,27 +159,27 @@ discard block |
||
159 | 159 | // Help Scout length limit is 200 characters |
160 | 160 | foreach( $data as $key => $value ) { |
161 | 161 | if ( ! is_string( $value ) ) { |
162 | - continue; |
|
162 | + continue; |
|
163 | 163 | } |
164 | - $data[ $key ] = mb_substr( $value, 0, 200 ); |
|
165 | - } |
|
164 | + $data[ $key ] = mb_substr( $value, 0, 200 ); |
|
165 | + } |
|
166 | 166 | |
167 | 167 | $localization_data = array( |
168 | 168 | 'contactEnabled' => (int)GVCommon::has_cap( 'gravityview_contact_support' ), |
169 | 169 | 'data' => $data, |
170 | 170 | 'translation' => $translation, |
171 | - 'suggest' => array(), |
|
171 | + 'suggest' => array(), |
|
172 | 172 | ); |
173 | 173 | |
174 | 174 | /** |
175 | - * @filter `gravityview/support_port/localization_data` Filter data passed to the Support Port, before localize_script is run |
|
175 | + * @filter `gravityview/support_port/localization_data` Filter data passed to the Support Port, before localize_script is run |
|
176 | 176 | * @since 2.0 |
177 | - * @param array $localization_data { |
|
178 | - * @type int $contactEnabled Can the user contact support? |
|
179 | - * @type array $data Support/license info |
|
180 | - * @type array $translation i18n strings |
|
181 | - * @type array $suggest Article IDs to recommend to the user (per page in the admin |
|
182 | - * } |
|
177 | + * @param array $localization_data { |
|
178 | + * @type int $contactEnabled Can the user contact support? |
|
179 | + * @type array $data Support/license info |
|
180 | + * @type array $translation i18n strings |
|
181 | + * @type array $suggest Article IDs to recommend to the user (per page in the admin |
|
182 | + * } |
|
183 | 183 | */ |
184 | 184 | $localization_data = apply_filters( 'gravityview/support_port/localization_data', $localization_data ); |
185 | 185 | |
@@ -193,11 +193,11 @@ discard block |
||
193 | 193 | * |
194 | 194 | * If the user doesn't have the `gravityview_support_port` capability, returns false; then |
195 | 195 | * If global setting is "hide", returns false; then |
196 | - * If user preference is not set, return global setting; then |
|
197 | - * If user preference is set, return that setting. |
|
196 | + * If user preference is not set, return global setting; then |
|
197 | + * If user preference is set, return that setting. |
|
198 | 198 | * |
199 | 199 | * @since 1.15 |
200 | - * @since 1.17.5 Changed behavior to respect global setting |
|
200 | + * @since 1.17.5 Changed behavior to respect global setting |
|
201 | 201 | * |
202 | 202 | * @param int $user Optional. ID of the user to check, defaults to 0 for current user. |
203 | 203 | * |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | $global_setting = gravityview()->plugin->settings->get( 'support_port' ); |
213 | 213 | |
214 | 214 | if ( empty( $global_setting ) ) { |
215 | - return false; |
|
215 | + return false; |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | // Get the per-user Support Port setting |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | * Modifies the output of profile.php to add GravityView Support preference |
249 | 249 | * |
250 | 250 | * @since 1.15 |
251 | - * @since 1.17.5 Only show if global setting is active |
|
251 | + * @since 1.17.5 Only show if global setting is active |
|
252 | 252 | * |
253 | 253 | * @param WP_User $user Current user info |
254 | 254 | * |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | $global_setting = gravityview()->plugin->settings->get( 'support_port' ); |
260 | 260 | |
261 | 261 | if ( empty( $global_setting ) ) { |
262 | - return; |
|
262 | + return; |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | /** |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function maybe_add_article_to_tooltip( $tooltip = '', $article = array(), $url = '', $atts = '', $css_class = '', $anchor_text = '' ) { |
55 | 55 | |
56 | - if ( empty( $article['id'] ) ) { |
|
56 | + if ( empty( $article[ 'id' ] ) ) { |
|
57 | 57 | return $tooltip; |
58 | 58 | } |
59 | 59 | |
@@ -69,10 +69,10 @@ discard block |
||
69 | 69 | |
70 | 70 | $css_class .= ' gv_tooltip'; |
71 | 71 | |
72 | - if ( ! empty( $article['type'] ) ) { |
|
73 | - $atts = sprintf( 'data-beacon-article-%s="%s"', $article['type'], $article['id'] ); |
|
72 | + if ( ! empty( $article[ 'type' ] ) ) { |
|
73 | + $atts = sprintf( 'data-beacon-article-%s="%s"', $article[ 'type' ], $article[ 'id' ] ); |
|
74 | 74 | } else { |
75 | - $atts = sprintf( 'data-beacon-article="%s"', $article['id'] ); |
|
75 | + $atts = sprintf( 'data-beacon-article="%s"', $article[ 'id' ] ); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | $url = \GV\Utils::get( $article, 'url', '#' ); |
@@ -172,9 +172,9 @@ discard block |
||
172 | 172 | ) ); |
173 | 173 | |
174 | 174 | // This is just HTML we don't need. |
175 | - unset( $response['message'] ); |
|
175 | + unset( $response[ 'message' ] ); |
|
176 | 176 | |
177 | - switch ( intval( $response['price_id'] ) ) { |
|
177 | + switch ( intval( $response[ 'price_id' ] ) ) { |
|
178 | 178 | default: |
179 | 179 | case 1: |
180 | 180 | $package = 'Core'; |
@@ -202,12 +202,12 @@ discard block |
||
202 | 202 | 'signature' => hash_hmac( 'sha256', $current_user->user_email, self::beacon_key ), |
203 | 203 | 'affiliate_id' => gravityview()->plugin->settings->get( 'affiliate_id' ), |
204 | 204 | 'is_super_admin' => is_super_admin(), |
205 | - 'license_key' => $response['license_key'] . ' (' . ucwords( $response['license'] ) . ')', |
|
205 | + 'license_key' => $response[ 'license_key' ] . ' (' . ucwords( $response[ 'license' ] ) . ')', |
|
206 | 206 | 'license_level' => $package, |
207 | 207 | 'alt_emails' => sprintf( 'Admin: %s, GV Support: %s', get_bloginfo( 'admin_email' ), gravityview()->plugin->settings->get( 'support-email' ) ), |
208 | - 'payment_details' => $response['customer_name'] . ' ' . $response['customer_email'], |
|
208 | + 'payment_details' => $response[ 'customer_name' ] . ' ' . $response[ 'customer_email' ], |
|
209 | 209 | 'wordpress_version' => get_bloginfo( 'version', 'display' ), |
210 | - 'php_version' => phpversion() . ' on ' . esc_html( $_SERVER['SERVER_SOFTWARE'] ), |
|
210 | + 'php_version' => phpversion() . ' on ' . esc_html( $_SERVER[ 'SERVER_SOFTWARE' ] ), |
|
211 | 211 | 'no_conflict_mode' => empty( $no_conflict_mode ) ? 'Disabled' : 'Enabled', |
212 | 212 | 'gravityview_version' => \GV\Plugin::$version, |
213 | 213 | 'gravity_forms_version' => GFForms::$version, |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | ob_get_clean(); |
218 | 218 | |
219 | 219 | // Help Scout length limit is 200 characters |
220 | - foreach( $data as $key => $value ) { |
|
220 | + foreach ( $data as $key => $value ) { |
|
221 | 221 | if ( ! is_string( $value ) ) { |
222 | 222 | continue; |
223 | 223 | } |
@@ -28,18 +28,18 @@ |
||
28 | 28 | |
29 | 29 | $sort_fields_input = '<select name="template_settings[sort_field][]" class="gravityview_sort_field" id="gravityview_sort_field_%d">%s</select>'; |
30 | 30 | |
31 | - if ( is_array( $current_settings['sort_field'] ) ) { |
|
32 | - $primary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings['sort_field'][0] ); |
|
33 | - $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings['sort_field'][1] ); |
|
31 | + if ( is_array( $current_settings[ 'sort_field' ] ) ) { |
|
32 | + $primary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings[ 'sort_field' ][ 0 ] ); |
|
33 | + $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings[ 'sort_field' ][ 1 ] ); |
|
34 | 34 | } else { |
35 | - $primary_sort_fields = $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings['sort_field'] ); |
|
35 | + $primary_sort_fields = $secondary_sort_fields = gravityview_get_sortable_fields( $curr_form, $current_settings[ 'sort_field' ] ); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | // Splice the sort direction |
39 | 39 | $_directions = array(); |
40 | 40 | foreach ( (array)\GV\Utils::get( $current_settings, 'sort_direction', array() ) as $i => $direction ) { |
41 | 41 | if ( ! $i ) { |
42 | - $_directions['sort_direction'] = $direction; |
|
42 | + $_directions[ 'sort_direction' ] = $direction; |
|
43 | 43 | } else { |
44 | 44 | $_directions[ sprintf( 'sort_direction_%d', $i + 1 ) ] = $direction; |
45 | 45 | } |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | |
20 | 20 | |
21 | 21 | /** |
22 | - * Constructor. Add filters to modify output. |
|
23 | - * |
|
22 | + * Constructor. Add filters to modify output. |
|
23 | + * |
|
24 | 24 | * @since 2.0.4 |
25 | 25 | * |
26 | 26 | * @param View $view |
@@ -29,19 +29,19 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function __construct( View $view, Entry_Collection $entries, Request $request ) { |
31 | 31 | |
32 | - add_filter( 'gravityview/template/field/label', array( __CLASS__, 'add_columns_sort_links' ), 100, 2 ); |
|
32 | + add_filter( 'gravityview/template/field/label', array( __CLASS__, 'add_columns_sort_links' ), 100, 2 ); |
|
33 | 33 | |
34 | 34 | parent::__construct( $view, $entries, $request ); |
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
38 | - * Add sorting links to HTML columns that support sorting |
|
39 | - * |
|
40 | - * @since 2.0.4 |
|
41 | - * @since 2.0.5 Made static |
|
42 | - * |
|
43 | - * @static |
|
44 | - * |
|
38 | + * Add sorting links to HTML columns that support sorting |
|
39 | + * |
|
40 | + * @since 2.0.4 |
|
41 | + * @since 2.0.5 Made static |
|
42 | + * |
|
43 | + * @static |
|
44 | + * |
|
45 | 45 | * @param string $column_label Label for the table column |
46 | 46 | * @param \GV\Template_Context $context |
47 | 47 | * |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | $sort_columns = $context->view->settings->get( 'sort_columns' ); |
53 | 53 | |
54 | 54 | if ( empty( $sort_columns ) ) { |
55 | - return $column_label; |
|
55 | + return $column_label; |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | if ( ! \GravityView_frontend::getInstance()->is_field_sortable( $context->field->ID, $context->view->form->form ) ) { |
@@ -102,22 +102,22 @@ discard block |
||
102 | 102 | // If we are already sorting by the current field... |
103 | 103 | if ( ! empty( $sorting['key'] ) && (string) $sort_field_id === (string) $sorting['key'] ) { |
104 | 104 | |
105 | - switch( $sorting['direction'] ) { |
|
106 | - // No sort |
|
107 | - case '': |
|
108 | - $sort_args[1] = 'asc'; |
|
109 | - $class .= ' gv-icon-caret-up-down'; |
|
110 | - break; |
|
111 | - case 'desc': |
|
112 | - $sort_args[1] = ''; |
|
113 | - $class .= ' gv-icon-sort-asc'; |
|
114 | - break; |
|
115 | - case 'asc': |
|
116 | - default: |
|
117 | - $sort_args[1] = 'desc'; |
|
118 | - $class .= ' gv-icon-sort-desc'; |
|
119 | - break; |
|
120 | - } |
|
105 | + switch( $sorting['direction'] ) { |
|
106 | + // No sort |
|
107 | + case '': |
|
108 | + $sort_args[1] = 'asc'; |
|
109 | + $class .= ' gv-icon-caret-up-down'; |
|
110 | + break; |
|
111 | + case 'desc': |
|
112 | + $sort_args[1] = ''; |
|
113 | + $class .= ' gv-icon-sort-asc'; |
|
114 | + break; |
|
115 | + case 'asc': |
|
116 | + default: |
|
117 | + $sort_args[1] = 'desc'; |
|
118 | + $class .= ' gv-icon-sort-desc'; |
|
119 | + break; |
|
120 | + } |
|
121 | 121 | |
122 | 122 | } else { |
123 | 123 | $class .= ' gv-icon-caret-up-down'; |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $url = remove_query_arg( 'sort', $url ); |
128 | 128 | $multisort_url = self::_get_multisort_url( $url, $sort_args, $context->field->ID ); |
129 | 129 | |
130 | - $url = add_query_arg( $sort_args[0], $sort_args[1], $url ); |
|
130 | + $url = add_query_arg( $sort_args[0], $sort_args[1], $url ); |
|
131 | 131 | |
132 | 132 | $return = '<a href="'. esc_url_raw( $url ) .'"'; |
133 | 133 | |
@@ -141,50 +141,50 @@ discard block |
||
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |
144 | - * Get the multi-sort URL used in the sorting links |
|
145 | - * |
|
146 | - * @todo Consider moving to Utils? |
|
147 | - * |
|
148 | - * @since 2.3 |
|
149 | - * |
|
150 | - * @see add_columns_sort_links |
|
144 | + * Get the multi-sort URL used in the sorting links |
|
145 | + * |
|
146 | + * @todo Consider moving to Utils? |
|
147 | + * |
|
148 | + * @since 2.3 |
|
149 | + * |
|
150 | + * @see add_columns_sort_links |
|
151 | 151 | * @param string $url Single-sort URL |
152 | 152 | * @param array $sort_args Single sorting for rules, in [ field_id, dir ] format |
153 | - * @param string|int $field_id ID of the current field being displayed |
|
154 | - * |
|
155 | - * @return string Multisort URL, if there are multiple sorts. Otherwise, existing $url |
|
153 | + * @param string|int $field_id ID of the current field being displayed |
|
154 | + * |
|
155 | + * @return string Multisort URL, if there are multiple sorts. Otherwise, existing $url |
|
156 | 156 | */ |
157 | 157 | static public function _get_multisort_url( $url, $sort_args, $field_id ) { |
158 | 158 | |
159 | 159 | $sorts = Utils::_GET( 'sort' ); |
160 | 160 | |
161 | 161 | if ( ! is_array( $sorts ) ) { |
162 | - return $url; |
|
162 | + return $url; |
|
163 | 163 | } |
164 | 164 | |
165 | - $multisort_url = $url; |
|
165 | + $multisort_url = $url; |
|
166 | 166 | |
167 | 167 | // If the field has already been sorted by, add the field to the URL |
168 | - if ( ! in_array( $field_id, $keys = array_keys( $sorts ) ) ) { |
|
169 | - if ( count( $keys ) ) { |
|
170 | - $multisort_url = add_query_arg( sprintf( 'sort[%s]', end( $keys ) ), $sorts[ end( $keys ) ], $multisort_url ); |
|
171 | - $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
172 | - } else { |
|
173 | - $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
174 | - } |
|
175 | - } |
|
176 | - // Otherwise, we are just updating the sort order |
|
177 | - else { |
|
178 | - |
|
179 | - // Pass empty value to unset |
|
180 | - if( '' === $sort_args[1] ) { |
|
181 | - unset( $sorts[ $field_id ] ); |
|
182 | - } else { |
|
183 | - $sorts[ $field_id ] = $sort_args[1]; |
|
184 | - } |
|
185 | - |
|
186 | - $multisort_url = add_query_arg( array( 'sort' => $sorts ), $multisort_url ); |
|
187 | - } |
|
168 | + if ( ! in_array( $field_id, $keys = array_keys( $sorts ) ) ) { |
|
169 | + if ( count( $keys ) ) { |
|
170 | + $multisort_url = add_query_arg( sprintf( 'sort[%s]', end( $keys ) ), $sorts[ end( $keys ) ], $multisort_url ); |
|
171 | + $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
172 | + } else { |
|
173 | + $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
174 | + } |
|
175 | + } |
|
176 | + // Otherwise, we are just updating the sort order |
|
177 | + else { |
|
178 | + |
|
179 | + // Pass empty value to unset |
|
180 | + if( '' === $sort_args[1] ) { |
|
181 | + unset( $sorts[ $field_id ] ); |
|
182 | + } else { |
|
183 | + $sorts[ $field_id ] = $sort_args[1]; |
|
184 | + } |
|
185 | + |
|
186 | + $multisort_url = add_query_arg( array( 'sort' => $sorts ), $multisort_url ); |
|
187 | + } |
|
188 | 188 | |
189 | 189 | return $multisort_url; |
190 | 190 | } |
@@ -214,10 +214,10 @@ discard block |
||
214 | 214 | } |
215 | 215 | |
216 | 216 | /** |
217 | - * Returns the label for a column, with support for all deprecated filters |
|
218 | - * |
|
219 | - * @since 2.1 |
|
220 | - * |
|
217 | + * Returns the label for a column, with support for all deprecated filters |
|
218 | + * |
|
219 | + * @since 2.1 |
|
220 | + * |
|
221 | 221 | * @param \GV\Field $field |
222 | 222 | * @param \GV\Template_Context $context |
223 | 223 | */ |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | $column_label = apply_filters( 'gravityview/template/field/label', $column_label, $context ); |
241 | 241 | |
242 | 242 | return $column_label; |
243 | - } |
|
243 | + } |
|
244 | 244 | |
245 | 245 | /** |
246 | 246 | * Output the entry row. |
@@ -309,15 +309,15 @@ discard block |
||
309 | 309 | */ |
310 | 310 | do_action( 'gravityview/template/table/cells/before', $context ); |
311 | 311 | |
312 | - /** |
|
313 | - * @action `gravityview_table_cells_before` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
314 | - * @since 1.0.7 |
|
312 | + /** |
|
313 | + * @action `gravityview_table_cells_before` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
314 | + * @since 1.0.7 |
|
315 | 315 | * @param \GravityView_View $this Current GravityView_View object |
316 | 316 | * @deprecated Use `gravityview/template/table/cells/before` |
317 | - */ |
|
318 | - do_action( 'gravityview_table_cells_before', \GravityView_View::getInstance() ); |
|
317 | + */ |
|
318 | + do_action( 'gravityview_table_cells_before', \GravityView_View::getInstance() ); |
|
319 | 319 | |
320 | - foreach ( $fields->all() as $field ) { |
|
320 | + foreach ( $fields->all() as $field ) { |
|
321 | 321 | if ( isset( $this->view->unions[ $entry['form_id'] ] ) ) { |
322 | 322 | if ( isset( $this->view->unions[ $entry['form_id'] ][ $field->ID ] ) ) { |
323 | 323 | $field = $this->view->unions[ $entry['form_id'] ][ $field->ID ]; |
@@ -337,13 +337,13 @@ discard block |
||
337 | 337 | */ |
338 | 338 | do_action( 'gravityview/template/table/cells/after', $context ); |
339 | 339 | |
340 | - /** |
|
341 | - * @action `gravityview_table_cells_after` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
342 | - * @since 1.0.7 |
|
340 | + /** |
|
341 | + * @action `gravityview_table_cells_after` Inside the `tr` while rendering each entry in the loop. Can be used to insert additional table cells. |
|
342 | + * @since 1.0.7 |
|
343 | 343 | * @param \GravityView_View $this Current GravityView_View object |
344 | 344 | * @deprecated Use `gravityview/template/table/cells/after` |
345 | - */ |
|
346 | - do_action( 'gravityview_table_cells_after', \GravityView_View::getInstance() ); |
|
345 | + */ |
|
346 | + do_action( 'gravityview_table_cells_after', \GravityView_View::getInstance() ); |
|
347 | 347 | |
348 | 348 | ?> |
349 | 349 | </tr> |
@@ -384,9 +384,9 @@ discard block |
||
384 | 384 | 'value' => $value, |
385 | 385 | 'hide_empty' => false, |
386 | 386 | 'zone_id' => 'directory_table-columns', |
387 | - 'label' => self::get_field_column_label( $field, $context ), |
|
387 | + 'label' => self::get_field_column_label( $field, $context ), |
|
388 | 388 | 'markup' => '<td id="{{ field_id }}" class="{{ class }}" data-label="{{label_value:data-label}}">{{ value }}</td>', |
389 | - 'form' => $form, |
|
389 | + 'form' => $form, |
|
390 | 390 | ); |
391 | 391 | |
392 | 392 | /** Output. */ |
@@ -411,11 +411,11 @@ discard block |
||
411 | 411 | do_action( 'gravityview/template/table/body/before', $context ); |
412 | 412 | |
413 | 413 | /** |
414 | - * @action `gravityview_table_body_before` Inside the `tbody`, before any rows are rendered. Can be used to insert additional rows. |
|
415 | - * @deprecated Use `gravityview/template/table/body/before` |
|
416 | - * @since 1.0.7 |
|
417 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
418 | - */ |
|
414 | + * @action `gravityview_table_body_before` Inside the `tbody`, before any rows are rendered. Can be used to insert additional rows. |
|
415 | + * @deprecated Use `gravityview/template/table/body/before` |
|
416 | + * @since 1.0.7 |
|
417 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
418 | + */ |
|
419 | 419 | do_action( 'gravityview_table_body_before', \GravityView_View::getInstance() /** ugh! */ ); |
420 | 420 | } |
421 | 421 | |
@@ -437,11 +437,11 @@ discard block |
||
437 | 437 | do_action( 'gravityview/template/table/body/after', $context ); |
438 | 438 | |
439 | 439 | /** |
440 | - * @action `gravityview_table_body_after` Inside the `tbody`, after any rows are rendered. Can be used to insert additional rows. |
|
441 | - * @deprecated Use `gravityview/template/table/body/after` |
|
442 | - * @since 1.0.7 |
|
443 | - * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
444 | - */ |
|
440 | + * @action `gravityview_table_body_after` Inside the `tbody`, after any rows are rendered. Can be used to insert additional rows. |
|
441 | + * @deprecated Use `gravityview/template/table/body/after` |
|
442 | + * @since 1.0.7 |
|
443 | + * @param \GravityView_View $gravityview_view Current GravityView_View object. |
|
444 | + */ |
|
445 | 445 | do_action( 'gravityview_table_body_after', \GravityView_View::getInstance() /** ugh! */ ); |
446 | 446 | } |
447 | 447 |
@@ -69,22 +69,22 @@ discard block |
||
69 | 69 | if ( is_array( $sorts ) ) { |
70 | 70 | foreach ( (array)$sorts as $key => $direction ) { |
71 | 71 | if ( $key == $context->field->ID ) { |
72 | - $sorting['key'] = $context->field->ID; |
|
73 | - $sorting['direction'] = strtolower( $direction ); |
|
72 | + $sorting[ 'key' ] = $context->field->ID; |
|
73 | + $sorting[ 'direction' ] = strtolower( $direction ); |
|
74 | 74 | break; |
75 | 75 | } |
76 | 76 | } |
77 | 77 | } else { |
78 | 78 | if ( $sorts == $context->field->ID ) { |
79 | - $sorting['key'] = $context->field->ID; |
|
80 | - $sorting['direction'] = strtolower( Utils::_GET( 'dir', '' ) ); |
|
79 | + $sorting[ 'key' ] = $context->field->ID; |
|
80 | + $sorting[ 'direction' ] = strtolower( Utils::_GET( 'dir', '' ) ); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | } else { |
84 | 84 | foreach ( (array)$context->view->settings->get( 'sort_field', array() ) as $i => $sort_field ) { |
85 | 85 | if ( $sort_field == $context->field->ID ) { |
86 | - $sorting['key'] = $sort_field; |
|
87 | - $sorting['direction'] = strtolower( Utils::get( $directions, $i, '' ) ); |
|
86 | + $sorting[ 'key' ] = $sort_field; |
|
87 | + $sorting[ 'direction' ] = strtolower( Utils::get( $directions, $i, '' ) ); |
|
88 | 88 | break; // Only get the first sort |
89 | 89 | } |
90 | 90 | } |
@@ -100,21 +100,21 @@ discard block |
||
100 | 100 | ); |
101 | 101 | |
102 | 102 | // If we are already sorting by the current field... |
103 | - if ( ! empty( $sorting['key'] ) && (string) $sort_field_id === (string) $sorting['key'] ) { |
|
103 | + if ( ! empty( $sorting[ 'key' ] ) && (string)$sort_field_id === (string)$sorting[ 'key' ] ) { |
|
104 | 104 | |
105 | - switch( $sorting['direction'] ) { |
|
105 | + switch ( $sorting[ 'direction' ] ) { |
|
106 | 106 | // No sort |
107 | 107 | case '': |
108 | - $sort_args[1] = 'asc'; |
|
108 | + $sort_args[ 1 ] = 'asc'; |
|
109 | 109 | $class .= ' gv-icon-caret-up-down'; |
110 | 110 | break; |
111 | 111 | case 'desc': |
112 | - $sort_args[1] = ''; |
|
112 | + $sort_args[ 1 ] = ''; |
|
113 | 113 | $class .= ' gv-icon-sort-asc'; |
114 | 114 | break; |
115 | 115 | case 'asc': |
116 | 116 | default: |
117 | - $sort_args[1] = 'desc'; |
|
117 | + $sort_args[ 1 ] = 'desc'; |
|
118 | 118 | $class .= ' gv-icon-sort-desc'; |
119 | 119 | break; |
120 | 120 | } |
@@ -127,15 +127,15 @@ discard block |
||
127 | 127 | $url = remove_query_arg( 'sort', $url ); |
128 | 128 | $multisort_url = self::_get_multisort_url( $url, $sort_args, $context->field->ID ); |
129 | 129 | |
130 | - $url = add_query_arg( $sort_args[0], $sort_args[1], $url ); |
|
130 | + $url = add_query_arg( $sort_args[ 0 ], $sort_args[ 1 ], $url ); |
|
131 | 131 | |
132 | - $return = '<a href="'. esc_url_raw( $url ) .'"'; |
|
132 | + $return = '<a href="' . esc_url_raw( $url ) . '"'; |
|
133 | 133 | |
134 | 134 | if ( ! empty( $multisort_url ) ) { |
135 | - $return .= ' data-multisort-href="'. esc_url_raw( $multisort_url ) . '"'; |
|
135 | + $return .= ' data-multisort-href="' . esc_url_raw( $multisort_url ) . '"'; |
|
136 | 136 | } |
137 | 137 | |
138 | - $return .= ' class="'. $class .'" ></a> '. $column_label; |
|
138 | + $return .= ' class="' . $class . '" ></a> ' . $column_label; |
|
139 | 139 | |
140 | 140 | return $return; |
141 | 141 | } |
@@ -168,19 +168,19 @@ discard block |
||
168 | 168 | if ( ! in_array( $field_id, $keys = array_keys( $sorts ) ) ) { |
169 | 169 | if ( count( $keys ) ) { |
170 | 170 | $multisort_url = add_query_arg( sprintf( 'sort[%s]', end( $keys ) ), $sorts[ end( $keys ) ], $multisort_url ); |
171 | - $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
171 | + $multisort_url = add_query_arg( $sort_args[ 0 ], $sort_args[ 1 ], $multisort_url ); |
|
172 | 172 | } else { |
173 | - $multisort_url = add_query_arg( $sort_args[0], $sort_args[1], $multisort_url ); |
|
173 | + $multisort_url = add_query_arg( $sort_args[ 0 ], $sort_args[ 1 ], $multisort_url ); |
|
174 | 174 | } |
175 | 175 | } |
176 | 176 | // Otherwise, we are just updating the sort order |
177 | 177 | else { |
178 | 178 | |
179 | 179 | // Pass empty value to unset |
180 | - if( '' === $sort_args[1] ) { |
|
180 | + if ( '' === $sort_args[ 1 ] ) { |
|
181 | 181 | unset( $sorts[ $field_id ] ); |
182 | 182 | } else { |
183 | - $sorts[ $field_id ] = $sort_args[1]; |
|
183 | + $sorts[ $field_id ] = $sort_args[ 1 ]; |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | $multisort_url = add_query_arg( array( 'sort' => $sorts ), $multisort_url ); |
@@ -318,9 +318,9 @@ discard block |
||
318 | 318 | do_action( 'gravityview_table_cells_before', \GravityView_View::getInstance() ); |
319 | 319 | |
320 | 320 | foreach ( $fields->all() as $field ) { |
321 | - if ( isset( $this->view->unions[ $entry['form_id'] ] ) ) { |
|
322 | - if ( isset( $this->view->unions[ $entry['form_id'] ][ $field->ID ] ) ) { |
|
323 | - $field = $this->view->unions[ $entry['form_id'] ][ $field->ID ]; |
|
321 | + if ( isset( $this->view->unions[ $entry[ 'form_id' ] ] ) ) { |
|
322 | + if ( isset( $this->view->unions[ $entry[ 'form_id' ] ][ $field->ID ] ) ) { |
|
323 | + $field = $this->view->unions[ $entry[ 'form_id' ] ][ $field->ID ]; |
|
324 | 324 | } else { |
325 | 325 | if ( ! $field instanceof Internal_Field ) { |
326 | 326 | $field = Internal_Field::from_configuration( array( 'id' => 'custom' ) ); |
@@ -170,10 +170,10 @@ |
||
170 | 170 | */ |
171 | 171 | public function is_edit_entry( $form_id = 0 ) { |
172 | 172 | /** |
173 | - * @filter `gravityview_is_edit_entry` Whether we're currently on the Edit Entry screen \n |
|
174 | - * The Edit Entry functionality overrides this value. |
|
175 | - * @param boolean $is_edit_entry |
|
176 | - */ |
|
173 | + * @filter `gravityview_is_edit_entry` Whether we're currently on the Edit Entry screen \n |
|
174 | + * The Edit Entry functionality overrides this value. |
|
175 | + * @param boolean $is_edit_entry |
|
176 | + */ |
|
177 | 177 | if ( ( $entry = $this->is_entry( $form_id ) ) && apply_filters( 'gravityview_is_edit_entry', false ) ) { |
178 | 178 | if ( $entry->is_multi() ) { |
179 | 179 | return array_pop( $entry->entries ); |
@@ -173,7 +173,7 @@ |
||
173 | 173 | } |
174 | 174 | |
175 | 175 | $entry = Multi_Entry::from_entries( array_filter( $multientry ) ); |
176 | - } else { |
|
176 | + } else { |
|
177 | 177 | /** |
178 | 178 | * A regular one. |
179 | 179 | */ |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public static function is_add_oembed_preview() { |
71 | 71 | /** The preview request is a parse-embed AJAX call without a type set. */ |
72 | - return ( self::is_ajax() && ! empty( $_POST['action'] ) && $_POST['action'] == 'parse-embed' && ! isset( $_POST['type'] ) ); |
|
72 | + return ( self::is_ajax() && ! empty( $_POST[ 'action' ] ) && $_POST[ 'action' ] == 'parse-embed' && ! isset( $_POST[ 'type' ] ) ); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @return boolean |
88 | 88 | */ |
89 | 89 | public static function is_rest() { |
90 | - return ! empty( $GLOBALS['wp']->query_vars['rest_route'] ); |
|
90 | + return ! empty( $GLOBALS[ 'wp' ]->query_vars[ 'rest_route' ] ); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | return false; |
163 | 163 | } |
164 | 164 | |
165 | - if ( ! in_array( $e['form_id'], $valid_forms ) ) { |
|
165 | + if ( ! in_array( $e[ 'form_id' ], $valid_forms ) ) { |
|
166 | 166 | return false; |
167 | 167 | } |
168 | 168 | |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | } |
179 | 179 | |
180 | 180 | $entry = Multi_Entry::from_entries( array_filter( $multientry ) ); |
181 | - } else { |
|
181 | + } else { |
|
182 | 182 | /** |
183 | 183 | * A regular one. |
184 | 184 | */ |
@@ -236,15 +236,15 @@ discard block |
||
236 | 236 | $get = $_GET; |
237 | 237 | } |
238 | 238 | |
239 | - unset( $get['mode'] ); |
|
239 | + unset( $get[ 'mode' ] ); |
|
240 | 240 | |
241 | 241 | $get = array_filter( $get, 'gravityview_is_not_empty_string' ); |
242 | 242 | |
243 | - if( $has_field_key = $this->_has_field_key( $get ) ) { |
|
243 | + if ( $has_field_key = $this->_has_field_key( $get ) ) { |
|
244 | 244 | return true; |
245 | 245 | } |
246 | 246 | |
247 | - return isset( $get['gv_search'] ) || isset( $get['gv_start'] ) || isset( $get['gv_end'] ) || isset( $get['gv_by'] ) || isset( $get['gv_id'] ); |
|
247 | + return isset( $get[ 'gv_search' ] ) || isset( $get[ 'gv_start' ] ) || isset( $get[ 'gv_end' ] ) || isset( $get[ 'gv_by' ] ) || isset( $get[ 'gv_id' ] ); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | /** |
@@ -267,13 +267,13 @@ discard block |
||
267 | 267 | |
268 | 268 | $meta = array(); |
269 | 269 | foreach ( $fields as $field ) { |
270 | - if( empty( $field->_gf_field_class_name ) ) { |
|
271 | - $meta[] = preg_quote( $field->name ); |
|
270 | + if ( empty( $field->_gf_field_class_name ) ) { |
|
271 | + $meta[ ] = preg_quote( $field->name ); |
|
272 | 272 | } |
273 | 273 | } |
274 | 274 | |
275 | 275 | foreach ( $get as $key => $value ) { |
276 | - if ( preg_match('/^(filter|input)_(([0-9_]+)|'. implode( '|', $meta ) .')$/sm', $key ) ) { |
|
276 | + if ( preg_match( '/^(filter|input)_(([0-9_]+)|' . implode( '|', $meta ) . ')$/sm', $key ) ) { |
|
277 | 277 | $has_field_key = true; |
278 | 278 | break; |
279 | 279 | } |
@@ -326,6 +326,6 @@ |
||
326 | 326 | <a href="#" data-approved="{$choices['approved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-approved popover" title="{$choices['approved']['action']}"><span class="screen-reader-text">{$choices['approved']['action']}</span></a> |
327 | 327 | <a href="#" data-approved="{$choices['disapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-disapproved popover" title="{$choices['disapproved']['action']}"><span class="screen-reader-text">{$choices['disapproved']['action']}</span></a> |
328 | 328 | <a href="#" data-approved="{$choices['unapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-unapproved popover" title="{$choices['unapproved']['action']}"><span class="screen-reader-text">{$choices['unapproved']['action']}</span></a> |
329 | -TEMPLATE; |
|
329 | +template; |
|
330 | 330 | } |
331 | 331 | } |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | private function add_hooks() { |
40 | 40 | |
41 | 41 | // in case entry is edited (on admin or frontend) |
42 | - add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2); |
|
42 | + add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2 ); |
|
43 | 43 | |
44 | 44 | // when using the User opt-in field, check on entry submission |
45 | 45 | add_action( 'gform_after_submission', array( $this, 'after_submission' ), 10, 2 ); |
46 | 46 | |
47 | 47 | // process ajax approve entry requests |
48 | - add_action('wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved')); |
|
48 | + add_action( 'wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved' ) ); |
|
49 | 49 | |
50 | 50 | // autounapprove |
51 | 51 | add_action( 'gravityview/edit_entry/after_update', array( __CLASS__, 'autounapprove' ), 10, 4 ); |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | return; |
95 | 95 | } |
96 | 96 | |
97 | - $form = GFAPI::get_form( $entry['form_id'] ); |
|
97 | + $form = GFAPI::get_form( $entry[ 'form_id' ] ); |
|
98 | 98 | |
99 | 99 | if ( ! $form ) { |
100 | - gravityview()->log->error( 'Form not found at ID #{form_id} for entry #{entry_id}', array( 'form_id' => $entry['form_id'], 'entry_id' => $entry_id ) ); |
|
100 | + gravityview()->log->error( 'Form not found at ID #{form_id} for entry #{entry_id}', array( 'form_id' => $entry[ 'form_id' ], 'entry_id' => $entry_id ) ); |
|
101 | 101 | return; |
102 | 102 | } |
103 | 103 | |
@@ -114,10 +114,10 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public static function add_approval_notification_events( $notification_events = array(), $form = array() ) { |
116 | 116 | |
117 | - $notification_events['gravityview/approve_entries/approved'] = 'GravityView - ' . esc_html_x( 'Entry is approved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
118 | - $notification_events['gravityview/approve_entries/disapproved'] = 'GravityView - ' . esc_html_x( 'Entry is disapproved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
119 | - $notification_events['gravityview/approve_entries/unapproved'] = 'GravityView - ' . esc_html_x( 'Entry approval is reset', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
120 | - $notification_events['gravityview/approve_entries/updated'] = 'GravityView - ' . esc_html_x( 'Entry approval is changed', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
117 | + $notification_events[ 'gravityview/approve_entries/approved' ] = 'GravityView - ' . esc_html_x( 'Entry is approved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
118 | + $notification_events[ 'gravityview/approve_entries/disapproved' ] = 'GravityView - ' . esc_html_x( 'Entry is disapproved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
119 | + $notification_events[ 'gravityview/approve_entries/unapproved' ] = 'GravityView - ' . esc_html_x( 'Entry approval is reset', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
120 | + $notification_events[ 'gravityview/approve_entries/updated' ] = 'GravityView - ' . esc_html_x( 'Entry approval is changed', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
121 | 121 | |
122 | 122 | return $notification_events; |
123 | 123 | } |
@@ -135,13 +135,13 @@ discard block |
||
135 | 135 | */ |
136 | 136 | public static function get_entry_status( $entry, $value_or_label = 'label' ) { |
137 | 137 | |
138 | - $entry_id = is_array( $entry ) ? $entry['id'] : GVCommon::get_entry_id( $entry, true ); |
|
138 | + $entry_id = is_array( $entry ) ? $entry[ 'id' ] : GVCommon::get_entry_id( $entry, true ); |
|
139 | 139 | |
140 | 140 | $status = gform_get_meta( $entry_id, self::meta_key ); |
141 | 141 | |
142 | 142 | $status = GravityView_Entry_Approval_Status::maybe_convert_status( $status ); |
143 | 143 | |
144 | - if( 'value' === $value_or_label ) { |
|
144 | + if ( 'value' === $value_or_label ) { |
|
145 | 145 | return $status; |
146 | 146 | } |
147 | 147 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $nonce = \GV\Utils::_POST( 'nonce' ); |
180 | 180 | |
181 | 181 | // Valid status |
182 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
182 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
183 | 183 | |
184 | 184 | gravityview()->log->error( 'Invalid approval status', array( 'data' => $_POST ) ); |
185 | 185 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | |
211 | 211 | gravityview()->log->error( 'User does not have the `gravityview_moderate_entries` capability.' ); |
212 | 212 | |
213 | - $result = new WP_Error( 'Missing Cap: gravityview_moderate_entries', __( 'You do not have permission to edit this entry.', 'gravityview') ); |
|
213 | + $result = new WP_Error( 'Missing Cap: gravityview_moderate_entries', __( 'You do not have permission to edit this entry.', 'gravityview' ) ); |
|
214 | 214 | |
215 | 215 | } |
216 | 216 | |
@@ -272,10 +272,10 @@ discard block |
||
272 | 272 | } |
273 | 273 | |
274 | 274 | // Set default |
275 | - self::update_approved_meta( $entry['id'], $default_status, $entry['form_id'] ); |
|
275 | + self::update_approved_meta( $entry[ 'id' ], $default_status, $entry[ 'form_id' ] ); |
|
276 | 276 | |
277 | 277 | // Then check for if there is an approval column, and use that value instead |
278 | - $this->after_update_entry_update_approved_meta( $form , $entry['id'] ); |
|
278 | + $this->after_update_entry_update_approved_meta( $form, $entry[ 'id' ] ); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
@@ -289,12 +289,12 @@ discard block |
||
289 | 289 | */ |
290 | 290 | public function after_update_entry_update_approved_meta( $form, $entry_id = NULL ) { |
291 | 291 | |
292 | - $approved_column = self::get_approved_column( $form['id'] ); |
|
292 | + $approved_column = self::get_approved_column( $form[ 'id' ] ); |
|
293 | 293 | |
294 | 294 | /** |
295 | 295 | * If the form doesn't contain the approve field, don't assume anything. |
296 | 296 | */ |
297 | - if( empty( $approved_column ) ) { |
|
297 | + if ( empty( $approved_column ) ) { |
|
298 | 298 | return; |
299 | 299 | } |
300 | 300 | |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | */ |
317 | 317 | $value = apply_filters( 'gravityview/approve_entries/update_unapproved_meta', $value, $form, $entry ); |
318 | 318 | |
319 | - self::update_approved_meta( $entry_id, $value, $form['id'] ); |
|
319 | + self::update_approved_meta( $entry_id, $value, $form[ 'id' ] ); |
|
320 | 320 | } |
321 | 321 | |
322 | 322 | /** |
@@ -334,12 +334,12 @@ discard block |
||
334 | 334 | */ |
335 | 335 | public static function update_bulk( $entries = array(), $approved = 0, $form_id = 0 ) { |
336 | 336 | |
337 | - if( empty($entries) || ( $entries !== true && !is_array($entries) ) ) { |
|
337 | + if ( empty( $entries ) || ( $entries !== true && ! is_array( $entries ) ) ) { |
|
338 | 338 | gravityview()->log->error( 'Entries were empty or malformed.', array( 'data' => $entries ) ); |
339 | 339 | return NULL; |
340 | 340 | } |
341 | 341 | |
342 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
342 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
343 | 343 | gravityview()->log->error( 'User does not have the `gravityview_moderate_entries` capability.' ); |
344 | 344 | return NULL; |
345 | 345 | } |
@@ -354,10 +354,10 @@ discard block |
||
354 | 354 | $approved_column_id = self::get_approved_column( $form_id ); |
355 | 355 | |
356 | 356 | $success = true; |
357 | - foreach( $entries as $entry_id ) { |
|
357 | + foreach ( $entries as $entry_id ) { |
|
358 | 358 | $update_success = self::update_approved( (int)$entry_id, $approved, $form_id, $approved_column_id ); |
359 | 359 | |
360 | - if( ! $update_success ) { |
|
360 | + if ( ! $update_success ) { |
|
361 | 361 | $success = false; |
362 | 362 | } |
363 | 363 | } |
@@ -381,12 +381,12 @@ discard block |
||
381 | 381 | */ |
382 | 382 | public static function update_approved( $entry_id = 0, $approved = 2, $form_id = 0, $approvedcolumn = 0 ) { |
383 | 383 | |
384 | - if( !class_exists( 'GFAPI' ) ) { |
|
384 | + if ( ! class_exists( 'GFAPI' ) ) { |
|
385 | 385 | gravityview()->log->error( 'GFAPI does not exist' ); |
386 | 386 | return false; |
387 | 387 | } |
388 | 388 | |
389 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approved ) ) { |
|
389 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approved ) ) { |
|
390 | 390 | gravityview()->log->error( 'Not a valid approval value.' ); |
391 | 391 | return false; |
392 | 392 | } |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | // If the form has an Approve/Reject field, update that value |
404 | 404 | $result = self::update_approved_column( $entry_id, $approved, $form_id, $approvedcolumn ); |
405 | 405 | |
406 | - if( is_wp_error( $result ) ) { |
|
406 | + if ( is_wp_error( $result ) ) { |
|
407 | 407 | gravityview()->log->error( 'Entry approval not updated: {error}', array( 'error' => $result->get_error_message() ) ); |
408 | 408 | return false; |
409 | 409 | } |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | |
416 | 416 | // add note to entry if approval field updating worked or there was no approved field |
417 | 417 | // There's no validation for the meta |
418 | - if( true === $result ) { |
|
418 | + if ( true === $result ) { |
|
419 | 419 | |
420 | 420 | // Add an entry note |
421 | 421 | self::add_approval_status_updated_note( $entry_id, $approved ); |
@@ -468,7 +468,7 @@ discard block |
||
468 | 468 | |
469 | 469 | $note_id = false; |
470 | 470 | |
471 | - if( $add_note && class_exists( 'GravityView_Entry_Notes' ) ) { |
|
471 | + if ( $add_note && class_exists( 'GravityView_Entry_Notes' ) ) { |
|
472 | 472 | |
473 | 473 | $current_user = wp_get_current_user(); |
474 | 474 | |
@@ -490,7 +490,7 @@ discard block |
||
490 | 490 | */ |
491 | 491 | private static function update_approved_column( $entry_id = 0, $status = '0', $form_id = 0, $approvedcolumn = 0 ) { |
492 | 492 | |
493 | - if( empty( $approvedcolumn ) ) { |
|
493 | + if ( empty( $approvedcolumn ) ) { |
|
494 | 494 | $approvedcolumn = self::get_approved_column( $form_id ); |
495 | 495 | } |
496 | 496 | |
@@ -513,12 +513,12 @@ discard block |
||
513 | 513 | $status = GravityView_Entry_Approval_Status::maybe_convert_status( $status ); |
514 | 514 | |
515 | 515 | $new_value = ''; |
516 | - if( GravityView_Entry_Approval_Status::APPROVED === $status ) { |
|
516 | + if ( GravityView_Entry_Approval_Status::APPROVED === $status ) { |
|
517 | 517 | $new_value = self::get_approved_column_input_label( $form_id, $approvedcolumn ); |
518 | 518 | } |
519 | 519 | |
520 | 520 | //update entry |
521 | - $entry["{$approvedcolumn}"] = $new_value; |
|
521 | + $entry[ "{$approvedcolumn}" ] = $new_value; |
|
522 | 522 | |
523 | 523 | /** |
524 | 524 | * Note: GFAPI::update_entry() doesn't trigger `gform_after_update_entry`, so we trigger updating the meta ourselves |
@@ -549,12 +549,12 @@ discard block |
||
549 | 549 | // If the user has enabled a different value than the label (for some reason), use it. |
550 | 550 | // This is highly unlikely |
551 | 551 | if ( is_array( $field->choices ) && ! empty( $field->choices ) ) { |
552 | - return isset( $field->choices[0]['value'] ) ? $field->choices[0]['value'] : $field->choices[0]['text']; |
|
552 | + return isset( $field->choices[ 0 ][ 'value' ] ) ? $field->choices[ 0 ][ 'value' ] : $field->choices[ 0 ][ 'text' ]; |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | // Otherwise, fall back on the inputs array |
556 | 556 | if ( is_array( $field->inputs ) && ! empty( $field->inputs ) ) { |
557 | - return $field->inputs[0]['label']; |
|
557 | + return $field->inputs[ 0 ][ 'label' ]; |
|
558 | 558 | } |
559 | 559 | |
560 | 560 | return null; |
@@ -606,7 +606,7 @@ discard block |
||
606 | 606 | * @since 1.18 Added "unapproved" |
607 | 607 | * @param int $entry_id ID of the Gravity Forms entry |
608 | 608 | */ |
609 | - do_action( 'gravityview/approve_entries/' . $action , $entry_id ); |
|
609 | + do_action( 'gravityview/approve_entries/' . $action, $entry_id ); |
|
610 | 610 | } |
611 | 611 | |
612 | 612 | /** |
@@ -619,11 +619,11 @@ discard block |
||
619 | 619 | */ |
620 | 620 | static public function get_approved_column( $form ) { |
621 | 621 | |
622 | - if( empty( $form ) ) { |
|
622 | + if ( empty( $form ) ) { |
|
623 | 623 | return null; |
624 | 624 | } |
625 | 625 | |
626 | - if( !is_array( $form ) ) { |
|
626 | + if ( ! is_array( $form ) ) { |
|
627 | 627 | $form = GVCommon::get_form( $form ); |
628 | 628 | } |
629 | 629 | |
@@ -633,22 +633,22 @@ discard block |
||
633 | 633 | * @var string $key |
634 | 634 | * @var GF_Field $field |
635 | 635 | */ |
636 | - foreach( $form['fields'] as $key => $field ) { |
|
636 | + foreach ( $form[ 'fields' ] as $key => $field ) { |
|
637 | 637 | |
638 | 638 | $inputs = $field->get_entry_inputs(); |
639 | 639 | |
640 | - if( !empty( $field->gravityview_approved ) ) { |
|
641 | - if ( ! empty( $inputs ) && !empty( $inputs[0]['id'] ) ) { |
|
642 | - $approved_column_id = $inputs[0]['id']; |
|
640 | + if ( ! empty( $field->gravityview_approved ) ) { |
|
641 | + if ( ! empty( $inputs ) && ! empty( $inputs[ 0 ][ 'id' ] ) ) { |
|
642 | + $approved_column_id = $inputs[ 0 ][ 'id' ]; |
|
643 | 643 | break; |
644 | 644 | } |
645 | 645 | } |
646 | 646 | |
647 | 647 | // Note: This is just for backward compatibility from GF Directory plugin and old GV versions - when using i18n it may not work.. |
648 | - if( 'checkbox' === $field->type && ! empty( $inputs ) ) { |
|
648 | + if ( 'checkbox' === $field->type && ! empty( $inputs ) ) { |
|
649 | 649 | foreach ( $inputs as $input ) { |
650 | - if ( 'approved' === strtolower( $input['label'] ) ) { |
|
651 | - $approved_column_id = $input['id']; |
|
650 | + if ( 'approved' === strtolower( $input[ 'label' ] ) ) { |
|
651 | + $approved_column_id = $input[ 'id' ]; |
|
652 | 652 | break; |
653 | 653 | } |
654 | 654 | } |
@@ -674,7 +674,7 @@ discard block |
||
674 | 674 | |
675 | 675 | $view_keys = array_keys( $gv_data->get_views() ); |
676 | 676 | |
677 | - $view = \GV\View::by_id( $view_keys[0] ); |
|
677 | + $view = \GV\View::by_id( $view_keys[ 0 ] ); |
|
678 | 678 | |
679 | 679 | if ( ! $view->settings->get( 'unapprove_edit' ) ) { |
680 | 680 | return; |
@@ -699,11 +699,11 @@ discard block |
||
699 | 699 | return; |
700 | 700 | } |
701 | 701 | |
702 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
702 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
703 | 703 | $approval_status = GravityView_Entry_Approval_Status::UNAPPROVED; |
704 | 704 | } |
705 | 705 | |
706 | - self::update_approved_meta( $entry_id, $approval_status, $form['id'] ); |
|
706 | + self::update_approved_meta( $entry_id, $approval_status, $form[ 'id' ] ); |
|
707 | 707 | } |
708 | 708 | |
709 | 709 | /** |
@@ -741,9 +741,9 @@ discard block |
||
741 | 741 | $choices = GravityView_Entry_Approval_Status::get_all(); |
742 | 742 | |
743 | 743 | return <<<TEMPLATE |
744 | -<a href="#" data-approved="{$choices['approved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-approved popover" title="{$choices['approved']['action']}"><span class="screen-reader-text">{$choices['approved']['action']}</span></a> |
|
745 | -<a href="#" data-approved="{$choices['disapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-disapproved popover" title="{$choices['disapproved']['action']}"><span class="screen-reader-text">{$choices['disapproved']['action']}</span></a> |
|
746 | -<a href="#" data-approved="{$choices['unapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-unapproved popover" title="{$choices['unapproved']['action']}"><span class="screen-reader-text">{$choices['unapproved']['action']}</span></a> |
|
744 | +<a href="#" data-approved="{$choices[ 'approved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-approved popover" title="{$choices[ 'approved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'approved' ][ 'action' ]}</span></a> |
|
745 | +<a href="#" data-approved="{$choices[ 'disapproved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-disapproved popover" title="{$choices[ 'disapproved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'disapproved' ][ 'action' ]}</span></a> |
|
746 | +<a href="#" data-approved="{$choices[ 'unapproved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-unapproved popover" title="{$choices[ 'unapproved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'unapproved' ][ 'action' ]}</span></a> |
|
747 | 747 | TEMPLATE; |
748 | 748 | } |
749 | 749 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | |
139 | 139 | // template areas |
140 | 140 | $template_areas_directory = apply_filters( 'gravityview_template_active_areas', array(), $template_id, 'directory' ); |
141 | - $template_areas_single = apply_filters( 'gravityview_template_active_areas', array(), $template_id, 'single' ); |
|
141 | + $template_areas_single = apply_filters( 'gravityview_template_active_areas', array(), $template_id, 'single' ); |
|
142 | 142 | |
143 | 143 | // widget areas |
144 | 144 | $default_widget_areas = \GV\Widget::get_default_widget_areas(); |
@@ -331,40 +331,40 @@ discard block |
||
331 | 331 | // load file |
332 | 332 | $xmlstr = file_get_contents( $form_file ); |
333 | 333 | |
334 | - $options = array( |
|
335 | - "page" => array("unserialize_as_array" => true), |
|
336 | - "form"=> array("unserialize_as_array" => true), |
|
337 | - "field"=> array("unserialize_as_array" => true), |
|
338 | - "rule"=> array("unserialize_as_array" => true), |
|
339 | - "choice"=> array("unserialize_as_array" => true), |
|
340 | - "input"=> array("unserialize_as_array" => true), |
|
341 | - "routing_item"=> array("unserialize_as_array" => true), |
|
342 | - "creditCard"=> array("unserialize_as_array" => true), |
|
343 | - "routin"=> array("unserialize_as_array" => true), |
|
344 | - "confirmation" => array("unserialize_as_array" => true), |
|
345 | - "notification" => array("unserialize_as_array" => true) |
|
346 | - ); |
|
334 | + $options = array( |
|
335 | + "page" => array("unserialize_as_array" => true), |
|
336 | + "form"=> array("unserialize_as_array" => true), |
|
337 | + "field"=> array("unserialize_as_array" => true), |
|
338 | + "rule"=> array("unserialize_as_array" => true), |
|
339 | + "choice"=> array("unserialize_as_array" => true), |
|
340 | + "input"=> array("unserialize_as_array" => true), |
|
341 | + "routing_item"=> array("unserialize_as_array" => true), |
|
342 | + "creditCard"=> array("unserialize_as_array" => true), |
|
343 | + "routin"=> array("unserialize_as_array" => true), |
|
344 | + "confirmation" => array("unserialize_as_array" => true), |
|
345 | + "notification" => array("unserialize_as_array" => true) |
|
346 | + ); |
|
347 | 347 | |
348 | 348 | $xml = new RGXML($options); |
349 | - $forms = $xml->unserialize($xmlstr); |
|
349 | + $forms = $xml->unserialize($xmlstr); |
|
350 | 350 | |
351 | - if( !$forms ) { |
|
352 | - gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. Error importing file. (File) {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
|
353 | - return false; |
|
354 | - } |
|
351 | + if( !$forms ) { |
|
352 | + gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. Error importing file. (File) {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
|
353 | + return false; |
|
354 | + } |
|
355 | 355 | |
356 | - if( !empty( $forms[0] ) && is_array( $forms[0] ) ) { |
|
357 | - $form = $forms[0]; |
|
358 | - } |
|
356 | + if( !empty( $forms[0] ) && is_array( $forms[0] ) ) { |
|
357 | + $form = $forms[0]; |
|
358 | + } |
|
359 | 359 | |
360 | - if( empty( $form ) ) { |
|
361 | - gravityview()->log->error( '$form not set.', array( 'data' => $forms ) ); |
|
362 | - return false; |
|
363 | - } |
|
360 | + if( empty( $form ) ) { |
|
361 | + gravityview()->log->error( '$form not set.', array( 'data' => $forms ) ); |
|
362 | + return false; |
|
363 | + } |
|
364 | 364 | |
365 | - gravityview()->log->debug( '[pre_get_available_fields] Importing Form Fields for preset [{template_id}]. (Form)', array( 'template_id' => $template_id, 'data' => $form ) ); |
|
365 | + gravityview()->log->debug( '[pre_get_available_fields] Importing Form Fields for preset [{template_id}]. (Form)', array( 'template_id' => $template_id, 'data' => $form ) ); |
|
366 | 366 | |
367 | - return $form; |
|
367 | + return $form; |
|
368 | 368 | |
369 | 369 | } |
370 | 370 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * Don't exit if we're running test suite. |
37 | 37 | * @since 1.15 |
38 | 38 | */ |
39 | - if( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) { |
|
39 | + if ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) { |
|
40 | 40 | return $mixed; |
41 | 41 | } |
42 | 42 | |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @return void |
51 | 51 | */ |
52 | 52 | function check_ajax_nonce() { |
53 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxviews' ) ) { |
|
53 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxviews' ) ) { |
|
54 | 54 | $this->_exit( false ); |
55 | 55 | } |
56 | 56 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | $context = rgpost( 'context' ); |
70 | 70 | |
71 | 71 | // Return markup for a single or multiple contexts |
72 | - if( $context ) { |
|
72 | + if ( $context ) { |
|
73 | 73 | $data = array( |
74 | 74 | esc_attr( $context ) => '' |
75 | 75 | ); |
@@ -113,17 +113,17 @@ discard block |
||
113 | 113 | function get_active_areas() { |
114 | 114 | $this->check_ajax_nonce(); |
115 | 115 | |
116 | - if( empty( $_POST['template_id'] ) ) { |
|
116 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
117 | 117 | $this->_exit( false ); |
118 | 118 | } |
119 | 119 | |
120 | 120 | ob_start(); |
121 | - do_action( 'gravityview_render_directory_active_areas', $_POST['template_id'], 'directory', '', true ); |
|
122 | - $response['directory'] = ob_get_clean(); |
|
121 | + do_action( 'gravityview_render_directory_active_areas', $_POST[ 'template_id' ], 'directory', '', true ); |
|
122 | + $response[ 'directory' ] = ob_get_clean(); |
|
123 | 123 | |
124 | 124 | ob_start(); |
125 | - do_action( 'gravityview_render_directory_active_areas', $_POST['template_id'], 'single', '', true ); |
|
126 | - $response['single'] = ob_get_clean(); |
|
125 | + do_action( 'gravityview_render_directory_active_areas', $_POST[ 'template_id' ], 'single', '', true ); |
|
126 | + $response[ 'single' ] = ob_get_clean(); |
|
127 | 127 | |
128 | 128 | $response = array_map( 'gravityview_strip_whitespace', $response ); |
129 | 129 | |
@@ -138,20 +138,20 @@ discard block |
||
138 | 138 | |
139 | 139 | $this->check_ajax_nonce(); |
140 | 140 | |
141 | - if( empty( $_POST['template_id'] ) ) { |
|
141 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
142 | 142 | $this->_exit( false ); |
143 | 143 | } |
144 | 144 | |
145 | 145 | // get the fields xml config file for this specific preset |
146 | - $preset_fields_path = apply_filters( 'gravityview_template_fieldsxml', array(), $_POST['template_id'] ); |
|
146 | + $preset_fields_path = apply_filters( 'gravityview_template_fieldsxml', array(), $_POST[ 'template_id' ] ); |
|
147 | 147 | // import fields |
148 | - if( !empty( $preset_fields_path ) ) { |
|
148 | + if ( ! empty( $preset_fields_path ) ) { |
|
149 | 149 | $presets = $this->import_fields( $preset_fields_path ); |
150 | 150 | } else { |
151 | 151 | $presets = array( 'widgets' => array(), 'fields' => array() ); |
152 | 152 | } |
153 | 153 | |
154 | - $template_id = esc_attr( $_POST['template_id'] ); |
|
154 | + $template_id = esc_attr( $_POST[ 'template_id' ] ); |
|
155 | 155 | |
156 | 156 | // template areas |
157 | 157 | $template_areas_directory = apply_filters( 'gravityview_template_active_areas', array(), $template_id, 'directory' ); |
@@ -161,20 +161,20 @@ discard block |
||
161 | 161 | $default_widget_areas = \GV\Widget::get_default_widget_areas(); |
162 | 162 | |
163 | 163 | ob_start(); |
164 | - do_action('gravityview_render_active_areas', $template_id, 'widget', 'header', $default_widget_areas, $presets['widgets'] ); |
|
165 | - $response['header'] = ob_get_clean(); |
|
164 | + do_action( 'gravityview_render_active_areas', $template_id, 'widget', 'header', $default_widget_areas, $presets[ 'widgets' ] ); |
|
165 | + $response[ 'header' ] = ob_get_clean(); |
|
166 | 166 | |
167 | 167 | ob_start(); |
168 | - do_action('gravityview_render_active_areas', $template_id, 'widget', 'footer', $default_widget_areas, $presets['widgets'] ); |
|
169 | - $response['footer'] = ob_get_clean(); |
|
168 | + do_action( 'gravityview_render_active_areas', $template_id, 'widget', 'footer', $default_widget_areas, $presets[ 'widgets' ] ); |
|
169 | + $response[ 'footer' ] = ob_get_clean(); |
|
170 | 170 | |
171 | 171 | ob_start(); |
172 | - do_action('gravityview_render_active_areas', $template_id, 'field', 'directory', $template_areas_directory, $presets['fields'] ); |
|
173 | - $response['directory'] = ob_get_clean(); |
|
172 | + do_action( 'gravityview_render_active_areas', $template_id, 'field', 'directory', $template_areas_directory, $presets[ 'fields' ] ); |
|
173 | + $response[ 'directory' ] = ob_get_clean(); |
|
174 | 174 | |
175 | 175 | ob_start(); |
176 | - do_action('gravityview_render_active_areas', $template_id, 'field', 'single', $template_areas_single, $presets['fields'] ); |
|
177 | - $response['single'] = ob_get_clean(); |
|
176 | + do_action( 'gravityview_render_active_areas', $template_id, 'field', 'single', $template_areas_single, $presets[ 'fields' ] ); |
|
177 | + $response[ 'single' ] = ob_get_clean(); |
|
178 | 178 | |
179 | 179 | $response = array_map( 'gravityview_strip_whitespace', $response ); |
180 | 180 | |
@@ -192,26 +192,26 @@ discard block |
||
192 | 192 | |
193 | 193 | $this->check_ajax_nonce(); |
194 | 194 | |
195 | - if( empty( $_POST['template_id'] ) ) { |
|
195 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
196 | 196 | gravityview()->log->error( 'Cannot create preset form; the template_id is empty.' ); |
197 | 197 | $this->_exit( false ); |
198 | 198 | } |
199 | 199 | |
200 | 200 | // get the xml for this specific template_id |
201 | - $preset_form_xml_path = apply_filters( 'gravityview_template_formxml', '', $_POST['template_id'] ); |
|
201 | + $preset_form_xml_path = apply_filters( 'gravityview_template_formxml', '', $_POST[ 'template_id' ] ); |
|
202 | 202 | |
203 | 203 | // import form |
204 | 204 | $form = $this->import_form( $preset_form_xml_path ); |
205 | 205 | |
206 | 206 | // get the form ID |
207 | - if( false === $form ) { |
|
207 | + if ( false === $form ) { |
|
208 | 208 | // send error to user |
209 | - gravityview()->log->error( 'Error importing form for template id: {template_id}', array( 'template_id' => (int) $_POST['template_id'] ) ); |
|
209 | + gravityview()->log->error( 'Error importing form for template id: {template_id}', array( 'template_id' => (int)$_POST[ 'template_id' ] ) ); |
|
210 | 210 | |
211 | 211 | $this->_exit( false ); |
212 | 212 | } |
213 | 213 | |
214 | - $this->_exit( '<option value="'.esc_attr( $form['id'] ).'" selected="selected">'.esc_html( $form['title'] ).'</option>' ); |
|
214 | + $this->_exit( '<option value="' . esc_attr( $form[ 'id' ] ) . '" selected="selected">' . esc_html( $form[ 'title' ] ) . '</option>' ); |
|
215 | 215 | |
216 | 216 | } |
217 | 217 | |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | |
226 | 226 | gravityview()->log->debug( '[import_form] Import Preset Form. (File) {path}', array( 'path' => $xml_or_json_path ) ); |
227 | 227 | |
228 | - if( empty( $xml_or_json_path ) || !class_exists('GFExport') || !file_exists( $xml_or_json_path ) ) { |
|
228 | + if ( empty( $xml_or_json_path ) || ! class_exists( 'GFExport' ) || ! file_exists( $xml_or_json_path ) ) { |
|
229 | 229 | gravityview()->log->error( 'Class GFExport or file not found. file: {path}', array( 'path' => $xml_or_json_path ) ); |
230 | 230 | return false; |
231 | 231 | } |
@@ -237,13 +237,13 @@ discard block |
||
237 | 237 | gravityview()->log->debug( '[import_form] Importing form (Result) {count}', array( 'count' => $count ) ); |
238 | 238 | gravityview()->log->debug( '[import_form] Importing form (Form) ', array( 'data' => $forms ) ); |
239 | 239 | |
240 | - if( $count != 1 || empty( $forms[0]['id'] ) ) { |
|
240 | + if ( $count != 1 || empty( $forms[ 0 ][ 'id' ] ) ) { |
|
241 | 241 | gravityview()->log->error( 'Form Import Failed!' ); |
242 | 242 | return false; |
243 | 243 | } |
244 | 244 | |
245 | 245 | // import success - return form id |
246 | - return $forms[0]; |
|
246 | + return $forms[ 0 ]; |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | function get_field_options() { |
258 | 258 | $this->check_ajax_nonce(); |
259 | 259 | |
260 | - if( empty( $_POST['template'] ) || empty( $_POST['area'] ) || empty( $_POST['field_id'] ) || empty( $_POST['field_type'] ) ) { |
|
260 | + if ( empty( $_POST[ 'template' ] ) || empty( $_POST[ 'area' ] ) || empty( $_POST[ 'field_id' ] ) || empty( $_POST[ 'field_type' ] ) ) { |
|
261 | 261 | gravityview()->log->error( 'Required fields were not set in the $_POST request. ' ); |
262 | 262 | $this->_exit( false ); |
263 | 263 | } |
@@ -269,11 +269,11 @@ discard block |
||
269 | 269 | $_post = array_map( 'esc_attr', $_post ); |
270 | 270 | |
271 | 271 | // The GF type of field: `product`, `name`, `creditcard`, `id`, `text` |
272 | - $input_type = isset($_post['input_type']) ? esc_attr( $_post['input_type'] ) : NULL; |
|
273 | - $context = isset($_post['context']) ? esc_attr( $_post['context'] ) : NULL; |
|
272 | + $input_type = isset( $_post[ 'input_type' ] ) ? esc_attr( $_post[ 'input_type' ] ) : NULL; |
|
273 | + $context = isset( $_post[ 'context' ] ) ? esc_attr( $_post[ 'context' ] ) : NULL; |
|
274 | 274 | |
275 | - $form_id = empty( $_post['form_id'] ) ? null : $_post['form_id']; |
|
276 | - $response = GravityView_Render_Settings::render_field_options( $form_id, $_post['field_type'], $_post['template'], $_post['field_id'], $_post['field_label'], $_post['area'], $input_type, '', '', $context ); |
|
275 | + $form_id = empty( $_post[ 'form_id' ] ) ? null : $_post[ 'form_id' ]; |
|
276 | + $response = GravityView_Render_Settings::render_field_options( $form_id, $_post[ 'field_type' ], $_post[ 'template' ], $_post[ 'field_id' ], $_post[ 'field_label' ], $_post[ 'area' ], $input_type, '', '', $context ); |
|
277 | 277 | |
278 | 278 | $response = gravityview_strip_whitespace( $response ); |
279 | 279 | |
@@ -294,15 +294,15 @@ discard block |
||
294 | 294 | $form = ''; |
295 | 295 | |
296 | 296 | // if form id is set, use it, else, get form from preset |
297 | - if( !empty( $_POST['form_id'] ) ) { |
|
297 | + if ( ! empty( $_POST[ 'form_id' ] ) ) { |
|
298 | 298 | |
299 | - $form = (int) $_POST['form_id']; |
|
299 | + $form = (int)$_POST[ 'form_id' ]; |
|
300 | 300 | |
301 | 301 | } |
302 | 302 | // get form from preset |
303 | - elseif( !empty( $_POST['template_id'] ) ) { |
|
303 | + elseif ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
304 | 304 | |
305 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
305 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
306 | 306 | |
307 | 307 | } |
308 | 308 | |
@@ -318,27 +318,27 @@ discard block |
||
318 | 318 | * @param string $template_id Preset template |
319 | 319 | * |
320 | 320 | */ |
321 | - static function pre_get_form_fields( $template_id = '') { |
|
321 | + static function pre_get_form_fields( $template_id = '' ) { |
|
322 | 322 | |
323 | - if( empty( $template_id ) ) { |
|
323 | + if ( empty( $template_id ) ) { |
|
324 | 324 | gravityview()->log->error( 'Template ID not set.' ); |
325 | 325 | return false; |
326 | 326 | } else { |
327 | 327 | $form_file = apply_filters( 'gravityview_template_formxml', '', $template_id ); |
328 | - if( !file_exists( $form_file ) ) { |
|
328 | + if ( ! file_exists( $form_file ) ) { |
|
329 | 329 | gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. File not found. file: {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
330 | 330 | return false; |
331 | 331 | } |
332 | 332 | } |
333 | 333 | |
334 | 334 | // Load xml parser (from GravityForms) |
335 | - if( class_exists( 'GFCommon' ) ) { |
|
335 | + if ( class_exists( 'GFCommon' ) ) { |
|
336 | 336 | $xml_parser = GFCommon::get_base_path() . '/xml.php'; |
337 | 337 | } else { |
338 | 338 | $xml_parser = trailingslashit( WP_PLUGIN_DIR ) . 'gravityforms/xml.php'; |
339 | 339 | } |
340 | 340 | |
341 | - if( file_exists( $xml_parser ) ) { |
|
341 | + if ( file_exists( $xml_parser ) ) { |
|
342 | 342 | require_once( $xml_parser ); |
343 | 343 | } else { |
344 | 344 | gravityview()->log->debug( ' - Gravity Forms XML Parser not found {path}.', array( 'path' => $xml_parser ) ); |
@@ -349,32 +349,32 @@ discard block |
||
349 | 349 | $xmlstr = file_get_contents( $form_file ); |
350 | 350 | |
351 | 351 | $options = array( |
352 | - "page" => array("unserialize_as_array" => true), |
|
353 | - "form"=> array("unserialize_as_array" => true), |
|
354 | - "field"=> array("unserialize_as_array" => true), |
|
355 | - "rule"=> array("unserialize_as_array" => true), |
|
356 | - "choice"=> array("unserialize_as_array" => true), |
|
357 | - "input"=> array("unserialize_as_array" => true), |
|
358 | - "routing_item"=> array("unserialize_as_array" => true), |
|
359 | - "creditCard"=> array("unserialize_as_array" => true), |
|
360 | - "routin"=> array("unserialize_as_array" => true), |
|
361 | - "confirmation" => array("unserialize_as_array" => true), |
|
362 | - "notification" => array("unserialize_as_array" => true) |
|
352 | + "page" => array( "unserialize_as_array" => true ), |
|
353 | + "form"=> array( "unserialize_as_array" => true ), |
|
354 | + "field"=> array( "unserialize_as_array" => true ), |
|
355 | + "rule"=> array( "unserialize_as_array" => true ), |
|
356 | + "choice"=> array( "unserialize_as_array" => true ), |
|
357 | + "input"=> array( "unserialize_as_array" => true ), |
|
358 | + "routing_item"=> array( "unserialize_as_array" => true ), |
|
359 | + "creditCard"=> array( "unserialize_as_array" => true ), |
|
360 | + "routin"=> array( "unserialize_as_array" => true ), |
|
361 | + "confirmation" => array( "unserialize_as_array" => true ), |
|
362 | + "notification" => array( "unserialize_as_array" => true ) |
|
363 | 363 | ); |
364 | 364 | |
365 | - $xml = new RGXML($options); |
|
366 | - $forms = $xml->unserialize($xmlstr); |
|
365 | + $xml = new RGXML( $options ); |
|
366 | + $forms = $xml->unserialize( $xmlstr ); |
|
367 | 367 | |
368 | - if( !$forms ) { |
|
368 | + if ( ! $forms ) { |
|
369 | 369 | gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. Error importing file. (File) {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
370 | 370 | return false; |
371 | 371 | } |
372 | 372 | |
373 | - if( !empty( $forms[0] ) && is_array( $forms[0] ) ) { |
|
374 | - $form = $forms[0]; |
|
373 | + if ( ! empty( $forms[ 0 ] ) && is_array( $forms[ 0 ] ) ) { |
|
374 | + $form = $forms[ 0 ]; |
|
375 | 375 | } |
376 | 376 | |
377 | - if( empty( $form ) ) { |
|
377 | + if ( empty( $form ) ) { |
|
378 | 378 | gravityview()->log->error( '$form not set.', array( 'data' => $forms ) ); |
379 | 379 | return false; |
380 | 380 | } |
@@ -393,38 +393,38 @@ discard block |
||
393 | 393 | */ |
394 | 394 | function import_fields( $file ) { |
395 | 395 | |
396 | - if( empty( $file ) || !file_exists( $file ) ) { |
|
396 | + if ( empty( $file ) || ! file_exists( $file ) ) { |
|
397 | 397 | gravityview()->log->error( 'Importing Preset Fields. File not found. (File) {path}', array( 'path' => $file ) ); |
398 | 398 | return false; |
399 | 399 | } |
400 | 400 | |
401 | - if( !class_exists('WXR_Parser') ) { |
|
401 | + if ( ! class_exists( 'WXR_Parser' ) ) { |
|
402 | 402 | include_once GRAVITYVIEW_DIR . 'includes/lib/xml-parsers/parsers.php'; |
403 | 403 | } |
404 | 404 | |
405 | 405 | $parser = new WXR_Parser(); |
406 | 406 | $presets = $parser->parse( $file ); |
407 | 407 | |
408 | - if(is_wp_error( $presets )) { |
|
408 | + if ( is_wp_error( $presets ) ) { |
|
409 | 409 | gravityview()->log->error( 'Importing Preset Fields failed. Threw WP_Error.', array( 'data' => $presets ) ); |
410 | 410 | return false; |
411 | 411 | } |
412 | 412 | |
413 | - if( empty( $presets['posts'][0]['postmeta'] ) && !is_array( $presets['posts'][0]['postmeta'] ) ) { |
|
413 | + if ( empty( $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) && ! is_array( $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) ) { |
|
414 | 414 | gravityview()->log->error( 'Importing Preset Fields failed. Meta not found in file. {path}', array( 'path' => $file ) ); |
415 | 415 | return false; |
416 | 416 | } |
417 | 417 | |
418 | - gravityview()->log->debug( '[import_fields] postmeta', array( 'data' => $presets['posts'][0]['postmeta'] ) ); |
|
418 | + gravityview()->log->debug( '[import_fields] postmeta', array( 'data' => $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) ); |
|
419 | 419 | |
420 | 420 | $fields = $widgets = array(); |
421 | - foreach( $presets['posts'][0]['postmeta'] as $meta ) { |
|
422 | - switch ($meta['key']) { |
|
421 | + foreach ( $presets[ 'posts' ][ 0 ][ 'postmeta' ] as $meta ) { |
|
422 | + switch ( $meta[ 'key' ] ) { |
|
423 | 423 | case '_gravityview_directory_fields': |
424 | - $fields = maybe_unserialize( $meta['value'] ); |
|
424 | + $fields = maybe_unserialize( $meta[ 'value' ] ); |
|
425 | 425 | break; |
426 | 426 | case '_gravityview_directory_widgets': |
427 | - $widgets = maybe_unserialize( $meta['value'] ); |
|
427 | + $widgets = maybe_unserialize( $meta[ 'value' ] ); |
|
428 | 428 | break; |
429 | 429 | } |
430 | 430 | } |