@@ -49,8 +49,8 @@ |
||
49 | 49 | public function blocklist_field_types( $field_types = array(), $context = '' ) { |
50 | 50 | |
51 | 51 | // Allow Calculation field in Edit Entry |
52 | - if( 'edit' !== $context ) { |
|
53 | - $field_types[] = $this->name; |
|
52 | + if ( 'edit' !== $context ) { |
|
53 | + $field_types[ ] = $this->name; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | return $field_types; |
@@ -143,17 +143,17 @@ discard block |
||
143 | 143 | |
144 | 144 | add_filter( 'gravityview/sortable/field_blocklist', array( $this, '_filter_sortable_fields' ), 1 ); |
145 | 145 | |
146 | - if( $this->entry_meta_key ) { |
|
146 | + if ( $this->entry_meta_key ) { |
|
147 | 147 | add_filter( 'gform_entry_meta', array( $this, 'add_entry_meta' ) ); |
148 | 148 | add_filter( 'gravityview/common/sortable_fields', array( $this, 'add_sortable_field' ), 10, 2 ); |
149 | 149 | } |
150 | 150 | |
151 | - if( $this->_custom_merge_tag ) { |
|
151 | + if ( $this->_custom_merge_tag ) { |
|
152 | 152 | add_filter( 'gform_custom_merge_tags', array( $this, '_filter_gform_custom_merge_tags' ), 10, 4 ); |
153 | 153 | add_filter( 'gform_replace_merge_tags', array( $this, '_filter_gform_replace_merge_tags' ), 10, 7 ); |
154 | 154 | } |
155 | 155 | |
156 | - if( 'meta' === $this->group || '' !== $this->default_search_label ) { |
|
156 | + if ( 'meta' === $this->group || '' !== $this->default_search_label ) { |
|
157 | 157 | add_filter( 'gravityview_search_field_label', array( $this, 'set_default_search_label' ), 10, 3 ); |
158 | 158 | } |
159 | 159 | |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * Auto-assign label from Gravity Forms label, if exists |
162 | 162 | * @since 1.20 |
163 | 163 | */ |
164 | - if( empty( $this->label ) && ! empty( $this->_gf_field_class_name ) && class_exists( $this->_gf_field_class_name ) ) { |
|
164 | + if ( empty( $this->label ) && ! empty( $this->_gf_field_class_name ) && class_exists( $this->_gf_field_class_name ) ) { |
|
165 | 165 | $this->label = ucfirst( GF_Fields::get( $this->name )->get_form_editor_field_title() ); |
166 | 166 | } |
167 | 167 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | 'type' => $this->name |
208 | 208 | ); |
209 | 209 | |
210 | - $fields["{$this->entry_meta_key}"] = $added_field; |
|
210 | + $fields[ "{$this->entry_meta_key}" ] = $added_field; |
|
211 | 211 | |
212 | 212 | return $fields; |
213 | 213 | } |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | */ |
228 | 228 | function set_default_search_label( $label = '', $gf_field = null, $field = array() ) { |
229 | 229 | |
230 | - if( $this->name === $field['field'] && '' === $label ) { |
|
230 | + if ( $this->name === $field[ 'field' ] && '' === $label ) { |
|
231 | 231 | $label = esc_html( $this->default_search_label ); |
232 | 232 | } |
233 | 233 | |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | * |
249 | 249 | * @return string Original text if {_custom_merge_tag} isn't found. Otherwise, replaced text. |
250 | 250 | */ |
251 | - public function _filter_gform_replace_merge_tags( $text, $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
251 | + public function _filter_gform_replace_merge_tags( $text, $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
252 | 252 | |
253 | 253 | // Is there is field merge tag? Strip whitespace off the ned, too. |
254 | 254 | preg_match_all( '/{' . preg_quote( $this->_custom_merge_tag ) . ':?(.*?)(?:\s)?}/ism', $text, $matches, PREG_SET_ORDER ); |
@@ -281,19 +281,19 @@ discard block |
||
281 | 281 | */ |
282 | 282 | public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
283 | 283 | |
284 | - foreach( $matches as $match ) { |
|
284 | + foreach ( $matches as $match ) { |
|
285 | 285 | |
286 | - $full_tag = $match[0]; |
|
286 | + $full_tag = $match[ 0 ]; |
|
287 | 287 | |
288 | 288 | // Strip the Merge Tags |
289 | - $tag = str_replace( array( '{', '}'), '', $full_tag ); |
|
289 | + $tag = str_replace( array( '{', '}' ), '', $full_tag ); |
|
290 | 290 | |
291 | 291 | // Replace the value from the entry, if exists |
292 | - if( isset( $entry[ $tag ] ) ) { |
|
292 | + if ( isset( $entry[ $tag ] ) ) { |
|
293 | 293 | |
294 | 294 | $value = $entry[ $tag ]; |
295 | 295 | |
296 | - if( is_callable( array( $this, 'get_content') ) ) { |
|
296 | + if ( is_callable( array( $this, 'get_content' ) ) ) { |
|
297 | 297 | $value = $this->get_content( $value ); |
298 | 298 | } |
299 | 299 | |
@@ -366,8 +366,8 @@ discard block |
||
366 | 366 | */ |
367 | 367 | public function _filter_sortable_fields( $not_sortable ) { |
368 | 368 | |
369 | - if( ! $this->is_sortable ) { |
|
370 | - $not_sortable[] = $this->name; |
|
369 | + if ( ! $this->is_sortable ) { |
|
370 | + $not_sortable[ ] = $this->name; |
|
371 | 371 | } |
372 | 372 | |
373 | 373 | return $not_sortable; |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | */ |
385 | 385 | function add_entry_meta( $entry_meta ) { |
386 | 386 | |
387 | - if( ! isset( $entry_meta["{$this->entry_meta_key}"] ) ) { |
|
387 | + if ( ! isset( $entry_meta[ "{$this->entry_meta_key}" ] ) ) { |
|
388 | 388 | |
389 | 389 | $added_meta = array( |
390 | 390 | 'label' => $this->label, |
@@ -393,13 +393,13 @@ discard block |
||
393 | 393 | ); |
394 | 394 | |
395 | 395 | if ( $this->entry_meta_update_callback && is_callable( $this->entry_meta_update_callback ) ) { |
396 | - $added_meta['update_entry_meta_callback'] = $this->entry_meta_update_callback; |
|
396 | + $added_meta[ 'update_entry_meta_callback' ] = $this->entry_meta_update_callback; |
|
397 | 397 | } |
398 | 398 | |
399 | - $entry_meta["{$this->entry_meta_key}"] = $added_meta; |
|
399 | + $entry_meta[ "{$this->entry_meta_key}" ] = $added_meta; |
|
400 | 400 | |
401 | 401 | } else { |
402 | - gravityview()->log->error( 'Entry meta already set: {meta_key}', array( 'meta_key' => $this->entry_meta_key, 'data' => $entry_meta["{$this->entry_meta_key}"] ) ); |
|
402 | + gravityview()->log->error( 'Entry meta already set: {meta_key}', array( 'meta_key' => $this->entry_meta_key, 'data' => $entry_meta[ "{$this->entry_meta_key}" ] ) ); |
|
403 | 403 | } |
404 | 404 | |
405 | 405 | return $entry_meta; |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | 'date_display' => array( |
435 | 435 | 'type' => 'text', |
436 | 436 | 'label' => __( 'Override Date Format', 'gravityview' ), |
437 | - 'desc' => sprintf( __( 'Define how the date is displayed (using %sthe PHP date format%s)', 'gravityview'), '<a href="https://wordpress.org/support/article/formatting-date-and-time/" rel="external">', '</a>' ), |
|
437 | + 'desc' => sprintf( __( 'Define how the date is displayed (using %sthe PHP date format%s)', 'gravityview' ), '<a href="https://wordpress.org/support/article/formatting-date-and-time/" rel="external">', '</a>' ), |
|
438 | 438 | /** |
439 | 439 | * @filter `gravityview_date_format` Override the date format with a [PHP date format](https://codex.wordpress.org/Formatting_Date_and_Time) |
440 | 440 | * @param[in,out] null|string $date_format Date Format (default: null) |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | |
465 | 465 | $options = $this->field_support_options(); |
466 | 466 | |
467 | - if( isset( $options[ $key ] ) ) { |
|
467 | + if ( isset( $options[ $key ] ) ) { |
|
468 | 468 | $field_options[ $key ] = $options[ $key ]; |
469 | 469 | } |
470 | 470 | |
@@ -528,11 +528,11 @@ discard block |
||
528 | 528 | $connected_form = \GV\Utils::_POST( 'form_id' ); |
529 | 529 | |
530 | 530 | // Otherwise, get the Form ID from the Post page |
531 | - if( empty( $connected_form ) ) { |
|
531 | + if ( empty( $connected_form ) ) { |
|
532 | 532 | $connected_form = gravityview_get_form_id( get_the_ID() ); |
533 | 533 | } |
534 | 534 | |
535 | - if( empty( $connected_form ) ) { |
|
535 | + if ( empty( $connected_form ) ) { |
|
536 | 536 | gravityview()->log->error( 'Form not found for form ID "{form_id}"', array( 'form_id' => $connected_form ) ); |
537 | 537 | return false; |
538 | 538 | } |
@@ -27,32 +27,32 @@ discard block |
||
27 | 27 | add_filter( 'gravityview_blocklist_field_types', array( $this, 'default_field_blocklist' ), 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'), 10, 2 ); |
|
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' ), 10, 2 ); |
|
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 | |
@@ -70,11 +70,11 @@ discard block |
||
70 | 70 | */ |
71 | 71 | function suggest_support_articles( $localization_data = array() ) { |
72 | 72 | |
73 | - if( ! gravityview()->request->is_view() ) { |
|
73 | + if ( ! gravityview()->request->is_view() ) { |
|
74 | 74 | return $localization_data; |
75 | 75 | } |
76 | 76 | |
77 | - $localization_data['suggest'] = array( |
|
77 | + $localization_data[ 'suggest' ] = array( |
|
78 | 78 | '57ef23539033602e61d4a560', |
79 | 79 | '54c67bb9e4b0512429885513', |
80 | 80 | '54c67bb9e4b0512429885512', |
@@ -103,20 +103,20 @@ discard block |
||
103 | 103 | return; |
104 | 104 | } |
105 | 105 | |
106 | - if ( ! isset( $query->query_vars['post_type'] ) ) { |
|
106 | + if ( ! isset( $query->query_vars[ 'post_type' ] ) ) { |
|
107 | 107 | return; |
108 | 108 | } |
109 | 109 | |
110 | - if ( 'gravityview' !== $query->query_vars['post_type'] ) { |
|
110 | + if ( 'gravityview' !== $query->query_vars[ 'post_type' ] ) { |
|
111 | 111 | return; |
112 | 112 | } |
113 | 113 | |
114 | - $form_id = (int) \GV\Utils::_GET( 'gravityview_form_id' ); |
|
114 | + $form_id = (int)\GV\Utils::_GET( 'gravityview_form_id' ); |
|
115 | 115 | |
116 | 116 | $meta_query = array(); |
117 | 117 | |
118 | 118 | if ( $form_id ) { |
119 | - $meta_query[] = array( |
|
119 | + $meta_query[ ] = array( |
|
120 | 120 | 'key' => '_gravityview_form_id', |
121 | 121 | 'value' => $form_id, |
122 | 122 | ); |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $layout_id = \GV\Utils::_GET( 'gravityview_layout' ); |
126 | 126 | |
127 | 127 | if ( $layout_id ) { |
128 | - $meta_query[] = array( |
|
128 | + $meta_query[ ] = array( |
|
129 | 129 | 'key' => '_gravityview_directory_template', |
130 | 130 | 'value' => esc_attr( $layout_id ), |
131 | 131 | ); |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | public function add_view_dropdown() { |
143 | 143 | $current_screen = get_current_screen(); |
144 | 144 | |
145 | - if( 'gravityview' !== $current_screen->post_type ) { |
|
145 | + if ( 'gravityview' !== $current_screen->post_type ) { |
|
146 | 146 | return; |
147 | 147 | } |
148 | 148 | |
@@ -150,12 +150,12 @@ discard block |
||
150 | 150 | $current_form = \GV\Utils::_GET( 'gravityview_form_id' ); |
151 | 151 | |
152 | 152 | // If there are no forms to select, show no forms. |
153 | - if( ! empty( $forms ) ) { ?> |
|
153 | + if ( ! empty( $forms ) ) { ?> |
|
154 | 154 | <label for="gravityview_form_id" class="screen-reader-text"><?php esc_html_e( 'Filter Views by form', 'gravityview' ); ?></label> |
155 | 155 | <select name="gravityview_form_id" id="gravityview_form_id"> |
156 | 156 | <option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option> |
157 | - <?php foreach( $forms as $form ) { ?> |
|
158 | - <option value="<?php echo esc_attr( $form['id'] ); ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option> |
|
157 | + <?php foreach ( $forms as $form ) { ?> |
|
158 | + <option value="<?php echo esc_attr( $form[ 'id' ] ); ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option> |
|
159 | 159 | <?php } ?> |
160 | 160 | </select> |
161 | 161 | <?php } |
@@ -164,26 +164,26 @@ discard block |
||
164 | 164 | $current_layout = \GV\Utils::_GET( 'gravityview_layout' ); |
165 | 165 | |
166 | 166 | // If there are no forms to select, show no forms. |
167 | - if( ! empty( $layouts ) ) { ?> |
|
167 | + if ( ! empty( $layouts ) ) { ?> |
|
168 | 168 | <label for="gravityview_layout_name" class="screen-reader-text"><?php esc_html_e( 'Filter Views by layout', 'gravityview' ); ?></label> |
169 | 169 | <select name="gravityview_layout" id="gravityview_layout_name"> |
170 | 170 | <option value="" <?php selected( '', $current_layout, true ); ?>><?php esc_html_e( 'All layouts', 'gravityview' ); ?></option> |
171 | 171 | <optgroup label="<?php esc_html_e( 'Layouts', 'gravityview' ); ?>"> |
172 | - <?php foreach( $layouts as $layout_id => $layout ) { |
|
173 | - if ( in_array( $layout['type'], array( 'preset', 'internal' ), true ) ) { |
|
172 | + <?php foreach ( $layouts as $layout_id => $layout ) { |
|
173 | + if ( in_array( $layout[ 'type' ], array( 'preset', 'internal' ), true ) ) { |
|
174 | 174 | continue; |
175 | 175 | } |
176 | 176 | ?> |
177 | - <option value="<?php echo esc_attr( $layout_id ); ?>" <?php selected( $layout_id, $current_layout, true ); ?>><?php echo esc_html( $layout['label'] ); ?></option> |
|
177 | + <option value="<?php echo esc_attr( $layout_id ); ?>" <?php selected( $layout_id, $current_layout, true ); ?>><?php echo esc_html( $layout[ 'label' ] ); ?></option> |
|
178 | 178 | <?php } ?> |
179 | 179 | </optgroup> |
180 | 180 | <optgroup label="<?php esc_html_e( 'Form Presets', 'gravityview' ); ?>"> |
181 | - <?php foreach( $layouts as $layout_id => $layout ) { |
|
182 | - if ( ! in_array( $layout['type'], array( 'preset' ), true ) ) { |
|
181 | + <?php foreach ( $layouts as $layout_id => $layout ) { |
|
182 | + if ( ! in_array( $layout[ 'type' ], array( 'preset' ), true ) ) { |
|
183 | 183 | continue; |
184 | 184 | } |
185 | 185 | ?> |
186 | - <option value="<?php echo esc_attr( $layout_id ); ?>" <?php selected( $layout_id, $current_layout, true ); ?>><?php echo esc_html( $layout['label'] ); ?></option> |
|
186 | + <option value="<?php echo esc_attr( $layout_id ); ?>" <?php selected( $layout_id, $current_layout, true ); ?>><?php echo esc_html( $layout[ 'label' ] ); ?></option> |
|
187 | 187 | <?php } ?> |
188 | 188 | </optgroup> |
189 | 189 | </select> |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | */ |
198 | 198 | public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) { |
199 | 199 | _deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' ); |
200 | - GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id ); |
|
200 | + GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id ); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | /** |
@@ -227,13 +227,13 @@ discard block |
||
227 | 227 | |
228 | 228 | $priority = 0; |
229 | 229 | |
230 | - if( 'form_list' === GFForms::get_page() ) { |
|
230 | + if ( 'form_list' === GFForms::get_page() ) { |
|
231 | 231 | $priority = 790; |
232 | 232 | } |
233 | 233 | |
234 | - if( empty( $connected_views ) ) { |
|
234 | + if ( empty( $connected_views ) ) { |
|
235 | 235 | |
236 | - $menu_items['gravityview'] = array( |
|
236 | + $menu_items[ 'gravityview' ] = array( |
|
237 | 237 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
238 | 238 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', // Only appears in GF pre-2.5 |
239 | 239 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -249,23 +249,23 @@ discard block |
||
249 | 249 | $sub_menu_items = array(); |
250 | 250 | foreach ( (array)$connected_views as $view ) { |
251 | 251 | |
252 | - if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
252 | + if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
253 | 253 | continue; |
254 | 254 | } |
255 | 255 | |
256 | - $label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
256 | + $label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
257 | 257 | |
258 | - $sub_menu_items[] = array( |
|
258 | + $sub_menu_items[ ] = array( |
|
259 | 259 | 'label' => esc_attr( $label ), |
260 | - 'url' => admin_url( 'post.php?action=edit&post='.$view->ID ), |
|
260 | + 'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ), |
|
261 | 261 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
262 | 262 | ); |
263 | 263 | } |
264 | 264 | |
265 | 265 | // If there were no items added, then let's create the parent menu |
266 | - if( $sub_menu_items ) { |
|
266 | + if ( $sub_menu_items ) { |
|
267 | 267 | |
268 | - $sub_menu_items[] = array( |
|
268 | + $sub_menu_items[ ] = array( |
|
269 | 269 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
270 | 270 | 'icon' => '<span class="dashicons dashicons-plus"></span>', |
271 | 271 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -274,14 +274,14 @@ discard block |
||
274 | 274 | ); |
275 | 275 | |
276 | 276 | // Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown |
277 | - $sub_menu_items[] = array( |
|
277 | + $sub_menu_items[ ] = array( |
|
278 | 278 | 'url' => '#', |
279 | 279 | 'label' => '', |
280 | 280 | 'menu_class' => 'hidden', |
281 | 281 | 'capabilities' => '', |
282 | 282 | ); |
283 | 283 | |
284 | - $menu_items['gravityview'] = array( |
|
284 | + $menu_items[ 'gravityview' ] = array( |
|
285 | 285 | 'label' => __( 'Connected Views', 'gravityview' ), |
286 | 286 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
287 | 287 | 'title' => __( 'GravityView Views using this form as a data source', 'gravityview' ), |
@@ -312,8 +312,8 @@ discard block |
||
312 | 312 | $add = array( 'captcha', 'page' ); |
313 | 313 | |
314 | 314 | // Don't allowing editing the following values: |
315 | - if( $context === 'edit' ) { |
|
316 | - $add[] = 'post_id'; |
|
315 | + if ( $context === 'edit' ) { |
|
316 | + $add[ ] = 'post_id'; |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | $return = array_merge( $array, $add ); |
@@ -344,27 +344,27 @@ discard block |
||
344 | 344 | foreach ( $default_args as $key => $arg ) { |
345 | 345 | |
346 | 346 | // If an arg has `tooltip` defined, but it's false, don't display a tooltip |
347 | - if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; } |
|
347 | + if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; } |
|
348 | 348 | |
349 | 349 | // By default, use `tooltip` if defined. |
350 | - $tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip']; |
|
350 | + $tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ]; |
|
351 | 351 | |
352 | 352 | // If there's no tooltip set, continue |
353 | - if( empty( $tooltip ) ) { |
|
353 | + if ( empty( $tooltip ) ) { |
|
354 | 354 | continue; |
355 | 355 | } |
356 | 356 | |
357 | 357 | // Add the tooltip |
358 | - $gv_tooltips[ 'gv_'.$key ] = array( |
|
359 | - 'title' => $arg['label'], |
|
358 | + $gv_tooltips[ 'gv_' . $key ] = array( |
|
359 | + 'title' => $arg[ 'label' ], |
|
360 | 360 | 'value' => $tooltip, |
361 | 361 | ); |
362 | 362 | |
363 | 363 | } |
364 | 364 | |
365 | - $gv_tooltips['gv_css_merge_tags'] = array( |
|
366 | - 'title' => __('CSS Merge Tags', 'gravityview'), |
|
367 | - 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' ) |
|
365 | + $gv_tooltips[ 'gv_css_merge_tags' ] = array( |
|
366 | + 'title' => __( 'CSS Merge Tags', 'gravityview' ), |
|
367 | + 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' ) |
|
368 | 368 | ); |
369 | 369 | |
370 | 370 | /** |
@@ -382,9 +382,9 @@ discard block |
||
382 | 382 | |
383 | 383 | foreach ( $gv_tooltips as $key => $tooltip ) { |
384 | 384 | |
385 | - $title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>'; |
|
385 | + $title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>'; |
|
386 | 386 | |
387 | - $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) ); |
|
387 | + $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) ); |
|
388 | 388 | } |
389 | 389 | |
390 | 390 | return $tooltips; |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | * |
399 | 399 | * @return void |
400 | 400 | */ |
401 | - public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
401 | + public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
402 | 402 | |
403 | 403 | $output = ''; |
404 | 404 | |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | // Generate backup if label doesn't exist: `example_name` => `Example Name` |
421 | 421 | $template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) ); |
422 | 422 | |
423 | - $output = $template ? $template['label'] : $template_id_pretty; |
|
423 | + $output = $template ? $template[ 'label' ] : $template_id_pretty; |
|
424 | 424 | |
425 | 425 | break; |
426 | 426 | |
@@ -461,12 +461,12 @@ discard block |
||
461 | 461 | static public function get_connected_form_links( $form, $include_form_link = true ) { |
462 | 462 | |
463 | 463 | // Either the form is empty or the form ID is 0, not yet set. |
464 | - if( empty( $form ) ) { |
|
464 | + if ( empty( $form ) ) { |
|
465 | 465 | return ''; |
466 | 466 | } |
467 | 467 | |
468 | 468 | // The $form is passed as the form ID |
469 | - if( !is_array( $form ) ) { |
|
469 | + if ( ! is_array( $form ) ) { |
|
470 | 470 | $form = gravityview_get_form( $form ); |
471 | 471 | } |
472 | 472 | |
@@ -474,35 +474,35 @@ discard block |
||
474 | 474 | return ''; |
475 | 475 | } |
476 | 476 | |
477 | - $form_id = $form['id']; |
|
477 | + $form_id = $form[ 'id' ]; |
|
478 | 478 | $links = array(); |
479 | 479 | |
480 | - if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
480 | + if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
481 | 481 | $form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $form_id ) ); |
482 | - $form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>'; |
|
483 | - $links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>'; |
|
482 | + $form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>'; |
|
483 | + $links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>'; |
|
484 | 484 | } else { |
485 | - $form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>'; |
|
485 | + $form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>'; |
|
486 | 486 | } |
487 | 487 | |
488 | - if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
488 | + if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
489 | 489 | $entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&id=%d', $form_id ) ); |
490 | - $links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>'; |
|
490 | + $links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>'; |
|
491 | 491 | } |
492 | 492 | |
493 | - if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
493 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
494 | 494 | $settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&view=settings&id=%d', $form_id ) ); |
495 | - $links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>'; |
|
495 | + $links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>'; |
|
496 | 496 | } |
497 | 497 | |
498 | - if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) { |
|
498 | + if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) { |
|
499 | 499 | $preview_url = site_url( sprintf( '?gf_page=preview&id=%d', $form_id ) ); |
500 | - $links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>'; |
|
500 | + $links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>'; |
|
501 | 501 | } |
502 | 502 | |
503 | 503 | $output = ''; |
504 | 504 | |
505 | - if( !empty( $include_form_link ) ) { |
|
505 | + if ( ! empty( $include_form_link ) ) { |
|
506 | 506 | $output .= $form_link; |
507 | 507 | } |
508 | 508 | |
@@ -517,11 +517,11 @@ discard block |
||
517 | 517 | $css_class = 'row-actions'; |
518 | 518 | |
519 | 519 | // Is Screen Options > View mode set to "Extended view"? If so, keep actions visible. |
520 | - if( 'excerpt' === get_user_setting( 'posts_list_mode', 'list' ) ) { |
|
520 | + if ( 'excerpt' === get_user_setting( 'posts_list_mode', 'list' ) ) { |
|
521 | 521 | $css_class = 'row-actions visible'; |
522 | 522 | } |
523 | 523 | |
524 | - $output .= '<div class="' . $css_class . '">'. implode( ' | ', $links ) .'</div>'; |
|
524 | + $output .= '<div class="' . $css_class . '">' . implode( ' | ', $links ) . '</div>'; |
|
525 | 525 | |
526 | 526 | return $output; |
527 | 527 | } |
@@ -535,8 +535,8 @@ discard block |
||
535 | 535 | // Get the date column and save it for later to add back in. |
536 | 536 | // This adds it after the Data Source column. |
537 | 537 | // This way, we don't need to do array_slice, array_merge, etc. |
538 | - $date = $columns['date']; |
|
539 | - unset( $columns['date'] ); |
|
538 | + $date = $columns[ 'date' ]; |
|
539 | + unset( $columns[ 'date' ] ); |
|
540 | 540 | |
541 | 541 | $data_source_required_caps = array( |
542 | 542 | 'gravityforms_edit_forms', |
@@ -547,14 +547,14 @@ discard block |
||
547 | 547 | 'gravityforms_preview_forms', |
548 | 548 | ); |
549 | 549 | |
550 | - if( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
551 | - $columns['gv_connected_form'] = __( 'Data Source', 'gravityview' ); |
|
550 | + if ( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
551 | + $columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' ); |
|
552 | 552 | } |
553 | 553 | |
554 | - $columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
554 | + $columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
555 | 555 | |
556 | 556 | // Add the date back in. |
557 | - $columns['date'] = $date; |
|
557 | + $columns[ 'date' ] = $date; |
|
558 | 558 | |
559 | 559 | return $columns; |
560 | 560 | } |
@@ -567,12 +567,12 @@ discard block |
||
567 | 567 | */ |
568 | 568 | function save_postdata( $post_id ) { |
569 | 569 | |
570 | - if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){ |
|
570 | + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
571 | 571 | return; |
572 | 572 | } |
573 | 573 | |
574 | 574 | // validate post_type |
575 | - if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) { |
|
575 | + if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) { |
|
576 | 576 | return; |
577 | 577 | } |
578 | 578 | |
@@ -587,63 +587,63 @@ discard block |
||
587 | 587 | $statii = array(); |
588 | 588 | |
589 | 589 | // check if this is a start fresh View |
590 | - if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) { |
|
590 | + if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) { |
|
591 | 591 | |
592 | - $form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : ''; |
|
592 | + $form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : ''; |
|
593 | 593 | // save form id |
594 | - $statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
594 | + $statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
595 | 595 | |
596 | 596 | } |
597 | 597 | |
598 | - if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) { |
|
598 | + if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) { |
|
599 | 599 | gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) ); |
600 | 600 | return; |
601 | 601 | } |
602 | 602 | |
603 | 603 | // Was this a start fresh? |
604 | - if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) { |
|
605 | - $statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
604 | + if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) { |
|
605 | + $statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
606 | 606 | } else { |
607 | - $statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
607 | + $statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
608 | 608 | } |
609 | 609 | |
610 | 610 | // Check if we have a template id |
611 | - if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) { |
|
611 | + if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) { |
|
612 | 612 | |
613 | - $template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : ''; |
|
613 | + $template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : ''; |
|
614 | 614 | |
615 | 615 | // now save template id |
616 | - $statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
616 | + $statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
617 | 617 | } |
618 | 618 | |
619 | 619 | |
620 | 620 | // save View Configuration metabox |
621 | - if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) { |
|
621 | + if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) { |
|
622 | 622 | |
623 | 623 | // template settings |
624 | - if( empty( $_POST['template_settings'] ) ) { |
|
625 | - $_POST['template_settings'] = array(); |
|
624 | + if ( empty( $_POST[ 'template_settings' ] ) ) { |
|
625 | + $_POST[ 'template_settings' ] = array(); |
|
626 | 626 | } |
627 | - $statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] ); |
|
627 | + $statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] ); |
|
628 | 628 | |
629 | 629 | // guard against unloaded View configuration page |
630 | - if ( isset( $_POST['gv_fields'] ) && isset( $_POST['gv_fields_done'] ) ) { |
|
630 | + if ( isset( $_POST[ 'gv_fields' ] ) && isset( $_POST[ 'gv_fields_done' ] ) ) { |
|
631 | 631 | $fields = array(); |
632 | 632 | |
633 | - if ( ! empty( $_POST['gv_fields'] ) ) { |
|
633 | + if ( ! empty( $_POST[ 'gv_fields' ] ) ) { |
|
634 | 634 | $fields = _gravityview_process_posted_fields(); |
635 | 635 | } |
636 | 636 | |
637 | 637 | $fields = wp_slash( $fields ); |
638 | 638 | |
639 | - $statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
639 | + $statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
640 | 640 | } |
641 | 641 | |
642 | 642 | // Directory Visible Widgets |
643 | - if( empty( $_POST['widgets'] ) ) { |
|
644 | - $_POST['widgets'] = array(); |
|
643 | + if ( empty( $_POST[ 'widgets' ] ) ) { |
|
644 | + $_POST[ 'widgets' ] = array(); |
|
645 | 645 | } |
646 | - $statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] ); |
|
646 | + $statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] ); |
|
647 | 647 | |
648 | 648 | } // end save view configuration |
649 | 649 | |
@@ -653,7 +653,7 @@ discard block |
||
653 | 653 | * @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. |
654 | 654 | * @since 1.17.2 |
655 | 655 | */ |
656 | - do_action('gravityview_view_saved', $post_id, $statii ); |
|
656 | + do_action( 'gravityview_view_saved', $post_id, $statii ); |
|
657 | 657 | |
658 | 658 | gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) ); |
659 | 659 | } |
@@ -704,20 +704,20 @@ discard block |
||
704 | 704 | |
705 | 705 | $output = ''; |
706 | 706 | |
707 | - if( !empty( $fields ) ) { |
|
707 | + if ( ! empty( $fields ) ) { |
|
708 | 708 | |
709 | - foreach( $fields as $id => $details ) { |
|
709 | + foreach ( $fields as $id => $details ) { |
|
710 | 710 | |
711 | - if( in_array( $details['type'], (array) $blocklist_field_types ) ) { |
|
711 | + if ( in_array( $details[ 'type' ], (array)$blocklist_field_types ) ) { |
|
712 | 712 | continue; |
713 | 713 | } |
714 | 714 | |
715 | 715 | // Edit mode only allows editing the parent fields, not single inputs. |
716 | - if( $context === 'edit' && ! empty( $details['parent'] ) ) { |
|
716 | + if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) { |
|
717 | 717 | continue; |
718 | 718 | } |
719 | 719 | |
720 | - $output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, array(), $form ); |
|
720 | + $output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, array(), $form ); |
|
721 | 721 | |
722 | 722 | } // End foreach |
723 | 723 | } |
@@ -725,7 +725,7 @@ discard block |
||
725 | 725 | echo $output; |
726 | 726 | |
727 | 727 | // For the EDIT view we only want to allow the form fields. |
728 | - if( $context === 'edit' ) { |
|
728 | + if ( $context === 'edit' ) { |
|
729 | 729 | return; |
730 | 730 | } |
731 | 731 | |
@@ -744,7 +744,7 @@ discard block |
||
744 | 744 | $additional_fields = array( |
745 | 745 | array( |
746 | 746 | 'label_text' => __( 'Add All Form Fields', 'gravityview' ), |
747 | - 'desc' => __('Insert all the form fields at once.', 'gravityview'), |
|
747 | + 'desc' => __( 'Insert all the form fields at once.', 'gravityview' ), |
|
748 | 748 | 'field_id' => 'all-fields', |
749 | 749 | 'label_type' => 'field', |
750 | 750 | 'input_type' => null, |
@@ -760,7 +760,7 @@ discard block |
||
760 | 760 | */ |
761 | 761 | $additional_fields = apply_filters( 'gravityview_additional_fields', $additional_fields ); |
762 | 762 | |
763 | - foreach ( (array) $additional_fields as $item ) { |
|
763 | + foreach ( (array)$additional_fields as $item ) { |
|
764 | 764 | |
765 | 765 | // Prevent items from not having index set |
766 | 766 | $item = wp_parse_args( $item, array( |
@@ -771,16 +771,16 @@ discard block |
||
771 | 771 | 'field_options' => null, |
772 | 772 | 'settings_html' => null, |
773 | 773 | 'icon' => null, |
774 | - )); |
|
774 | + ) ); |
|
775 | 775 | |
776 | 776 | // Backward compat. |
777 | - if( !empty( $item['field_options'] ) ) { |
|
777 | + if ( ! empty( $item[ 'field_options' ] ) ) { |
|
778 | 778 | // Use settings_html from now on. |
779 | - $item['settings_html'] = $item['field_options']; |
|
779 | + $item[ 'settings_html' ] = $item[ 'field_options' ]; |
|
780 | 780 | } |
781 | 781 | |
782 | 782 | // Render a label for each of them |
783 | - echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form ); |
|
783 | + echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form ); |
|
784 | 784 | |
785 | 785 | } |
786 | 786 | |
@@ -792,12 +792,12 @@ discard block |
||
792 | 792 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
793 | 793 | * @return array |
794 | 794 | */ |
795 | - function get_entry_default_fields($form, $zone) { |
|
795 | + function get_entry_default_fields( $form, $zone ) { |
|
796 | 796 | |
797 | 797 | $entry_default_fields = array(); |
798 | 798 | |
799 | 799 | // if in zone directory or single |
800 | - if( in_array( $zone, array( 'directory', 'single' ), true ) ) { |
|
800 | + if ( in_array( $zone, array( 'directory', 'single' ), true ) ) { |
|
801 | 801 | |
802 | 802 | $meta_fields = GravityView_Fields::get_all( array( 'meta', 'gravityview', 'add-ons' ) ); |
803 | 803 | |
@@ -814,7 +814,7 @@ discard block |
||
814 | 814 | * @param string|array $form form_ID or form object |
815 | 815 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
816 | 816 | */ |
817 | - return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone); |
|
817 | + return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone ); |
|
818 | 818 | } |
819 | 819 | |
820 | 820 | /** |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | */ |
826 | 826 | function get_available_fields( $form = '', $zone = NULL ) { |
827 | 827 | |
828 | - if( empty( $form ) ) { |
|
828 | + if ( empty( $form ) ) { |
|
829 | 829 | gravityview()->log->error( '$form is empty' ); |
830 | 830 | return array(); |
831 | 831 | } |
@@ -834,7 +834,7 @@ discard block |
||
834 | 834 | $fields = gravityview_get_form_fields( $form, true ); |
835 | 835 | |
836 | 836 | // get meta fields ( only if form was already created ) |
837 | - if( !is_array( $form ) ) { |
|
837 | + if ( ! is_array( $form ) ) { |
|
838 | 838 | $meta_fields = gravityview_get_entry_meta( $form ); |
839 | 839 | } else { |
840 | 840 | $meta_fields = array(); |
@@ -847,8 +847,8 @@ discard block |
||
847 | 847 | $fields = $fields + $meta_fields + $default_fields; |
848 | 848 | |
849 | 849 | // Move Custom Content to top |
850 | - if ( isset( $fields['custom'] ) ) { |
|
851 | - $fields = array( 'custom' => $fields['custom'] ) + $fields; |
|
850 | + if ( isset( $fields[ 'custom' ] ) ) { |
|
851 | + $fields = array( 'custom' => $fields[ 'custom' ] ) + $fields; |
|
852 | 852 | } |
853 | 853 | |
854 | 854 | $gv_fields = GravityView_Fields::get_all(); |
@@ -856,7 +856,7 @@ discard block |
||
856 | 856 | foreach ( $fields as &$field ) { |
857 | 857 | foreach ( $gv_fields as $gv_field ) { |
858 | 858 | if ( \GV\Utils::get( $field, 'type' ) === $gv_field->name ) { |
859 | - $field['icon'] = \GV\Utils::get( $gv_field, 'icon' ); |
|
859 | + $field[ 'icon' ] = \GV\Utils::get( $gv_field, 'icon' ); |
|
860 | 860 | } |
861 | 861 | } |
862 | 862 | } |
@@ -884,7 +884,7 @@ discard block |
||
884 | 884 | } |
885 | 885 | |
886 | 886 | foreach ( $widgets as $id => $details ) { |
887 | - echo new GravityView_Admin_View_Widget( $details['label'], $id, $details ); |
|
887 | + echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details ); |
|
888 | 888 | } |
889 | 889 | |
890 | 890 | } |
@@ -914,7 +914,7 @@ discard block |
||
914 | 914 | function render_active_areas( $template_id, $type, $zone, $rows, $values ) { |
915 | 915 | global $post; |
916 | 916 | |
917 | - if( $type === 'widget' ) { |
|
917 | + if ( $type === 'widget' ) { |
|
918 | 918 | $button_label = __( 'Add Widget', 'gravityview' ); |
919 | 919 | } else { |
920 | 920 | $button_label = __( 'Add Field', 'gravityview' ); |
@@ -940,10 +940,10 @@ discard block |
||
940 | 940 | $form_id = null; |
941 | 941 | |
942 | 942 | // if saved values, get available fields to label everyone |
943 | - if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) { |
|
943 | + if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) { |
|
944 | 944 | |
945 | - if( !empty( $_POST['template_id'] ) ) { |
|
946 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
945 | + if ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
946 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
947 | 947 | } else { |
948 | 948 | $form_id = $form = gravityview_get_form_id( $post->ID ); |
949 | 949 | } |
@@ -961,53 +961,53 @@ discard block |
||
961 | 961 | } |
962 | 962 | } |
963 | 963 | |
964 | - foreach( $rows as $row ) : |
|
965 | - foreach( $row as $col => $areas ) : |
|
966 | - $column = ($col == '2-2') ? '1-2' : $col; ?> |
|
964 | + foreach ( $rows as $row ) : |
|
965 | + foreach ( $row as $col => $areas ) : |
|
966 | + $column = ( $col == '2-2' ) ? '1-2' : $col; ?> |
|
967 | 967 | |
968 | 968 | <div class="gv-grid-col-<?php echo esc_attr( $column ); ?>"> |
969 | 969 | |
970 | - <?php foreach( $areas as $area ) : ?> |
|
970 | + <?php foreach ( $areas as $area ) : ?> |
|
971 | 971 | |
972 | - <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
973 | - <p class="gv-droppable-area-title" <?php if ( 'widget' === $type && empty( $area['subtitle'] ) ) { echo ' style="margin: 0; padding: 0;"'; } ?>> |
|
974 | - <strong <?php if ( 'widget' === $type ) { echo 'class="screen-reader-text"'; } ?>><?php echo esc_html( $area['title'] ); ?></strong> |
|
972 | + <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
973 | + <p class="gv-droppable-area-title" <?php if ( 'widget' === $type && empty( $area[ 'subtitle' ] ) ) { echo ' style="margin: 0; padding: 0;"'; } ?>> |
|
974 | + <strong <?php if ( 'widget' === $type ) { echo 'class="screen-reader-text"'; } ?>><?php echo esc_html( $area[ 'title' ] ); ?></strong> |
|
975 | 975 | |
976 | 976 | <?php if ( 'widget' !== $type ) { ?> |
977 | - <a class="clear-all-fields alignright" role="button" href="#" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>"><?php esc_html_e( 'Clear all fields', 'gravityview' ); ?></a> |
|
977 | + <a class="clear-all-fields alignright" role="button" href="#" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"><?php esc_html_e( 'Clear all fields', 'gravityview' ); ?></a> |
|
978 | 978 | <?php } ?> |
979 | 979 | |
980 | - <?php if ( ! empty( $area['subtitle'] ) ) { ?> |
|
981 | - <span class="gv-droppable-area-subtitle"><span class="gf_tooltip gv_tooltip tooltip" title="<?php echo esc_attr( $area['subtitle'] ); ?>"></span></span> |
|
980 | + <?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?> |
|
981 | + <span class="gv-droppable-area-subtitle"><span class="gf_tooltip gv_tooltip tooltip" title="<?php echo esc_attr( $area[ 'subtitle' ] ); ?>"></span></span> |
|
982 | 982 | <?php } ?> |
983 | 983 | </p> |
984 | 984 | <div class="active-drop-container active-drop-container-<?php echo esc_attr( $type ); ?>"> |
985 | - <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>"><?php // render saved fields |
|
986 | - if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) { |
|
985 | + <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"><?php // render saved fields |
|
986 | + if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) { |
|
987 | 987 | |
988 | - foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) { |
|
988 | + foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) { |
|
989 | 989 | |
990 | 990 | // Maybe has a form ID |
991 | - $form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id']; |
|
991 | + $form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ]; |
|
992 | 992 | |
993 | 993 | $input_type = NULL; |
994 | 994 | |
995 | 995 | if ( $form_id ) { |
996 | - $original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ; |
|
996 | + $original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false; |
|
997 | 997 | } else { |
998 | - $original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ; |
|
998 | + $original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false; |
|
999 | 999 | } |
1000 | 1000 | |
1001 | - if ( !$original_item ) { |
|
1002 | - 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 ) ) ); |
|
1001 | + if ( ! $original_item ) { |
|
1002 | + 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 ) ) ); |
|
1003 | 1003 | |
1004 | 1004 | $original_item = $field; |
1005 | 1005 | } else { |
1006 | - $input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL; |
|
1006 | + $input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL; |
|
1007 | 1007 | } |
1008 | 1008 | |
1009 | 1009 | // Field options dialog box |
1010 | - $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 ); |
|
1010 | + $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 ); |
|
1011 | 1011 | |
1012 | 1012 | $item = array( |
1013 | 1013 | 'input_type' => $input_type, |
@@ -1020,12 +1020,12 @@ discard block |
||
1020 | 1020 | $item = wp_parse_args( $item, $original_item ); |
1021 | 1021 | } |
1022 | 1022 | |
1023 | - switch( $type ) { |
|
1023 | + switch ( $type ) { |
|
1024 | 1024 | case 'widget': |
1025 | - echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field ); |
|
1025 | + echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field ); |
|
1026 | 1026 | break; |
1027 | 1027 | default: |
1028 | - echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id ); |
|
1028 | + echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id ); |
|
1029 | 1029 | } |
1030 | 1030 | } |
1031 | 1031 | |
@@ -1033,7 +1033,7 @@ discard block |
||
1033 | 1033 | <div class="gv-droppable-area-action"> |
1034 | 1034 | <a href="#" class="gv-add-field button button-link button-hero" title="" |
1035 | 1035 | data-objecttype="<?php echo esc_attr( $type ); ?>" |
1036 | - data-areaid="<?php echo esc_attr( $zone . '_' . $area['areaid'] ); ?>" |
|
1036 | + data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" |
|
1037 | 1037 | data-context="<?php echo esc_attr( $zone ); ?>" |
1038 | 1038 | data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '<span class="dashicons dashicons-plus-alt"></span>' . esc_html( $button_label ); ?></a> |
1039 | 1039 | </div> |
@@ -1066,7 +1066,7 @@ discard block |
||
1066 | 1066 | // This is a new View, prefill the widgets |
1067 | 1067 | $widgets = array( |
1068 | 1068 | 'header_top' => array( |
1069 | - substr( md5( microtime( true ) ), 0, 13 ) => array ( |
|
1069 | + substr( md5( microtime( true ) ), 0, 13 ) => array( |
|
1070 | 1070 | 'id' => 'search_bar', |
1071 | 1071 | 'label' => __( 'Search Bar', 'gravityview' ), |
1072 | 1072 | 'search_layout' => 'horizontal', |
@@ -1141,12 +1141,12 @@ discard block |
||
1141 | 1141 | if ( $post ) { |
1142 | 1142 | $source_form_id = gravityview_get_form_id( $post->ID ); |
1143 | 1143 | if ( $source_form_id ) { |
1144 | - $form_ids[] = $source_form_id; |
|
1144 | + $form_ids[ ] = $source_form_id; |
|
1145 | 1145 | } |
1146 | 1146 | |
1147 | 1147 | $joined_forms = \GV\View::get_joined_forms( $post->ID ); |
1148 | 1148 | foreach ( $joined_forms as $joined_form ) { |
1149 | - $form_ids[] = $joined_form->ID; |
|
1149 | + $form_ids[ ] = $joined_form->ID; |
|
1150 | 1150 | } |
1151 | 1151 | } |
1152 | 1152 | foreach ( array_unique( $form_ids ) as $form_id ) { |
@@ -1184,7 +1184,7 @@ discard block |
||
1184 | 1184 | * @return string HTML of the active areas |
1185 | 1185 | */ |
1186 | 1186 | function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) { |
1187 | - if( empty( $template_id ) ) { |
|
1187 | + if ( empty( $template_id ) ) { |
|
1188 | 1188 | gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) ); |
1189 | 1189 | return ''; |
1190 | 1190 | } |
@@ -1198,12 +1198,12 @@ discard block |
||
1198 | 1198 | */ |
1199 | 1199 | $template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context ); |
1200 | 1200 | |
1201 | - if( empty( $template_areas ) ) { |
|
1201 | + if ( empty( $template_areas ) ) { |
|
1202 | 1202 | |
1203 | 1203 | gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) ); |
1204 | 1204 | $output = '<div>'; |
1205 | - $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>'; |
|
1206 | - $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>'; |
|
1205 | + $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>'; |
|
1206 | + $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>'; |
|
1207 | 1207 | $output .= '</div>'; |
1208 | 1208 | } else { |
1209 | 1209 | |
@@ -1218,7 +1218,7 @@ discard block |
||
1218 | 1218 | |
1219 | 1219 | } |
1220 | 1220 | |
1221 | - if( $echo ) { |
|
1221 | + if ( $echo ) { |
|
1222 | 1222 | echo $output; |
1223 | 1223 | } |
1224 | 1224 | |
@@ -1246,18 +1246,18 @@ discard block |
||
1246 | 1246 | } |
1247 | 1247 | |
1248 | 1248 | // Add the GV font (with the Astronaut) |
1249 | - wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version ); |
|
1249 | + wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), \GV\Plugin::$version ); |
|
1250 | 1250 | wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version ); |
1251 | 1251 | |
1252 | - wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true ); |
|
1252 | + wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), \GV\Plugin::$version, true ); |
|
1253 | 1253 | |
1254 | - if( GFForms::get_page() === 'form_list' ) { |
|
1254 | + if ( GFForms::get_page() === 'form_list' ) { |
|
1255 | 1255 | wp_enqueue_style( 'gravityview_views_styles' ); |
1256 | 1256 | return; |
1257 | 1257 | } |
1258 | 1258 | |
1259 | 1259 | // Don't process any scripts below here if it's not a GravityView page. |
1260 | - if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1260 | + if ( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1261 | 1261 | return; |
1262 | 1262 | } |
1263 | 1263 | |
@@ -1265,15 +1265,15 @@ discard block |
||
1265 | 1265 | |
1266 | 1266 | wp_enqueue_script( 'jquery-ui-datepicker' ); |
1267 | 1267 | |
1268 | - wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version ); |
|
1268 | + wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), \GV\Plugin::$version ); |
|
1269 | 1269 | |
1270 | 1270 | // Enqueue scripts |
1271 | 1271 | 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 ); |
1272 | 1272 | |
1273 | - wp_localize_script('gravityview_views_scripts', 'gvGlobals', array( |
|
1273 | + wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array( |
|
1274 | 1274 | 'cookiepath' => COOKIEPATH, |
1275 | 1275 | 'admin_cookiepath' => ADMIN_COOKIE_PATH, |
1276 | - 'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ), |
|
1276 | + 'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ), |
|
1277 | 1277 | 'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ), |
1278 | 1278 | 'label_viewname' => __( 'Enter View name here', 'gravityview' ), |
1279 | 1279 | 'label_reorder_search_fields' => __( 'Reorder Search Fields', 'gravityview' ), |
@@ -1288,7 +1288,7 @@ discard block |
||
1288 | 1288 | 'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ), |
1289 | 1289 | 'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ), |
1290 | 1290 | 'remove_all_fields' => __( 'Would you like to remove all fields in this zone?', 'gravityview' ), |
1291 | - )); |
|
1291 | + ) ); |
|
1292 | 1292 | |
1293 | 1293 | wp_enqueue_style( 'gravityview_views_styles' ); |
1294 | 1294 | |
@@ -1296,7 +1296,7 @@ discard block |
||
1296 | 1296 | self::enqueue_gravity_forms_scripts(); |
1297 | 1297 | |
1298 | 1298 | // 2.5 changed how Merge Tags are enqueued |
1299 | - if ( is_callable( array( 'GFCommon', 'output_hooks_javascript') ) ) { |
|
1299 | + if ( is_callable( array( 'GFCommon', 'output_hooks_javascript' ) ) ) { |
|
1300 | 1300 | GFCommon::output_hooks_javascript(); |
1301 | 1301 | } |
1302 | 1302 | } |
@@ -1320,7 +1320,7 @@ discard block |
||
1320 | 1320 | ); |
1321 | 1321 | |
1322 | 1322 | if ( wp_is_mobile() ) { |
1323 | - $scripts[] = 'jquery-touch-punch'; |
|
1323 | + $scripts[ ] = 'jquery-touch-punch'; |
|
1324 | 1324 | } |
1325 | 1325 | |
1326 | 1326 | wp_enqueue_script( $scripts ); |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | $hide_coupon_fields = apply_filters( 'gravityview/edit_entry/hide-coupon-fields', $has_transaction_data ); |
55 | 55 | |
56 | - return (bool) $hide_coupon_fields; |
|
56 | + return (bool)$hide_coupon_fields; |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | public function edit_entry_field_blocklist( $blocklist = array(), $entry = array() ) { |
79 | 79 | |
80 | 80 | if ( $this->should_hide_coupon_fields( $entry ) ) { |
81 | - $blocklist[] = 'coupon'; |
|
81 | + $blocklist[ ] = 'coupon'; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | return $blocklist; |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | // No coupons match the codes provided |
117 | 117 | $discounts = gf_coupons()->get_coupons_by_codes( $coupon_codes, $form ); |
118 | 118 | |
119 | - if( ! $discounts ) { |
|
119 | + if ( ! $discounts ) { |
|
120 | 120 | return $value; |
121 | 121 | } |
122 | 122 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @see GF_Field_Coupon::get_field_input |
126 | 126 | */ |
127 | 127 | $_POST = ! isset( $_POST ) ? array() : $_POST; |
128 | - $_POST[ 'gf_coupons_' . $form['id'] ] = json_encode( (array) $discounts ); |
|
128 | + $_POST[ 'gf_coupons_' . $form[ 'id' ] ] = json_encode( (array)$discounts ); |
|
129 | 129 | $_POST[ 'input_' . $field->id ] = implode( ',', $coupon_codes ); |
130 | 130 | |
131 | 131 | return $value; |
@@ -79,11 +79,11 @@ discard block |
||
79 | 79 | } |
80 | 80 | |
81 | 81 | $sidebars_widgets = wp_get_sidebars_widgets(); |
82 | - if ( empty( $sidebars_widgets[ $matches[1] ] ) ) { |
|
82 | + if ( empty( $sidebars_widgets[ $matches[ 1 ] ] ) ) { |
|
83 | 83 | return $shortcodes; |
84 | 84 | } |
85 | 85 | |
86 | - foreach ( $sidebars_widgets[ $matches[1] ] as $widgets ) { |
|
86 | + foreach ( $sidebars_widgets[ $matches[ 1 ] ] as $widgets ) { |
|
87 | 87 | if ( |
88 | 88 | /** |
89 | 89 | * Blocklisted widgets. |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | strpos( $widgets, 'gv_recent_entries' ) === 0 |
93 | 93 | ) { |
94 | 94 | |
95 | - $shortcodes []= 'et_pb_sidebar'; |
|
95 | + $shortcodes [ ] = 'et_pb_sidebar'; |
|
96 | 96 | break; |
97 | 97 | } |
98 | 98 | } |
@@ -124,8 +124,8 @@ discard block |
||
124 | 124 | |
125 | 125 | $form = false; |
126 | 126 | |
127 | - if( $entry ) { |
|
128 | - $form = GFAPI::get_form( $entry['form_id'] ); |
|
127 | + if ( $entry ) { |
|
128 | + $form = GFAPI::get_form( $entry[ 'form_id' ] ); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | return $form; |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | } |
202 | 202 | } |
203 | 203 | |
204 | - return (bool) $has_transaction_data; |
|
204 | + return (bool)$has_transaction_data; |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | /** |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | |
240 | 240 | $results = GFAPI::get_entries( intval( $form_id ), $search_criteria, null, $paging ); |
241 | 241 | |
242 | - $result = ( ! empty( $results ) && ! empty( $results[0]['id'] ) ) ? $results[0]['id'] : null; |
|
242 | + $result = ( ! empty( $results ) && ! empty( $results[ 0 ][ 'id' ] ) ) ? $results[ 0 ][ 'id' ] : null; |
|
243 | 243 | |
244 | 244 | return $result; |
245 | 245 | } |
@@ -259,13 +259,13 @@ discard block |
||
259 | 259 | * |
260 | 260 | * @return array Empty array if GFAPI class isn't available or no forms. Otherwise, the array of Forms |
261 | 261 | */ |
262 | - public static function get_forms( $active = true, $trash = false, $order_by = 'id', $order = 'ASC' ) { |
|
262 | + public static function get_forms( $active = true, $trash = false, $order_by = 'id', $order = 'ASC' ) { |
|
263 | 263 | $forms = array(); |
264 | 264 | if ( ! class_exists( 'GFAPI' ) ) { |
265 | 265 | return array(); |
266 | 266 | } |
267 | 267 | |
268 | - if( 'any' === $active ) { |
|
268 | + if ( 'any' === $active ) { |
|
269 | 269 | $active_forms = GFAPI::get_forms( true, $trash ); |
270 | 270 | $inactive_forms = GFAPI::get_forms( false, $trash ); |
271 | 271 | $forms = array_merge( array_filter( $active_forms ), array_filter( $inactive_forms ) ); |
@@ -297,9 +297,9 @@ discard block |
||
297 | 297 | $has_post_fields = false; |
298 | 298 | |
299 | 299 | if ( $form ) { |
300 | - foreach ( $form['fields'] as $field ) { |
|
301 | - if ( $include_parent_field || empty( $field['inputs'] ) ) { |
|
302 | - $fields["{$field['id']}"] = array( |
|
300 | + foreach ( $form[ 'fields' ] as $field ) { |
|
301 | + if ( $include_parent_field || empty( $field[ 'inputs' ] ) ) { |
|
302 | + $fields[ "{$field[ 'id' ]}" ] = array( |
|
303 | 303 | 'label' => \GV\Utils::get( $field, 'label' ), |
304 | 304 | 'parent' => null, |
305 | 305 | 'type' => \GV\Utils::get( $field, 'type' ), |
@@ -308,10 +308,10 @@ discard block |
||
308 | 308 | ); |
309 | 309 | } |
310 | 310 | |
311 | - if ( $add_default_properties && ! empty( $field['inputs'] ) ) { |
|
312 | - foreach ( $field['inputs'] as $input ) { |
|
311 | + if ( $add_default_properties && ! empty( $field[ 'inputs' ] ) ) { |
|
312 | + foreach ( $field[ 'inputs' ] as $input ) { |
|
313 | 313 | |
314 | - if( ! empty( $input['isHidden'] ) ) { |
|
314 | + if ( ! empty( $input[ 'isHidden' ] ) ) { |
|
315 | 315 | continue; |
316 | 316 | } |
317 | 317 | |
@@ -319,10 +319,10 @@ discard block |
||
319 | 319 | * @hack |
320 | 320 | * In case of email/email confirmation, the input for email has the same id as the parent field |
321 | 321 | */ |
322 | - if( 'email' === $field['type'] && false === strpos( $input['id'], '.' ) ) { |
|
322 | + if ( 'email' === $field[ 'type' ] && false === strpos( $input[ 'id' ], '.' ) ) { |
|
323 | 323 | continue; |
324 | 324 | } |
325 | - $fields["{$input['id']}"] = array( |
|
325 | + $fields[ "{$input[ 'id' ]}" ] = array( |
|
326 | 326 | 'label' => \GV\Utils::get( $input, 'label' ), |
327 | 327 | 'customLabel' => \GV\Utils::get( $input, 'customLabel' ), |
328 | 328 | 'parent' => $field, |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | } |
335 | 335 | |
336 | 336 | |
337 | - if( GFCommon::is_product_field( $field['type'] ) ){ |
|
337 | + if ( GFCommon::is_product_field( $field[ 'type' ] ) ) { |
|
338 | 338 | $has_product_fields = true; |
339 | 339 | } |
340 | 340 | |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | * @since 1.7 |
349 | 349 | */ |
350 | 350 | if ( $has_post_fields ) { |
351 | - $fields['post_id'] = array( |
|
351 | + $fields[ 'post_id' ] = array( |
|
352 | 352 | 'label' => __( 'Post ID', 'gravityview' ), |
353 | 353 | 'type' => 'post_id', |
354 | 354 | ); |
@@ -361,11 +361,11 @@ discard block |
||
361 | 361 | foreach ( $payment_fields as $payment_field ) { |
362 | 362 | |
363 | 363 | // Either the field exists ($fields['shipping']) or the form explicitly contains a `shipping` field with numeric key |
364 | - if( isset( $fields["{$payment_field->name}"] ) || GFCommon::get_fields_by_type( $form, $payment_field->name ) ) { |
|
364 | + if ( isset( $fields[ "{$payment_field->name}" ] ) || GFCommon::get_fields_by_type( $form, $payment_field->name ) ) { |
|
365 | 365 | continue; |
366 | 366 | } |
367 | 367 | |
368 | - $fields["{$payment_field->name}"] = array( |
|
368 | + $fields[ "{$payment_field->name}" ] = array( |
|
369 | 369 | 'label' => $payment_field->label, |
370 | 370 | 'desc' => $payment_field->description, |
371 | 371 | 'type' => $payment_field->name, |
@@ -397,9 +397,9 @@ discard block |
||
397 | 397 | |
398 | 398 | $fields = array(); |
399 | 399 | |
400 | - foreach ( $extra_fields as $key => $field ){ |
|
401 | - if ( ! empty( $only_default_column ) && ! empty( $field['is_default_column'] ) ) { |
|
402 | - $fields[ $key ] = array( 'label' => $field['label'], 'type' => 'entry_meta' ); |
|
400 | + foreach ( $extra_fields as $key => $field ) { |
|
401 | + if ( ! empty( $only_default_column ) && ! empty( $field[ 'is_default_column' ] ) ) { |
|
402 | + $fields[ $key ] = array( 'label' => $field[ 'label' ], 'type' => 'entry_meta' ); |
|
403 | 403 | } |
404 | 404 | } |
405 | 405 | |
@@ -439,33 +439,33 @@ discard block |
||
439 | 439 | 'search_criteria' => null, |
440 | 440 | 'sorting' => null, |
441 | 441 | 'paging' => null, |
442 | - 'cache' => (isset( $passed_criteria['cache'] ) ? (bool) $passed_criteria['cache'] : true), |
|
442 | + 'cache' => ( isset( $passed_criteria[ 'cache' ] ) ? (bool)$passed_criteria[ 'cache' ] : true ), |
|
443 | 443 | 'context_view_id' => null, |
444 | 444 | ); |
445 | 445 | |
446 | 446 | $criteria = wp_parse_args( $passed_criteria, $search_criteria_defaults ); |
447 | 447 | |
448 | - if ( ! empty( $criteria['search_criteria']['field_filters'] ) && is_array( $criteria['search_criteria']['field_filters'] ) ) { |
|
449 | - foreach ( $criteria['search_criteria']['field_filters'] as &$filter ) { |
|
448 | + if ( ! empty( $criteria[ 'search_criteria' ][ 'field_filters' ] ) && is_array( $criteria[ 'search_criteria' ][ 'field_filters' ] ) ) { |
|
449 | + foreach ( $criteria[ 'search_criteria' ][ 'field_filters' ] as &$filter ) { |
|
450 | 450 | |
451 | 451 | if ( ! is_array( $filter ) ) { |
452 | 452 | continue; |
453 | 453 | } |
454 | 454 | |
455 | 455 | // By default, we want searches to be wildcard for each field. |
456 | - $filter['operator'] = empty( $filter['operator'] ) ? 'contains' : $filter['operator']; |
|
456 | + $filter[ 'operator' ] = empty( $filter[ 'operator' ] ) ? 'contains' : $filter[ 'operator' ]; |
|
457 | 457 | |
458 | 458 | /** |
459 | 459 | * @filter `gravityview_search_operator` Modify the search operator for the field (contains, is, isnot, etc) |
460 | 460 | * @param string $operator Existing search operator |
461 | 461 | * @param array $filter array with `key`, `value`, `operator`, `type` keys |
462 | 462 | */ |
463 | - $filter['operator'] = apply_filters( 'gravityview_search_operator', $filter['operator'], $filter ); |
|
463 | + $filter[ 'operator' ] = apply_filters( 'gravityview_search_operator', $filter[ 'operator' ], $filter ); |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | // don't send just the [mode] without any field filter. |
467 | - if( count( $criteria['search_criteria']['field_filters'] ) === 1 && array_key_exists( 'mode' , $criteria['search_criteria']['field_filters'] ) ) { |
|
468 | - unset( $criteria['search_criteria']['field_filters']['mode'] ); |
|
467 | + if ( count( $criteria[ 'search_criteria' ][ 'field_filters' ] ) === 1 && array_key_exists( 'mode', $criteria[ 'search_criteria' ][ 'field_filters' ] ) ) { |
|
468 | + unset( $criteria[ 'search_criteria' ][ 'field_filters' ][ 'mode' ] ); |
|
469 | 469 | } |
470 | 470 | |
471 | 471 | } |
@@ -476,33 +476,33 @@ discard block |
||
476 | 476 | * Prepare date formats to be in Gravity Forms DB format; |
477 | 477 | * $passed_criteria may include date formats incompatible with Gravity Forms. |
478 | 478 | */ |
479 | - foreach ( array('start_date', 'end_date' ) as $key ) { |
|
479 | + foreach ( array( 'start_date', 'end_date' ) as $key ) { |
|
480 | 480 | |
481 | - if ( ! empty( $criteria['search_criteria'][ $key ] ) ) { |
|
481 | + if ( ! empty( $criteria[ 'search_criteria' ][ $key ] ) ) { |
|
482 | 482 | |
483 | 483 | // Use date_create instead of new DateTime so it returns false if invalid date format. |
484 | - $date = date_create( $criteria['search_criteria'][ $key ] ); |
|
484 | + $date = date_create( $criteria[ 'search_criteria' ][ $key ] ); |
|
485 | 485 | |
486 | 486 | if ( $date ) { |
487 | 487 | // Gravity Forms wants dates in the `Y-m-d H:i:s` format. |
488 | - $criteria['search_criteria'][ $key ] = $date->format( 'Y-m-d H:i:s' ); |
|
488 | + $criteria[ 'search_criteria' ][ $key ] = $date->format( 'Y-m-d H:i:s' ); |
|
489 | 489 | } else { |
490 | - gravityview()->log->error( '{key} Date format not valid:', array( 'key' => $key, $criteria['search_criteria'][ $key ] ) ); |
|
490 | + gravityview()->log->error( '{key} Date format not valid:', array( 'key' => $key, $criteria[ 'search_criteria' ][ $key ] ) ); |
|
491 | 491 | |
492 | 492 | // If it's an invalid date, unset it. Gravity Forms freaks out otherwise. |
493 | - unset( $criteria['search_criteria'][ $key ] ); |
|
493 | + unset( $criteria[ 'search_criteria' ][ $key ] ); |
|
494 | 494 | } |
495 | 495 | } |
496 | 496 | } |
497 | 497 | |
498 | - if ( empty( $criteria['context_view_id'] ) ) { |
|
498 | + if ( empty( $criteria[ 'context_view_id' ] ) ) { |
|
499 | 499 | // Calculate the context view id and send it to the advanced filter |
500 | 500 | if ( GravityView_frontend::getInstance()->getSingleEntry() ) { |
501 | - $criteria['context_view_id'] = GravityView_frontend::getInstance()->get_context_view_id(); |
|
501 | + $criteria[ 'context_view_id' ] = GravityView_frontend::getInstance()->get_context_view_id(); |
|
502 | 502 | } else if ( class_exists( 'GravityView_View_Data' ) && GravityView_View_Data::getInstance() && GravityView_View_Data::getInstance()->has_multiple_views() ) { |
503 | - $criteria['context_view_id'] = GravityView_frontend::getInstance()->get_context_view_id(); |
|
503 | + $criteria[ 'context_view_id' ] = GravityView_frontend::getInstance()->get_context_view_id(); |
|
504 | 504 | } else if ( 'delete' === GFForms::get( 'action' ) ) { |
505 | - $criteria['context_view_id'] = isset( $_GET['view_id'] ) ? intval( $_GET['view_id'] ) : null; |
|
505 | + $criteria[ 'context_view_id' ] = isset( $_GET[ 'view_id' ] ) ? intval( $_GET[ 'view_id' ] ) : null; |
|
506 | 506 | } |
507 | 507 | } |
508 | 508 | |
@@ -512,7 +512,7 @@ discard block |
||
512 | 512 | * @param array $form_ids Forms to search |
513 | 513 | * @param int $view_id ID of the view being used to search |
514 | 514 | */ |
515 | - $criteria = apply_filters( 'gravityview_search_criteria', $criteria, $form_ids, $criteria['context_view_id'] ); |
|
515 | + $criteria = apply_filters( 'gravityview_search_criteria', $criteria, $form_ids, $criteria[ 'context_view_id' ] ); |
|
516 | 516 | |
517 | 517 | return (array)$criteria; |
518 | 518 | } |
@@ -546,7 +546,7 @@ discard block |
||
546 | 546 | /** Reduce # of database calls */ |
547 | 547 | add_filter( 'gform_is_encrypted_field', '__return_false' ); |
548 | 548 | |
549 | - if ( ! empty( $criteria['cache'] ) ) { |
|
549 | + if ( ! empty( $criteria[ 'cache' ] ) ) { |
|
550 | 550 | |
551 | 551 | $Cache = new GravityView_Cache( $form_ids, $criteria ); |
552 | 552 | |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | |
555 | 555 | // Still update the total count when using cached results |
556 | 556 | if ( ! is_null( $total ) ) { |
557 | - $total = GFAPI::count_entries( $form_ids, $criteria['search_criteria'] ); |
|
557 | + $total = GFAPI::count_entries( $form_ids, $criteria[ 'search_criteria' ] ); |
|
558 | 558 | } |
559 | 559 | |
560 | 560 | $return = $entries; |
@@ -576,9 +576,9 @@ discard block |
||
576 | 576 | $entries = apply_filters_ref_array( 'gravityview_before_get_entries', array( null, $criteria, $passed_criteria, &$total ) ); |
577 | 577 | |
578 | 578 | // No entries returned from gravityview_before_get_entries |
579 | - if( is_null( $entries ) ) { |
|
579 | + if ( is_null( $entries ) ) { |
|
580 | 580 | |
581 | - $entries = GFAPI::get_entries( $form_ids, $criteria['search_criteria'], $criteria['sorting'], $criteria['paging'], $total ); |
|
581 | + $entries = GFAPI::get_entries( $form_ids, $criteria[ 'search_criteria' ], $criteria[ 'sorting' ], $criteria[ 'paging' ], $total ); |
|
582 | 582 | |
583 | 583 | if ( is_wp_error( $entries ) ) { |
584 | 584 | gravityview()->log->error( '{error}', array( 'error' => $entries->get_error_message(), 'data' => $entries ) ); |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | } |
590 | 590 | } |
591 | 591 | |
592 | - if ( ! empty( $criteria['cache'] ) && isset( $Cache ) ) { |
|
592 | + if ( ! empty( $criteria[ 'cache' ] ) && isset( $Cache ) ) { |
|
593 | 593 | |
594 | 594 | // Cache results |
595 | 595 | $Cache->set( $entries, 'entries' ); |
@@ -706,18 +706,18 @@ discard block |
||
706 | 706 | $check_entry_display = apply_filters( 'gravityview/common/get_entry/check_entry_display', $check_entry_display, $entry, $view ); |
707 | 707 | |
708 | 708 | // Is the entry allowed |
709 | - if( $check_entry_display ) { |
|
709 | + if ( $check_entry_display ) { |
|
710 | 710 | |
711 | 711 | $gvid = \GV\Utils::_GET( 'gvid' ); |
712 | 712 | |
713 | - if( $gvid ) { |
|
713 | + if ( $gvid ) { |
|
714 | 714 | $view = \GV\View::by_id( $gvid ); |
715 | 715 | } |
716 | 716 | |
717 | 717 | $entry = self::check_entry_display( $entry, $view ); |
718 | 718 | } |
719 | 719 | |
720 | - if( is_wp_error( $entry ) ) { |
|
720 | + if ( is_wp_error( $entry ) ) { |
|
721 | 721 | gravityview()->log->error( '{error}', array( 'error' => $entry->get_error_message() ) ); |
722 | 722 | return false; |
723 | 723 | } |
@@ -751,12 +751,12 @@ discard block |
||
751 | 751 | |
752 | 752 | $value = false; |
753 | 753 | |
754 | - if( 'context' === $val1 ) { |
|
754 | + if ( 'context' === $val1 ) { |
|
755 | 755 | |
756 | 756 | $matching_contexts = array( $val2 ); |
757 | 757 | |
758 | 758 | // We allow for non-standard contexts. |
759 | - switch( $val2 ) { |
|
759 | + switch ( $val2 ) { |
|
760 | 760 | // Check for either single or edit |
761 | 761 | case 'singular': |
762 | 762 | $matching_contexts = array( 'single', 'edit' ); |
@@ -799,18 +799,18 @@ discard block |
||
799 | 799 | $json_val_1 = json_decode( $val1, true ); |
800 | 800 | $json_val_2 = json_decode( $val2, true ); |
801 | 801 | |
802 | - if( ! empty( $json_val_1 ) || ! empty( $json_val_2 ) ) { |
|
802 | + if ( ! empty( $json_val_1 ) || ! empty( $json_val_2 ) ) { |
|
803 | 803 | |
804 | 804 | $json_in = false; |
805 | - $json_val_1 = $json_val_1 ? (array) $json_val_1 : array( $val1 ); |
|
806 | - $json_val_2 = $json_val_2 ? (array) $json_val_2 : array( $val2 ); |
|
805 | + $json_val_1 = $json_val_1 ? (array)$json_val_1 : array( $val1 ); |
|
806 | + $json_val_2 = $json_val_2 ? (array)$json_val_2 : array( $val2 ); |
|
807 | 807 | |
808 | 808 | // For JSON, we want to compare as "in" or "not in" rather than "contains" |
809 | 809 | foreach ( $json_val_1 as $item_1 ) { |
810 | 810 | foreach ( $json_val_2 as $item_2 ) { |
811 | 811 | $json_in = self::matches_operation( $item_1, $item_2, 'is' ); |
812 | 812 | |
813 | - if( $json_in ) { |
|
813 | + if ( $json_in ) { |
|
814 | 814 | break 2; |
815 | 815 | } |
816 | 816 | } |
@@ -861,10 +861,10 @@ discard block |
||
861 | 861 | public static function check_entry_display( $entry, $view = null ) { |
862 | 862 | |
863 | 863 | if ( ! $entry || is_wp_error( $entry ) ) { |
864 | - return new WP_Error('entry_not_found', 'Entry was not found.', $entry ); |
|
864 | + return new WP_Error( 'entry_not_found', 'Entry was not found.', $entry ); |
|
865 | 865 | } |
866 | 866 | |
867 | - if ( empty( $entry['form_id'] ) ) { |
|
867 | + if ( empty( $entry[ 'form_id' ] ) ) { |
|
868 | 868 | return new WP_Error( 'form_id_not_set', '[apply_filters_to_entry] Entry is empty!', $entry ); |
869 | 869 | } |
870 | 870 | |
@@ -879,19 +879,19 @@ discard block |
||
879 | 879 | |
880 | 880 | $_gvid = \GV\Utils::_GET( 'gvid' ); |
881 | 881 | |
882 | - if ( $_gvid && $view->ID !== (int) $_gvid ) { |
|
882 | + if ( $_gvid && $view->ID !== (int)$_gvid ) { |
|
883 | 883 | return new WP_Error( 'view_id_not_match_gvid', 'View does not match passed $_GET["gvid"].', $view->ID ); |
884 | 884 | } |
885 | 885 | |
886 | 886 | $view_form_id = $view->form->ID; |
887 | 887 | |
888 | 888 | if ( $view->joins ) { |
889 | - if ( in_array( (int) $entry['form_id'], array_keys( $view::get_joined_forms( $view->ID ) ), true ) ) { |
|
890 | - $view_form_id = $entry['form_id']; |
|
889 | + if ( in_array( (int)$entry[ 'form_id' ], array_keys( $view::get_joined_forms( $view->ID ) ), true ) ) { |
|
890 | + $view_form_id = $entry[ 'form_id' ]; |
|
891 | 891 | } |
892 | 892 | } |
893 | 893 | |
894 | - if ( (int) $view_form_id !== (int) $entry['form_id'] ) { |
|
894 | + if ( (int)$view_form_id !== (int)$entry[ 'form_id' ] ) { |
|
895 | 895 | return new WP_Error( 'view_id_not_match', 'View form source does not match entry form source ID.', $entry ); |
896 | 896 | } |
897 | 897 | |
@@ -899,13 +899,13 @@ discard block |
||
899 | 899 | * Check whether the entry is in the entries subset by running a modified query. |
900 | 900 | */ |
901 | 901 | add_action( 'gravityview/view/query', $entry_subset_callback = function( &$query, $view, $request ) use ( $entry, $view_form_id ) { |
902 | - $_tmp_query = new \GF_Query( $view_form_id, array( |
|
902 | + $_tmp_query = new \GF_Query( $view_form_id, array( |
|
903 | 903 | 'field_filters' => array( |
904 | 904 | 'mode' => 'all', |
905 | 905 | array( |
906 | 906 | 'key' => 'id', |
907 | 907 | 'operation' => 'is', |
908 | - 'value' => $entry['id'] |
|
908 | + 'value' => $entry[ 'id' ] |
|
909 | 909 | ) |
910 | 910 | ) |
911 | 911 | ) ); |
@@ -915,14 +915,14 @@ discard block |
||
915 | 915 | /** @type \GF_Query $query */ |
916 | 916 | $query_parts = $query->_introspect(); |
917 | 917 | |
918 | - $query->where( \GF_Query_Condition::_and( $_tmp_query_parts['where'], $query_parts['where'] ) ); |
|
918 | + $query->where( \GF_Query_Condition::_and( $_tmp_query_parts[ 'where' ], $query_parts[ 'where' ] ) ); |
|
919 | 919 | |
920 | 920 | }, 10, 3 ); |
921 | 921 | |
922 | 922 | // Prevent page offset from being applied to the single entry query; it's used to return to the referring page number |
923 | 923 | add_filter( 'gravityview_search_criteria', $remove_pagenum = function( $criteria ) { |
924 | 924 | |
925 | - $criteria['paging'] = array( |
|
925 | + $criteria[ 'paging' ] = array( |
|
926 | 926 | 'offset' => 0, |
927 | 927 | 'page_size' => 25 |
928 | 928 | ); |
@@ -941,20 +941,20 @@ discard block |
||
941 | 941 | } |
942 | 942 | |
943 | 943 | // This entry is on a View with joins |
944 | - if ( $entries[0]->is_multi() ) { |
|
944 | + if ( $entries[ 0 ]->is_multi() ) { |
|
945 | 945 | |
946 | 946 | $multi_entry_ids = array(); |
947 | 947 | |
948 | - foreach ( $entries[0]->entries as $multi_entry ) { |
|
949 | - $multi_entry_ids[] = (int) $multi_entry->ID; |
|
948 | + foreach ( $entries[ 0 ]->entries as $multi_entry ) { |
|
949 | + $multi_entry_ids[ ] = (int)$multi_entry->ID; |
|
950 | 950 | } |
951 | 951 | |
952 | - if ( ! in_array( (int) $entry['id'], $multi_entry_ids, true ) ) { |
|
952 | + if ( ! in_array( (int)$entry[ 'id' ], $multi_entry_ids, true ) ) { |
|
953 | 953 | remove_action( 'gravityview/view/query', $entry_subset_callback ); |
954 | 954 | return new \WP_Error( 'failed_criteria', 'Entry failed search_criteria and field_filters' ); |
955 | 955 | } |
956 | 956 | |
957 | - } elseif ( (int) $entries[0]->ID !== (int) $entry['id'] ) { |
|
957 | + } elseif ( (int)$entries[ 0 ]->ID !== (int)$entry[ 'id' ] ) { |
|
958 | 958 | remove_action( 'gravityview/view/query', $entry_subset_callback ); |
959 | 959 | return new \WP_Error( 'failed_criteria', 'Entry failed search_criteria and field_filters' ); |
960 | 960 | } |
@@ -999,18 +999,18 @@ discard block |
||
999 | 999 | * Gravity Forms code to adjust date to locally-configured Time Zone |
1000 | 1000 | * @see GFCommon::format_date() for original code |
1001 | 1001 | */ |
1002 | - $date_gmt_time = mysql2date( 'G', $date_string ); |
|
1002 | + $date_gmt_time = mysql2date( 'G', $date_string ); |
|
1003 | 1003 | $date_local_timestamp = GFCommon::get_local_timestamp( $date_gmt_time ); |
1004 | 1004 | |
1005 | - $format = \GV\Utils::get( $atts, 'format' ); |
|
1006 | - $is_human = ! empty( $atts['human'] ); |
|
1007 | - $is_diff = ! empty( $atts['diff'] ); |
|
1008 | - $is_raw = ! empty( $atts['raw'] ); |
|
1009 | - $is_timestamp = ! empty( $atts['timestamp'] ); |
|
1010 | - $include_time = ! empty( $atts['time'] ); |
|
1005 | + $format = \GV\Utils::get( $atts, 'format' ); |
|
1006 | + $is_human = ! empty( $atts[ 'human' ] ); |
|
1007 | + $is_diff = ! empty( $atts[ 'diff' ] ); |
|
1008 | + $is_raw = ! empty( $atts[ 'raw' ] ); |
|
1009 | + $is_timestamp = ! empty( $atts[ 'timestamp' ] ); |
|
1010 | + $include_time = ! empty( $atts[ 'time' ] ); |
|
1011 | 1011 | |
1012 | 1012 | // If we're using time diff, we want to have a different default format |
1013 | - if( empty( $format ) ) { |
|
1013 | + if ( empty( $format ) ) { |
|
1014 | 1014 | /* translators: %s: relative time from now, used for generic date comparisons. "1 day ago", or "20 seconds ago" */ |
1015 | 1015 | $format = $is_diff ? esc_html__( '%s ago', 'gravityview' ) : get_option( 'date_format' ); |
1016 | 1016 | } |
@@ -1018,7 +1018,7 @@ discard block |
||
1018 | 1018 | // If raw was specified, don't modify the stored value |
1019 | 1019 | if ( $is_raw ) { |
1020 | 1020 | $formatted_date = $date_string; |
1021 | - } elseif( $is_timestamp ) { |
|
1021 | + } elseif ( $is_timestamp ) { |
|
1022 | 1022 | $formatted_date = $date_local_timestamp; |
1023 | 1023 | } elseif ( $is_diff ) { |
1024 | 1024 | $formatted_date = sprintf( $format, human_time_diff( $date_gmt_time ) ); |
@@ -1051,7 +1051,7 @@ discard block |
||
1051 | 1051 | |
1052 | 1052 | $label = \GV\Utils::get( $field, 'label' ); |
1053 | 1053 | |
1054 | - if( floor( $field_id ) !== floatval( $field_id ) ) { |
|
1054 | + if ( floor( $field_id ) !== floatval( $field_id ) ) { |
|
1055 | 1055 | $label = GFFormsModel::get_choice_text( $field, $field_value, $field_id ); |
1056 | 1056 | } |
1057 | 1057 | |
@@ -1078,7 +1078,7 @@ discard block |
||
1078 | 1078 | $form = GFAPI::get_form( $form ); |
1079 | 1079 | } |
1080 | 1080 | |
1081 | - if ( class_exists( 'GFFormsModel' ) ){ |
|
1081 | + if ( class_exists( 'GFFormsModel' ) ) { |
|
1082 | 1082 | return GFFormsModel::get_field( $form, $field_id ); |
1083 | 1083 | } else { |
1084 | 1084 | return null; |
@@ -1125,19 +1125,19 @@ discard block |
||
1125 | 1125 | $shortcodes = array(); |
1126 | 1126 | |
1127 | 1127 | preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER ); |
1128 | - if ( empty( $matches ) ){ |
|
1128 | + if ( empty( $matches ) ) { |
|
1129 | 1129 | return false; |
1130 | 1130 | } |
1131 | 1131 | |
1132 | 1132 | foreach ( $matches as $shortcode ) { |
1133 | - if ( $tag === $shortcode[2] ) { |
|
1133 | + if ( $tag === $shortcode[ 2 ] ) { |
|
1134 | 1134 | |
1135 | 1135 | // Changed this to $shortcode instead of true so we get the parsed atts. |
1136 | - $shortcodes[] = $shortcode; |
|
1136 | + $shortcodes[ ] = $shortcode; |
|
1137 | 1137 | |
1138 | - } else if ( isset( $shortcode[5] ) && $results = self::has_shortcode_r( $shortcode[5], $tag ) ) { |
|
1139 | - foreach( $results as $result ) { |
|
1140 | - $shortcodes[] = $result; |
|
1138 | + } else if ( isset( $shortcode[ 5 ] ) && $results = self::has_shortcode_r( $shortcode[ 5 ], $tag ) ) { |
|
1139 | + foreach ( $results as $result ) { |
|
1140 | + $shortcodes[ ] = $result; |
|
1141 | 1141 | } |
1142 | 1142 | } |
1143 | 1143 | } |
@@ -1169,7 +1169,7 @@ discard block |
||
1169 | 1169 | 'post_type' => 'gravityview', |
1170 | 1170 | 'posts_per_page' => 100, |
1171 | 1171 | 'meta_key' => '_gravityview_form_id', |
1172 | - 'meta_value' => (int) $form_id, |
|
1172 | + 'meta_value' => (int)$form_id, |
|
1173 | 1173 | ); |
1174 | 1174 | $args = wp_parse_args( $args, $defaults ); |
1175 | 1175 | $views = get_posts( $args ); |
@@ -1181,21 +1181,21 @@ discard block |
||
1181 | 1181 | |
1182 | 1182 | $data = unserialize( $view->meta_value ); |
1183 | 1183 | |
1184 | - if( ! $data || ! is_array( $data ) ) { |
|
1184 | + if ( ! $data || ! is_array( $data ) ) { |
|
1185 | 1185 | continue; |
1186 | 1186 | } |
1187 | 1187 | |
1188 | 1188 | foreach ( $data as $datum ) { |
1189 | - if ( ! empty( $datum[2] ) && (int) $datum[2] === (int) $form_id ) { |
|
1190 | - $joined_forms[] = $view->post_id; |
|
1189 | + if ( ! empty( $datum[ 2 ] ) && (int)$datum[ 2 ] === (int)$form_id ) { |
|
1190 | + $joined_forms[ ] = $view->post_id; |
|
1191 | 1191 | } |
1192 | 1192 | } |
1193 | 1193 | } |
1194 | 1194 | |
1195 | 1195 | if ( $joined_forms ) { |
1196 | - $joined_args = array( |
|
1196 | + $joined_args = array( |
|
1197 | 1197 | 'post_type' => 'gravityview', |
1198 | - 'posts_per_page' => $args['posts_per_page'], |
|
1198 | + 'posts_per_page' => $args[ 'posts_per_page' ], |
|
1199 | 1199 | 'post__in' => $joined_forms, |
1200 | 1200 | ); |
1201 | 1201 | $views = array_merge( $views, get_posts( $joined_args ) ); |
@@ -1351,7 +1351,7 @@ discard block |
||
1351 | 1351 | |
1352 | 1352 | $directory_widgets = wp_parse_args( $view_widgets, $defaults ); |
1353 | 1353 | |
1354 | - if( $json_decode ) { |
|
1354 | + if ( $json_decode ) { |
|
1355 | 1355 | $directory_widgets = gv_map_deep( $directory_widgets, 'gv_maybe_json_decode' ); |
1356 | 1356 | } |
1357 | 1357 | |
@@ -1366,7 +1366,7 @@ discard block |
||
1366 | 1366 | * @return string html |
1367 | 1367 | */ |
1368 | 1368 | public static function get_sortable_fields( $formid, $current = '' ) { |
1369 | - $output = '<option value="" ' . selected( '', $current, false ).'>' . esc_html__( 'Default (Entry ID)', 'gravityview' ) .'</option>'; |
|
1369 | + $output = '<option value="" ' . selected( '', $current, false ) . '>' . esc_html__( 'Default (Entry ID)', 'gravityview' ) . '</option>'; |
|
1370 | 1370 | |
1371 | 1371 | if ( empty( $formid ) ) { |
1372 | 1372 | return $output; |
@@ -1383,11 +1383,11 @@ discard block |
||
1383 | 1383 | $blocklist_field_types = apply_filters( 'gravityview_blocklist_field_types', $blocklist_field_types, null ); |
1384 | 1384 | |
1385 | 1385 | foreach ( $fields as $id => $field ) { |
1386 | - if ( in_array( $field['type'], $blocklist_field_types ) ) { |
|
1386 | + if ( in_array( $field[ 'type' ], $blocklist_field_types ) ) { |
|
1387 | 1387 | continue; |
1388 | 1388 | } |
1389 | 1389 | |
1390 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'>'. esc_attr( $field['label'] ) .'</option>'; |
|
1390 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . '>' . esc_attr( $field[ 'label' ] ) . '</option>'; |
|
1391 | 1391 | } |
1392 | 1392 | } |
1393 | 1393 | |
@@ -1430,16 +1430,16 @@ discard block |
||
1430 | 1430 | $blocklist_field_types = apply_filters( 'gravityview_blocklist_field_types', $blocklist_field_types, null ); |
1431 | 1431 | |
1432 | 1432 | // TODO: Convert to using array_filter |
1433 | - foreach( $fields as $id => $field ) { |
|
1433 | + foreach ( $fields as $id => $field ) { |
|
1434 | 1434 | |
1435 | - if( in_array( $field['type'], $blocklist_field_types ) ) { |
|
1435 | + if ( in_array( $field[ 'type' ], $blocklist_field_types ) ) { |
|
1436 | 1436 | unset( $fields[ $id ] ); |
1437 | 1437 | } |
1438 | 1438 | |
1439 | 1439 | /** |
1440 | 1440 | * Merge date and time subfields. |
1441 | 1441 | */ |
1442 | - if ( in_array( $field['type'], array( 'date', 'time' ) ) && ! empty( $field['parent'] ) ) { |
|
1442 | + if ( in_array( $field[ 'type' ], array( 'date', 'time' ) ) && ! empty( $field[ 'parent' ] ) ) { |
|
1443 | 1443 | $fields[ intval( $id ) ] = array( |
1444 | 1444 | 'label' => \GV\Utils::get( $field, 'parent/label' ), |
1445 | 1445 | 'parent' => null, |
@@ -1489,14 +1489,14 @@ discard block |
||
1489 | 1489 | * @param int|array $field field key or field array |
1490 | 1490 | * @return boolean |
1491 | 1491 | */ |
1492 | - public static function is_field_numeric( $form = null, $field = '' ) { |
|
1492 | + public static function is_field_numeric( $form = null, $field = '' ) { |
|
1493 | 1493 | |
1494 | 1494 | if ( ! is_array( $form ) && ! is_array( $field ) ) { |
1495 | 1495 | $form = self::get_form( $form ); |
1496 | 1496 | } |
1497 | 1497 | |
1498 | 1498 | // If entry meta, it's a string. Otherwise, numeric |
1499 | - if( ! is_numeric( $field ) && is_string( $field ) ) { |
|
1499 | + if ( ! is_numeric( $field ) && is_string( $field ) ) { |
|
1500 | 1500 | $type = $field; |
1501 | 1501 | } else { |
1502 | 1502 | $type = self::get_field_type( $form, $field ); |
@@ -1510,9 +1510,9 @@ discard block |
||
1510 | 1510 | $numeric_types = apply_filters( 'gravityview/common/numeric_types', array( 'number', 'time' ) ); |
1511 | 1511 | |
1512 | 1512 | // Defer to GravityView_Field setting, if the field type is registered and `is_numeric` is true |
1513 | - if( $gv_field = GravityView_Fields::get( $type ) ) { |
|
1514 | - if( true === $gv_field->is_numeric ) { |
|
1515 | - $numeric_types[] = $gv_field->is_numeric; |
|
1513 | + if ( $gv_field = GravityView_Fields::get( $type ) ) { |
|
1514 | + if ( true === $gv_field->is_numeric ) { |
|
1515 | + $numeric_types[ ] = $gv_field->is_numeric; |
|
1516 | 1516 | } |
1517 | 1517 | } |
1518 | 1518 | |
@@ -1663,18 +1663,18 @@ discard block |
||
1663 | 1663 | $final_atts = array_filter( $final_atts ); |
1664 | 1664 | |
1665 | 1665 | // If the href wasn't passed as an attribute, use the value passed to the function |
1666 | - if ( empty( $final_atts['href'] ) && ! empty( $href ) ) { |
|
1667 | - $final_atts['href'] = $href; |
|
1666 | + if ( empty( $final_atts[ 'href' ] ) && ! empty( $href ) ) { |
|
1667 | + $final_atts[ 'href' ] = $href; |
|
1668 | 1668 | } |
1669 | 1669 | |
1670 | - $final_atts['href'] = esc_url_raw( $href ); |
|
1670 | + $final_atts[ 'href' ] = esc_url_raw( $href ); |
|
1671 | 1671 | |
1672 | 1672 | /** |
1673 | 1673 | * Fix potential security issue with target=_blank |
1674 | 1674 | * @see https://dev.to/ben/the-targetblank-vulnerability-by-example |
1675 | 1675 | */ |
1676 | - if( '_blank' === \GV\Utils::get( $final_atts, 'target' ) ) { |
|
1677 | - $final_atts['rel'] = trim( \GV\Utils::get( $final_atts, 'rel', '' ) . ' noopener noreferrer' ); |
|
1676 | + if ( '_blank' === \GV\Utils::get( $final_atts, 'target' ) ) { |
|
1677 | + $final_atts[ 'rel' ] = trim( \GV\Utils::get( $final_atts, 'rel', '' ) . ' noopener noreferrer' ); |
|
1678 | 1678 | } |
1679 | 1679 | |
1680 | 1680 | // Sort the attributes alphabetically, to help testing |
@@ -1686,7 +1686,7 @@ discard block |
||
1686 | 1686 | $output .= sprintf( ' %s="%s"', $attr, esc_attr( $value ) ); |
1687 | 1687 | } |
1688 | 1688 | |
1689 | - if( '' !== $output ) { |
|
1689 | + if ( '' !== $output ) { |
|
1690 | 1690 | $output = '<a' . $output . '>' . $anchor_text . '</a>'; |
1691 | 1691 | } |
1692 | 1692 | |
@@ -1713,7 +1713,7 @@ discard block |
||
1713 | 1713 | if ( is_array( $value ) && isset( $merged[ $key ] ) && is_array( $merged[ $key ] ) ) { |
1714 | 1714 | $merged[ $key ] = self::array_merge_recursive_distinct( $merged[ $key ], $value ); |
1715 | 1715 | } else if ( is_numeric( $key ) && isset( $merged[ $key ] ) ) { |
1716 | - $merged[] = $value; |
|
1716 | + $merged[ ] = $value; |
|
1717 | 1717 | } else { |
1718 | 1718 | $merged[ $key ] = $value; |
1719 | 1719 | } |
@@ -1746,7 +1746,7 @@ discard block |
||
1746 | 1746 | * `$context` is where are we using this information (e.g. change_entry_creator, search_widget ..) |
1747 | 1747 | * @param array $settings Settings array, with `number` key defining the # of users to display |
1748 | 1748 | */ |
1749 | - $get_users_settings = apply_filters( 'gravityview/get_users/'. $context, apply_filters( 'gravityview_change_entry_creator_user_parameters', $get_users_settings ) ); |
|
1749 | + $get_users_settings = apply_filters( 'gravityview/get_users/' . $context, apply_filters( 'gravityview_change_entry_creator_user_parameters', $get_users_settings ) ); |
|
1750 | 1750 | |
1751 | 1751 | return get_users( $get_users_settings ); |
1752 | 1752 | } |
@@ -1766,11 +1766,11 @@ discard block |
||
1766 | 1766 | public static function generate_notice( $notice, $class = '', $cap = '', $object_id = null ) { |
1767 | 1767 | |
1768 | 1768 | // If $cap is defined, only show notice if user has capability |
1769 | - if( $cap && ! GVCommon::has_cap( $cap, $object_id ) ) { |
|
1769 | + if ( $cap && ! GVCommon::has_cap( $cap, $object_id ) ) { |
|
1770 | 1770 | return ''; |
1771 | 1771 | } |
1772 | 1772 | |
1773 | - return '<div class="gv-notice '.gravityview_sanitize_html_class( $class ) .'">'. $notice .'</div>'; |
|
1773 | + return '<div class="gv-notice ' . gravityview_sanitize_html_class( $class ) . '">' . $notice . '</div>'; |
|
1774 | 1774 | } |
1775 | 1775 | |
1776 | 1776 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | self::$file = plugin_dir_path( __FILE__ ); |
38 | 38 | |
39 | - if( is_admin() ) { |
|
39 | + if ( is_admin() ) { |
|
40 | 40 | $this->load_components( 'admin' ); |
41 | 41 | } |
42 | 42 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | static function getInstance() { |
58 | 58 | |
59 | - if( empty( self::$instance ) ) { |
|
59 | + if ( empty( self::$instance ) ) { |
|
60 | 60 | self::$instance = new GravityView_Edit_Entry; |
61 | 61 | } |
62 | 62 | |
@@ -82,10 +82,10 @@ discard block |
||
82 | 82 | private function add_hooks() { |
83 | 83 | |
84 | 84 | // Add front-end access to Gravity Forms delete file action |
85 | - add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
85 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file' ) ); |
|
86 | 86 | |
87 | 87 | // Make sure this hook is run for non-admins |
88 | - add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
88 | + add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file' ) ); |
|
89 | 89 | |
90 | 90 | add_filter( 'gravityview_blocklist_field_types', array( $this, 'modify_field_blocklist' ), 10, 2 ); |
91 | 91 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | */ |
109 | 109 | public function add_reserved_arg( $args ) { |
110 | 110 | |
111 | - $args[] = 'edit'; |
|
111 | + $args[ ] = 'edit'; |
|
112 | 112 | |
113 | 113 | return $args; |
114 | 114 | } |
@@ -119,8 +119,8 @@ discard block |
||
119 | 119 | */ |
120 | 120 | private function addon_specific_hooks() { |
121 | 121 | |
122 | - if( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
123 | - add_filter('gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script')); |
|
122 | + if ( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
123 | + add_filter( 'gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script' ) ); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | } |
@@ -207,15 +207,15 @@ discard block |
||
207 | 207 | */ |
208 | 208 | public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
209 | 209 | |
210 | - $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
210 | + $nonce_key = self::get_nonce_key( $view_id, $entry[ 'form_id' ], $entry[ 'id' ] ); |
|
211 | 211 | |
212 | - $base = gv_entry_link( $entry, $post_id ? : $view_id ); |
|
212 | + $base = gv_entry_link( $entry, $post_id ?: $view_id ); |
|
213 | 213 | |
214 | 214 | $url = add_query_arg( array( |
215 | 215 | 'edit' => wp_create_nonce( $nonce_key ) |
216 | 216 | ), $base ); |
217 | 217 | |
218 | - if( $post_id ) { |
|
218 | + if ( $post_id ) { |
|
219 | 219 | $url = add_query_arg( array( 'gvid' => $view_id ), $url ); |
220 | 220 | } |
221 | 221 | |
@@ -223,9 +223,9 @@ discard block |
||
223 | 223 | * Allow passing params to dynamically populate entry with values |
224 | 224 | * @since 1.9.2 |
225 | 225 | */ |
226 | - if( !empty( $field_values ) ) { |
|
226 | + if ( ! empty( $field_values ) ) { |
|
227 | 227 | |
228 | - if( is_array( $field_values ) ) { |
|
228 | + if ( is_array( $field_values ) ) { |
|
229 | 229 | // If already an array, no parse_str() needed |
230 | 230 | $params = $field_values; |
231 | 231 | } else { |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * @param array $entry The entry. |
242 | 242 | * @param \GV\View $view The View. |
243 | 243 | */ |
244 | - return apply_filters( 'gravityview/edit/link', $url, $entry, \GV\View::by_id( $view_id ) ); |
|
244 | + return apply_filters( 'gravityview/edit/link', $url, $entry, \GV\View::by_id( $view_id ) ); |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | /** |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | */ |
270 | 270 | public function modify_field_blocklist( $fields = array(), $context = NULL ) { |
271 | 271 | |
272 | - if( empty( $context ) || $context !== 'edit' ) { |
|
272 | + if ( empty( $context ) || $context !== 'edit' ) { |
|
273 | 273 | return $fields; |
274 | 274 | } |
275 | 275 | |
@@ -366,15 +366,15 @@ discard block |
||
366 | 366 | // If they can edit any entries (as defined in Gravity Forms) |
367 | 367 | // Or if they can edit other people's entries |
368 | 368 | // Then we're good. |
369 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
369 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry[ 'id' ] ) ) { |
|
370 | 370 | |
371 | 371 | gravityview()->log->debug( 'User has ability to edit all entries.' ); |
372 | 372 | |
373 | 373 | $user_can_edit = true; |
374 | 374 | |
375 | - } else if( !isset( $entry['created_by'] ) ) { |
|
375 | + } else if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
376 | 376 | |
377 | - gravityview()->log->error( 'Entry `created_by` doesn\'t exist.'); |
|
377 | + gravityview()->log->error( 'Entry `created_by` doesn\'t exist.' ); |
|
378 | 378 | |
379 | 379 | $user_can_edit = false; |
380 | 380 | |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | $current_user = wp_get_current_user(); |
384 | 384 | |
385 | 385 | // User edit is disabled |
386 | - if( empty( $user_edit ) ) { |
|
386 | + if ( empty( $user_edit ) ) { |
|
387 | 387 | |
388 | 388 | gravityview()->log->debug( 'User Edit is disabled. Returning false.' ); |
389 | 389 | |
@@ -391,13 +391,13 @@ discard block |
||
391 | 391 | } |
392 | 392 | |
393 | 393 | // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
394 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
394 | + else if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
395 | 395 | |
396 | 396 | gravityview()->log->debug( 'User {user_id} created the entry.', array( 'user_id', $current_user->ID ) ); |
397 | 397 | |
398 | 398 | $user_can_edit = true; |
399 | 399 | |
400 | - } else if( ! is_user_logged_in() ) { |
|
400 | + } else if ( ! is_user_logged_in() ) { |
|
401 | 401 | |
402 | 402 | gravityview()->log->debug( 'No user defined; edit entry requires logged in user' ); |
403 | 403 | |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | */ |
416 | 416 | $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
417 | 417 | |
418 | - return (bool) $user_can_edit; |
|
418 | + return (bool)$user_can_edit; |
|
419 | 419 | } |
420 | 420 | |
421 | 421 |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | /** |
85 | 85 | * @see RGFormsModel::update_lead_property() Trigger when any entry property changes |
86 | 86 | */ |
87 | - foreach( $this->lead_db_columns as $column ) { |
|
87 | + foreach ( $this->lead_db_columns as $column ) { |
|
88 | 88 | add_action( 'gform_update_' . $column, array( $this, 'entry_status_changed' ), 10, 3 ); |
89 | 89 | } |
90 | 90 | |
@@ -115,9 +115,9 @@ discard block |
||
115 | 115 | return; |
116 | 116 | } |
117 | 117 | |
118 | - gravityview()->log->debug( 'adding form {form_id} to blocklist because entry #{lead_id} was deleted', array( 'form_id' => $entry['form_id'], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
118 | + gravityview()->log->debug( 'adding form {form_id} to blocklist because entry #{lead_id} was deleted', array( 'form_id' => $entry[ 'form_id' ], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
119 | 119 | |
120 | - $this->blocklist_add( $entry['form_id'] ); |
|
120 | + $this->blocklist_add( $entry[ 'form_id' ] ); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -130,9 +130,9 @@ discard block |
||
130 | 130 | */ |
131 | 131 | public function entry_updated( $form, $lead_id ) { |
132 | 132 | |
133 | - gravityview()->log->debug(' adding form {form_id} to blocklist because entry #{entry_id} was updated', array( 'form_id' => $form['id'], 'entry_id' => $lead_id ) ); |
|
133 | + gravityview()->log->debug( ' adding form {form_id} to blocklist because entry #{entry_id} was updated', array( 'form_id' => $form[ 'id' ], 'entry_id' => $lead_id ) ); |
|
134 | 134 | |
135 | - $this->blocklist_add( $form['id'] ); |
|
135 | + $this->blocklist_add( $form[ 'id' ] ); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -147,9 +147,9 @@ discard block |
||
147 | 147 | */ |
148 | 148 | public function entry_created( $entry, $form ) { |
149 | 149 | |
150 | - gravityview()->log->debug( 'adding form {form_id} to blocklist because entry #{entry_id} was created', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
150 | + gravityview()->log->debug( 'adding form {form_id} to blocklist because entry #{entry_id} was created', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
151 | 151 | |
152 | - $this->blocklist_add( $form['id'] ); |
|
152 | + $this->blocklist_add( $form[ 'id' ] ); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -165,9 +165,9 @@ discard block |
||
165 | 165 | return; |
166 | 166 | } |
167 | 167 | |
168 | - gravityview()->log->debug( 'adding form {form_id} to blocklist because entry #{entry_id} was added', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
168 | + gravityview()->log->debug( 'adding form {form_id} to blocklist because entry #{entry_id} was added', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
169 | 169 | |
170 | - $this->blocklist_add( $form['id'] ); |
|
170 | + $this->blocklist_add( $form[ 'id' ] ); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | /** |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | // Normally just one form, but supports multiple forms |
187 | 187 | // |
188 | 188 | // Array of IDs 12, 5, 14 would result in `f:12-f:5-f:14` |
189 | - $forms = 'f:' . implode( '-f:', (array) $form_ids ); |
|
189 | + $forms = 'f:' . implode( '-f:', (array)$form_ids ); |
|
190 | 190 | |
191 | 191 | // Prefix for transient keys |
192 | 192 | // Now the prefix would be: `gv-cache-f:12-f:5-f:14-` |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | $form_ids = is_array( $form_ids ) ? $form_ids : array( $form_ids ); |
237 | 237 | |
238 | 238 | // Add the passed form IDs |
239 | - $blocklist = array_merge( (array) $blocklist, $form_ids ); |
|
239 | + $blocklist = array_merge( (array)$blocklist, $form_ids ); |
|
240 | 240 | |
241 | 241 | // Don't duplicate |
242 | 242 | $blocklist = array_unique( $blocklist ); |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | |
280 | 280 | $blocklist = get_option( self::BLOCKLIST_OPTION_NAME, array() ); |
281 | 281 | |
282 | - $updated_list = array_diff( $blocklist, (array) $form_ids ); |
|
282 | + $updated_list = array_diff( $blocklist, (array)$form_ids ); |
|
283 | 283 | |
284 | 284 | gravityview()->log->debug( 'Removing form IDs from cache blocklist', array( 'data' => array( |
285 | 285 | '$form_ids' => $form_ids, |
@@ -337,7 +337,7 @@ discard block |
||
337 | 337 | return false; |
338 | 338 | } |
339 | 339 | |
340 | - foreach ( (array) $form_ids as $form_id ) { |
|
340 | + foreach ( (array)$form_ids as $form_id ) { |
|
341 | 341 | |
342 | 342 | if ( in_array( $form_id, $blocklist ) ) { |
343 | 343 | |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | * @filter `gravityview_cache_time_{$filter_name}` Modify the cache time for a type of cache |
412 | 412 | * @param int $time_in_seconds Default: `DAY_IN_SECONDS` |
413 | 413 | */ |
414 | - $cache_time = (int) apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
414 | + $cache_time = (int)apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
415 | 415 | |
416 | 416 | gravityview()->log->debug( 'Setting cache with transient key {key} for {cache_time} seconds', array( 'key' => $this->key, 'cache_time' => $cache_time ) ); |
417 | 417 | |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | return; |
448 | 448 | } |
449 | 449 | |
450 | - foreach ( (array) $form_ids as $form_id ) { |
|
450 | + foreach ( (array)$form_ids as $form_id ) { |
|
451 | 451 | |
452 | 452 | $key = '_transient_gv-cache-'; |
453 | 453 | |
@@ -558,7 +558,7 @@ discard block |
||
558 | 558 | public function use_cache() { |
559 | 559 | |
560 | 560 | // Exit early if debugging (unless running PHPUnit) |
561 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined('DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
561 | + if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
562 | 562 | return apply_filters( 'gravityview_use_cache', false, $this ); |
563 | 563 | } |
564 | 564 | |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | |
567 | 567 | if ( GVCommon::has_cap( 'edit_gravityviews' ) ) { |
568 | 568 | |
569 | - if ( isset( $_GET['cache'] ) || isset( $_GET['nocache'] ) ) { |
|
569 | + if ( isset( $_GET[ 'cache' ] ) || isset( $_GET[ 'nocache' ] ) ) { |
|
570 | 570 | |
571 | 571 | gravityview()->log->debug( 'Not using cache: ?cache or ?nocache is in the URL' ); |
572 | 572 | |
@@ -593,7 +593,7 @@ discard block |
||
593 | 593 | */ |
594 | 594 | $use_cache = apply_filters( 'gravityview_use_cache', $use_cache, $this ); |
595 | 595 | |
596 | - return (boolean) $use_cache; |
|
596 | + return (boolean)$use_cache; |
|
597 | 597 | } |
598 | 598 | |
599 | 599 | } |
@@ -26,21 +26,21 @@ discard block |
||
26 | 26 | |
27 | 27 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
28 | 28 | |
29 | - unset( $field_options['search_filter'] ); |
|
29 | + unset( $field_options[ 'search_filter' ] ); |
|
30 | 30 | |
31 | - if( 'edit' === $context ) { |
|
31 | + if ( 'edit' === $context ) { |
|
32 | 32 | return $field_options; |
33 | 33 | } |
34 | 34 | |
35 | - $add_options['link_to_file'] = array( |
|
35 | + $add_options[ 'link_to_file' ] = array( |
|
36 | 36 | 'type' => 'checkbox', |
37 | 37 | 'label' => __( 'Display as a Link:', 'gravityview' ), |
38 | - 'desc' => __('Display the uploaded files as links, rather than embedded content.', 'gravityview'), |
|
38 | + 'desc' => __( 'Display the uploaded files as links, rather than embedded content.', 'gravityview' ), |
|
39 | 39 | 'value' => false, |
40 | 40 | 'merge_tags' => false, |
41 | 41 | ); |
42 | 42 | |
43 | - $add_options['image_width'] = array( |
|
43 | + $add_options[ 'image_width' ] = array( |
|
44 | 44 | 'type' => 'text', |
45 | 45 | 'label' => __( 'Custom Width:', 'gravityview' ), |
46 | 46 | 'desc' => __( 'Override the default image width (250).', 'gravityview' ), |
@@ -158,14 +158,14 @@ discard block |
||
158 | 158 | $base_id = null; |
159 | 159 | |
160 | 160 | $is_single = gravityview_get_context() === 'single'; |
161 | - $lightbox = ! empty( $gravityview_view->atts['lightbox'] ); |
|
161 | + $lightbox = ! empty( $gravityview_view->atts[ 'lightbox' ] ); |
|
162 | 162 | $field_compat = $gravityview_view->getCurrentField(); |
163 | 163 | } |
164 | 164 | |
165 | 165 | $output_arr = array(); |
166 | 166 | |
167 | 167 | // Get an array of file paths for the field. |
168 | - $file_paths = \GV\Utils::get( $field , 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
168 | + $file_paths = \GV\Utils::get( $field, 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
169 | 169 | |
170 | 170 | // The $value JSON was probably truncated; let's check lead_detail_long. |
171 | 171 | if ( ! is_array( $file_paths ) ) { |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | $rendered = null; |
186 | 186 | |
187 | 187 | // If the site is HTTPS, use HTTPS |
188 | - if ( function_exists('set_url_scheme') ) { |
|
188 | + if ( function_exists( 'set_url_scheme' ) ) { |
|
189 | 189 | $file_path = set_url_scheme( $file_path ); |
190 | 190 | } |
191 | 191 | |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | $file_path_info = pathinfo( $file_path ); |
197 | 197 | |
198 | 198 | // If pathinfo() gave us the extension of the file, run the switch statement using that. |
199 | - $extension = empty( $file_path_info['extension'] ) ? NULL : strtolower( $file_path_info['extension'] ); |
|
199 | + $extension = empty( $file_path_info[ 'extension' ] ) ? NULL : strtolower( $file_path_info[ 'extension' ] ); |
|
200 | 200 | |
201 | 201 | /** |
202 | 202 | * @filter `gravityview/fields/fileupload/extension` Modify the file extension before it's used in display logic |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | */ |
207 | 207 | $extension = apply_filters( 'gravityview/fields/fileupload/extension', $extension, $file_path ); |
208 | 208 | |
209 | - $basename = $file_path_info['basename']; |
|
209 | + $basename = $file_path_info[ 'basename' ]; |
|
210 | 210 | |
211 | 211 | // Get the secure download URL |
212 | 212 | $is_secure = false; |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | */ |
247 | 247 | $audio_settings = apply_filters( 'gravityview_audio_settings', array( |
248 | 248 | 'src' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
249 | - 'class' => 'wp-audio-shortcode gv-audio gv-field-id-'.$field_settings['id'] |
|
249 | + 'class' => 'wp-audio-shortcode gv-audio gv-field-id-' . $field_settings[ 'id' ] |
|
250 | 250 | ), $context ); |
251 | 251 | |
252 | 252 | /** |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | */ |
276 | 276 | $video_settings = apply_filters( 'gravityview_video_settings', array( |
277 | 277 | 'src' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
278 | - 'class' => 'wp-video-shortcode gv-video gv-field-id-'.$field_settings['id'] |
|
278 | + 'class' => 'wp-video-shortcode gv-video gv-field-id-' . $field_settings[ 'id' ] |
|
279 | 279 | ), $context ); |
280 | 280 | |
281 | 281 | /** |
@@ -299,20 +299,20 @@ discard block |
||
299 | 299 | $file_path = add_query_arg( array( 'gv-iframe' => 'true' ), $file_path ); |
300 | 300 | } |
301 | 301 | |
302 | - $field_settings['link_to_file'] = true; |
|
302 | + $field_settings[ 'link_to_file' ] = true; |
|
303 | 303 | |
304 | 304 | // Images |
305 | 305 | } else if ( in_array( $extension, array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' ) ) ) { |
306 | 306 | $width = \GV\Utils::get( $field_settings, 'image_width', 250 ); |
307 | 307 | $image_atts = array( |
308 | 308 | 'src' => $file_path, |
309 | - 'class' => 'gv-image gv-field-id-' . $field_settings['id'], |
|
310 | - 'alt' => $field_settings['label'], |
|
311 | - 'width' => ( $is_single ? null : ( $width ? $width: 250 ) ) |
|
309 | + 'class' => 'gv-image gv-field-id-' . $field_settings[ 'id' ], |
|
310 | + 'alt' => $field_settings[ 'label' ], |
|
311 | + 'width' => ( $is_single ? null : ( $width ? $width : 250 ) ) |
|
312 | 312 | ); |
313 | 313 | |
314 | 314 | if ( $is_secure ) { |
315 | - $image_atts['validate_src'] = false; |
|
315 | + $image_atts[ 'validate_src' ] = false; |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | /** |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | |
334 | 334 | unset( $gv_entry ); |
335 | 335 | |
336 | - if ( $lightbox && empty( $field_settings['show_as_link'] ) ) { |
|
336 | + if ( $lightbox && empty( $field_settings[ 'show_as_link' ] ) ) { |
|
337 | 337 | $lightbox_link_atts = array( |
338 | 338 | 'rel' => sprintf( "%s-%s", $gv_class, $entry_slug ), |
339 | 339 | 'class' => '', |
@@ -347,13 +347,13 @@ discard block |
||
347 | 347 | } |
348 | 348 | |
349 | 349 | // Show as link should render the image regardless. |
350 | - if ( ! empty( $field_settings['show_as_link'] ) ) { |
|
350 | + if ( ! empty( $field_settings[ 'show_as_link' ] ) ) { |
|
351 | 351 | $text = $rendered; |
352 | 352 | } |
353 | 353 | } |
354 | 354 | // For all other non-media file types (ZIP, for example), always show as a link regardless of setting. |
355 | 355 | else { |
356 | - $field_settings['link_to_file'] = true; |
|
356 | + $field_settings[ 'link_to_file' ] = true; |
|
357 | 357 | $disable_lightbox = true; |
358 | 358 | } |
359 | 359 | |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | $disable_wrapped_link = apply_filters( 'gravityview/fields/fileupload/disable_link', false, $field_compat, $context ); |
370 | 370 | |
371 | 371 | // Output textualized content where |
372 | - if ( ! $disable_wrapped_link && ( ! empty( $field_settings['link_to_file'] ) || ! empty( $field_settings['show_as_link'] ) ) ) { |
|
372 | + if ( ! $disable_wrapped_link && ( ! empty( $field_settings[ 'link_to_file' ] ) || ! empty( $field_settings[ 'show_as_link' ] ) ) ) { |
|
373 | 373 | /** |
374 | 374 | * Modify the link text (defaults to the file name) |
375 | 375 | * |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | */ |
383 | 383 | $content = apply_filters( 'gravityview/fields/fileupload/link_content', $text, $field_compat, $context ); |
384 | 384 | |
385 | - if ( empty( $field_settings['show_as_link'] ) ) { |
|
385 | + if ( empty( $field_settings[ 'show_as_link' ] ) ) { |
|
386 | 386 | /** |
387 | 387 | * @filter `gravityview/fields/fileupload/link_atts` Modify the link attributes for a file upload field |
388 | 388 | * @since 2.0 Added $context |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | $content = empty( $rendered ) ? $text : $rendered; |
404 | 404 | } |
405 | 405 | |
406 | - $output_arr[] = array( |
|
406 | + $output_arr[ ] = array( |
|
407 | 407 | 'file_path' => $file_path, |
408 | 408 | 'content' => $content |
409 | 409 | ); |