Completed
Push — develop ( e73eb4...52a281 )
by Gennady
16:37
created
includes/widgets/search-widget/class-search-widget.php 2 patches
Doc Comments   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 	/**
249 249
 	 * Add admin script to the no-conflict scripts whitelist
250 250
 	 * @param array $allowed Scripts allowed in no-conflict mode
251
-	 * @return array Scripts allowed in no-conflict mode, plus the search widget script
251
+	 * @return string[] Scripts allowed in no-conflict mode, plus the search widget script
252 252
 	 */
253 253
 	public function register_no_conflict( $allowed ) {
254 254
 		$allowed[] = 'gravityview_searchwidget_admin';
@@ -729,7 +729,6 @@  discard block
 block discarded – undo
729 729
 	 * Dropin for the legacy flat filters when \GF_Query is available.
730 730
 	 *
731 731
 	 * @param \GF_Query $query The current query object reference
732
-	 * @param \GV\View $this The current view object
733 732
 	 * @param \GV\Request $request The request object
734 733
 	 */
735 734
 	public function gf_query_filter( &$query, $view, $request ) {
@@ -1410,7 +1409,7 @@  discard block
 block discarded – undo
1410 1409
 	/**
1411 1410
 	 * Get the label for a search form field
1412 1411
 	 * @param  array $field      Field setting as sent by the GV configuration - has `field`, `input` (input type), and `label` keys
1413
-	 * @param  array $form_field Form field data, as fetched by `gravityview_get_field()`
1412
+	 * @param  GF_Field|null $form_field Form field data, as fetched by `gravityview_get_field()`
1414 1413
 	 * @return string             Label for the search form
1415 1414
 	 */
1416 1415
 	private static function get_field_label( $field, $form_field = array() ) {
@@ -1594,7 +1593,7 @@  discard block
 block discarded – undo
1594 1593
 	/**
1595 1594
 	 * Require the datepicker script for the frontend GV script
1596 1595
 	 * @param array $js_dependencies Array of existing required scripts for the fe-views.js script
1597
-	 * @return array Array required scripts, with `jquery-ui-datepicker` added
1596
+	 * @return string[] Array required scripts, with `jquery-ui-datepicker` added
1598 1597
 	 */
1599 1598
 	public function add_datepicker_js_dependency( $js_dependencies ) {
1600 1599
 
@@ -1606,7 +1605,7 @@  discard block
 block discarded – undo
1606 1605
 	/**
1607 1606
 	 * Modify the array passed to wp_localize_script()
1608 1607
 	 *
1609
-	 * @param array $js_localization The data padded to the Javascript file
1608
+	 * @param array $localizations The data padded to the Javascript file
1610 1609
 	 * @param array $view_data View data array with View settings
1611 1610
 	 *
1612 1611
 	 * @return array
@@ -1786,7 +1785,7 @@  discard block
 block discarded – undo
1786 1785
 	 *
1787 1786
 	 * @param array  $get     Where to look for the operator.
1788 1787
 	 * @param string $key     The filter key to look for.
1789
-	 * @param array  $allowed The allowed operators (whitelist).
1788
+	 * @param string[]  $allowed The allowed operators (whitelist).
1790 1789
 	 * @param string $default The default operator.
1791 1790
 	 *
1792 1791
 	 * @return string The operator.
Please login to merge, or discard this patch.
Spacing   +166 added lines, -166 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 				'type' => 'radio',
65 65
 				'full_width' => true,
66 66
 				'label' => esc_html__( 'Search Mode', 'gravityview' ),
67
-				'desc' => __('Should search results match all search fields, or any?', 'gravityview'),
67
+				'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ),
68 68
 				'value' => 'any',
69 69
 				'class' => 'hide-if-js',
70 70
 				'options' => array(
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
 			// admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999
88 88
 			add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 );
89
-			add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') );
89
+			add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) );
90 90
 			add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
91 91
 
92 92
 			// ajax - get the searchable fields
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 		$script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
230 230
 		$script_source = empty( $script_min ) ? '/source' : '';
231 231
 
232
-		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 );
232
+		wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js' . $script_source . '/admin-search-widget' . $script_min . '.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), \GV\Plugin::$version );
233 233
 
234 234
 		wp_localize_script( 'gravityview_searchwidget_admin', 'gvSearchVar', array(
235 235
 			'nonce' => wp_create_nonce( 'gravityview_ajaxsearchwidget' ),
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 	 * @return array Scripts allowed in no-conflict mode, plus the search widget script
252 252
 	 */
253 253
 	public function register_no_conflict( $allowed ) {
254
-		$allowed[] = 'gravityview_searchwidget_admin';
254
+		$allowed[ ] = 'gravityview_searchwidget_admin';
255 255
 		return $allowed;
256 256
 	}
257 257
 
@@ -264,24 +264,24 @@  discard block
 block discarded – undo
264 264
 	 */
265 265
 	public static function get_searchable_fields() {
266 266
 
267
-		if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) {
267
+		if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) {
268 268
 			exit( '0' );
269 269
 		}
270 270
 
271 271
 		$form = '';
272 272
 
273 273
 		// Fetch the form for the current View
274
-		if ( ! empty( $_POST['view_id'] ) ) {
274
+		if ( ! empty( $_POST[ 'view_id' ] ) ) {
275 275
 
276
-			$form = gravityview_get_form_id( $_POST['view_id'] );
276
+			$form = gravityview_get_form_id( $_POST[ 'view_id' ] );
277 277
 
278
-		} elseif ( ! empty( $_POST['formid'] ) ) {
278
+		} elseif ( ! empty( $_POST[ 'formid' ] ) ) {
279 279
 
280
-			$form = (int) $_POST['formid'];
280
+			$form = (int)$_POST[ 'formid' ];
281 281
 
282
-		} elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) {
282
+		} elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) {
283 283
 
284
-			$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
284
+			$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
285 285
 
286 286
 		}
287 287
 
@@ -331,14 +331,14 @@  discard block
 block discarded – undo
331 331
 		);
332 332
 
333 333
 		if ( gravityview()->plugin->supports( \GV\Plugin::FEATURE_GFQUERY ) ) {
334
-			$custom_fields['is_approved'] = array(
334
+			$custom_fields[ 'is_approved' ] = array(
335 335
 				'text' => esc_html__( 'Approval Status', 'gravityview' ),
336 336
 				'type' => 'multi',
337 337
 			);
338 338
 		}
339 339
 
340
-		foreach( $custom_fields as $custom_field_key => $custom_field ) {
341
-			$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
+		foreach ( $custom_fields as $custom_field_key => $custom_field ) {
341
+			$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' ] );
342 342
 		}
343 343
 
344 344
 		// Get fields with sub-inputs and no parent
@@ -360,13 +360,13 @@  discard block
 block discarded – undo
360 360
 
361 361
 			foreach ( $fields as $id => $field ) {
362 362
 
363
-				if ( in_array( $field['type'], $blacklist_field_types ) ) {
363
+				if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) {
364 364
 					continue;
365 365
 				}
366 366
 
367
-				$types = self::get_search_input_types( $id, $field['type'] );
367
+				$types = self::get_search_input_types( $id, $field[ 'type' ] );
368 368
 
369
-				$output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>';
369
+				$output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>';
370 370
 			}
371 371
 		}
372 372
 
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 	public static function get_search_input_types( $field_id = '', $field_type = null ) {
390 390
 
391 391
 		// @todo - This needs to be improved - many fields have . including products and addresses
392
-		if ( false !== strpos( (string) $field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) {
392
+		if ( false !== strpos( (string)$field_id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $field_id, array( 'is_fulfilled' ) ) ) {
393 393
 			$input_type = 'boolean'; // on/off checkbox
394 394
 		} elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) {
395 395
 			$input_type = 'multi'; //multiselect
@@ -433,19 +433,19 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,22 +863,22 @@  discard block
 block discarded – undo
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 ) {
870
+				if ( empty( $filter[ 'key' ] ) && $search_condition->expressions ) {
871 871
 					 foreach ( $search_condition->expressions as $condition ) {
872
-						$search_conditions[] = new GravityView_Widget_Search_All_GF_Query_Condition( $condition, $view );
872
+						$search_conditions[ ] = new GravityView_Widget_Search_All_GF_Query_Condition( $condition, $view );
873 873
 					 }
874 874
 				} else {
875 875
 					$left = $search_condition->left;
876 876
 					$alias = $query->_alias( $left->field_id, $left->source, $left->is_entry_column() ? 't' : 'm' );
877 877
 
878 878
 					if ( $view->joins && $left->field_id == GF_Query_Column::META ) {
879
-						$search_conditions[] = new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view );
879
+						$search_conditions[ ] = new GravityView_Widget_Search_All_GF_Query_Condition( $search_condition, $view );
880 880
 					} else {
881
-						$search_conditions[] = new GF_Query_Condition(
881
+						$search_conditions[ ] = new GF_Query_Condition(
882 882
 							new GF_Query_Column( $left->field_id, $left->source, $alias ),
883 883
 							$search_condition->operator,
884 884
 							$search_condition->right
@@ -900,7 +900,7 @@  discard block
 block discarded – undo
900 900
 		/**
901 901
 		 * Combine the parts as a new WHERE clause.
902 902
 		 */
903
-		$where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts['where'] ), $search_conditions, $extra_conditions ) );
903
+		$where = call_user_func_array( '\GF_Query_Condition::_and', array_merge( array( $query_parts[ 'where' ] ), $search_conditions, $extra_conditions ) );
904 904
 		$query->where( $where );
905 905
 	}
906 906
 
@@ -923,7 +923,7 @@  discard block
 block discarded – undo
923 923
 		$field_id = str_replace( 'filter_', '', $key );
924 924
 
925 925
 		// calculates field_id, removing 'filter_' and for '_' for advanced fields ( like name or checkbox )
926
-		if ( preg_match('/^[0-9_]+$/ism', $field_id ) ) {
926
+		if ( preg_match( '/^[0-9_]+$/ism', $field_id ) ) {
927 927
 			$field_id = str_replace( '_', '.', $field_id );
928 928
 		}
929 929
 
@@ -980,7 +980,7 @@  discard block
 block discarded – undo
980 980
 			// form is in searchable fields
981 981
 			$found = false;
982 982
 			foreach ( $searchable_fields as $field ) {
983
-				if ( $field_id == $field['field'] && $form->ID == $field['form_id'] ) {
983
+				if ( $field_id == $field[ 'field' ] && $form->ID == $field[ 'form_id' ] ) {
984 984
 					$found = true;
985 985
 					break;
986 986
 				}
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
 
1017 1017
 			case 'select':
1018 1018
 			case 'radio':
1019
-				$filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1019
+				$filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1020 1020
 				break;
1021 1021
 
1022 1022
 			case 'post_category':
@@ -1030,7 +1030,7 @@  discard block
 block discarded – undo
1030 1030
 
1031 1031
 				foreach ( $value as $val ) {
1032 1032
 					$cat = get_term( $val, 'category' );
1033
-					$filter[] = array(
1033
+					$filter[ ] = array(
1034 1034
 						'key'      => $field_id,
1035 1035
 						'value'    => esc_attr( $cat->name ) . ':' . $val,
1036 1036
 						'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ),
@@ -1049,7 +1049,7 @@  discard block
 block discarded – undo
1049 1049
 				$filter = array();
1050 1050
 
1051 1051
 				foreach ( $value as $val ) {
1052
-					$filter[] = array( 'key' => $field_id, 'value' => $val );
1052
+					$filter[ ] = array( 'key' => $field_id, 'value' => $val );
1053 1053
 				}
1054 1054
 
1055 1055
 				break;
@@ -1058,9 +1058,9 @@  discard block
 block discarded – undo
1058 1058
 				// convert checkbox on/off into the correct search filter
1059 1059
 				if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field->inputs ) && ! empty( $form_field->choices ) ) {
1060 1060
 					foreach ( $form_field->inputs as $k => $input ) {
1061
-						if ( $input['id'] == $field_id ) {
1062
-							$filter['value'] = $form_field->choices[ $k ]['value'];
1063
-							$filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1061
+						if ( $input[ 'id' ] == $field_id ) {
1062
+							$filter[ 'value' ] = $form_field->choices[ $k ][ 'value' ];
1063
+							$filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1064 1064
 							break;
1065 1065
 						}
1066 1066
 					}
@@ -1070,7 +1070,7 @@  discard block
 block discarded – undo
1070 1070
 					$filter = array();
1071 1071
 
1072 1072
 					foreach ( $value as $val ) {
1073
-						$filter[] = array(
1073
+						$filter[ ] = array(
1074 1074
 							'key'      => $field_id,
1075 1075
 							'value'    => $val,
1076 1076
 							'operator' => $this->get_operator( $get, $key, array( 'is' ), 'is' ),
@@ -1091,9 +1091,9 @@  discard block
 block discarded – undo
1091 1091
 					foreach ( $words as $word ) {
1092 1092
 						if ( ! empty( $word ) && strlen( $word ) > 1 ) {
1093 1093
 							// Keep the same key for each filter
1094
-							$filter['value'] = $word;
1094
+							$filter[ 'value' ] = $word;
1095 1095
 							// Add a search for the value
1096
-							$filters[] = $filter;
1096
+							$filters[ ] = $filter;
1097 1097
 						}
1098 1098
 					}
1099 1099
 
@@ -1107,19 +1107,19 @@  discard block
 block discarded – undo
1107 1107
 
1108 1108
 					foreach ( $searchable_fields as $searchable_field ) {
1109 1109
 
1110
-						if( $form_field->ID !== $searchable_field['field'] ) {
1110
+						if ( $form_field->ID !== $searchable_field[ 'field' ] ) {
1111 1111
 							continue;
1112 1112
 						}
1113 1113
 
1114 1114
 						// Only exact-match dropdowns, not text search
1115
-						if( in_array( $searchable_field['input'], array( 'text', 'search' ), true ) ) {
1115
+						if ( in_array( $searchable_field[ 'input' ], array( 'text', 'search' ), true ) ) {
1116 1116
 							continue;
1117 1117
 						}
1118 1118
 
1119 1119
 						$input_id = gravityview_get_input_id_from_id( $form_field->ID );
1120 1120
 
1121 1121
 						if ( 4 === $input_id ) {
1122
-							$filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1122
+							$filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1123 1123
 						};
1124 1124
 					}
1125 1125
 				}
@@ -1146,12 +1146,12 @@  discard block
 block discarded – undo
1146 1146
 						 * @since 1.16.3
1147 1147
 						 * Safeguard until GF implements '<=' operator
1148 1148
 						 */
1149
-						if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) {
1149
+						if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) {
1150 1150
 							$operator = '<';
1151 1151
 							$date = date( 'Y-m-d', strtotime( self::get_formatted_date( $date, 'Y-m-d', $date_format ) . ' +1 day' ) );
1152 1152
 						}
1153 1153
 
1154
-						$filter[] = array(
1154
+						$filter[ ] = array(
1155 1155
 							'key'      => $field_id,
1156 1156
 							'value'    => self::get_formatted_date( $date, 'Y-m-d', $date_format ),
1157 1157
 							'operator' => $this->get_operator( $get, $key, array( $operator ), $operator ),
@@ -1159,8 +1159,8 @@  discard block
 block discarded – undo
1159 1159
 					}
1160 1160
 				} else {
1161 1161
 					$date = $value;
1162
-					$filter['value'] = self::get_formatted_date( $date, 'Y-m-d', $date_format );
1163
-					$filter['operator'] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1162
+					$filter[ 'value' ] = self::get_formatted_date( $date, 'Y-m-d', $date_format );
1163
+					$filter[ 'operator' ] = $this->get_operator( $get, $key, array( 'is' ), 'is' );
1164 1164
 				}
1165 1165
 
1166 1166
 				break;
@@ -1191,7 +1191,7 @@  discard block
 block discarded – undo
1191 1191
 			'ymd_dot' => 'Y.m.d',
1192 1192
 		);
1193 1193
 
1194
-		if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){
1194
+		if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) {
1195 1195
 			$format = $datepicker[ $field->dateFormat ];
1196 1196
 		}
1197 1197
 
@@ -1228,7 +1228,7 @@  discard block
 block discarded – undo
1228 1228
 	public function add_template_path( $file_paths ) {
1229 1229
 
1230 1230
 		// Index 100 is the default GravityView template path.
1231
-		$file_paths[102] = self::$file . 'templates/';
1231
+		$file_paths[ 102 ] = self::$file . 'templates/';
1232 1232
 
1233 1233
 		return $file_paths;
1234 1234
 	}
@@ -1247,7 +1247,7 @@  discard block
 block discarded – undo
1247 1247
 		$has_date = false;
1248 1248
 
1249 1249
 		foreach ( $search_fields as $k => $field ) {
1250
-			if ( in_array( $field['input'], array( 'date', 'date_range', 'entry_date' ) ) ) {
1250
+			if ( in_array( $field[ 'input' ], array( 'date', 'date_range', 'entry_date' ) ) ) {
1251 1251
 				$has_date = true;
1252 1252
 				break;
1253 1253
 			}
@@ -1274,7 +1274,7 @@  discard block
 block discarded – undo
1274 1274
 		}
1275 1275
 
1276 1276
 		// get configured search fields
1277
-		$search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : '';
1277
+		$search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : '';
1278 1278
 
1279 1279
 		if ( empty( $search_fields ) || ! is_array( $search_fields ) ) {
1280 1280
 			gravityview()->log->debug( 'No search fields configured for widget:', array( 'data' => $widget_args ) );
@@ -1289,40 +1289,40 @@  discard block
 block discarded – undo
1289 1289
 
1290 1290
 			$updated_field = $this->get_search_filter_details( $updated_field );
1291 1291
 
1292
-			switch ( $field['field'] ) {
1292
+			switch ( $field[ 'field' ] ) {
1293 1293
 
1294 1294
 				case 'search_all':
1295
-					$updated_field['key'] = 'search_all';
1296
-					$updated_field['input'] = 'search_all';
1297
-					$updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' );
1295
+					$updated_field[ 'key' ] = 'search_all';
1296
+					$updated_field[ 'input' ] = 'search_all';
1297
+					$updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' );
1298 1298
 					break;
1299 1299
 
1300 1300
 				case 'entry_date':
1301
-					$updated_field['key'] = 'entry_date';
1302
-					$updated_field['input'] = 'entry_date';
1303
-					$updated_field['value'] = array(
1301
+					$updated_field[ 'key' ] = 'entry_date';
1302
+					$updated_field[ 'input' ] = 'entry_date';
1303
+					$updated_field[ 'value' ] = array(
1304 1304
 						'start' => $this->rgget_or_rgpost( 'gv_start' ),
1305 1305
 						'end' => $this->rgget_or_rgpost( 'gv_end' ),
1306 1306
 					);
1307 1307
 					break;
1308 1308
 
1309 1309
 				case 'entry_id':
1310
-					$updated_field['key'] = 'entry_id';
1311
-					$updated_field['input'] = 'entry_id';
1312
-					$updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' );
1310
+					$updated_field[ 'key' ] = 'entry_id';
1311
+					$updated_field[ 'input' ] = 'entry_id';
1312
+					$updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' );
1313 1313
 					break;
1314 1314
 
1315 1315
 				case 'created_by':
1316
-					$updated_field['key'] = 'created_by';
1317
-					$updated_field['name'] = 'gv_by';
1318
-					$updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' );
1319
-					$updated_field['choices'] = self::get_created_by_choices();
1316
+					$updated_field[ 'key' ] = 'created_by';
1317
+					$updated_field[ 'name' ] = 'gv_by';
1318
+					$updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' );
1319
+					$updated_field[ 'choices' ] = self::get_created_by_choices();
1320 1320
 					break;
1321 1321
 				
1322 1322
 				case 'is_approved':
1323
-					$updated_field['key'] = 'is_approved';
1324
-					$updated_field['value'] = $this->rgget_or_rgpost( 'filter_is_approved' );
1325
-					$updated_field['choices'] = self::get_is_approved_choices();
1323
+					$updated_field[ 'key' ] = 'is_approved';
1324
+					$updated_field[ 'value' ] = $this->rgget_or_rgpost( 'filter_is_approved' );
1325
+					$updated_field[ 'choices' ] = self::get_is_approved_choices();
1326 1326
 					break;
1327 1327
 			}
1328 1328
 
@@ -1341,16 +1341,16 @@  discard block
 block discarded – undo
1341 1341
 		 */
1342 1342
 		$gravityview_view->search_fields = apply_filters( 'gravityview_widget_search_filters', $search_fields, $this, $widget_args, $context );
1343 1343
 
1344
-		$gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal';
1344
+		$gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal';
1345 1345
 
1346 1346
 		/** @since 1.14 */
1347
-		$gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any';
1347
+		$gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any';
1348 1348
 
1349
-		$custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : '';
1349
+		$custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : '';
1350 1350
 
1351 1351
 		$gravityview_view->search_class = self::get_search_class( $custom_class );
1352 1352
 
1353
-		$gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false;
1353
+		$gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false;
1354 1354
 
1355 1355
 		if ( $this->has_date_field( $search_fields ) ) {
1356 1356
 			// enqueue datepicker stuff only if needed!
@@ -1372,10 +1372,10 @@  discard block
 block discarded – undo
1372 1372
 	public static function get_search_class( $custom_class = '' ) {
1373 1373
 		$gravityview_view = GravityView_View::getInstance();
1374 1374
 
1375
-		$search_class = 'gv-search-'.$gravityview_view->search_layout;
1375
+		$search_class = 'gv-search-' . $gravityview_view->search_layout;
1376 1376
 
1377
-		if ( ! empty( $custom_class )  ) {
1378
-			$search_class .= ' '.$custom_class;
1377
+		if ( ! empty( $custom_class ) ) {
1378
+			$search_class .= ' ' . $custom_class;
1379 1379
 		}
1380 1380
 
1381 1381
 		/**
@@ -1419,9 +1419,9 @@  discard block
 block discarded – undo
1419 1419
 
1420 1420
 		if ( ! $label ) {
1421 1421
 
1422
-			$label = isset( $form_field['label'] ) ? $form_field['label'] : '';
1422
+			$label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : '';
1423 1423
 
1424
-			switch( $field['field'] ) {
1424
+			switch ( $field[ 'field' ] ) {
1425 1425
 				case 'search_all':
1426 1426
 					$label = __( 'Search Entries:', 'gravityview' );
1427 1427
 					break;
@@ -1433,10 +1433,10 @@  discard block
 block discarded – undo
1433 1433
 					break;
1434 1434
 				default:
1435 1435
 					// If this is a field input, not a field
1436
-					if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) {
1436
+					if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) {
1437 1437
 
1438 1438
 						// Get the label for the field in question, which returns an array
1439
-						$items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) );
1439
+						$items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) );
1440 1440
 
1441 1441
 						// Get the item with the `label` key
1442 1442
 						$values = wp_list_pluck( $items, 'label' );
@@ -1475,32 +1475,32 @@  discard block
 block discarded – undo
1475 1475
 		$form = $gravityview_view->getForm();
1476 1476
 
1477 1477
 		// for advanced field ids (eg, first name / last name )
1478
-		$name = 'filter_' . str_replace( '.', '_', $field['field'] );
1478
+		$name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] );
1479 1479
 
1480 1480
 		// get searched value from $_GET/$_POST (string or array)
1481 1481
 		$value = $this->rgget_or_rgpost( $name );
1482 1482
 
1483 1483
 		// get form field details
1484
-		$form_field = gravityview_get_field( $form, $field['field'] );
1484
+		$form_field = gravityview_get_field( $form, $field[ 'field' ] );
1485 1485
 
1486 1486
 		$filter = array(
1487
-			'key' => $field['field'],
1487
+			'key' => $field[ 'field' ],
1488 1488
 			'name' => $name,
1489 1489
 			'label' => self::get_field_label( $field, $form_field ),
1490
-			'input' => $field['input'],
1490
+			'input' => $field[ 'input' ],
1491 1491
 			'value' => $value,
1492
-			'type' => $form_field['type'],
1492
+			'type' => $form_field[ 'type' ],
1493 1493
 		);
1494 1494
 
1495 1495
 		// collect choices
1496
-		if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) {
1497
-			$filter['choices'] = gravityview_get_terms_choices();
1498
-		} elseif ( ! empty( $form_field['choices'] ) ) {
1499
-			$filter['choices'] = $form_field['choices'];
1496
+		if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) {
1497
+			$filter[ 'choices' ] = gravityview_get_terms_choices();
1498
+		} elseif ( ! empty( $form_field[ 'choices' ] ) ) {
1499
+			$filter[ 'choices' ] = $form_field[ 'choices' ];
1500 1500
 		}
1501 1501
 
1502
-		if ( 'date_range' === $field['input'] && empty( $value ) ) {
1503
-			$filter['value'] = array( 'start' => '', 'end' => '' );
1502
+		if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) {
1503
+			$filter[ 'value' ] = array( 'start' => '', 'end' => '' );
1504 1504
 		}
1505 1505
 
1506 1506
 		return $filter;
@@ -1524,7 +1524,7 @@  discard block
 block discarded – undo
1524 1524
 
1525 1525
 		$choices = array();
1526 1526
 		foreach ( $users as $user ) {
1527
-			$choices[] = array(
1527
+			$choices[ ] = array(
1528 1528
 				'value' => $user->ID,
1529 1529
 				'text' => $user->display_name,
1530 1530
 			);
@@ -1544,9 +1544,9 @@  discard block
 block discarded – undo
1544 1544
 
1545 1545
 		$choices = array();
1546 1546
 		foreach ( GravityView_Entry_Approval_Status::get_all() as $status ) {
1547
-			$choices[] = array(
1548
-				'value' => $status['value'],
1549
-				'text' => $status['label'],
1547
+			$choices[ ] = array(
1548
+				'value' => $status[ 'value' ],
1549
+				'text' => $status[ 'label' ],
1550 1550
 			);
1551 1551
 		}
1552 1552
 
@@ -1598,7 +1598,7 @@  discard block
 block discarded – undo
1598 1598
 	 */
1599 1599
 	public function add_datepicker_js_dependency( $js_dependencies ) {
1600 1600
 
1601
-		$js_dependencies[] = 'jquery-ui-datepicker';
1601
+		$js_dependencies[ ] = 'jquery-ui-datepicker';
1602 1602
 
1603 1603
 		return $js_dependencies;
1604 1604
 	}
@@ -1642,7 +1642,7 @@  discard block
 block discarded – undo
1642 1642
 			'isRTL'             => is_rtl(),
1643 1643
 		), $view_data );
1644 1644
 
1645
-		$localizations['datepicker'] = $datepicker_settings;
1645
+		$localizations[ 'datepicker' ] = $datepicker_settings;
1646 1646
 
1647 1647
 		return $localizations;
1648 1648
 
@@ -1669,7 +1669,7 @@  discard block
 block discarded – undo
1669 1669
 	 * @return void
1670 1670
 	 */
1671 1671
 	private function maybe_enqueue_flexibility() {
1672
-		if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) {
1672
+		if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) {
1673 1673
 			wp_enqueue_script( 'gv-flexibility' );
1674 1674
 		}
1675 1675
 	}
@@ -1691,7 +1691,7 @@  discard block
 block discarded – undo
1691 1691
 		add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 );
1692 1692
 
1693 1693
 		$scheme = is_ssl() ? 'https://' : 'http://';
1694
-		wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' );
1694
+		wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' );
1695 1695
 
1696 1696
 		/**
1697 1697
 		 * @filter `gravityview_search_datepicker_class`
@@ -1770,7 +1770,7 @@  discard block
 block discarded – undo
1770 1770
 	public function add_preview_inputs() {
1771 1771
 		global $wp;
1772 1772
 
1773
-		if ( ! is_preview() || ! current_user_can( 'publish_gravityviews') ) {
1773
+		if ( ! is_preview() || ! current_user_can( 'publish_gravityviews' ) ) {
1774 1774
 			return;
1775 1775
 		}
1776 1776
 
@@ -1822,7 +1822,7 @@  discard block
 block discarded – undo
1822 1822
  */
1823 1823
 class GravityView_Widget_Search_Author_GF_Query_Condition extends \GF_Query_Condition {
1824 1824
 	public function __construct( $filter, $view ) {
1825
-		$this->value = $filter['value'];
1825
+		$this->value = $filter[ 'value' ];
1826 1826
 		$this->view = $view;
1827 1827
 	}
1828 1828
 
@@ -1854,11 +1854,11 @@  discard block
 block discarded – undo
1854 1854
 		$conditions = array();
1855 1855
 
1856 1856
 		foreach ( $user_fields as $user_field ) {
1857
-			$conditions[] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) .  '%' );
1857
+			$conditions[ ] = $wpdb->prepare( "`u`.`$user_field` LIKE %s", '%' . $wpdb->esc_like( $this->value ) . '%' );
1858 1858
 		}
1859 1859
 
1860 1860
 		foreach ( $user_meta_fields as $meta_field ) {
1861
-			$conditions[] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) .  '%' );
1861
+			$conditions[ ] = $wpdb->prepare( "(`um`.`meta_key` = %s AND `um`.`meta_value` LIKE %s)", $meta_field, '%' . $wpdb->esc_like( $this->value ) . '%' );
1862 1862
 		}
1863 1863
 
1864 1864
 		$conditions = '(' . implode( ' OR ', $conditions ) . ')';
@@ -1887,9 +1887,9 @@  discard block
 block discarded – undo
1887 1887
 
1888 1888
 		$conditions = array();
1889 1889
 
1890
-		foreach ( $parameters['aliases'] as $key => $alias ) {
1891
-			if ( 'm' == $alias[0] && preg_match( '#\d+_\d+#', $key ) ) {
1892
-				$conditions[] = sprintf( "EXISTS(SELECT * FROM `$table` WHERE `meta_value` %s %s AND `entry_id` = `%s`.`entry_id`)",
1890
+		foreach ( $parameters[ 'aliases' ] as $key => $alias ) {
1891
+			if ( 'm' == $alias[ 0 ] && preg_match( '#\d+_\d+#', $key ) ) {
1892
+				$conditions[ ] = sprintf( "EXISTS(SELECT * FROM `$table` WHERE `meta_value` %s %s AND `entry_id` = `%s`.`entry_id`)",
1893 1893
 					$this->search_condition->operator, $this->search_condition->right->sql( $query ), $alias );
1894 1894
 			}
1895 1895
 		}
Please login to merge, or discard this patch.