@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | parent::add_hooks(); |
44 | 44 | |
45 | - add_shortcode( 'gv_pageviews', array( $this, 'pageviews') ); |
|
45 | + add_shortcode( 'gv_pageviews', array( $this, 'pageviews' ) ); |
|
46 | 46 | |
47 | 47 | add_filter( 'gravityview/fields/custom/decode_shortcodes', array( $this, 'inject_entry_id' ), 10, 3 ); |
48 | 48 | |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | * Used as sort of an action via the gravityview/fields/custom/decode_shortcodes filter. |
69 | 69 | */ |
70 | 70 | public function inject_entry_id( $r, $content, $context ) { |
71 | - if ( ! empty( $context->entry['id'] ) ) { |
|
72 | - $this->next_id = $context->entry['id']; |
|
71 | + if ( ! empty( $context->entry[ 'id' ] ) ) { |
|
72 | + $this->next_id = $context->entry[ 'id' ]; |
|
73 | 73 | } else { |
74 | 74 | $this->next_id = false; // Nothing to look at, move along |
75 | 75 | } |
@@ -97,13 +97,13 @@ discard block |
||
97 | 97 | 'id' => $this->next_id, |
98 | 98 | ), $atts ); |
99 | 99 | |
100 | - if ( ! $this->atts['id'] ) { |
|
100 | + if ( ! $this->atts[ 'id' ] ) { |
|
101 | 101 | return; // The ID was not set |
102 | 102 | } |
103 | 103 | |
104 | 104 | add_filter( 'pageviews_placeholder_preload', array( $this, 'preload_callback' ) ); |
105 | 105 | |
106 | - $output = Pageviews::placeholder( 'GV' . $this->atts['id'] ); // Prefix the ID to avoid collissions with default post IDs |
|
106 | + $output = Pageviews::placeholder( 'GV' . $this->atts[ 'id' ] ); // Prefix the ID to avoid collissions with default post IDs |
|
107 | 107 | |
108 | 108 | remove_filter( 'pageviews_placeholder_preload', array( $this, 'preload_callback' ) ); |
109 | 109 | |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | * Set the preload text. |
115 | 115 | */ |
116 | 116 | public function preload_callback( $preload ) { |
117 | - return $this->atts['preload']; |
|
117 | + return $this->atts[ 'preload' ]; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function increment_callback() { |
124 | 124 | if ( $entry = gravityview()->request->is_entry() ) { |
125 | - $increment = 'GV' . $entry['id']; |
|
125 | + $increment = 'GV' . $entry[ 'id' ]; |
|
126 | 126 | ?> |
127 | 127 | _pv_config.incr = <?php echo json_encode( $increment ); ?>; |
128 | 128 | <?php |
@@ -60,28 +60,28 @@ discard block |
||
60 | 60 | if ( $object->show_previous_button ) { |
61 | 61 | $previous_tabindex = GFCommon::get_tabindex(); |
62 | 62 | ?> |
63 | - <input id="gform_previous_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-previous" type="submit" <?php echo $previous_tabindex; ?> value="<?php echo esc_attr( $labels['previous'] ); ?>" name="save" /> |
|
63 | + <input id="gform_previous_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-previous" type="submit" <?php echo $previous_tabindex; ?> value="<?php echo esc_attr( $labels[ 'previous' ] ); ?>" name="save" /> |
|
64 | 64 | <?php |
65 | 65 | } |
66 | 66 | |
67 | 67 | if ( $object->show_next_button ) { |
68 | - $next_tabindex = GFCommon::get_tabindex(); |
|
68 | + $next_tabindex = GFCommon::get_tabindex(); |
|
69 | 69 | ?> |
70 | - <input id="gform_next_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-next" type="submit" <?php echo $next_tabindex; ?> value="<?php echo esc_attr( $labels['next'] ); ?>" name="save" /> |
|
70 | + <input id="gform_next_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-next" type="submit" <?php echo $next_tabindex; ?> value="<?php echo esc_attr( $labels[ 'next' ] ); ?>" name="save" /> |
|
71 | 71 | <?php |
72 | 72 | } |
73 | 73 | |
74 | 74 | if ( $object->show_update_button ) { |
75 | - $update_tabindex = GFCommon::get_tabindex(); |
|
75 | + $update_tabindex = GFCommon::get_tabindex(); |
|
76 | 76 | ?> |
77 | - <input id="gform_submit_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels['submit'] ); ?>" name="save" /> |
|
77 | + <input id="gform_submit_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels[ 'submit' ] ); ?>" name="save" /> |
|
78 | 78 | <?php |
79 | 79 | } |
80 | 80 | |
81 | - $cancel_tabindex = GFCommon::get_tabindex(); |
|
81 | + $cancel_tabindex = GFCommon::get_tabindex(); |
|
82 | 82 | |
83 | 83 | ?> |
84 | - <a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels['cancel'] ); ?></a> |
|
84 | + <a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels[ 'cancel' ] ); ?></a> |
|
85 | 85 | <?php |
86 | 86 | |
87 | 87 | /** |
@@ -97,5 +97,5 @@ discard block |
||
97 | 97 | |
98 | 98 | ?> |
99 | 99 | <input type="hidden" name="action" value="update" /> |
100 | - <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry['id'] ); ?>" /> |
|
100 | + <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry[ 'id' ] ); ?>" /> |
|
101 | 101 | </div> |
@@ -17,7 +17,7 @@ |
||
17 | 17 | return self::$instance; |
18 | 18 | } |
19 | 19 | |
20 | - public function shortcode( $atts, $content = '', $tag = '') { |
|
20 | + public function shortcode( $atts, $content = '', $tag = '' ) { |
|
21 | 21 | $shortcode = new \GV\Shortcodes\gvlogic(); |
22 | 22 | return $shortcode->callback( $atts, $content, $tag ); |
23 | 23 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'type' => 'radio', |
65 | 65 | 'full_width' => true, |
66 | 66 | 'label' => esc_html__( 'Search Mode', 'gravityview' ), |
67 | - 'desc' => __('Should search results match all search fields, or any?', 'gravityview'), |
|
67 | + 'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ), |
|
68 | 68 | 'value' => 'any', |
69 | 69 | 'class' => 'hide-if-js', |
70 | 70 | 'options' => array( |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | // admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999 |
85 | 85 | add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 ); |
86 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
86 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
87 | 87 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
88 | 88 | |
89 | 89 | // ajax - get the searchable fields |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
228 | 228 | $script_source = empty( $script_min ) ? '/source' : ''; |
229 | 229 | |
230 | - wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js'.$script_source.'/admin-search-widget'.$script_min.'.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), \GV\Plugin::$version ); |
|
230 | + wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js' . $script_source . '/admin-search-widget' . $script_min . '.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), \GV\Plugin::$version ); |
|
231 | 231 | |
232 | 232 | wp_localize_script( 'gravityview_searchwidget_admin', 'gvSearchVar', array( |
233 | 233 | 'nonce' => wp_create_nonce( 'gravityview_ajaxsearchwidget' ), |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | * @return array Scripts allowed in no-conflict mode, plus the search widget script |
250 | 250 | */ |
251 | 251 | public function register_no_conflict( $allowed ) { |
252 | - $allowed[] = 'gravityview_searchwidget_admin'; |
|
252 | + $allowed[ ] = 'gravityview_searchwidget_admin'; |
|
253 | 253 | return $allowed; |
254 | 254 | } |
255 | 255 | |
@@ -262,24 +262,24 @@ discard block |
||
262 | 262 | */ |
263 | 263 | public static function get_searchable_fields() { |
264 | 264 | |
265 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) { |
|
265 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) { |
|
266 | 266 | exit( '0' ); |
267 | 267 | } |
268 | 268 | |
269 | 269 | $form = ''; |
270 | 270 | |
271 | 271 | // Fetch the form for the current View |
272 | - if ( ! empty( $_POST['view_id'] ) ) { |
|
272 | + if ( ! empty( $_POST[ 'view_id' ] ) ) { |
|
273 | 273 | |
274 | - $form = gravityview_get_form_id( $_POST['view_id'] ); |
|
274 | + $form = gravityview_get_form_id( $_POST[ 'view_id' ] ); |
|
275 | 275 | |
276 | - } elseif ( ! empty( $_POST['formid'] ) ) { |
|
276 | + } elseif ( ! empty( $_POST[ 'formid' ] ) ) { |
|
277 | 277 | |
278 | - $form = (int) $_POST['formid']; |
|
278 | + $form = (int)$_POST[ 'formid' ]; |
|
279 | 279 | |
280 | - } elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
280 | + } elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) { |
|
281 | 281 | |
282 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
282 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
283 | 283 | |
284 | 284 | } |
285 | 285 | |
@@ -329,14 +329,14 @@ discard block |
||
329 | 329 | ); |
330 | 330 | |
331 | 331 | if ( gravityview()->plugin->supports( \GV\Plugin::FEATURE_GFQUERY ) ) { |
332 | - $custom_fields['is_approved'] = array( |
|
332 | + $custom_fields[ 'is_approved' ] = array( |
|
333 | 333 | 'text' => esc_html__( 'Approval Status', 'gravityview' ), |
334 | 334 | 'type' => 'multi', |
335 | 335 | ); |
336 | 336 | } |
337 | 337 | |
338 | - foreach( $custom_fields as $custom_field_key => $custom_field ) { |
|
339 | - $output .= sprintf( '<option value="%s" %s data-inputtypes="%s" data-placeholder="%s">%s</option>', $custom_field_key, selected( $custom_field_key, $current, false ), $custom_field['type'], self::get_field_label( array('field' => $custom_field_key ) ), $custom_field['text'] ); |
|
338 | + foreach ( $custom_fields as $custom_field_key => $custom_field ) { |
|
339 | + $output .= sprintf( '<option value="%s" %s data-inputtypes="%s" data-placeholder="%s">%s</option>', $custom_field_key, selected( $custom_field_key, $current, false ), $custom_field[ 'type' ], self::get_field_label( array( 'field' => $custom_field_key ) ), $custom_field[ 'text' ] ); |
|
340 | 340 | } |
341 | 341 | |
342 | 342 | // Get fields with sub-inputs and no parent |
@@ -358,13 +358,13 @@ discard block |
||
358 | 358 | |
359 | 359 | foreach ( $fields as $id => $field ) { |
360 | 360 | |
361 | - if ( in_array( $field['type'], $blacklist_field_types ) ) { |
|
361 | + if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) { |
|
362 | 362 | continue; |
363 | 363 | } |
364 | 364 | |
365 | - $types = self::get_search_input_types( $id, $field['type'] ); |
|
365 | + $types = self::get_search_input_types( $id, $field[ 'type' ] ); |
|
366 | 366 | |
367 | - $output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>'; |
|
367 | + $output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>'; |
|
368 | 368 | } |
369 | 369 | } |
370 | 370 | |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | public static function get_search_input_types( $field_id = '', $field_type = null ) { |
388 | 388 | |
389 | 389 | // @todo - This needs to be improved - many fields have . including products and addresses |
390 | - if ( false !== strpos( (string) $field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
390 | + if ( false !== strpos( (string)$field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) { |
|
391 | 391 | $input_type = 'boolean'; // on/off checkbox |
392 | 392 | } elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) { |
393 | 393 | $input_type = 'multi'; //multiselect |
@@ -433,19 +433,19 @@ discard block |
||
433 | 433 | $post_id = 0; |
434 | 434 | |
435 | 435 | // We're in the WordPress Widget context, and an overriding post ID has been set. |
436 | - if ( ! empty( $widget_args['post_id'] ) ) { |
|
437 | - $post_id = absint( $widget_args['post_id'] ); |
|
436 | + if ( ! empty( $widget_args[ 'post_id' ] ) ) { |
|
437 | + $post_id = absint( $widget_args[ 'post_id' ] ); |
|
438 | 438 | } |
439 | 439 | // We're in the WordPress Widget context, and the base View ID should be used |
440 | - else if ( ! empty( $widget_args['view_id'] ) ) { |
|
441 | - $post_id = absint( $widget_args['view_id'] ); |
|
440 | + else if ( ! empty( $widget_args[ 'view_id' ] ) ) { |
|
441 | + $post_id = absint( $widget_args[ 'view_id' ] ); |
|
442 | 442 | } |
443 | 443 | |
444 | 444 | $args = gravityview_get_permalink_query_args( $post_id ); |
445 | 445 | |
446 | 446 | // Add hidden fields to the search form |
447 | 447 | foreach ( $args as $key => $value ) { |
448 | - $search_fields[] = array( |
|
448 | + $search_fields[ ] = array( |
|
449 | 449 | 'name' => $key, |
450 | 450 | 'input' => 'hidden', |
451 | 451 | 'value' => $value, |
@@ -484,28 +484,28 @@ discard block |
||
484 | 484 | /** |
485 | 485 | * Include the sidebar Widgets. |
486 | 486 | */ |
487 | - $widgets = (array) get_option( 'widget_gravityview_search', array() ); |
|
487 | + $widgets = (array)get_option( 'widget_gravityview_search', array() ); |
|
488 | 488 | |
489 | 489 | foreach ( $widgets as $widget ) { |
490 | - if ( ! empty( $widget['view_id'] ) && $widget['view_id'] == $view->ID ) { |
|
491 | - if( $_fields = json_decode( $widget['search_fields'], true ) ) { |
|
490 | + if ( ! empty( $widget[ 'view_id' ] ) && $widget[ 'view_id' ] == $view->ID ) { |
|
491 | + if ( $_fields = json_decode( $widget[ 'search_fields' ], true ) ) { |
|
492 | 492 | foreach ( $_fields as $field ) { |
493 | - if ( empty( $field['form_id'] ) ) { |
|
494 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
493 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
494 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
495 | 495 | } |
496 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
496 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
497 | 497 | } |
498 | 498 | } |
499 | 499 | } |
500 | 500 | } |
501 | 501 | |
502 | 502 | foreach ( $view->widgets->by_id( $this->get_widget_id() )->all() as $widget ) { |
503 | - if( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
503 | + if ( $_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ) ) { |
|
504 | 504 | foreach ( $_fields as $field ) { |
505 | - if ( empty( $field['form_id'] ) ) { |
|
506 | - $field['form_id'] = $view->form ? $view->form->ID : 0; |
|
505 | + if ( empty( $field[ 'form_id' ] ) ) { |
|
506 | + $field[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
507 | 507 | } |
508 | - $searchable_fields[] = $with_full_field ? $field : $field['field']; |
|
508 | + $searchable_fields[ ] = $with_full_field ? $field : $field[ 'field' ]; |
|
509 | 509 | } |
510 | 510 | } |
511 | 511 | } |
@@ -535,7 +535,7 @@ discard block |
||
535 | 535 | return $search_criteria; // Return the original criteria, GF_Query modification kicks in later |
536 | 536 | } |
537 | 537 | |
538 | - if( 'post' === $this->search_method ) { |
|
538 | + if ( 'post' === $this->search_method ) { |
|
539 | 539 | $get = $_POST; |
540 | 540 | } else { |
541 | 541 | $get = $_GET; |
@@ -554,15 +554,15 @@ discard block |
||
554 | 554 | $get = gv_map_deep( $get, 'rawurldecode' ); |
555 | 555 | |
556 | 556 | // Make sure array key is set up |
557 | - $search_criteria['field_filters'] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
557 | + $search_criteria[ 'field_filters' ] = \GV\Utils::get( $search_criteria, 'field_filters', array() ); |
|
558 | 558 | |
559 | 559 | $searchable_fields = $this->get_view_searchable_fields( $view ); |
560 | 560 | $searchable_field_objects = $this->get_view_searchable_fields( $view, true ); |
561 | 561 | |
562 | 562 | // add free search |
563 | - if ( isset( $get['gv_search'] ) && '' !== $get['gv_search'] && in_array( 'search_all', $searchable_fields ) ) { |
|
563 | + if ( isset( $get[ 'gv_search' ] ) && '' !== $get[ 'gv_search' ] && in_array( 'search_all', $searchable_fields ) ) { |
|
564 | 564 | |
565 | - $search_all_value = trim( $get['gv_search'] ); |
|
565 | + $search_all_value = trim( $get[ 'gv_search' ] ); |
|
566 | 566 | |
567 | 567 | /** |
568 | 568 | * @filter `gravityview/search-all-split-words` Search for each word separately or the whole phrase? |
@@ -587,7 +587,7 @@ discard block |
||
587 | 587 | } |
588 | 588 | |
589 | 589 | foreach ( $words as $word ) { |
590 | - $search_criteria['field_filters'][] = array( |
|
590 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
591 | 591 | 'key' => null, // The field ID to search |
592 | 592 | 'value' => $word, // The value to search |
593 | 593 | 'operator' => 'contains', // What to search in. Options: `is` or `contains` |
@@ -600,14 +600,14 @@ discard block |
||
600 | 600 | /** |
601 | 601 | * Get and normalize the dates according to the input format. |
602 | 602 | */ |
603 | - if ( $curr_start = ! empty( $get['gv_start'] ) ? $get['gv_start'] : '' ) { |
|
604 | - if( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
603 | + if ( $curr_start = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_start' ] : '' ) { |
|
604 | + if ( $curr_start_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_start ) ) { |
|
605 | 605 | $curr_start = $curr_start_date->format( 'Y-m-d' ); |
606 | 606 | } |
607 | 607 | } |
608 | 608 | |
609 | - if ( $curr_end = ! empty( $get['gv_start'] ) ? ( ! empty( $get['gv_end'] ) ? $get['gv_end'] : '' ) : '' ) { |
|
610 | - if( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
609 | + if ( $curr_end = ! empty( $get[ 'gv_start' ] ) ? ( ! empty( $get[ 'gv_end' ] ) ? $get[ 'gv_end' ] : '' ) : '' ) { |
|
610 | + if ( $curr_end_date = date_create_from_format( $this->get_datepicker_format( true ), $curr_end ) ) { |
|
611 | 611 | $curr_end = $curr_end_date->format( 'Y-m-d' ); |
612 | 612 | } |
613 | 613 | } |
@@ -642,22 +642,22 @@ discard block |
||
642 | 642 | */ |
643 | 643 | if ( ! empty( $curr_start ) ) { |
644 | 644 | $curr_start = date( 'Y-m-d H:i:s', strtotime( $curr_start ) ); |
645 | - $search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
645 | + $search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start; |
|
646 | 646 | } |
647 | 647 | |
648 | 648 | if ( ! empty( $curr_end ) ) { |
649 | 649 | // Fast-forward 24 hour on the end time |
650 | 650 | $curr_end = date( 'Y-m-d H:i:s', strtotime( $curr_end ) + DAY_IN_SECONDS ); |
651 | - $search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
652 | - if ( strpos( $search_criteria['end_date'], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
653 | - $search_criteria['end_date'] = date( 'Y-m-d H:i:s', strtotime( $search_criteria['end_date'] ) - 1 ); |
|
651 | + $search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end; |
|
652 | + if ( strpos( $search_criteria[ 'end_date' ], '00:00:00' ) ) { // See https://github.com/gravityview/GravityView/issues/1056 |
|
653 | + $search_criteria[ 'end_date' ] = date( 'Y-m-d H:i:s', strtotime( $search_criteria[ 'end_date' ] ) - 1 ); |
|
654 | 654 | } |
655 | 655 | } |
656 | 656 | } |
657 | 657 | |
658 | 658 | // search for a specific entry ID |
659 | 659 | if ( ! empty( $get[ 'gv_id' ] ) && in_array( 'entry_id', $searchable_fields ) ) { |
660 | - $search_criteria['field_filters'][] = array( |
|
660 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
661 | 661 | 'key' => 'id', |
662 | 662 | 'value' => absint( $get[ 'gv_id' ] ), |
663 | 663 | 'operator' => $this->get_operator( $get, 'gv_id', array( '=' ), '=' ), |
@@ -666,20 +666,20 @@ discard block |
||
666 | 666 | |
667 | 667 | // search for a specific Created_by ID |
668 | 668 | if ( ! empty( $get[ 'gv_by' ] ) && in_array( 'created_by', $searchable_fields ) ) { |
669 | - $search_criteria['field_filters'][] = array( |
|
669 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
670 | 670 | 'key' => 'created_by', |
671 | - 'value' => $get['gv_by'], |
|
671 | + 'value' => $get[ 'gv_by' ], |
|
672 | 672 | 'operator' => $this->get_operator( $get, 'gv_by', array( '=' ), '=' ), |
673 | 673 | ); |
674 | 674 | } |
675 | 675 | |
676 | 676 | // Get search mode passed in URL |
677 | - $mode = isset( $get['mode'] ) && in_array( $get['mode'], array( 'any', 'all' ) ) ? $get['mode'] : 'any'; |
|
677 | + $mode = isset( $get[ 'mode' ] ) && in_array( $get[ 'mode' ], array( 'any', 'all' ) ) ? $get[ 'mode' ] : 'any'; |
|
678 | 678 | |
679 | 679 | // get the other search filters |
680 | 680 | foreach ( $get as $key => $value ) { |
681 | 681 | |
682 | - if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[0], false, false ) ) ) { |
|
682 | + if ( 0 !== strpos( $key, 'filter_' ) || gv_empty( $value, false, false ) || ( is_array( $value ) && count( $value ) === 1 && gv_empty( $value[ 0 ], false, false ) ) ) { |
|
683 | 683 | continue; // Not a filter, or empty |
684 | 684 | } |
685 | 685 | |
@@ -693,19 +693,19 @@ discard block |
||
693 | 693 | continue; |
694 | 694 | } |
695 | 695 | |
696 | - if ( ! isset( $filter['operator'] ) ) { |
|
697 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
696 | + if ( ! isset( $filter[ 'operator' ] ) ) { |
|
697 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'contains' ), 'contains' ); |
|
698 | 698 | } |
699 | 699 | |
700 | - if ( isset( $filter[0]['value'] ) ) { |
|
701 | - $search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter ); |
|
700 | + if ( isset( $filter[ 0 ][ 'value' ] ) ) { |
|
701 | + $search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter ); |
|
702 | 702 | |
703 | 703 | // if date range type, set search mode to ALL |
704 | - if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>=', '<=', '>', '<' ) ) ) { |
|
704 | + if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>=', '<=', '>', '<' ) ) ) { |
|
705 | 705 | $mode = 'all'; |
706 | 706 | } |
707 | - } elseif( !empty( $filter ) ) { |
|
708 | - $search_criteria['field_filters'][] = $filter; |
|
707 | + } elseif ( ! empty( $filter ) ) { |
|
708 | + $search_criteria[ 'field_filters' ][ ] = $filter; |
|
709 | 709 | } |
710 | 710 | } |
711 | 711 | |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | * @since 1.5.1 |
715 | 715 | * @param[out,in] string $mode Search mode (`any` vs `all`) |
716 | 716 | */ |
717 | - $search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode ); |
|
717 | + $search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode ); |
|
718 | 718 | |
719 | 719 | gravityview()->log->debug( 'Returned Search Criteria: ', array( 'data' => $search_criteria ) ); |
720 | 720 | |
@@ -748,19 +748,19 @@ discard block |
||
748 | 748 | |
749 | 749 | $query_class = $view->get_query_class(); |
750 | 750 | |
751 | - if ( empty( $search_criteria['field_filters'] ) ) { |
|
751 | + if ( empty( $search_criteria[ 'field_filters' ] ) ) { |
|
752 | 752 | return; |
753 | 753 | } |
754 | 754 | |
755 | 755 | $widgets = $view->widgets->by_id( $this->widget_id ); |
756 | 756 | if ( $widgets->count() ) { |
757 | 757 | $widgets = $widgets->all(); |
758 | - $widget = $widgets[0]; |
|
758 | + $widget = $widgets[ 0 ]; |
|
759 | 759 | |
760 | 760 | $search_fields = json_decode( $widget->configuration->get( 'search_fields' ), true ); |
761 | 761 | |
762 | - foreach ( (array) $search_fields as $search_field ) { |
|
763 | - if ( 'created_by' === $search_field['field'] && 'input_text' === $search_field['input'] ) { |
|
762 | + foreach ( (array)$search_fields as $search_field ) { |
|
763 | + if ( 'created_by' === $search_field[ 'field' ] && 'input_text' === $search_field[ 'input' ] ) { |
|
764 | 764 | $created_by_text_mode = true; |
765 | 765 | } |
766 | 766 | } |
@@ -769,7 +769,7 @@ discard block |
||
769 | 769 | $extra_conditions = array(); |
770 | 770 | $mode = 'any'; |
771 | 771 | |
772 | - foreach ( $search_criteria['field_filters'] as &$filter ) { |
|
772 | + foreach ( $search_criteria[ 'field_filters' ] as &$filter ) { |
|
773 | 773 | if ( ! is_array( $filter ) ) { |
774 | 774 | if ( in_array( strtolower( $filter ), array( 'any', 'all' ) ) ) { |
775 | 775 | $mode = $filter; |
@@ -778,13 +778,13 @@ discard block |
||
778 | 778 | } |
779 | 779 | |
780 | 780 | // Construct a manual query for unapproved statuses |
781 | - if ( 'is_approved' === $filter['key'] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array) $filter['value'] ) ) { |
|
782 | - $_tmp_query = new $query_class( $view->form->ID, array( |
|
781 | + if ( 'is_approved' === $filter[ 'key' ] && in_array( \GravityView_Entry_Approval_Status::UNAPPROVED, (array)$filter[ 'value' ] ) ) { |
|
782 | + $_tmp_query = new $query_class( $view->form->ID, array( |
|
783 | 783 | 'field_filters' => array( |
784 | 784 | array( |
785 | 785 | 'operator' => 'in', |
786 | 786 | 'key' => 'is_approved', |
787 | - 'value' => (array) $filter['value'], |
|
787 | + 'value' => (array)$filter[ 'value' ], |
|
788 | 788 | ), |
789 | 789 | array( |
790 | 790 | 'operator' => 'is', |
@@ -796,30 +796,30 @@ discard block |
||
796 | 796 | ) ); |
797 | 797 | $_tmp_query_parts = $_tmp_query->_introspect(); |
798 | 798 | |
799 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
799 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
800 | 800 | |
801 | 801 | $filter = false; |
802 | 802 | continue; |
803 | 803 | } |
804 | 804 | |
805 | 805 | // Construct manual query for text mode creator search |
806 | - if ( 'created_by' === $filter['key'] && ! empty( $created_by_text_mode ) ) { |
|
807 | - $extra_conditions[] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
806 | + if ( 'created_by' === $filter[ 'key' ] && ! empty( $created_by_text_mode ) ) { |
|
807 | + $extra_conditions[ ] = new GravityView_Widget_Search_Author_GF_Query_Condition( $filter, $view ); |
|
808 | 808 | $filter = false; |
809 | 809 | continue; |
810 | 810 | } |
811 | 811 | |
812 | 812 | // By default, we want searches to be wildcard for each field. |
813 | - $filter['operator'] = empty( $filter['operator'] ) ? 'contains' : $filter['operator']; |
|
813 | + $filter[ 'operator' ] = empty( $filter[ 'operator' ] ) ? 'contains' : $filter[ 'operator' ]; |
|
814 | 814 | |
815 | 815 | // For multichoice, let's have an in (OR) search. |
816 | - if ( is_array( $filter['value'] ) ) { |
|
817 | - $filter['operator'] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
816 | + if ( is_array( $filter[ 'value' ] ) ) { |
|
817 | + $filter[ 'operator' ] = 'in'; // @todo what about in contains (OR LIKE chains)? |
|
818 | 818 | } |
819 | 819 | |
820 | 820 | // Default form with joins functionality |
821 | - if ( empty( $filter['form_id'] ) ) { |
|
822 | - $filter['form_id'] = $view->form ? $view->form->ID : 0; |
|
821 | + if ( empty( $filter[ 'form_id' ] ) ) { |
|
822 | + $filter[ 'form_id' ] = $view->form ? $view->form->ID : 0; |
|
823 | 823 | } |
824 | 824 | |
825 | 825 | /** |
@@ -829,28 +829,28 @@ discard block |
||
829 | 829 | * @since develop |
830 | 830 | * @param \GV\View $view The View we're operating on. |
831 | 831 | */ |
832 | - $filter['operator'] = apply_filters( 'gravityview_search_operator', $filter['operator'], $filter, $view ); |
|
832 | + $filter[ 'operator' ] = apply_filters( 'gravityview_search_operator', $filter[ 'operator' ], $filter, $view ); |
|
833 | 833 | } |
834 | 834 | |
835 | - if ( ! empty( $search_criteria['start_date'] ) || ! empty( $search_criteria['end_date'] ) ) { |
|
835 | + if ( ! empty( $search_criteria[ 'start_date' ] ) || ! empty( $search_criteria[ 'end_date' ] ) ) { |
|
836 | 836 | $date_criteria = array(); |
837 | 837 | |
838 | - if ( isset( $search_criteria['start_date'] ) ) { |
|
839 | - $date_criteria['start_date'] = $search_criteria['start_date']; |
|
838 | + if ( isset( $search_criteria[ 'start_date' ] ) ) { |
|
839 | + $date_criteria[ 'start_date' ] = $search_criteria[ 'start_date' ]; |
|
840 | 840 | } |
841 | 841 | |
842 | - if ( isset( $search_criteria['end_date'] ) ) { |
|
843 | - $date_criteria['end_date'] = $search_criteria['end_date']; |
|
842 | + if ( isset( $search_criteria[ 'end_date' ] ) ) { |
|
843 | + $date_criteria[ 'end_date' ] = $search_criteria[ 'end_date' ]; |
|
844 | 844 | } |
845 | 845 | |
846 | 846 | $_tmp_query = new $query_class( $view->form->ID, $date_criteria ); |
847 | 847 | $_tmp_query_parts = $_tmp_query->_introspect(); |
848 | - $extra_conditions[] = $_tmp_query_parts['where']; |
|
848 | + $extra_conditions[ ] = $_tmp_query_parts[ 'where' ]; |
|
849 | 849 | } |
850 | 850 | |
851 | 851 | $search_conditions = array(); |
852 | 852 | |
853 | - if ( $filters = array_filter( $search_criteria['field_filters'] ) ) { |
|
853 | + if ( $filters = array_filter( $search_criteria[ 'field_filters' ] ) ) { |
|
854 | 854 | |
855 | 855 | foreach ( $filters as $filter ) { |
856 | 856 | if ( ! is_array( $filter ) ) { |
@@ -863,12 +863,12 @@ discard block |
||
863 | 863 | * code by reusing what's inside GF_Query already as they |
864 | 864 | * take care of many small things like forcing numeric, etc. |
865 | 865 | */ |
866 | - $_tmp_query = new $query_class( $filter['form_id'], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
866 | + $_tmp_query = new $query_class( $filter[ 'form_id' ], array( 'mode' => 'any', 'field_filters' => array( $filter ) ) ); |
|
867 | 867 | $_tmp_query_parts = $_tmp_query->_introspect(); |
868 | - $search_condition = $_tmp_query_parts['where']; |
|
868 | + $search_condition = $_tmp_query_parts[ 'where' ]; |
|
869 | 869 | |
870 | - if ( empty( $filter['key'] ) && $search_condition->expressions ) { |
|
871 | - $search_conditions[] = $search_condition; |
|
870 | + if ( empty( $filter[ 'key' ] ) && $search_condition->expressions ) { |
|
871 | + $search_conditions[ ] = $search_condition; |
|
872 | 872 | } else { |
873 | 873 | $left = $search_condition->left; |
874 | 874 | $alias = $query->_alias( $left->field_id, $left->source, $left->is_entry_column() ? 't' : 'm' ); |
@@ -879,21 +879,21 @@ discard block |
||
879 | 879 | $join = $_join->join; |
880 | 880 | |
881 | 881 | // Join |
882 | - $search_conditions[] = new GF_Query_Condition( |
|
882 | + $search_conditions[ ] = new GF_Query_Condition( |
|
883 | 883 | new GF_Query_Column( GF_Query_Column::META, $join->ID, $query->_alias( GF_Query_Column::META, $join->ID, 'm' ) ), |
884 | 884 | $search_condition->operator, |
885 | 885 | $search_condition->right |
886 | 886 | ); |
887 | 887 | |
888 | 888 | // On |
889 | - $search_conditions[] = new GF_Query_Condition( |
|
889 | + $search_conditions[ ] = new GF_Query_Condition( |
|
890 | 890 | new GF_Query_Column( GF_Query_Column::META, $on->ID, $query->_alias( GF_Query_Column::META, $on->ID, 'm' ) ), |
891 | 891 | $search_condition->operator, |
892 | 892 | $search_condition->right |
893 | 893 | ); |
894 | 894 | } |
895 | 895 | } else { |
896 | - $search_conditions[] = new GF_Query_Condition( |
|
896 | + $search_conditions[ ] = new GF_Query_Condition( |
|
897 | 897 | new GF_Query_Column( $left->field_id, $left->source, $alias ), |
898 | 898 | $search_condition->operator, |
899 | 899 | $search_condition->right |
@@ -915,7 +915,7 @@ discard block |
||
915 | 915 | /** |
916 | 916 | * Combine the parts as a new WHERE clause. |
917 | 917 | */ |
918 | - $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts['where'] ), $search_conditions, $extra_conditions ) ); |
|
918 | + $where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts[ 'where' ] ), $search_conditions, $extra_conditions ) ); |
|
919 | 919 | $query->where( $where ); |
920 | 920 | } |
921 | 921 | |
@@ -938,7 +938,7 @@ discard block |
||
938 | 938 | $field_id = str_replace( 'filter_', '', $key ); |
939 | 939 | |
940 | 940 | // calculates field_id, removing 'filter_' and for '_' for advanced fields ( like name or checkbox ) |
941 | - if ( preg_match('/^[0-9_]+$/ism', $field_id ) ) { |
|
941 | + if ( preg_match( '/^[0-9_]+$/ism', $field_id ) ) { |
|
942 | 942 | $field_id = str_replace( '_', '.', $field_id ); |
943 | 943 | } |
944 | 944 | |
@@ -995,7 +995,7 @@ discard block |
||
995 | 995 | // form is in searchable fields |
996 | 996 | $found = false; |
997 | 997 | foreach ( $searchable_fields as $field ) { |
998 | - if ( $field_id == $field['field'] && $form->ID == $field['form_id'] ) { |
|
998 | + if ( $field_id == $field[ 'field' ] && $form->ID == $field[ 'form_id' ] ) { |
|
999 | 999 | $found = true; |
1000 | 1000 | break; |
1001 | 1001 | } |
@@ -1031,7 +1031,7 @@ discard block |
||
1031 | 1031 | |
1032 | 1032 | case 'select': |
1033 | 1033 | case 'radio': |
1034 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1034 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1035 | 1035 | break; |
1036 | 1036 | |
1037 | 1037 | case 'post_category': |
@@ -1045,7 +1045,7 @@ discard block |
||
1045 | 1045 | |
1046 | 1046 | foreach ( $value as $val ) { |
1047 | 1047 | $cat = get_term( $val, 'category' ); |
1048 | - $filter[] = array( |
|
1048 | + $filter[ ] = array( |
|
1049 | 1049 | 'key' => $field_id, |
1050 | 1050 | 'value' => esc_attr( $cat->name ) . ':' . $val, |
1051 | 1051 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1064,7 +1064,7 @@ discard block |
||
1064 | 1064 | $filter = array(); |
1065 | 1065 | |
1066 | 1066 | foreach ( $value as $val ) { |
1067 | - $filter[] = array( 'key' => $field_id, 'value' => $val ); |
|
1067 | + $filter[ ] = array( 'key' => $field_id, 'value' => $val ); |
|
1068 | 1068 | } |
1069 | 1069 | |
1070 | 1070 | break; |
@@ -1073,9 +1073,9 @@ discard block |
||
1073 | 1073 | // convert checkbox on/off into the correct search filter |
1074 | 1074 | if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field->inputs ) && ! empty( $form_field->choices ) ) { |
1075 | 1075 | foreach ( $form_field->inputs as $k => $input ) { |
1076 | - if ( $input['id'] == $field_id ) { |
|
1077 | - $filter['value'] = $form_field->choices[ $k ]['value']; |
|
1078 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1076 | + if ( $input[ 'id' ] == $field_id ) { |
|
1077 | + $filter[ 'value' ] = $form_field->choices[ $k ][ 'value' ]; |
|
1078 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1079 | 1079 | break; |
1080 | 1080 | } |
1081 | 1081 | } |
@@ -1085,7 +1085,7 @@ discard block |
||
1085 | 1085 | $filter = array(); |
1086 | 1086 | |
1087 | 1087 | foreach ( $value as $val ) { |
1088 | - $filter[] = array( |
|
1088 | + $filter[ ] = array( |
|
1089 | 1089 | 'key' => $field_id, |
1090 | 1090 | 'value' => $val, |
1091 | 1091 | 'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ), |
@@ -1106,9 +1106,9 @@ discard block |
||
1106 | 1106 | foreach ( $words as $word ) { |
1107 | 1107 | if ( ! empty( $word ) && strlen( $word ) > 1 ) { |
1108 | 1108 | // Keep the same key for each filter |
1109 | - $filter['value'] = $word; |
|
1109 | + $filter[ 'value' ] = $word; |
|
1110 | 1110 | // Add a search for the value |
1111 | - $filters[] = $filter; |
|
1111 | + $filters[ ] = $filter; |
|
1112 | 1112 | } |
1113 | 1113 | } |
1114 | 1114 | |
@@ -1122,19 +1122,19 @@ discard block |
||
1122 | 1122 | |
1123 | 1123 | foreach ( $searchable_fields as $searchable_field ) { |
1124 | 1124 | |
1125 | - if( $form_field->ID !== $searchable_field['field'] ) { |
|
1125 | + if ( $form_field->ID !== $searchable_field[ 'field' ] ) { |
|
1126 | 1126 | continue; |
1127 | 1127 | } |
1128 | 1128 | |
1129 | 1129 | // Only exact-match dropdowns, not text search |
1130 | - if( in_array( $searchable_field['input'], array( 'text', 'search' ), true ) ) { |
|
1130 | + if ( in_array( $searchable_field[ 'input' ], array( 'text', 'search' ), true ) ) { |
|
1131 | 1131 | continue; |
1132 | 1132 | } |
1133 | 1133 | |
1134 | 1134 | $input_id = gravityview_get_input_id_from_id( $form_field->ID ); |
1135 | 1135 | |
1136 | 1136 | if ( 4 === $input_id ) { |
1137 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1137 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1138 | 1138 | }; |
1139 | 1139 | } |
1140 | 1140 | } |
@@ -1161,12 +1161,12 @@ discard block |
||
1161 | 1161 | * @since 1.16.3 |
1162 | 1162 | * Safeguard until GF implements '<=' operator |
1163 | 1163 | */ |
1164 | - if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1164 | + if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) { |
|
1165 | 1165 | $operator = '<'; |
1166 | 1166 | $date = date( 'Y-m-d', strtotime( self::get_formatted_date( $date, 'Y-m-d', $date_format ) . ' +1 day' ) ); |
1167 | 1167 | } |
1168 | 1168 | |
1169 | - $filter[] = array( |
|
1169 | + $filter[ ] = array( |
|
1170 | 1170 | 'key' => $field_id, |
1171 | 1171 | 'value' => self::get_formatted_date( $date, 'Y-m-d', $date_format ), |
1172 | 1172 | 'operator' => $this->get_operator( $get, $key, array( $operator ), $operator ), |
@@ -1174,8 +1174,8 @@ discard block |
||
1174 | 1174 | } |
1175 | 1175 | } else { |
1176 | 1176 | $date = $value; |
1177 | - $filter['value'] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1178 | - $filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1177 | + $filter[ 'value' ] = self::get_formatted_date( $date, 'Y-m-d', $date_format ); |
|
1178 | + $filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' ); |
|
1179 | 1179 | } |
1180 | 1180 | |
1181 | 1181 | break; |
@@ -1206,7 +1206,7 @@ discard block |
||
1206 | 1206 | 'ymd_dot' => 'Y.m.d', |
1207 | 1207 | ); |
1208 | 1208 | |
1209 | - if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){ |
|
1209 | + if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) { |
|
1210 | 1210 | $format = $datepicker[ $field->dateFormat ]; |
1211 | 1211 | } |
1212 | 1212 | |
@@ -1243,7 +1243,7 @@ discard block |
||
1243 | 1243 | public function add_template_path( $file_paths ) { |
1244 | 1244 | |
1245 | 1245 | // Index 100 is the default GravityView template path. |
1246 | - $file_paths[102] = self::$file . 'templates/'; |
|
1246 | + $file_paths[ 102 ] = self::$file . 'templates/'; |
|
1247 | 1247 | |
1248 | 1248 | return $file_paths; |
1249 | 1249 | } |
@@ -1262,7 +1262,7 @@ discard block |
||
1262 | 1262 | $has_date = false; |
1263 | 1263 | |
1264 | 1264 | foreach ( $search_fields as $k => $field ) { |
1265 | - if ( in_array( $field['input'], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1265 | + if ( in_array( $field[ 'input' ], array( 'date', 'date_range', 'entry_date' ) ) ) { |
|
1266 | 1266 | $has_date = true; |
1267 | 1267 | break; |
1268 | 1268 | } |
@@ -1289,7 +1289,7 @@ discard block |
||
1289 | 1289 | } |
1290 | 1290 | |
1291 | 1291 | // get configured search fields |
1292 | - $search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : ''; |
|
1292 | + $search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : ''; |
|
1293 | 1293 | |
1294 | 1294 | if ( empty( $search_fields ) || ! is_array( $search_fields ) ) { |
1295 | 1295 | gravityview()->log->debug( 'No search fields configured for widget:', array( 'data' => $widget_args ) ); |
@@ -1305,40 +1305,40 @@ discard block |
||
1305 | 1305 | |
1306 | 1306 | $updated_field = $this->get_search_filter_details( $updated_field, $context ); |
1307 | 1307 | |
1308 | - switch ( $field['field'] ) { |
|
1308 | + switch ( $field[ 'field' ] ) { |
|
1309 | 1309 | |
1310 | 1310 | case 'search_all': |
1311 | - $updated_field['key'] = 'search_all'; |
|
1312 | - $updated_field['input'] = 'search_all'; |
|
1313 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1311 | + $updated_field[ 'key' ] = 'search_all'; |
|
1312 | + $updated_field[ 'input' ] = 'search_all'; |
|
1313 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' ); |
|
1314 | 1314 | break; |
1315 | 1315 | |
1316 | 1316 | case 'entry_date': |
1317 | - $updated_field['key'] = 'entry_date'; |
|
1318 | - $updated_field['input'] = 'entry_date'; |
|
1319 | - $updated_field['value'] = array( |
|
1317 | + $updated_field[ 'key' ] = 'entry_date'; |
|
1318 | + $updated_field[ 'input' ] = 'entry_date'; |
|
1319 | + $updated_field[ 'value' ] = array( |
|
1320 | 1320 | 'start' => $this->rgget_or_rgpost( 'gv_start' ), |
1321 | 1321 | 'end' => $this->rgget_or_rgpost( 'gv_end' ), |
1322 | 1322 | ); |
1323 | 1323 | break; |
1324 | 1324 | |
1325 | 1325 | case 'entry_id': |
1326 | - $updated_field['key'] = 'entry_id'; |
|
1327 | - $updated_field['input'] = 'entry_id'; |
|
1328 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1326 | + $updated_field[ 'key' ] = 'entry_id'; |
|
1327 | + $updated_field[ 'input' ] = 'entry_id'; |
|
1328 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' ); |
|
1329 | 1329 | break; |
1330 | 1330 | |
1331 | 1331 | case 'created_by': |
1332 | - $updated_field['key'] = 'created_by'; |
|
1333 | - $updated_field['name'] = 'gv_by'; |
|
1334 | - $updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1335 | - $updated_field['choices'] = self::get_created_by_choices( $view ); |
|
1332 | + $updated_field[ 'key' ] = 'created_by'; |
|
1333 | + $updated_field[ 'name' ] = 'gv_by'; |
|
1334 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' ); |
|
1335 | + $updated_field[ 'choices' ] = self::get_created_by_choices( $view ); |
|
1336 | 1336 | break; |
1337 | 1337 | |
1338 | 1338 | case 'is_approved': |
1339 | - $updated_field['key'] = 'is_approved'; |
|
1340 | - $updated_field['value'] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1341 | - $updated_field['choices'] = self::get_is_approved_choices(); |
|
1339 | + $updated_field[ 'key' ] = 'is_approved'; |
|
1340 | + $updated_field[ 'value' ] = $this->rgget_or_rgpost( 'filter_is_approved' ); |
|
1341 | + $updated_field[ 'choices' ] = self::get_is_approved_choices(); |
|
1342 | 1342 | break; |
1343 | 1343 | } |
1344 | 1344 | |
@@ -1359,16 +1359,16 @@ discard block |
||
1359 | 1359 | |
1360 | 1360 | $gravityview_view->permalink_fields = $this->add_no_permalink_fields( array(), $this, $widget_args ); |
1361 | 1361 | |
1362 | - $gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal'; |
|
1362 | + $gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal'; |
|
1363 | 1363 | |
1364 | 1364 | /** @since 1.14 */ |
1365 | - $gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any'; |
|
1365 | + $gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any'; |
|
1366 | 1366 | |
1367 | - $custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : ''; |
|
1367 | + $custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : ''; |
|
1368 | 1368 | |
1369 | 1369 | $gravityview_view->search_class = self::get_search_class( $custom_class ); |
1370 | 1370 | |
1371 | - $gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false; |
|
1371 | + $gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false; |
|
1372 | 1372 | |
1373 | 1373 | if ( $this->has_date_field( $search_fields ) ) { |
1374 | 1374 | // enqueue datepicker stuff only if needed! |
@@ -1390,10 +1390,10 @@ discard block |
||
1390 | 1390 | public static function get_search_class( $custom_class = '' ) { |
1391 | 1391 | $gravityview_view = GravityView_View::getInstance(); |
1392 | 1392 | |
1393 | - $search_class = 'gv-search-'.$gravityview_view->search_layout; |
|
1393 | + $search_class = 'gv-search-' . $gravityview_view->search_layout; |
|
1394 | 1394 | |
1395 | - if ( ! empty( $custom_class ) ) { |
|
1396 | - $search_class .= ' '.$custom_class; |
|
1395 | + if ( ! empty( $custom_class ) ) { |
|
1396 | + $search_class .= ' ' . $custom_class; |
|
1397 | 1397 | } |
1398 | 1398 | |
1399 | 1399 | /** |
@@ -1437,9 +1437,9 @@ discard block |
||
1437 | 1437 | |
1438 | 1438 | if ( ! $label ) { |
1439 | 1439 | |
1440 | - $label = isset( $form_field['label'] ) ? $form_field['label'] : ''; |
|
1440 | + $label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : ''; |
|
1441 | 1441 | |
1442 | - switch( $field['field'] ) { |
|
1442 | + switch ( $field[ 'field' ] ) { |
|
1443 | 1443 | case 'search_all': |
1444 | 1444 | $label = __( 'Search Entries:', 'gravityview' ); |
1445 | 1445 | break; |
@@ -1451,10 +1451,10 @@ discard block |
||
1451 | 1451 | break; |
1452 | 1452 | default: |
1453 | 1453 | // If this is a field input, not a field |
1454 | - if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) { |
|
1454 | + if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) { |
|
1455 | 1455 | |
1456 | 1456 | // Get the label for the field in question, which returns an array |
1457 | - $items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) ); |
|
1457 | + $items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) ); |
|
1458 | 1458 | |
1459 | 1459 | // Get the item with the `label` key |
1460 | 1460 | $values = wp_list_pluck( $items, 'label' ); |
@@ -1495,35 +1495,35 @@ discard block |
||
1495 | 1495 | $form = $gravityview_view->getForm(); |
1496 | 1496 | |
1497 | 1497 | // for advanced field ids (eg, first name / last name ) |
1498 | - $name = 'filter_' . str_replace( '.', '_', $field['field'] ); |
|
1498 | + $name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] ); |
|
1499 | 1499 | |
1500 | 1500 | // get searched value from $_GET/$_POST (string or array) |
1501 | 1501 | $value = $this->rgget_or_rgpost( $name ); |
1502 | 1502 | |
1503 | 1503 | // get form field details |
1504 | - $form_field = gravityview_get_field( $form, $field['field'] ); |
|
1504 | + $form_field = gravityview_get_field( $form, $field[ 'field' ] ); |
|
1505 | 1505 | |
1506 | 1506 | $filter = array( |
1507 | - 'key' => $field['field'], |
|
1507 | + 'key' => $field[ 'field' ], |
|
1508 | 1508 | 'name' => $name, |
1509 | 1509 | 'label' => self::get_field_label( $field, $form_field ), |
1510 | - 'input' => $field['input'], |
|
1510 | + 'input' => $field[ 'input' ], |
|
1511 | 1511 | 'value' => $value, |
1512 | - 'type' => $form_field['type'], |
|
1512 | + 'type' => $form_field[ 'type' ], |
|
1513 | 1513 | ); |
1514 | 1514 | |
1515 | 1515 | // collect choices |
1516 | - if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) { |
|
1517 | - $filter['choices'] = gravityview_get_terms_choices(); |
|
1518 | - } elseif ( ! empty( $form_field['choices'] ) ) { |
|
1519 | - $filter['choices'] = $form_field['choices']; |
|
1516 | + if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) { |
|
1517 | + $filter[ 'choices' ] = gravityview_get_terms_choices(); |
|
1518 | + } elseif ( ! empty( $form_field[ 'choices' ] ) ) { |
|
1519 | + $filter[ 'choices' ] = $form_field[ 'choices' ]; |
|
1520 | 1520 | } |
1521 | 1521 | |
1522 | - if ( 'date_range' === $field['input'] && empty( $value ) ) { |
|
1523 | - $filter['value'] = array( 'start' => '', 'end' => '' ); |
|
1522 | + if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) { |
|
1523 | + $filter[ 'value' ] = array( 'start' => '', 'end' => '' ); |
|
1524 | 1524 | } |
1525 | 1525 | |
1526 | - if ( ! empty( $filter['choices'] ) ) { |
|
1526 | + if ( ! empty( $filter[ 'choices' ] ) ) { |
|
1527 | 1527 | /** |
1528 | 1528 | * @filter `gravityview/search/sieve_choices` Only output used choices for this field. |
1529 | 1529 | * @param[in,out] bool Yes or no. |
@@ -1531,7 +1531,7 @@ discard block |
||
1531 | 1531 | * @param \GV\Context The context. |
1532 | 1532 | */ |
1533 | 1533 | if ( apply_filters( 'gravityview/search/sieve_choices', false, $field, $context ) ) { |
1534 | - $filter['choices'] = $this->sieve_filter_choices( $filter, $context ); |
|
1534 | + $filter[ 'choices' ] = $this->sieve_filter_choices( $filter, $context ); |
|
1535 | 1535 | } |
1536 | 1536 | } |
1537 | 1537 | |
@@ -1560,11 +1560,11 @@ discard block |
||
1560 | 1560 | * @return array The filter choices. |
1561 | 1561 | */ |
1562 | 1562 | private function sieve_filter_choices( $filter, $context ) { |
1563 | - if ( empty( $filter['key'] ) || empty( $filter['choices'] ) ) { |
|
1563 | + if ( empty( $filter[ 'key' ] ) || empty( $filter[ 'choices' ] ) ) { |
|
1564 | 1564 | return $filter; // @todo Populate plugins might give us empty choices |
1565 | 1565 | } |
1566 | 1566 | |
1567 | - if ( ! is_numeric( $filter['key'] ) ) { |
|
1567 | + if ( ! is_numeric( $filter[ 'key' ] ) ) { |
|
1568 | 1568 | return $filter; |
1569 | 1569 | } |
1570 | 1570 | |
@@ -1574,29 +1574,29 @@ discard block |
||
1574 | 1574 | |
1575 | 1575 | $table = GFFormsModel::get_entry_meta_table_name(); |
1576 | 1576 | |
1577 | - $key_like = $wpdb->esc_like( $filter['key'] ) . '.%'; |
|
1577 | + $key_like = $wpdb->esc_like( $filter[ 'key' ] ) . '.%'; |
|
1578 | 1578 | |
1579 | 1579 | switch ( \GV\Utils::get( $filter, 'type' ) ): |
1580 | 1580 | case 'post_category': |
1581 | 1581 | $choices = $wpdb->get_col( $wpdb->prepare( |
1582 | 1582 | "SELECT DISTINCT SUBSTRING_INDEX(meta_value, ':', 1) FROM $table WHERE (meta_key LIKE %s OR meta_key = %d) AND form_id = %d", |
1583 | - $key_like, $filter['key'], $form_id |
|
1583 | + $key_like, $filter[ 'key' ], $form_id |
|
1584 | 1584 | ) ); |
1585 | 1585 | break; |
1586 | 1586 | default: |
1587 | 1587 | $choices = $wpdb->get_col( $wpdb->prepare( |
1588 | 1588 | "SELECT DISTINCT meta_value FROM $table WHERE (meta_key LIKE %s OR meta_key = %d) AND form_id = %d", |
1589 | - $key_like, $filter['key'], $form_id |
|
1589 | + $key_like, $filter[ 'key' ], $form_id |
|
1590 | 1590 | ) ); |
1591 | 1591 | |
1592 | - if ( ( $field = gravityview_get_field( $form_id, $filter['key'] ) ) && 'json' === $field->storageType ) { |
|
1592 | + if ( ( $field = gravityview_get_field( $form_id, $filter[ 'key' ] ) ) && 'json' === $field->storageType ) { |
|
1593 | 1593 | $choices = array_map( 'json_decode', $choices ); |
1594 | 1594 | $_choices_array = array(); |
1595 | 1595 | foreach ( $choices as $choice ) { |
1596 | 1596 | if ( is_array( $choice ) ) { |
1597 | 1597 | $_choices_array = array_merge( $_choices_array, $choice ); |
1598 | 1598 | } else { |
1599 | - $_choices_array []= $choice; |
|
1599 | + $_choices_array [ ] = $choice; |
|
1600 | 1600 | } |
1601 | 1601 | } |
1602 | 1602 | $choices = array_unique( $_choices_array ); |
@@ -1606,9 +1606,9 @@ discard block |
||
1606 | 1606 | endswitch; |
1607 | 1607 | |
1608 | 1608 | $filter_choices = array(); |
1609 | - foreach ( $filter['choices'] as $choice ) { |
|
1610 | - if ( in_array( $choice['text'], $choices, true ) || in_array( $choice['value'], $choices, true ) ) { |
|
1611 | - $filter_choices[] = $choice; |
|
1609 | + foreach ( $filter[ 'choices' ] as $choice ) { |
|
1610 | + if ( in_array( $choice[ 'text' ], $choices, true ) || in_array( $choice[ 'value' ], $choices, true ) ) { |
|
1611 | + $filter_choices[ ] = $choice; |
|
1612 | 1612 | } |
1613 | 1613 | } |
1614 | 1614 | |
@@ -1643,7 +1643,7 @@ discard block |
||
1643 | 1643 | * @param \GV\View $view The view. |
1644 | 1644 | */ |
1645 | 1645 | $text = apply_filters( 'gravityview/search/created_by/text', $user->display_name, $user, $view ); |
1646 | - $choices[] = array( |
|
1646 | + $choices[ ] = array( |
|
1647 | 1647 | 'value' => $user->ID, |
1648 | 1648 | 'text' => $text, |
1649 | 1649 | ); |
@@ -1663,9 +1663,9 @@ discard block |
||
1663 | 1663 | |
1664 | 1664 | $choices = array(); |
1665 | 1665 | foreach ( GravityView_Entry_Approval_Status::get_all() as $status ) { |
1666 | - $choices[] = array( |
|
1667 | - 'value' => $status['value'], |
|
1668 | - 'text' => $status['label'], |
|
1666 | + $choices[ ] = array( |
|
1667 | + 'value' => $status[ 'value' ], |
|
1668 | + 'text' => $status[ 'label' ], |
|
1669 | 1669 | ); |
1670 | 1670 | } |
1671 | 1671 | |
@@ -1717,7 +1717,7 @@ discard block |
||
1717 | 1717 | */ |
1718 | 1718 | public function add_datepicker_js_dependency( $js_dependencies ) { |
1719 | 1719 | |
1720 | - $js_dependencies[] = 'jquery-ui-datepicker'; |
|
1720 | + $js_dependencies[ ] = 'jquery-ui-datepicker'; |
|
1721 | 1721 | |
1722 | 1722 | return $js_dependencies; |
1723 | 1723 | } |
@@ -1761,7 +1761,7 @@ discard block |
||
1761 | 1761 | 'isRTL' => is_rtl(), |
1762 | 1762 | ), $view_data ); |
1763 | 1763 | |
1764 | - $localizations['datepicker'] = $datepicker_settings; |
|
1764 | + $localizations[ 'datepicker' ] = $datepicker_settings; |
|
1765 | 1765 | |
1766 | 1766 | return $localizations; |
1767 | 1767 | |
@@ -1788,7 +1788,7 @@ discard block |
||
1788 | 1788 | * @return void |
1789 | 1789 | */ |
1790 | 1790 | private function maybe_enqueue_flexibility() { |
1791 | - if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
1791 | + if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) { |
|
1792 | 1792 | wp_enqueue_script( 'gv-flexibility' ); |
1793 | 1793 | } |
1794 | 1794 | } |
@@ -1810,7 +1810,7 @@ discard block |
||
1810 | 1810 | add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 ); |
1811 | 1811 | |
1812 | 1812 | $scheme = is_ssl() ? 'https://' : 'http://'; |
1813 | - wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1813 | + wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); |
|
1814 | 1814 | |
1815 | 1815 | /** |
1816 | 1816 | * @filter `gravityview_search_datepicker_class` |
@@ -1889,7 +1889,7 @@ discard block |
||
1889 | 1889 | public function add_preview_inputs() { |
1890 | 1890 | global $wp; |
1891 | 1891 | |
1892 | - if ( ! is_preview() || ! current_user_can( 'publish_gravityviews') ) { |
|
1892 | + if ( ! is_preview() || ! current_user_can( 'publish_gravityviews' ) ) { |
|
1893 | 1893 | return; |
1894 | 1894 | } |
1895 | 1895 | |
@@ -1941,7 +1941,7 @@ discard block |
||
1941 | 1941 | */ |
1942 | 1942 | class GravityView_Widget_Search_Author_GF_Query_Condition extends \GF_Query_Condition { |
1943 | 1943 | public function __construct( $filter, $view ) { |
1944 | - $this->value = $filter['value']; |
|
1944 | + $this->value = $filter[ 'value' ]; |
|
1945 | 1945 | $this->view = $view; |
1946 | 1946 | } |
1947 | 1947 | |
@@ -1973,11 +1973,11 @@ discard block |
||
1973 | 1973 | $conditions = array(); |
1974 | 1974 | |
1975 | 1975 | foreach ( $user_fields as $user_field ) { |
1976 | - $conditions[] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1976 | + $conditions[ ] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1977 | 1977 | } |
1978 | 1978 | |
1979 | 1979 | foreach ( $user_meta_fields as $meta_field ) { |
1980 | - $conditions[] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1980 | + $conditions[ ] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' ); |
|
1981 | 1981 | } |
1982 | 1982 | |
1983 | 1983 | $conditions = '(' . implode( ' OR ', $conditions ) . ')'; |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | public function __destruct() { |
95 | - remove_filter( $this->filter_prefix . '_get_template_part', $this->_add_id_specific_templates_callback );; |
|
95 | + remove_filter( $this->filter_prefix . '_get_template_part', $this->_add_id_specific_templates_callback ); ; |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -175,59 +175,59 @@ discard block |
||
175 | 175 | |
176 | 176 | if ( $is_view && $post ) { |
177 | 177 | if ( $field_type ) { |
178 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $field_type, $slug_name ); |
|
179 | - $inputType && $specifics []= sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $inputType, $slug_name ); |
|
180 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $field_type ); |
|
181 | - $inputType && $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $inputType ); |
|
182 | - $specifics []= sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $field_type, $slug_name ); |
|
183 | - $inputType && $specifics []= sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $inputType, $slug_name ); |
|
184 | - $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $field_type ); |
|
185 | - $inputType && $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $inputType ); |
|
178 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $field_type, $slug_name ); |
|
179 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s-%s.php', $slug_dir, $post->ID, $view_id, $inputType, $slug_name ); |
|
180 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $field_type ); |
|
181 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $inputType ); |
|
182 | + $specifics [ ] = sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $field_type, $slug_name ); |
|
183 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-field-%s-%s.php', $slug_dir, $post->ID, $inputType, $slug_name ); |
|
184 | + $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $field_type ); |
|
185 | + $inputType && $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $inputType ); |
|
186 | 186 | } |
187 | 187 | |
188 | - $specifics []= sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $slug_name ); |
|
189 | - $specifics []= sprintf( '%spost-%d-view-%d-field.php', $slug_dir, $post->ID, $view_id ); |
|
190 | - $specifics []= sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $slug_name ); |
|
191 | - $specifics []= sprintf( '%spost-%d-field.php', $slug_dir, $post->ID ); |
|
188 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field-%s.php', $slug_dir, $post->ID, $view_id, $slug_name ); |
|
189 | + $specifics [ ] = sprintf( '%spost-%d-view-%d-field.php', $slug_dir, $post->ID, $view_id ); |
|
190 | + $specifics [ ] = sprintf( '%spost-%d-field-%s.php', $slug_dir, $post->ID, $slug_name ); |
|
191 | + $specifics [ ] = sprintf( '%spost-%d-field.php', $slug_dir, $post->ID ); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** Field-specific */ |
195 | 195 | if ( $field_id && $form_id ) { |
196 | 196 | |
197 | 197 | if ( $field_id ) { |
198 | - $specifics []= sprintf( '%sform-%d-field-%d-%s.php', $slug_dir, $form_id, $field_id, $slug_name ); |
|
199 | - $specifics []= sprintf( '%sform-%d-field-%d.php', $slug_dir, $form_id, $field_id ); |
|
198 | + $specifics [ ] = sprintf( '%sform-%d-field-%d-%s.php', $slug_dir, $form_id, $field_id, $slug_name ); |
|
199 | + $specifics [ ] = sprintf( '%sform-%d-field-%d.php', $slug_dir, $form_id, $field_id ); |
|
200 | 200 | |
201 | 201 | if ( $view_id ) { |
202 | - $specifics []= sprintf( '%sview-%d-field-%d.php', $slug_dir, $view_id, $field_id ); |
|
202 | + $specifics [ ] = sprintf( '%sview-%d-field-%d.php', $slug_dir, $view_id, $field_id ); |
|
203 | 203 | } |
204 | 204 | } |
205 | 205 | |
206 | 206 | if ( $field_type ) { |
207 | - $specifics []= sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $field_type, $slug_name ); |
|
208 | - $inputType && $specifics []= sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $inputType, $slug_name ); |
|
209 | - $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $field_type ); |
|
210 | - $inputType && $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $inputType ); |
|
211 | - |
|
212 | - $specifics []= sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $field_type, $slug_name ); |
|
213 | - $inputType && $specifics []= sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $inputType, $slug_name ); |
|
214 | - $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $field_type ); |
|
215 | - $inputType && $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $inputType ); |
|
216 | - |
|
217 | - $specifics []= sprintf( '%sfield-%s-%s.php', $slug_dir, $field_type, $slug_name ); |
|
218 | - $inputType && $specifics []= sprintf( '%sfield-%s-%s.php', $slug_dir, $inputType, $slug_name ); |
|
219 | - $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $field_type ); |
|
220 | - $inputType && $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $inputType ); |
|
207 | + $specifics [ ] = sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $field_type, $slug_name ); |
|
208 | + $inputType && $specifics [ ] = sprintf( '%sform-%d-field-%s-%s.php', $slug_dir, $form_id, $inputType, $slug_name ); |
|
209 | + $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $field_type ); |
|
210 | + $inputType && $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $inputType ); |
|
211 | + |
|
212 | + $specifics [ ] = sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $field_type, $slug_name ); |
|
213 | + $inputType && $specifics [ ] = sprintf( '%sview-%d-field-%s-%s.php', $slug_dir, $view_id, $inputType, $slug_name ); |
|
214 | + $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $field_type ); |
|
215 | + $inputType && $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $inputType ); |
|
216 | + |
|
217 | + $specifics [ ] = sprintf( '%sfield-%s-%s.php', $slug_dir, $field_type, $slug_name ); |
|
218 | + $inputType && $specifics [ ] = sprintf( '%sfield-%s-%s.php', $slug_dir, $inputType, $slug_name ); |
|
219 | + $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $field_type ); |
|
220 | + $inputType && $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $inputType ); |
|
221 | 221 | } |
222 | 222 | } |
223 | 223 | |
224 | 224 | if ( $form_id ) { |
225 | 225 | /** Generic field templates */ |
226 | - $specifics []= sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $slug_name ); |
|
227 | - $specifics []= sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $slug_name ); |
|
226 | + $specifics [ ] = sprintf( '%sview-%d-field-%s.php', $slug_dir, $view_id, $slug_name ); |
|
227 | + $specifics [ ] = sprintf( '%sform-%d-field-%s.php', $slug_dir, $form_id, $slug_name ); |
|
228 | 228 | |
229 | - $specifics []= sprintf( '%sview-%d-field.php', $slug_dir, $view_id ); |
|
230 | - $specifics []= sprintf( '%sform-%d-field.php', $slug_dir, $form_id ); |
|
229 | + $specifics [ ] = sprintf( '%sview-%d-field.php', $slug_dir, $view_id ); |
|
230 | + $specifics [ ] = sprintf( '%sform-%d-field.php', $slug_dir, $form_id ); |
|
231 | 231 | } |
232 | 232 | |
233 | 233 | /** |
@@ -235,12 +235,12 @@ discard block |
||
235 | 235 | * Ignore some types that conflict. |
236 | 236 | */ |
237 | 237 | if ( ! in_array( $field_type, array( 'notes' ) ) ) { |
238 | - $specifics []= sprintf( '%s.php', $field_type ); |
|
239 | - $specifics []= sprintf( 'fields/%s.php', $field_type ); |
|
238 | + $specifics [ ] = sprintf( '%s.php', $field_type ); |
|
239 | + $specifics [ ] = sprintf( 'fields/%s.php', $field_type ); |
|
240 | 240 | } |
241 | 241 | |
242 | - $specifics []= sprintf( '%sfield-%s.php', $slug_dir, $slug_name ); |
|
243 | - $specifics []= sprintf( '%sfield.php', $slug_dir ); |
|
242 | + $specifics [ ] = sprintf( '%sfield-%s.php', $slug_dir, $slug_name ); |
|
243 | + $specifics [ ] = sprintf( '%sfield.php', $slug_dir ); |
|
244 | 244 | |
245 | 245 | return array_merge( $specifics, $templates ); |
246 | 246 | }; |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | /** Prevent any PHP warnings that may be generated. */ |
275 | 275 | ob_start(); |
276 | 276 | |
277 | - $display_value = \GFCommon::get_lead_field_display( $this->field->field, $value, $entry['currency'], false, 'html' ); |
|
277 | + $display_value = \GFCommon::get_lead_field_display( $this->field->field, $value, $entry[ 'currency' ], false, 'html' ); |
|
278 | 278 | |
279 | 279 | if ( $errors = ob_get_clean() ) { |
280 | 280 | gravityview()->log->error( 'Errors when calling GFCommon::get_lead_field_display()', array( 'data' => $errors ) ); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | ); |
101 | 101 | |
102 | 102 | if ( ! empty( $action ) ) { |
103 | - $settings['edd_action'] = esc_attr( $action ); |
|
103 | + $settings[ 'edd_action' ] = esc_attr( $action ); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | return array_map( 'urlencode', $settings ); |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | 'format' => 'json', |
157 | 157 | ) ); |
158 | 158 | |
159 | - if ( $is_ajax && empty( $data['license'] ) ) { |
|
159 | + if ( $is_ajax && empty( $data[ 'license' ] ) ) { |
|
160 | 160 | die( -1 ); |
161 | 161 | } |
162 | 162 | |
@@ -184,12 +184,12 @@ discard block |
||
184 | 184 | |
185 | 185 | $json = json_encode( $license_data ); |
186 | 186 | |
187 | - $update_license = Utils::get( $data, 'update' ) || 'gravityview_license' === Utils::_POST('action'); |
|
187 | + $update_license = Utils::get( $data, 'update' ) || 'gravityview_license' === Utils::_POST( 'action' ); |
|
188 | 188 | |
189 | 189 | $is_check_action_button = ( 'check_license' === Utils::get( $data, 'edd_action' ) && defined( 'DOING_AJAX' ) && DOING_AJAX ); |
190 | 190 | |
191 | 191 | if ( 'deactivate_license' === Utils::get( $data, 'edd_action' ) ) { |
192 | - do_action('gravityview/admin_installer/delete_downloads_data', true ); |
|
192 | + do_action( 'gravityview/admin_installer/delete_downloads_data', true ); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | if ( $is_check_action_button ) { |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | // most likely a mistake. |
202 | 202 | } else if ( $license_data->license !== 'failed' && $update_license ) { |
203 | 203 | |
204 | - if ( ! empty( $data['field_id'] ) ) { |
|
204 | + if ( ! empty( $data[ 'field_id' ] ) ) { |
|
205 | 205 | set_transient( self::status_transient_key, $license_data, DAY_IN_SECONDS ); |
206 | 206 | } |
207 | 207 | |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | if ( empty( $license_data ) ) { |
229 | 229 | $message = ''; |
230 | 230 | } else { |
231 | - if( ! empty( $license_data->error ) ) { |
|
231 | + if ( ! empty( $license_data->error ) ) { |
|
232 | 232 | $class = 'error'; |
233 | 233 | $string_key = $license_data->error; |
234 | 234 | } else { $class = $license_data->license; |
@@ -254,17 +254,17 @@ discard block |
||
254 | 254 | */ |
255 | 255 | public function license_details( $response = array() ) { |
256 | 256 | |
257 | - $response = (array) $response; |
|
257 | + $response = (array)$response; |
|
258 | 258 | |
259 | 259 | $return = ''; |
260 | 260 | $wrapper = '<span class="gv-license-details" aria-live="polite" aria-busy="false">%s</span>'; |
261 | 261 | |
262 | - if ( ! empty( $response['license_key'] ) ) { |
|
262 | + if ( ! empty( $response[ 'license_key' ] ) ) { |
|
263 | 263 | $return .= '<h3>' . esc_html__( 'License Details:', 'gravityview' ) . '</h3>'; |
264 | 264 | |
265 | 265 | if ( in_array( Utils::get( $response, 'license' ), array( 'invalid', 'deactivated' ) ) ) { |
266 | - $return .= $this->strings( $response['license'], $response ); |
|
267 | - } elseif ( ! empty( $response['license_name'] ) ) { |
|
266 | + $return .= $this->strings( $response[ 'license' ], $response ); |
|
267 | + } elseif ( ! empty( $response[ 'license_name' ] ) ) { |
|
268 | 268 | $response_keys = array( |
269 | 269 | 'license_name' => '', |
270 | 270 | 'license_limit' => '', |
@@ -278,21 +278,21 @@ discard block |
||
278 | 278 | // Make sure all the keys are set |
279 | 279 | $response = wp_parse_args( $response, $response_keys ); |
280 | 280 | |
281 | - $login_link = sprintf( '<a href="%s" class="howto" rel="external">%s</a>', esc_url( sprintf( 'https://gravityview.co/wp-login.php?username=%s', $response['customer_email'] ) ), esc_html__( 'Access your GravityView account', 'gravityview' ) ); |
|
282 | - $local_text = ( ! empty( $response['is_local'] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' ); |
|
283 | - $license_limit = empty( $response['license_limit'] ) ? __( 'Unlimited', 'gravityview' ) : (int) $response['license_limit']; |
|
281 | + $login_link = sprintf( '<a href="%s" class="howto" rel="external">%s</a>', esc_url( sprintf( 'https://gravityview.co/wp-login.php?username=%s', $response[ 'customer_email' ] ) ), esc_html__( 'Access your GravityView account', 'gravityview' ) ); |
|
282 | + $local_text = ( ! empty( $response[ 'is_local' ] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' ); |
|
283 | + $license_limit = empty( $response[ 'license_limit' ] ) ? __( 'Unlimited', 'gravityview' ) : (int)$response[ 'license_limit' ]; |
|
284 | 284 | |
285 | - $details = array( |
|
286 | - 'license' => sprintf( esc_html__( 'License level: %s', 'gravityview' ), esc_html( $response['license_name'] ), esc_html( $response['license_limit'] ) ), |
|
287 | - 'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), esc_html__( $response['customer_name'], 'gravityview' ), esc_html__( $response['customer_email'], 'gravityview' ) ) . $login_link, |
|
288 | - 'activations' => sprintf( esc_html__( 'Activations: %d of %s sites', 'gravityview' ), intval( $response['site_count'] ), esc_html( $license_limit ) ) . $local_text, |
|
289 | - 'expires' => 'lifetime' === $response['expires'] ? '' : sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response['expires'] ) - DAY_IN_SECONDS ) ), |
|
290 | - 'upgrade' => $this->get_upgrade_html( $response['upgrades'] ), |
|
285 | + $details = array( |
|
286 | + 'license' => sprintf( esc_html__( 'License level: %s', 'gravityview' ), esc_html( $response[ 'license_name' ] ), esc_html( $response[ 'license_limit' ] ) ), |
|
287 | + 'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), esc_html__( $response[ 'customer_name' ], 'gravityview' ), esc_html__( $response[ 'customer_email' ], 'gravityview' ) ) . $login_link, |
|
288 | + 'activations' => sprintf( esc_html__( 'Activations: %d of %s sites', 'gravityview' ), intval( $response[ 'site_count' ] ), esc_html( $license_limit ) ) . $local_text, |
|
289 | + 'expires' => 'lifetime' === $response[ 'expires' ] ? '' : sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response[ 'expires' ] ) - DAY_IN_SECONDS ) ), |
|
290 | + 'upgrade' => $this->get_upgrade_html( $response[ 'upgrades' ] ), |
|
291 | 291 | ); |
292 | 292 | |
293 | - if ( ! empty( $response['error'] ) && 'expired' === $response['error'] ) { |
|
294 | - unset( $details['upgrade'] ); |
|
295 | - $details['expires'] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>'; |
|
293 | + if ( ! empty( $response[ 'error' ] ) && 'expired' === $response[ 'error' ] ) { |
|
294 | + unset( $details[ 'upgrade' ] ); |
|
295 | + $details[ 'expires' ] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>'; |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | $return .= '<ul><li>' . implode( '</li><li>', array_filter( $details ) ) . '</li></ul>'; |
@@ -318,20 +318,20 @@ discard block |
||
318 | 318 | if ( ! empty( $upgrades ) ) { |
319 | 319 | |
320 | 320 | $locale_parts = explode( '_', get_locale() ); |
321 | - $is_english = ( 'en' === $locale_parts[0] ); |
|
321 | + $is_english = ( 'en' === $locale_parts[ 0 ] ); |
|
322 | 322 | |
323 | 323 | $output .= '<h4>' . esc_html__( 'Upgrades available:', 'gravityview' ) . '</h4>'; |
324 | 324 | $output .= '<ul class="ul-disc">'; |
325 | 325 | |
326 | 326 | foreach ( $upgrades as $upgrade_id => $upgrade ) { |
327 | - $upgrade = (object) $upgrade; |
|
327 | + $upgrade = (object)$upgrade; |
|
328 | 328 | |
329 | 329 | $anchor_text = sprintf( esc_html_x( 'Upgrade to %1$s for %2$s', '1: GravityView upgrade name, 2: Cost of upgrade', 'gravityview' ), esc_attr( $upgrade->name ), esc_attr( $upgrade->price ) ); |
330 | 330 | |
331 | 331 | if ( $is_english && isset( $upgrade->description ) ) { |
332 | 332 | $message = esc_html( $upgrade->description ); |
333 | 333 | } else { |
334 | - switch( $upgrade->price_id ) { |
|
334 | + switch ( $upgrade->price_id ) { |
|
335 | 335 | // Interstellar |
336 | 336 | case 1: |
337 | 337 | default: |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | 'invalid' => esc_html__( 'The license key entered is invalid.', 'gravityview' ), |
391 | 391 | 'missing' => esc_html__( 'Invalid license key.', 'gravityview' ), |
392 | 392 | 'revoked' => esc_html__( 'This license key has been revoked.', 'gravityview' ), |
393 | - 'expired' => sprintf( esc_html__( 'This license key has expired. %sRenew your license on the GravityView website%s to receive updates and support.', 'gravityview' ), '<a href="'. esc_url( $this->get_license_renewal_url( $license_data ) ) .'">', '</a>' ), |
|
393 | + 'expired' => sprintf( esc_html__( 'This license key has expired. %sRenew your license on the GravityView website%s to receive updates and support.', 'gravityview' ), '<a href="' . esc_url( $this->get_license_renewal_url( $license_data ) ) . '">', '</a>' ), |
|
394 | 394 | 'capability' => esc_html__( 'You don\'t have the ability to edit plugin settings.', 'gravityview' ), |
395 | 395 | |
396 | 396 | 'verifying_license' => esc_html__( 'Verifying license…', 'gravityview' ), |
@@ -419,7 +419,7 @@ discard block |
||
419 | 419 | |
420 | 420 | if ( ! empty( $license_data->renewal_url ) ) { |
421 | 421 | $renew_license_url = $license_data->renewal_url; |
422 | - } elseif( ! empty( $license_data->license_key ) ) { |
|
422 | + } elseif ( ! empty( $license_data->license_key ) ) { |
|
423 | 423 | $renew_license_url = sprintf( 'https://gravityview.co/checkout/?download_id=17&edd_license_key=%s', $license_data->license_key ); |
424 | 424 | } else { |
425 | 425 | $renew_license_url = 'https://gravityview.co/account/'; |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | * @return array|\WP_Error |
437 | 437 | */ |
438 | 438 | private function _license_get_remote_response( $data, $license = '' ) { |
439 | - $api_params = $this->_get_edd_settings( $data['edd_action'], $license ); |
|
439 | + $api_params = $this->_get_edd_settings( $data[ 'edd_action' ], $license ); |
|
440 | 440 | |
441 | 441 | $url = add_query_arg( $api_params, self::url ); |
442 | 442 | |
@@ -476,9 +476,9 @@ discard block |
||
476 | 476 | private function license_call_update_settings( $license_data, $data ) { |
477 | 477 | $settings = array(); |
478 | 478 | |
479 | - $settings['license_key'] = $license_data->license_key = trim( $data['license'] ); |
|
480 | - $settings['license_key_status'] = $license_data->license; |
|
481 | - $settings['license_key_response'] = (array)$license_data; |
|
479 | + $settings[ 'license_key' ] = $license_data->license_key = trim( $data[ 'license' ] ); |
|
480 | + $settings[ 'license_key_status' ] = $license_data->license; |
|
481 | + $settings[ 'license_key_response' ] = (array)$license_data; |
|
482 | 482 | |
483 | 483 | $this->settings->set( $settings ); |
484 | 484 | } |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | |
494 | 494 | if ( ! empty( $key ) ) { |
495 | 495 | $response = $this->settings->get( 'license_key_response' ); |
496 | - $response = is_array( $response ) ? (object) $response : json_decode( $response ); |
|
496 | + $response = is_array( $response ) ? (object)$response : json_decode( $response ); |
|
497 | 497 | } else { |
498 | 498 | $response = array(); |
499 | 499 | } |
@@ -535,11 +535,11 @@ discard block |
||
535 | 535 | |
536 | 536 | $submit = '<div class="gv-edd-button-wrapper">'; |
537 | 537 | foreach ( $fields as $field ) { |
538 | - $field['type'] = 'button'; |
|
539 | - $field['class'] = isset( $field['class'] ) ? $field['class'] . ' '. $class : $class; |
|
540 | - $field['style'] = 'margin-left: 10px;'; |
|
541 | - if( $disabled_attribute ) { |
|
542 | - $field['disabled'] = $disabled_attribute; |
|
538 | + $field[ 'type' ] = 'button'; |
|
539 | + $field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] . ' ' . $class : $class; |
|
540 | + $field[ 'style' ] = 'margin-left: 10px;'; |
|
541 | + if ( $disabled_attribute ) { |
|
542 | + $field[ 'disabled' ] = $disabled_attribute; |
|
543 | 543 | } |
544 | 544 | $submit .= $this->settings->as_html( $field, $echo ); |
545 | 545 | } |
@@ -618,7 +618,7 @@ discard block |
||
618 | 618 | 'url' => home_url(), |
619 | 619 | 'site_data' => $this->get_site_data(), |
620 | 620 | ), |
621 | - )); |
|
621 | + ) ); |
|
622 | 622 | |
623 | 623 | // make sure the response came back okay |
624 | 624 | if ( is_wp_error( $response ) ) { |
@@ -649,45 +649,45 @@ discard block |
||
649 | 649 | $theme_data = wp_get_theme(); |
650 | 650 | $theme = $theme_data->Name . ' ' . $theme_data->Version; |
651 | 651 | |
652 | - $data['gv_version'] = Plugin::$version; |
|
653 | - $data['php_version'] = phpversion(); |
|
654 | - $data['wp_version'] = get_bloginfo( 'version' ); |
|
655 | - $data['gf_version'] = \GFForms::$version; |
|
656 | - $data['server'] = Utils::get( $_SERVER, 'SERVER_SOFTWARE' ); |
|
657 | - $data['multisite'] = is_multisite(); |
|
658 | - $data['theme'] = $theme; |
|
659 | - $data['url'] = home_url(); |
|
660 | - $data['license_key'] = $this->settings->get( 'license_key' ); |
|
661 | - $data['beta'] = $this->settings->get( 'beta' ); |
|
652 | + $data[ 'gv_version' ] = Plugin::$version; |
|
653 | + $data[ 'php_version' ] = phpversion(); |
|
654 | + $data[ 'wp_version' ] = get_bloginfo( 'version' ); |
|
655 | + $data[ 'gf_version' ] = \GFForms::$version; |
|
656 | + $data[ 'server' ] = Utils::get( $_SERVER, 'SERVER_SOFTWARE' ); |
|
657 | + $data[ 'multisite' ] = is_multisite(); |
|
658 | + $data[ 'theme' ] = $theme; |
|
659 | + $data[ 'url' ] = home_url(); |
|
660 | + $data[ 'license_key' ] = $this->settings->get( 'license_key' ); |
|
661 | + $data[ 'beta' ] = $this->settings->get( 'beta' ); |
|
662 | 662 | |
663 | 663 | // View Data |
664 | 664 | $gravityview_posts = wp_count_posts( 'gravityview', 'readable' ); |
665 | 665 | |
666 | - $data['view_count'] = null; |
|
667 | - $data['view_first'] = null; |
|
668 | - $data['view_latest'] = null; |
|
666 | + $data[ 'view_count' ] = null; |
|
667 | + $data[ 'view_first' ] = null; |
|
668 | + $data[ 'view_latest' ] = null; |
|
669 | 669 | |
670 | 670 | if ( $gravityview_posts->publish ) { |
671 | - $data['view_count'] = $gravityview_posts->publish; |
|
671 | + $data[ 'view_count' ] = $gravityview_posts->publish; |
|
672 | 672 | |
673 | 673 | $first = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=ASC' ); |
674 | 674 | $latest = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=DESC' ); |
675 | 675 | |
676 | 676 | if ( $first = array_shift( $first ) ) { |
677 | - $data['view_first'] = $first->post_date; |
|
677 | + $data[ 'view_first' ] = $first->post_date; |
|
678 | 678 | } |
679 | 679 | if ( $latest = array_pop( $latest ) ) { |
680 | - $data['view_latest'] = $latest->post_date; |
|
680 | + $data[ 'view_latest' ] = $latest->post_date; |
|
681 | 681 | } |
682 | 682 | } |
683 | 683 | |
684 | 684 | // Form counts |
685 | 685 | if ( class_exists( 'GFFormsModel' ) ) { |
686 | 686 | $form_data = \GFFormsModel::get_form_count(); |
687 | - $data['forms_total'] = Utils::get( $form_data, 'total', 0 ); |
|
688 | - $data['forms_active'] = Utils::get( $form_data, 'active', 0 ); |
|
689 | - $data['forms_inactive'] = Utils::get( $form_data, 'inactive', 0 ); |
|
690 | - $data['forms_trash'] = Utils::get( $form_data, 'inactive', 0 ); |
|
687 | + $data[ 'forms_total' ] = Utils::get( $form_data, 'total', 0 ); |
|
688 | + $data[ 'forms_active' ] = Utils::get( $form_data, 'active', 0 ); |
|
689 | + $data[ 'forms_inactive' ] = Utils::get( $form_data, 'inactive', 0 ); |
|
690 | + $data[ 'forms_trash' ] = Utils::get( $form_data, 'inactive', 0 ); |
|
691 | 691 | } |
692 | 692 | |
693 | 693 | // Retrieve current plugin information |
@@ -695,13 +695,13 @@ discard block |
||
695 | 695 | include ABSPATH . '/wp-admin/includes/plugin.php'; |
696 | 696 | } |
697 | 697 | |
698 | - $data['integrations'] = self::get_related_plugins_and_extensions(); |
|
699 | - $data['active_plugins'] = get_option( 'active_plugins', array() ); |
|
700 | - $data['inactive_plugins'] = array(); |
|
701 | - $data['locale'] = get_locale(); |
|
698 | + $data[ 'integrations' ] = self::get_related_plugins_and_extensions(); |
|
699 | + $data[ 'active_plugins' ] = get_option( 'active_plugins', array() ); |
|
700 | + $data[ 'inactive_plugins' ] = array(); |
|
701 | + $data[ 'locale' ] = get_locale(); |
|
702 | 702 | |
703 | 703 | // Validate request on the GV server |
704 | - $data['hash'] = 'gv_version.url.locale:' . sha1( $data['gv_version'] . $data['url'] . $data['locale'] ); |
|
704 | + $data[ 'hash' ] = 'gv_version.url.locale:' . sha1( $data[ 'gv_version' ] . $data[ 'url' ] . $data[ 'locale' ] ); |
|
705 | 705 | |
706 | 706 | return $data; |
707 | 707 | } |
@@ -731,7 +731,7 @@ discard block |
||
731 | 731 | |
732 | 732 | $plugin_data = get_plugin_data( $active_plugin ); |
733 | 733 | |
734 | - $extensions[] = sprintf( '%s %s', $plugin_data['Name'], $plugin_data['Version'] ); |
|
734 | + $extensions[ ] = sprintf( '%s %s', $plugin_data[ 'Name' ], $plugin_data[ 'Version' ] ); |
|
735 | 735 | } |
736 | 736 | |
737 | 737 | if ( ! empty( $extensions ) ) { |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $supports = array( 'title', 'revisions' ); |
126 | 126 | |
127 | 127 | if ( $is_hierarchical ) { |
128 | - $supports[] = 'page-attributes'; |
|
128 | + $supports[ ] = 'page-attributes'; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -227,11 +227,11 @@ discard block |
||
227 | 227 | $rule = array( sprintf( '%s/([^/]+)/csv/?', $slug ), 'index.php?gravityview=$matches[1]&csv=1', 'top' ); |
228 | 228 | |
229 | 229 | add_filter( 'query_vars', function( $query_vars ) { |
230 | - $query_vars[] = 'csv'; |
|
230 | + $query_vars[ ] = 'csv'; |
|
231 | 231 | return $query_vars; |
232 | 232 | } ); |
233 | 233 | |
234 | - if ( ! isset( $wp_rewrite->extra_rules_top[ $rule[0] ] ) ) { |
|
234 | + if ( ! isset( $wp_rewrite->extra_rules_top[ $rule[ 0 ] ] ) ) { |
|
235 | 235 | call_user_func_array( 'add_rewrite_rule', $rule ); |
236 | 236 | } |
237 | 237 | } |
@@ -308,13 +308,13 @@ discard block |
||
308 | 308 | return $content; |
309 | 309 | } |
310 | 310 | |
311 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
311 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
312 | 312 | |
313 | 313 | /** |
314 | 314 | * Editing a single entry. |
315 | 315 | */ |
316 | 316 | if ( $entry = $request->is_edit_entry( $view->form ? $view->form->ID : 0 ) ) { |
317 | - if ( $entry['status'] != 'active' ) { |
|
317 | + if ( $entry[ 'status' ] != 'active' ) { |
|
318 | 318 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
319 | 319 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
320 | 320 | } |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | } |
326 | 326 | |
327 | 327 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
328 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
328 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
329 | 329 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
330 | 330 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
331 | 331 | } |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | |
349 | 349 | foreach ( $entryset as $e ) { |
350 | 350 | |
351 | - if ( 'active' !== $e['status'] ) { |
|
351 | + if ( 'active' !== $e[ 'status' ] ) { |
|
352 | 352 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $e->ID ) ); |
353 | 353 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
354 | 354 | } |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | } |
360 | 360 | |
361 | 361 | if ( $show_only_approved && ! $is_admin_and_can_view ) { |
362 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
362 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
363 | 363 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $e->ID ) ); |
364 | 364 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
365 | 365 | } |
@@ -534,7 +534,7 @@ discard block |
||
534 | 534 | $join_column = is_numeric( $join_column ) ? GF_Field::by_id( $join, $join_column ) : Internal_Field::by_id( $join_column ); |
535 | 535 | $join_on_column = is_numeric( $join_on_column ) ? GF_Field::by_id( $join_on, $join_on_column ) : Internal_Field::by_id( $join_on_column ); |
536 | 536 | |
537 | - $joins [] = new Join( $join, $join_column, $join_on, $join_on_column ); |
|
537 | + $joins [ ] = new Join( $join, $join_column, $join_on, $join_on_column ); |
|
538 | 538 | } |
539 | 539 | |
540 | 540 | return $joins; |
@@ -629,13 +629,13 @@ discard block |
||
629 | 629 | } |
630 | 630 | |
631 | 631 | foreach ( $_fields as $field ) { |
632 | - if ( ! empty( $field['unions'] ) ) { |
|
633 | - foreach ( $field['unions'] as $form_id => $field_id ) { |
|
632 | + if ( ! empty( $field[ 'unions' ] ) ) { |
|
633 | + foreach ( $field[ 'unions' ] as $form_id => $field_id ) { |
|
634 | 634 | if ( ! isset( $unions[ $form_id ] ) ) { |
635 | 635 | $unions[ $form_id ] = array(); |
636 | 636 | } |
637 | 637 | |
638 | - $unions[ $form_id ][ $field['id'] ] = |
|
638 | + $unions[ $form_id ][ $field[ 'id' ] ] = |
|
639 | 639 | is_numeric( $field_id ) ? \GV\GF_Field::by_id( \GV\GF_Form::by_id( $form_id ), $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
640 | 640 | } |
641 | 641 | } |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | if ( ! $view->form ) { |
685 | 685 | gravityview()->log->error( 'View #{view_id} tried attaching non-existent Form #{form_id} to it.', array( |
686 | 686 | 'view_id' => $view->ID, |
687 | - 'form_id' => $view->_gravityview_form_id ? : 0, |
|
687 | + 'form_id' => $view->_gravityview_form_id ?: 0, |
|
688 | 688 | ) ); |
689 | 689 | } |
690 | 690 | |
@@ -923,11 +923,11 @@ discard block |
||
923 | 923 | * Remove multiple sorting before calling legacy filters. |
924 | 924 | * This allows us to fake it till we make it. |
925 | 925 | */ |
926 | - if ( ! empty( $parameters['sort_field'] ) && is_array( $parameters['sort_field'] ) ) { |
|
926 | + if ( ! empty( $parameters[ 'sort_field' ] ) && is_array( $parameters[ 'sort_field' ] ) ) { |
|
927 | 927 | $has_multisort = true; |
928 | - $parameters['sort_field'] = reset( $parameters['sort_field'] ); |
|
929 | - if ( ! empty( $parameters['sort_direction'] ) && is_array( $parameters['sort_direction'] ) ) { |
|
930 | - $parameters['sort_direction'] = reset( $parameters['sort_direction'] ); |
|
928 | + $parameters[ 'sort_field' ] = reset( $parameters[ 'sort_field' ] ); |
|
929 | + if ( ! empty( $parameters[ 'sort_direction' ] ) && is_array( $parameters[ 'sort_direction' ] ) ) { |
|
930 | + $parameters[ 'sort_direction' ] = reset( $parameters[ 'sort_direction' ] ); |
|
931 | 931 | } |
932 | 932 | } |
933 | 933 | |
@@ -935,34 +935,33 @@ discard block |
||
935 | 935 | * @todo: Stop using _frontend and use something like $request->get_search_criteria() instead |
936 | 936 | */ |
937 | 937 | $parameters = \GravityView_frontend::get_view_entries_parameters( $parameters, $this->form->ID ); |
938 | - $parameters['context_view_id'] = $this->ID; |
|
938 | + $parameters[ 'context_view_id' ] = $this->ID; |
|
939 | 939 | $parameters = \GVCommon::calculate_get_entries_criteria( $parameters, $this->form->ID ); |
940 | 940 | |
941 | 941 | if ( $request instanceof REST\Request ) { |
942 | 942 | $atts = $this->settings->as_atts(); |
943 | 943 | $paging_parameters = wp_parse_args( $request->get_paging(), array( |
944 | - 'paging' => array( 'page_size' => $atts['page_size'] ), |
|
944 | + 'paging' => array( 'page_size' => $atts[ 'page_size' ] ), |
|
945 | 945 | ) ); |
946 | - $parameters['paging'] = $paging_parameters['paging']; |
|
946 | + $parameters[ 'paging' ] = $paging_parameters[ 'paging' ]; |
|
947 | 947 | } |
948 | 948 | |
949 | - $page = Utils::get( $parameters['paging'], 'current_page' ) ? |
|
950 | - : ( ( ( $parameters['paging']['offset'] - $this->settings->get( 'offset' ) ) / $parameters['paging']['page_size'] ) + 1 ); |
|
949 | + $page = Utils::get( $parameters[ 'paging' ], 'current_page' ) ?: ( ( ( $parameters[ 'paging' ][ 'offset' ] - $this->settings->get( 'offset' ) ) / $parameters[ 'paging' ][ 'page_size' ] ) + 1 ); |
|
951 | 950 | |
952 | 951 | /** |
953 | 952 | * Cleanup duplicate field_filter parameters to simplify the query. |
954 | 953 | */ |
955 | 954 | $unique_field_filters = array(); |
956 | - foreach ( $parameters['search_criteria']['field_filters'] as $key => $filter ) { |
|
955 | + foreach ( $parameters[ 'search_criteria' ][ 'field_filters' ] as $key => $filter ) { |
|
957 | 956 | if ( 'mode' === $key ) { |
958 | - $unique_field_filters['mode'] = $filter; |
|
957 | + $unique_field_filters[ 'mode' ] = $filter; |
|
959 | 958 | } else if ( ! in_array( $filter, $unique_field_filters ) ) { |
960 | - $unique_field_filters[] = $filter; |
|
959 | + $unique_field_filters[ ] = $filter; |
|
961 | 960 | } |
962 | 961 | } |
963 | - $parameters['search_criteria']['field_filters'] = $unique_field_filters; |
|
962 | + $parameters[ 'search_criteria' ][ 'field_filters' ] = $unique_field_filters; |
|
964 | 963 | |
965 | - if ( ! empty( $parameters['search_criteria']['field_filters'] ) ) { |
|
964 | + if ( ! empty( $parameters[ 'search_criteria' ][ 'field_filters' ] ) ) { |
|
966 | 965 | gravityview()->log->notice( 'search_criteria/field_filters is not empty, third-party code may be using legacy search_criteria filters.' ); |
967 | 966 | } |
968 | 967 | |
@@ -971,7 +970,7 @@ discard block |
||
971 | 970 | $query_class = $this->get_query_class(); |
972 | 971 | |
973 | 972 | /** @var \GF_Query $query */ |
974 | - $query = new $query_class( $this->form->ID, $parameters['search_criteria'], $parameters['sorting'] ); |
|
973 | + $query = new $query_class( $this->form->ID, $parameters[ 'search_criteria' ], $parameters[ 'sorting' ] ); |
|
975 | 974 | |
976 | 975 | /** |
977 | 976 | * Apply multisort. |
@@ -982,15 +981,15 @@ discard block |
||
982 | 981 | $view_setting_sort_field_ids = \GV\Utils::get( $atts, 'sort_field', array() ); |
983 | 982 | $view_setting_sort_directions = \GV\Utils::get( $atts, 'sort_direction', array() ); |
984 | 983 | |
985 | - $has_sort_query_param = ! empty( $_GET['sort'] ) && is_array( $_GET['sort'] ); |
|
984 | + $has_sort_query_param = ! empty( $_GET[ 'sort' ] ) && is_array( $_GET[ 'sort' ] ); |
|
986 | 985 | |
987 | - if( $has_sort_query_param ) { |
|
988 | - $has_sort_query_param = array_filter( array_values( $_GET['sort'] ) ); |
|
986 | + if ( $has_sort_query_param ) { |
|
987 | + $has_sort_query_param = array_filter( array_values( $_GET[ 'sort' ] ) ); |
|
989 | 988 | } |
990 | 989 | |
991 | 990 | if ( $this->settings->get( 'sort_columns' ) && $has_sort_query_param ) { |
992 | - $sort_field_ids = array_keys( $_GET['sort'] ); |
|
993 | - $sort_directions = array_values( $_GET['sort'] ); |
|
991 | + $sort_field_ids = array_keys( $_GET[ 'sort' ] ); |
|
992 | + $sort_directions = array_values( $_GET[ 'sort' ] ); |
|
994 | 993 | } else { |
995 | 994 | $sort_field_ids = $view_setting_sort_field_ids; |
996 | 995 | $sort_directions = $view_setting_sort_directions; |
@@ -998,7 +997,7 @@ discard block |
||
998 | 997 | |
999 | 998 | $skip_first = false; |
1000 | 999 | |
1001 | - foreach ( (array) $sort_field_ids as $key => $sort_field_id ) { |
|
1000 | + foreach ( (array)$sort_field_ids as $key => $sort_field_id ) { |
|
1002 | 1001 | |
1003 | 1002 | if ( ! $skip_first && ! $has_sort_query_param ) { |
1004 | 1003 | $skip_first = true; // Skip the first one, it's already in the query |
@@ -1028,15 +1027,15 @@ discard block |
||
1028 | 1027 | |
1029 | 1028 | $merged_time = false; |
1030 | 1029 | |
1031 | - foreach ( $q['order'] as $oid => $order ) { |
|
1032 | - if ( $order[0] instanceof \GF_Query_Column ) { |
|
1033 | - $column = $order[0]; |
|
1034 | - } else if ( $order[0] instanceof \GF_Query_Call ) { |
|
1035 | - if ( count( $order[0]->columns ) != 1 || ! $order[0]->columns[0] instanceof \GF_Query_Column ) { |
|
1030 | + foreach ( $q[ 'order' ] as $oid => $order ) { |
|
1031 | + if ( $order[ 0 ] instanceof \GF_Query_Column ) { |
|
1032 | + $column = $order[ 0 ]; |
|
1033 | + } else if ( $order[ 0 ] instanceof \GF_Query_Call ) { |
|
1034 | + if ( count( $order[ 0 ]->columns ) != 1 || ! $order[ 0 ]->columns[ 0 ] instanceof \GF_Query_Column ) { |
|
1036 | 1035 | $orders[ $oid ] = $order; |
1037 | 1036 | continue; // Need something that resembles a single sort |
1038 | 1037 | } |
1039 | - $column = $order[0]->columns[0]; |
|
1038 | + $column = $order[ 0 ]->columns[ 0 ]; |
|
1040 | 1039 | } |
1041 | 1040 | |
1042 | 1041 | if ( ( ! $field = \GFAPI::get_field( $column->source, $column->field_id ) ) || $field->type !== 'time' ) { |
@@ -1050,7 +1049,7 @@ discard block |
||
1050 | 1049 | |
1051 | 1050 | $orders[ $oid ] = array( |
1052 | 1051 | new \GV\Mocks\GF_Query_Call_TIMESORT( 'timesort', array( $column, $sql ) ), |
1053 | - $order[1] // Mock it! |
|
1052 | + $order[ 1 ] // Mock it! |
|
1054 | 1053 | ); |
1055 | 1054 | |
1056 | 1055 | $merged_time = true; |
@@ -1061,15 +1060,15 @@ discard block |
||
1061 | 1060 | * ORDER again. |
1062 | 1061 | */ |
1063 | 1062 | if ( ! empty( $orders ) && $_orders = $query->_order_generate( $orders ) ) { |
1064 | - $sql['order'] = 'ORDER BY ' . implode( ', ', $_orders ); |
|
1063 | + $sql[ 'order' ] = 'ORDER BY ' . implode( ', ', $_orders ); |
|
1065 | 1064 | } |
1066 | 1065 | } |
1067 | 1066 | |
1068 | 1067 | return $sql; |
1069 | 1068 | } ); |
1070 | 1069 | |
1071 | - $query->limit( $parameters['paging']['page_size'] ) |
|
1072 | - ->offset( ( ( $page - 1 ) * $parameters['paging']['page_size'] ) + $this->settings->get( 'offset' ) ); |
|
1070 | + $query->limit( $parameters[ 'paging' ][ 'page_size' ] ) |
|
1071 | + ->offset( ( ( $page - 1 ) * $parameters[ 'paging' ][ 'page_size' ] ) + $this->settings->get( 'offset' ) ); |
|
1073 | 1072 | |
1074 | 1073 | /** |
1075 | 1074 | * Any joins? |
@@ -1092,7 +1091,7 @@ discard block |
||
1092 | 1091 | |
1093 | 1092 | $query_parameters = $query->_introspect(); |
1094 | 1093 | |
1095 | - $query->where( \GF_Query_Condition::_and( $query_parameters['where'], $condition ) ); |
|
1094 | + $query->where( \GF_Query_Condition::_and( $query_parameters[ 'where' ], $condition ) ); |
|
1096 | 1095 | } |
1097 | 1096 | |
1098 | 1097 | /** |
@@ -1126,7 +1125,7 @@ discard block |
||
1126 | 1125 | } |
1127 | 1126 | |
1128 | 1127 | $q = $query->_introspect(); |
1129 | - $query->where( \GF_Query_Condition::_and( $q['where'], $condition ) ); |
|
1128 | + $query->where( \GF_Query_Condition::_and( $q[ 'where' ], $condition ) ); |
|
1130 | 1129 | |
1131 | 1130 | if ( $this->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
1132 | 1131 | |
@@ -1151,7 +1150,7 @@ discard block |
||
1151 | 1150 | |
1152 | 1151 | $query_parameters = $query->_introspect(); |
1153 | 1152 | |
1154 | - $query->where( \GF_Query_Condition::_and( $query_parameters['where'], $condition ) ); |
|
1153 | + $query->where( \GF_Query_Condition::_and( $query_parameters[ 'where' ], $condition ) ); |
|
1155 | 1154 | } |
1156 | 1155 | } |
1157 | 1156 | |
@@ -1175,7 +1174,7 @@ discard block |
||
1175 | 1174 | $conditions = array(); |
1176 | 1175 | |
1177 | 1176 | foreach ( $condition->expressions as $_condition ) { |
1178 | - $conditions[] = $recurse( $_condition, $fields, $recurse ); |
|
1177 | + $conditions[ ] = $recurse( $_condition, $fields, $recurse ); |
|
1179 | 1178 | } |
1180 | 1179 | |
1181 | 1180 | return call_user_func_array( |
@@ -1204,10 +1203,10 @@ discard block |
||
1204 | 1203 | $q = new $query_class( $form_id ); |
1205 | 1204 | |
1206 | 1205 | // Copy the WHERE clauses but substitute the field_ids to the respective ones |
1207 | - $q->where( $where_union_substitute( $query_parameters['where'], $fields, $where_union_substitute ) ); |
|
1206 | + $q->where( $where_union_substitute( $query_parameters[ 'where' ], $fields, $where_union_substitute ) ); |
|
1208 | 1207 | |
1209 | 1208 | // Copy the ORDER clause and substitute the field_ids to the respective ones |
1210 | - foreach ( $query_parameters['order'] as $order ) { |
|
1209 | + foreach ( $query_parameters[ 'order' ] as $order ) { |
|
1211 | 1210 | list( $column, $_order ) = $order; |
1212 | 1211 | |
1213 | 1212 | if ( $column && $column instanceof \GF_Query_Column ) { |
@@ -1221,15 +1220,15 @@ discard block |
||
1221 | 1220 | |
1222 | 1221 | add_filter( 'gform_gf_query_sql', $gf_query_sql_callback = function( $sql ) use ( &$unions_sql ) { |
1223 | 1222 | // Remove SQL_CALC_FOUND_ROWS as it's not needed in UNION clauses |
1224 | - $select = 'UNION ALL ' . str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql['select'] ); |
|
1223 | + $select = 'UNION ALL ' . str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql[ 'select' ] ); |
|
1225 | 1224 | |
1226 | 1225 | // Record the SQL |
1227 | - $unions_sql[] = array( |
|
1226 | + $unions_sql[ ] = array( |
|
1228 | 1227 | // Remove columns, we'll rebuild them |
1229 | 1228 | 'select' => preg_replace( '#DISTINCT (.*)#', 'DISTINCT ', $select ), |
1230 | - 'from' => $sql['from'], |
|
1231 | - 'join' => $sql['join'], |
|
1232 | - 'where' => $sql['where'], |
|
1229 | + 'from' => $sql[ 'from' ], |
|
1230 | + 'join' => $sql[ 'join' ], |
|
1231 | + 'where' => $sql[ 'where' ], |
|
1233 | 1232 | // Remove order and limit |
1234 | 1233 | ); |
1235 | 1234 | |
@@ -1246,11 +1245,11 @@ discard block |
||
1246 | 1245 | |
1247 | 1246 | add_filter( 'gform_gf_query_sql', $gf_query_sql_callback = function( $sql ) use ( $unions_sql ) { |
1248 | 1247 | // Remove SQL_CALC_FOUND_ROWS as it's not needed in UNION clauses |
1249 | - $sql['select'] = str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql['select'] ); |
|
1248 | + $sql[ 'select' ] = str_replace( 'SQL_CALC_FOUND_ROWS ', '', $sql[ 'select' ] ); |
|
1250 | 1249 | |
1251 | 1250 | // Remove columns, we'll rebuild them |
1252 | - preg_match( '#DISTINCT (`[motc]\d+`.`.*?`)#', $sql['select'], $select_match ); |
|
1253 | - $sql['select'] = preg_replace( '#DISTINCT (.*)#', 'DISTINCT ', $sql['select'] ); |
|
1251 | + preg_match( '#DISTINCT (`[motc]\d+`.`.*?`)#', $sql[ 'select' ], $select_match ); |
|
1252 | + $sql[ 'select' ] = preg_replace( '#DISTINCT (.*)#', 'DISTINCT ', $sql[ 'select' ] ); |
|
1254 | 1253 | |
1255 | 1254 | $unions = array(); |
1256 | 1255 | |
@@ -1261,30 +1260,30 @@ discard block |
||
1261 | 1260 | }; |
1262 | 1261 | |
1263 | 1262 | // Add all the order columns into the selects, so we can order by the whole union group |
1264 | - preg_match_all( '#(`[motc]\d+`.`.*?`)#', $sql['order'], $order_matches ); |
|
1263 | + preg_match_all( '#(`[motc]\d+`.`.*?`)#', $sql[ 'order' ], $order_matches ); |
|
1265 | 1264 | |
1266 | 1265 | $columns = array( |
1267 | - sprintf( '%s AS %s', $select_match[1], $column_to_alias( $select_match[1] ) ) |
|
1266 | + sprintf( '%s AS %s', $select_match[ 1 ], $column_to_alias( $select_match[ 1 ] ) ) |
|
1268 | 1267 | ); |
1269 | 1268 | |
1270 | 1269 | foreach ( array_slice( $order_matches, 1 ) as $match ) { |
1271 | - $columns[] = sprintf( '%s AS %s', $match[0], $column_to_alias( $match[0] ) ); |
|
1270 | + $columns[ ] = sprintf( '%s AS %s', $match[ 0 ], $column_to_alias( $match[ 0 ] ) ); |
|
1272 | 1271 | |
1273 | 1272 | // Rewrite the order columns to the shared aliases |
1274 | - $sql['order'] = str_replace( $match[0], $column_to_alias( $match[0] ), $sql['order'] ); |
|
1273 | + $sql[ 'order' ] = str_replace( $match[ 0 ], $column_to_alias( $match[ 0 ] ), $sql[ 'order' ] ); |
|
1275 | 1274 | } |
1276 | 1275 | |
1277 | 1276 | $columns = array_unique( $columns ); |
1278 | 1277 | |
1279 | 1278 | // Add the columns to every UNION |
1280 | 1279 | foreach ( $unions_sql as $union_sql ) { |
1281 | - $union_sql['select'] .= implode( ', ', $columns ); |
|
1282 | - $unions []= implode( ' ', $union_sql ); |
|
1280 | + $union_sql[ 'select' ] .= implode( ', ', $columns ); |
|
1281 | + $unions [ ] = implode( ' ', $union_sql ); |
|
1283 | 1282 | } |
1284 | 1283 | |
1285 | 1284 | // Add the columns to the main SELECT, but only grab the entry id column |
1286 | - $sql['select'] = 'SELECT SQL_CALC_FOUND_ROWS t1_id FROM (' . $sql['select'] . implode( ', ', $columns ); |
|
1287 | - $sql['order'] = implode( ' ', $unions ) . ') AS u ' . $sql['order']; |
|
1285 | + $sql[ 'select' ] = 'SELECT SQL_CALC_FOUND_ROWS t1_id FROM (' . $sql[ 'select' ] . implode( ', ', $columns ); |
|
1286 | + $sql[ 'order' ] = implode( ' ', $unions ) . ') AS u ' . $sql[ 'order' ]; |
|
1288 | 1287 | |
1289 | 1288 | return $sql; |
1290 | 1289 | } ); |
@@ -1329,20 +1328,20 @@ discard block |
||
1329 | 1328 | } ); |
1330 | 1329 | } else { |
1331 | 1330 | $entries = $this->form->entries |
1332 | - ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters['search_criteria'] ) ) |
|
1331 | + ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters[ 'search_criteria' ] ) ) |
|
1333 | 1332 | ->offset( $this->settings->get( 'offset' ) ) |
1334 | - ->limit( $parameters['paging']['page_size'] ) |
|
1333 | + ->limit( $parameters[ 'paging' ][ 'page_size' ] ) |
|
1335 | 1334 | ->page( $page ); |
1336 | 1335 | |
1337 | - if ( ! empty( $parameters['sorting'] ) && is_array( $parameters['sorting'] && ! isset( $parameters['sorting']['key'] ) ) ) { |
|
1336 | + if ( ! empty( $parameters[ 'sorting' ] ) && is_array( $parameters[ 'sorting' ] && ! isset( $parameters[ 'sorting' ][ 'key' ] ) ) ) { |
|
1338 | 1337 | // Pluck off multisort arrays |
1339 | - $parameters['sorting'] = $parameters['sorting'][0]; |
|
1338 | + $parameters[ 'sorting' ] = $parameters[ 'sorting' ][ 0 ]; |
|
1340 | 1339 | } |
1341 | 1340 | |
1342 | - if ( ! empty( $parameters['sorting'] ) && ! empty( $parameters['sorting']['key'] ) ) { |
|
1341 | + if ( ! empty( $parameters[ 'sorting' ] ) && ! empty( $parameters[ 'sorting' ][ 'key' ] ) ) { |
|
1343 | 1342 | $field = new \GV\Field(); |
1344 | - $field->ID = $parameters['sorting']['key']; |
|
1345 | - $direction = strtolower( $parameters['sorting']['direction'] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
1343 | + $field->ID = $parameters[ 'sorting' ][ 'key' ]; |
|
1344 | + $direction = strtolower( $parameters[ 'sorting' ][ 'direction' ] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
1346 | 1345 | $entries = $entries->sort( new \GV\Entry_Sort( $field, $direction ) ); |
1347 | 1346 | } |
1348 | 1347 | } |
@@ -1417,7 +1416,7 @@ discard block |
||
1417 | 1416 | $allowed = $headers = array(); |
1418 | 1417 | |
1419 | 1418 | foreach ( $view->fields->by_position( "directory_*" )->by_visible( $view )->all() as $id => $field ) { |
1420 | - $allowed[] = $field; |
|
1419 | + $allowed[ ] = $field; |
|
1421 | 1420 | } |
1422 | 1421 | |
1423 | 1422 | $renderer = new Field_Renderer(); |
@@ -1439,17 +1438,17 @@ discard block |
||
1439 | 1438 | } ); |
1440 | 1439 | |
1441 | 1440 | foreach ( array_diff( $allowed_field_ids, wp_list_pluck( $allowed, 'ID' ) ) as $field_id ) { |
1442 | - $allowed[] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
1441 | + $allowed[ ] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
1443 | 1442 | } |
1444 | 1443 | |
1445 | 1444 | foreach ( $allowed as $field ) { |
1446 | 1445 | $source = is_numeric( $field->ID ) ? $view->form : new \GV\Internal_Source(); |
1447 | 1446 | |
1448 | - $return[] = $renderer->render( $field, $view, $source, $entry, gravityview()->request, '\GV\Field_CSV_Template' ); |
|
1447 | + $return[ ] = $renderer->render( $field, $view, $source, $entry, gravityview()->request, '\GV\Field_CSV_Template' ); |
|
1449 | 1448 | |
1450 | 1449 | if ( ! $headers_done ) { |
1451 | 1450 | $label = $field->get_label( $view, $source, $entry ); |
1452 | - $headers[] = $label ? $label : $field->ID; |
|
1451 | + $headers[ ] = $label ? $label : $field->ID; |
|
1453 | 1452 | } |
1454 | 1453 | } |
1455 | 1454 |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | 'total' => wp_count_posts( 'gravityview' )->publish, |
64 | 64 | ); |
65 | 65 | foreach ( $items as $item ) { |
66 | - $data['views'][] = $this->prepare_view_for_response( $item, $request ); |
|
66 | + $data[ 'views' ][ ] = $this->prepare_view_for_response( $item, $request ); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | return new \WP_REST_Response( $data, 200 ); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | |
83 | 83 | $url = $request->get_url_params(); |
84 | 84 | |
85 | - $view_id = intval( $url['id'] ); |
|
85 | + $view_id = intval( $url[ 'id' ] ); |
|
86 | 86 | |
87 | 87 | $item = get_post( $view_id ); |
88 | 88 | |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | // Only output the fields that should be displayed. |
115 | 115 | $allowed = array(); |
116 | 116 | foreach ( $view->fields->by_position( "{$context}_*" )->by_visible( $view )->all() as $field ) { |
117 | - $allowed[] = $field; |
|
117 | + $allowed[ ] = $field; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | // Tack on additional fields if needed |
135 | 135 | foreach ( array_diff( $allowed_field_ids, wp_list_pluck( $allowed, 'ID' ) ) as $field_id ) { |
136 | - $allowed[] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
136 | + $allowed[ ] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | $r = new Request( $request ); |
@@ -211,10 +211,10 @@ discard block |
||
211 | 211 | public function get_sub_items( $request ) { |
212 | 212 | |
213 | 213 | $url = $request->get_url_params(); |
214 | - $view_id = intval( $url['id'] ); |
|
214 | + $view_id = intval( $url[ 'id' ] ); |
|
215 | 215 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
216 | 216 | |
217 | - if( $post_id = $request->get_param('post_id') ) { |
|
217 | + if ( $post_id = $request->get_param( 'post_id' ) ) { |
|
218 | 218 | global $post; |
219 | 219 | |
220 | 220 | $post = get_post( $post_id ); |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | |
320 | 320 | $data = array( 'entries' => $entries->all(), 'total' => $entries->total() ); |
321 | 321 | |
322 | - foreach ( $data['entries'] as &$entry ) { |
|
322 | + foreach ( $data[ 'entries' ] as &$entry ) { |
|
323 | 323 | $entry = $this->prepare_entry_for_response( $view, $entry, $request, 'directory' ); |
324 | 324 | } |
325 | 325 | |
@@ -338,8 +338,8 @@ discard block |
||
338 | 338 | */ |
339 | 339 | public function get_sub_item( $request ) { |
340 | 340 | $url = $request->get_url_params(); |
341 | - $view_id = intval( $url['id'] ); |
|
342 | - $entry_id = intval( $url['s_id'] ); |
|
341 | + $view_id = intval( $url[ 'id' ] ); |
|
342 | + $entry_id = intval( $url[ 's_id' ] ); |
|
343 | 343 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
344 | 344 | |
345 | 345 | $view = \GV\View::by_id( $view_id ); |
@@ -374,32 +374,32 @@ discard block |
||
374 | 374 | // Add all the WP_Post data |
375 | 375 | $view_post = $view_post->to_array(); |
376 | 376 | |
377 | - unset( $view_post['to_ping'], $view_post['ping_status'], $view_post['pinged'], $view_post['post_type'], $view_post['filter'], $view_post['post_category'], $view_post['tags_input'], $view_post['post_content'], $view_post['post_content_filtered'] ); |
|
377 | + unset( $view_post[ 'to_ping' ], $view_post[ 'ping_status' ], $view_post[ 'pinged' ], $view_post[ 'post_type' ], $view_post[ 'filter' ], $view_post[ 'post_category' ], $view_post[ 'tags_input' ], $view_post[ 'post_content' ], $view_post[ 'post_content_filtered' ] ); |
|
378 | 378 | |
379 | 379 | $return = wp_parse_args( $item, $view_post ); |
380 | 380 | |
381 | - $return['title'] = $return['post_title']; |
|
381 | + $return[ 'title' ] = $return[ 'post_title' ]; |
|
382 | 382 | |
383 | - $return['settings'] = isset( $return['atts'] ) ? $return['atts'] : array(); |
|
384 | - unset( $return['atts'], $return['view_id'] ); |
|
383 | + $return[ 'settings' ] = isset( $return[ 'atts' ] ) ? $return[ 'atts' ] : array(); |
|
384 | + unset( $return[ 'atts' ], $return[ 'view_id' ] ); |
|
385 | 385 | |
386 | - $return['search_criteria'] = array( |
|
386 | + $return[ 'search_criteria' ] = array( |
|
387 | 387 | 'page_size' => rgars( $return, 'settings/page_size' ), |
388 | 388 | 'sort_field' => rgars( $return, 'settings/sort_field' ), |
389 | 389 | 'sort_direction' => rgars( $return, 'settings/sort_direction' ), |
390 | 390 | 'offset' => rgars( $return, 'settings/offset' ), |
391 | 391 | ); |
392 | 392 | |
393 | - unset( $return['settings']['page_size'], $return['settings']['sort_field'], $return['settings']['sort_direction'] ); |
|
393 | + unset( $return[ 'settings' ][ 'page_size' ], $return[ 'settings' ][ 'sort_field' ], $return[ 'settings' ][ 'sort_direction' ] ); |
|
394 | 394 | |
395 | 395 | // Redact for non-logged ins |
396 | 396 | if ( ! \GVCommon::has_cap( 'edit_others_gravityviews' ) ) { |
397 | - unset( $return['settings'] ); |
|
398 | - unset( $return['search_criteria'] ); |
|
397 | + unset( $return[ 'settings' ] ); |
|
398 | + unset( $return[ 'search_criteria' ] ); |
|
399 | 399 | } |
400 | 400 | |
401 | 401 | if ( ! \GFCommon::current_user_can_any( 'gravityforms_edit_forms' ) ) { |
402 | - unset( $return['form'] ); |
|
402 | + unset( $return[ 'form' ] ); |
|
403 | 403 | } |
404 | 404 | |
405 | 405 | return $return; |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | $view_id = func_get_arg( 1 ); // $view_id override |
416 | 416 | } else { |
417 | 417 | $url = $request->get_url_params(); |
418 | - $view_id = intval( $url['id'] ); |
|
418 | + $view_id = intval( $url[ 'id' ] ); |
|
419 | 419 | } |
420 | 420 | |
421 | 421 | if ( ! $view = \GV\View::by_id( $view_id ) ) { |
@@ -461,8 +461,8 @@ discard block |
||
461 | 461 | } |
462 | 462 | |
463 | 463 | $url = $request->get_url_params(); |
464 | - $view_id = intval( $url['id'] ); |
|
465 | - $entry_id = intval( $url['s_id'] ); |
|
464 | + $view_id = intval( $url[ 'id' ] ); |
|
465 | + $entry_id = intval( $url[ 's_id' ] ); |
|
466 | 466 | |
467 | 467 | $view = \GV\View::by_id( $view_id ); |
468 | 468 | |
@@ -470,11 +470,11 @@ discard block |
||
470 | 470 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
471 | 471 | } |
472 | 472 | |
473 | - if ( $entry['form_id'] != $view->form->ID ) { |
|
473 | + if ( $entry[ 'form_id' ] != $view->form->ID ) { |
|
474 | 474 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
475 | 475 | } |
476 | 476 | |
477 | - if ( $entry['status'] != 'active' ) { |
|
477 | + if ( $entry[ 'status' ] != 'active' ) { |
|
478 | 478 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
479 | 479 | } |
480 | 480 | |
@@ -482,10 +482,10 @@ discard block |
||
482 | 482 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
483 | 483 | } |
484 | 484 | |
485 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
485 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
486 | 486 | |
487 | 487 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
488 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
488 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
489 | 489 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
490 | 490 | } |
491 | 491 | } |
@@ -98,15 +98,15 @@ discard block |
||
98 | 98 | $additional = array(); |
99 | 99 | |
100 | 100 | // form-19-table-body.php |
101 | - $additional[] = sprintf( 'form-%d-%s-%s.php', $this->view->form ? $this->view->form->ID : 0, $slug, $name ); |
|
101 | + $additional[ ] = sprintf( 'form-%d-%s-%s.php', $this->view->form ? $this->view->form->ID : 0, $slug, $name ); |
|
102 | 102 | |
103 | 103 | // view-3-table-body.php |
104 | - $additional[] = sprintf( 'view-%d-%s-%s.php', $this->view->ID, $slug, $name ); |
|
104 | + $additional[ ] = sprintf( 'view-%d-%s-%s.php', $this->view->ID, $slug, $name ); |
|
105 | 105 | |
106 | 106 | global $post; |
107 | 107 | if ( $post ) { |
108 | 108 | // page-19-table-body.php |
109 | - $additional[] = sprintf( 'page-%d-%s-%s.php', $post->ID, $slug, $name ); |
|
109 | + $additional[ ] = sprintf( 'page-%d-%s-%s.php', $post->ID, $slug, $name ); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | // Combine with existing table-body.php and table.php |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | ob_start(); |
131 | 131 | |
132 | 132 | $request = new Mock_Request(); |
133 | - $request->returns['is_view'] = $this->view; |
|
133 | + $request->returns[ 'is_view' ] = $this->view; |
|
134 | 134 | |
135 | 135 | /** |
136 | 136 | * You got one shot. One opportunity. To render all the widgets you have ever wanted. |
@@ -144,17 +144,17 @@ discard block |
||
144 | 144 | foreach ( array( 'gravityview_before', 'gravityview_after' ) as $hook ) { |
145 | 145 | /** WordPress 4.6 and lower compatibility, when WP_Hook classes were still absent. */ |
146 | 146 | if ( is_array( $wp_filter[ $hook ] ) ) { |
147 | - if ( ! empty( $wp_filter[ $hook ][10] ) ) { |
|
148 | - foreach ( $wp_filter[ $hook ][10] as $function_key => $callback ) { |
|
147 | + if ( ! empty( $wp_filter[ $hook ][ 10 ] ) ) { |
|
148 | + foreach ( $wp_filter[ $hook ][ 10 ] as $function_key => $callback ) { |
|
149 | 149 | if ( strpos( $function_key, 'render_widget_hooks' ) ) { |
150 | - unset( $wp_filter[ $hook ][10][ $function_key ] ); |
|
150 | + unset( $wp_filter[ $hook ][ 10 ][ $function_key ] ); |
|
151 | 151 | } |
152 | 152 | } |
153 | 153 | } |
154 | 154 | } else { |
155 | - foreach ( $wp_filter[ $hook ]->callbacks[10] as $function_key => $callback ) { |
|
155 | + foreach ( $wp_filter[ $hook ]->callbacks[ 10 ] as $function_key => $callback ) { |
|
156 | 156 | if ( strpos( $function_key, 'render_widget_hooks' ) ) { |
157 | - unset( $wp_filter[ $hook ]->callbacks[10][ $function_key ] ); |
|
157 | + unset( $wp_filter[ $hook ]->callbacks[ 10 ][ $function_key ] ); |
|
158 | 158 | } |
159 | 159 | } |
160 | 160 | } |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | */ |
166 | 166 | if ( $this->entry ) { |
167 | 167 | |
168 | - $request->returns['is_entry'] = $this->entry; |
|
168 | + $request->returns[ 'is_entry' ] = $this->entry; |
|
169 | 169 | |
170 | 170 | global $post; |
171 | 171 | |
@@ -199,11 +199,11 @@ discard block |
||
199 | 199 | * This allows us to fake it till we make it. |
200 | 200 | */ |
201 | 201 | $parameters = $this->view->settings->as_atts(); |
202 | - if ( ! empty( $parameters['sort_field'] ) && is_array( $parameters['sort_field'] ) ) { |
|
202 | + if ( ! empty( $parameters[ 'sort_field' ] ) && is_array( $parameters[ 'sort_field' ] ) ) { |
|
203 | 203 | $has_multisort = true; |
204 | - $parameters['sort_field'] = reset( $parameters['sort_field'] ); |
|
205 | - if ( ! empty( $parameters['sort_direction'] ) && is_array( $parameters['sort_direction'] ) ) { |
|
206 | - $parameters['sort_direction'] = reset( $parameters['sort_direction'] ); |
|
204 | + $parameters[ 'sort_field' ] = reset( $parameters[ 'sort_field' ] ); |
|
205 | + if ( ! empty( $parameters[ 'sort_direction' ] ) && is_array( $parameters[ 'sort_direction' ] ) ) { |
|
206 | + $parameters[ 'sort_direction' ] = reset( $parameters[ 'sort_direction' ] ); |
|
207 | 207 | } |
208 | 208 | } |
209 | 209 | |
@@ -222,8 +222,8 @@ discard block |
||
222 | 222 | 'fields' => $this->view->fields->by_visible( $this->view ), |
223 | 223 | 'in_the_loop' => true, |
224 | 224 | ), empty( $parameters ) ? array() : array( |
225 | - 'paging' => $parameters['paging'], |
|
226 | - 'sorting' => $parameters['sorting'], |
|
225 | + 'paging' => $parameters[ 'paging' ], |
|
226 | + 'sorting' => $parameters[ 'sorting' ], |
|
227 | 227 | ), $post ? array( |
228 | 228 | 'post' => $post, |
229 | 229 | ) : array() ) ); |