Completed
Push — master ( 5d7bd1...022e44 )
by Zack
04:13
created
includes/admin/field-types/type_radio.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,12 +19,12 @@
 block discarded – undo
19 19
 	}
20 20
 
21 21
 	function render_input( $override_input = null ) {
22
-		if( isset( $override_input ) ) {
22
+		if ( isset( $override_input ) ) {
23 23
 			echo $override_input;
24 24
 			return;
25 25
 		}
26 26
 
27
-		foreach( $this->field['options'] as $value => $label ) : ?>
27
+		foreach ( $this->field[ 'options' ] as $value => $label ) : ?>
28 28
 		<label class="<?php echo $this->get_label_class(); ?>">
29 29
 			<input name="<?php echo esc_attr( $this->name ); ?>" id="<?php echo $this->get_field_id(); ?>-<?php echo esc_attr( $value ); ?>" type="radio" value="<?php echo esc_attr( $value ); ?>" <?php checked( $value, $this->value, true ); ?> />&nbsp;<?php echo esc_html( $label ); ?>
30 30
 		</label>
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field-radio.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 	var $name = 'radio';
11 11
 
12
-	var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains');
12
+	var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains' );
13 13
 
14 14
 	var $_gf_field_class_name = 'GF_Field_Radio';
15 15
 
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
 		// Set the $_field_id var
39 39
 		$field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type );
40 40
 		
41
-		if( $this->is_choice_value_enabled() ) {
42
-			$field_options['choice_display'] = array(
41
+		if ( $this->is_choice_value_enabled() ) {
42
+			$field_options[ 'choice_display' ] = array(
43 43
 				'type'    => 'radio',
44 44
 				'value'   => 'value',
45 45
 				'label'   => __( 'What should be displayed:', 'gravityview' ),
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field-checkbox.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 	var $name = 'checkbox';
11 11
 
12
-	var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains');
12
+	var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains' );
13 13
 
14 14
 	var $_gf_field_class_name = 'GF_Field_Checkbox';
15 15
 
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
39 39
 		$field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type );
40 40
 
41 41
 		// It's not the parent field; it's an input
42
-		if( floor( $field_id ) !== floatval( $field_id ) ) {
42
+		if ( floor( $field_id ) !== floatval( $field_id ) ) {
43 43
 
44
-			if( $this->is_choice_value_enabled() ) {
45
-				$field_options['choice_display'] = array(
44
+			if ( $this->is_choice_value_enabled() ) {
45
+				$field_options[ 'choice_display' ] = array(
46 46
 					'type'    => 'radio',
47 47
 					'value'   => 'value',
48 48
 					'class'   => 'vertical',
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field-select.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
 		// Set the $_field_id var
39 39
 		$field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type );
40 40
 
41
-		if( $this->is_choice_value_enabled() ) {
42
-			$field_options['choice_display'] = array(
41
+		if ( $this->is_choice_value_enabled() ) {
42
+			$field_options[ 'choice_display' ] = array(
43 43
 				'type'    => 'radio',
44 44
 				'value'   => 'value',
45 45
 				'label'   => __( 'What should be displayed:', 'gravityview' ),
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
 		add_filter( 'gravityview/sortable/field_blacklist', array( $this, '_filter_sortable_fields' ), 1 );
111 111
 
112
-		if( $this->_custom_merge_tag ) {
112
+		if ( $this->_custom_merge_tag ) {
113 113
 			add_filter( 'gform_custom_merge_tags', array( $this, '_filter_gform_custom_merge_tags' ), 10, 4 );
114 114
 			add_filter( 'gform_replace_merge_tags', array( $this, '_filter_gform_replace_merge_tags' ), 10, 7 );
115 115
 		}
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 	 *
132 132
 	 * @return string Original text if {_custom_merge_tag} isn't found. Otherwise, replaced text.
133 133
 	 */
134
-	public function _filter_gform_replace_merge_tags( $text, $form = array(), $entry = array(), $url_encode = false, $esc_html = false  ) {
134
+	public function _filter_gform_replace_merge_tags( $text, $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) {
135 135
 
136 136
 		/**
137 137
 		 * This prevents the gform_replace_merge_tags filter from being called twice, as defined in:
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 		 * @see GFCommon::replace_variables_prepopulate()
140 140
 		 * @todo Remove eventually: Gravity Forms fixed this issue in 1.9.14
141 141
 		 */
142
-		if( false === $form ) {
142
+		if ( false === $form ) {
143 143
 			return $text;
144 144
 		}
145 145
 
@@ -172,19 +172,19 @@  discard block
 block discarded – undo
172 172
 	 */
173 173
 	public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) {
174 174
 
175
-		foreach( $matches as $match ) {
175
+		foreach ( $matches as $match ) {
176 176
 
177
-			$full_tag = $match[0];
177
+			$full_tag = $match[ 0 ];
178 178
 
179 179
 			// Strip the Merge Tags
180
-			$tag = str_replace( array( '{', '}'), '', $full_tag );
180
+			$tag = str_replace( array( '{', '}' ), '', $full_tag );
181 181
 
182 182
 			// Replace the value from the entry, if exists
183
-			if( isset( $entry[ $tag ] ) ) {
183
+			if ( isset( $entry[ $tag ] ) ) {
184 184
 
185 185
 				$value = $entry[ $tag ];
186 186
 
187
-				if( is_callable( array( $this, 'get_content') ) ) {
187
+				if ( is_callable( array( $this, 'get_content' ) ) ) {
188 188
 					$value = $this->get_content( $value );
189 189
 				}
190 190
 
@@ -257,8 +257,8 @@  discard block
 block discarded – undo
257 257
 	 */
258 258
 	public function _filter_sortable_fields( $not_sortable ) {
259 259
 
260
-		if( ! $this->is_sortable ) {
261
-			$not_sortable[] = $this->name;
260
+		if ( ! $this->is_sortable ) {
261
+			$not_sortable[ ] = $this->name;
262 262
 		}
263 263
 
264 264
 		return $not_sortable;
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
 			'date_display' => array(
288 288
 				'type' => 'text',
289 289
 				'label' => __( 'Override Date Format', 'gravityview' ),
290
-				'desc' => sprintf( __( 'Define how the date is displayed (using %sthe PHP date format%s)', 'gravityview'), '<a href="https://codex.wordpress.org/Formatting_Date_and_Time">', '</a>' ),
290
+				'desc' => sprintf( __( 'Define how the date is displayed (using %sthe PHP date format%s)', 'gravityview' ), '<a href="https://codex.wordpress.org/Formatting_Date_and_Time">', '</a>' ),
291 291
 				/**
292 292
 				 * @filter `gravityview_date_format` Override the date format with a [PHP date format](https://codex.wordpress.org/Formatting_Date_and_Time)
293 293
 				 * @param[in,out] null|string $date_format Date Format (default: null)
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 
313 313
 		$options = $this->field_support_options();
314 314
 
315
-		if( isset( $options[ $key ] ) ) {
315
+		if ( isset( $options[ $key ] ) ) {
316 316
 			$field_options[ $key ] = $options[ $key ];
317 317
 		}
318 318
 
@@ -376,11 +376,11 @@  discard block
 block discarded – undo
376 376
 		$connected_form = rgpost( 'form_id' );
377 377
 
378 378
 		// Otherwise, get the Form ID from the Post page
379
-		if( empty( $connected_form ) ) {
379
+		if ( empty( $connected_form ) ) {
380 380
 			$connected_form = gravityview_get_form_id( get_the_ID() );
381 381
 		}
382 382
 
383
-		if( empty( $connected_form ) ) {
383
+		if ( empty( $connected_form ) ) {
384 384
 			do_action( 'gravityview_log_error', sprintf( '%s: Form not found for form ID "%s"', __METHOD__, $connected_form ) );
385 385
 			return false;
386 386
 		}
Please login to merge, or discard this patch.
plugin-and-theme-hooks/class-gravityview-plugin-hooks-gravityformsquiz.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -48,25 +48,25 @@
 block discarded – undo
48 48
 		
49 49
 		$quiz_fields = GFAPI::get_fields_by_type( $form, 'quiz' );
50 50
 		
51
-		if( ! empty( $quiz_fields ) ) {
51
+		if ( ! empty( $quiz_fields ) ) {
52 52
 			
53
-			$fields['gquiz_score']   = array(
53
+			$fields[ 'gquiz_score' ] = array(
54 54
 				'label' => __( 'Quiz Score Total', 'gravityview' ),
55 55
 				'type'  => 'quiz_score',
56 56
 				'desc'  => __( 'Displays the number of correct Quiz answers the user submitted.', 'gravityview' ),
57 57
 			);
58
-			$fields['gquiz_percent'] = array(
58
+			$fields[ 'gquiz_percent' ] = array(
59 59
 				'label' => __( 'Quiz Percentage Grade', 'gravityview' ),
60 60
 				'type'  => 'quiz_percent',
61 61
 				'desc'  => __( 'Displays the percentage of correct Quiz answers the user submitted.', 'gravityview' ),
62 62
 			);
63
-			$fields['gquiz_grade']   = array(
63
+			$fields[ 'gquiz_grade' ] = array(
64 64
 				/* translators: This is a field type used by the Gravity Forms Quiz Addon. "A" is 100-90, "B" is 89-80, "C" is 79-70, etc.  */
65 65
 				'label' => __( 'Quiz Letter Grade', 'gravityview' ),
66 66
 				'type'  => 'quiz_grade',
67 67
 				'desc'  => __( 'Displays the Grade the user achieved based on Letter Grading configured in the Quiz Settings.', 'gravityview' ),
68 68
 			);
69
-			$fields['gquiz_is_pass'] = array(
69
+			$fields[ 'gquiz_is_pass' ] = array(
70 70
 				'label' => __( 'Quiz Pass/Fail', 'gravityview' ),
71 71
 				'type'  => 'quiz_is_pass',
72 72
 				'desc'  => __( 'Displays either Passed or Failed based on the Pass/Fail settings configured in the Quiz Settings.', 'gravityview' ),
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field-list.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 		// Add the list columns
63 63
 		foreach ( $list_fields as $list_field ) {
64 64
 
65
-			if( empty( $list_field->enableColumns ) ) {
65
+			if ( empty( $list_field->enableColumns ) ) {
66 66
 				continue;
67 67
 			}
68 68
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 			}
84 84
 
85 85
 			// If there are columns, add them under the parent field
86
-			if( ! empty( $list_columns ) ) {
86
+			if ( ! empty( $list_columns ) ) {
87 87
 				$index = array_search( $list_field->id, array_keys( $fields ) );
88 88
 				array_splice( $fields, ( $index + 1 ), 0, $list_columns );
89 89
 			}
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
 		$list_rows = maybe_unserialize( $field_value );
114 114
 
115
-		if( ! is_array( $list_rows ) ) {
115
+		if ( ! is_array( $list_rows ) ) {
116 116
 			do_action( 'gravityview_log_error', __METHOD__ . ' - $field_value did not unserialize', $field_value );
117 117
 			return null;
118 118
 		}
@@ -125,15 +125,15 @@  discard block
 block discarded – undo
125 125
 			foreach ( $list_row as $column_key => $column_value ) {
126 126
 
127 127
 				// If the label of the column matches $column_id, or the numeric key value matches, add the value
128
-				if( (string)$column_key === (string)$column_id || ( is_numeric( $column_id ) && (int)$column_id === $current_column ) ) {
129
-					$column_values[] = $column_value;
128
+				if ( (string)$column_key === (string)$column_id || ( is_numeric( $column_id ) && (int)$column_id === $current_column ) ) {
129
+					$column_values[ ] = $column_value;
130 130
 				}
131 131
 				$current_column++;
132 132
 			}
133 133
 		}
134 134
 
135 135
 		// Return the array of values
136
-		if( 'raw' === $format ) {
136
+		if ( 'raw' === $format ) {
137 137
 			return $column_values;
138 138
 		}
139 139
 		// Return the Gravity Forms Field output
@@ -156,22 +156,22 @@  discard block
 block discarded – undo
156 156
 	 */
157 157
 	public function _filter_field_label( $label, $field, $form, $entry ) {
158 158
 
159
-		$field_object = RGFormsModel::get_field( $form, $field['id'] );
159
+		$field_object = RGFormsModel::get_field( $form, $field[ 'id' ] );
160 160
 
161 161
 		// Not a list field
162
-		if( ! $field_object || 'list' !== $field_object->type ) {
162
+		if ( ! $field_object || 'list' !== $field_object->type ) {
163 163
 			return $label;
164 164
 		}
165 165
 
166 166
 		// Custom label is defined, so use it
167
-		if( ! empty( $field['custom_label'] ) ) {
167
+		if ( ! empty( $field[ 'custom_label' ] ) ) {
168 168
 			return $label;
169 169
 		}
170 170
 
171
-		$column_id = gravityview_get_input_id_from_id( $field['id'] );
171
+		$column_id = gravityview_get_input_id_from_id( $field[ 'id' ] );
172 172
 
173 173
 		// Parent field, not column field
174
-		if( false === $column_id ) {
174
+		if ( false === $column_id ) {
175 175
 			return $label;
176 176
 		}
177 177
 
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	public static function get_column_label( GF_Field_List $field, $column_id, $backup_label = '' ) {
193 193
 
194 194
 		// Doesn't have columns enabled
195
-		if( ! isset( $field->choices ) || ! $field->enableColumns ) {
195
+		if ( ! isset( $field->choices ) || ! $field->enableColumns ) {
196 196
 			return $backup_label;
197 197
 		}
198 198
 
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field-password.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -49,17 +49,17 @@  discard block
 block discarded – undo
49 49
 	 *
50 50
 	 * @return string If a custom field label isn't set, return the field label for the password field
51 51
 	 */
52
-	function field_label( $label = '', $field = array(), $form = array(), $entry = array() ){
52
+	function field_label( $label = '', $field = array(), $form = array(), $entry = array() ) {
53 53
 
54 54
 		// If using a custom label, no need to fetch the parent label
55
-		if( ! is_numeric( $field['id'] ) || ! empty( $field['custom_label'] ) ) {
55
+		if ( ! is_numeric( $field[ 'id' ] ) || ! empty( $field[ 'custom_label' ] ) ) {
56 56
 			return $label;
57 57
 		}
58 58
 
59
-		$field_object = GFFormsModel::get_field( $form, $field['id'] );
59
+		$field_object = GFFormsModel::get_field( $form, $field[ 'id' ] );
60 60
 
61
-		if( $field_object && 'password' === $field_object->type ) {
62
-			$label = $field['label'];
61
+		if ( $field_object && 'password' === $field_object->type ) {
62
+			$label = $field[ 'label' ];
63 63
 		}
64 64
 
65 65
 		return $label;
@@ -79,16 +79,16 @@  discard block
 block discarded – undo
79 79
 	function add_form_fields( $fields = array(), $form = array(), $include_parent_field = true ) {
80 80
 
81 81
 		foreach ( $fields as $key => $field ) {
82
-			if( 'password' === $field['type'] ) {
82
+			if ( 'password' === $field[ 'type' ] ) {
83 83
 
84 84
 				// The Enter Password input
85
-				if( floor( $key ) === floatval( $key ) ) {
86
-					$field['label'] = $field['parent']->label;
87
-					$field['adminOnly'] = $field['parent']->adminOnly;
88
-					$field['adminLabel'] = $field['parent']->adminLabel;
85
+				if ( floor( $key ) === floatval( $key ) ) {
86
+					$field[ 'label' ] = $field[ 'parent' ]->label;
87
+					$field[ 'adminOnly' ] = $field[ 'parent' ]->adminOnly;
88
+					$field[ 'adminLabel' ] = $field[ 'parent' ]->adminLabel;
89 89
 
90 90
 					// Don't show as a child input
91
-					unset( $field['parent'] );
91
+					unset( $field[ 'parent' ] );
92 92
 
93 93
 					$fields[ $key ] = $field;
94 94
 				} else {
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	 *
50 50
 	 * @return string If a custom field label isn't set, return the field label for the password field
51 51
 	 */
52
-	function field_label( $label = '', $field = array(), $form = array(), $entry = array() ){
52
+	function field_label( $label = '', $field = array(), $form = array(), $entry = array() ) {
53 53
 
54 54
 		// If using a custom label, no need to fetch the parent label
55 55
 		if( ! is_numeric( $field['id'] ) || ! empty( $field['custom_label'] ) ) {
Please login to merge, or discard this patch.
includes/widgets/search-widget/class-search-widget.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 	/**
202 202
 	 * Add admin script to the no-conflict scripts whitelist
203 203
 	 * @param array $allowed Scripts allowed in no-conflict mode
204
-	 * @return array Scripts allowed in no-conflict mode, plus the search widget script
204
+	 * @return string[] Scripts allowed in no-conflict mode, plus the search widget script
205 205
 	 */
206 206
 	public function register_no_conflict( $allowed ) {
207 207
 		$allowed[] = 'gravityview_searchwidget_admin';
@@ -889,7 +889,7 @@  discard block
 block discarded – undo
889 889
 	/**
890 890
 	 * Get the label for a search form field
891 891
 	 * @param  array $field      Field setting as sent by the GV configuration - has `field`, `input` (input type), and `label` keys
892
-	 * @param  array $form_field Form field data, as fetched by `gravityview_get_field()`
892
+	 * @param  GF_Field|null $form_field Form field data, as fetched by `gravityview_get_field()`
893 893
 	 * @return string             Label for the search form
894 894
 	 */
895 895
 	private static function get_field_label( $field, $form_field = array() ) {
@@ -1058,7 +1058,7 @@  discard block
 block discarded – undo
1058 1058
 	/**
1059 1059
 	 * Require the datepicker script for the frontend GV script
1060 1060
 	 * @param array $js_dependencies Array of existing required scripts for the fe-views.js script
1061
-	 * @return array Array required scripts, with `jquery-ui-datepicker` added
1061
+	 * @return string[] Array required scripts, with `jquery-ui-datepicker` added
1062 1062
 	 */
1063 1063
 	public function add_datepicker_js_dependency( $js_dependencies ) {
1064 1064
 
@@ -1070,7 +1070,7 @@  discard block
 block discarded – undo
1070 1070
 	/**
1071 1071
 	 * Modify the array passed to wp_localize_script()
1072 1072
 	 *
1073
-	 * @param array $js_localization The data padded to the Javascript file
1073
+	 * @param array $localizations The data padded to the Javascript file
1074 1074
 	 * @param array $view_data View data array with View settings
1075 1075
 	 *
1076 1076
 	 * @return array
Please login to merge, or discard this patch.
Spacing   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 				'type' => 'radio',
64 64
 				'full_width' => true,
65 65
 				'label' => esc_html__( 'Search Mode', 'gravityview' ),
66
-				'desc' => __('Should search results match all search fields, or any?', 'gravityview'),
66
+				'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ),
67 67
 				'value' => 'any',
68 68
 				'class' => 'hide-if-js',
69 69
 				'options' => array(
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
 		// admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999
87 87
 		add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 );
88
-		add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') );
88
+		add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) );
89 89
 		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
90 90
 
91 91
 		// ajax - get the searchable fields
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 		$script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
150 150
 		$script_source = empty( $script_min ) ? '/source' : '';
151 151
 
152
-		wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js'.$script_source.'/admin-search-widget'.$script_min.'.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), GravityView_Plugin::version );
152
+		wp_enqueue_script( 'gravityview_searchwidget_admin', plugins_url( 'assets/js' . $script_source . '/admin-search-widget' . $script_min . '.js', __FILE__ ), array( 'jquery', 'gravityview_views_scripts' ), GravityView_Plugin::version );
153 153
 
154 154
 
155 155
 		/**
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 	 * @return array Scripts allowed in no-conflict mode, plus the search widget script
205 205
 	 */
206 206
 	public function register_no_conflict( $allowed ) {
207
-		$allowed[] = 'gravityview_searchwidget_admin';
207
+		$allowed[ ] = 'gravityview_searchwidget_admin';
208 208
 		return $allowed;
209 209
 	}
210 210
 
@@ -217,24 +217,24 @@  discard block
 block discarded – undo
217 217
 	 */
218 218
 	public static function get_searchable_fields() {
219 219
 
220
-		if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) {
220
+		if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) {
221 221
 			exit( '0' );
222 222
 		}
223 223
 
224 224
 		$form = '';
225 225
 
226 226
 		// Fetch the form for the current View
227
-		if ( ! empty( $_POST['view_id'] ) ) {
227
+		if ( ! empty( $_POST[ 'view_id' ] ) ) {
228 228
 
229
-			$form = gravityview_get_form_id( $_POST['view_id'] );
229
+			$form = gravityview_get_form_id( $_POST[ 'view_id' ] );
230 230
 
231
-		} elseif ( ! empty( $_POST['formid'] ) ) {
231
+		} elseif ( ! empty( $_POST[ 'formid' ] ) ) {
232 232
 
233
-			$form = (int) $_POST['formid'];
233
+			$form = (int)$_POST[ 'formid' ];
234 234
 
235
-		} elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) {
235
+		} elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) {
236 236
 
237
-			$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
237
+			$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
238 238
 
239 239
 		}
240 240
 
@@ -279,8 +279,8 @@  discard block
 block discarded – undo
279 279
 			)
280 280
 		);
281 281
 
282
-		foreach( $custom_fields as $custom_field_key => $custom_field ) {
283
-			$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'] );
282
+		foreach ( $custom_fields as $custom_field_key => $custom_field ) {
283
+			$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' ] );
284 284
 		}
285 285
 
286 286
 		// Get fields with sub-inputs and no parent
@@ -302,13 +302,13 @@  discard block
 block discarded – undo
302 302
 
303 303
 			foreach ( $fields as $id => $field ) {
304 304
 
305
-				if ( in_array( $field['type'], $blacklist_field_types ) ) {
305
+				if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) {
306 306
 					continue;
307 307
 				}
308 308
 
309
-				$types = self::get_search_input_types( $id, $field['type'] );
309
+				$types = self::get_search_input_types( $id, $field[ 'type' ] );
310 310
 
311
-				$output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>';
311
+				$output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>';
312 312
 			}
313 313
 		}
314 314
 
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 	public static function get_search_input_types( $id = '', $field_type = null ) {
331 331
 
332 332
 		// @todo - This needs to be improved - many fields have . including products and addresses
333
-		if ( false !== strpos( (string) $id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) {
333
+		if ( false !== strpos( (string)$id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) {
334 334
 			$input_type = 'boolean'; // on/off checkbox
335 335
 		} elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) {
336 336
 			$input_type = 'multi'; //multiselect
@@ -372,19 +372,19 @@  discard block
 block discarded – undo
372 372
 			$post_id = 0;
373 373
 
374 374
 			// We're in the WordPress Widget context, and an overriding post ID has been set.
375
-			if ( ! empty( $widget_args['post_id'] ) ) {
376
-				$post_id = absint( $widget_args['post_id'] );
375
+			if ( ! empty( $widget_args[ 'post_id' ] ) ) {
376
+				$post_id = absint( $widget_args[ 'post_id' ] );
377 377
 			}
378 378
 			// We're in the WordPress Widget context, and the base View ID should be used
379
-			else if ( ! empty( $widget_args['view_id'] ) ) {
380
-				$post_id = absint( $widget_args['view_id'] );
379
+			else if ( ! empty( $widget_args[ 'view_id' ] ) ) {
380
+				$post_id = absint( $widget_args[ 'view_id' ] );
381 381
 			}
382 382
 
383 383
 			$args = gravityview_get_permalink_query_args( $post_id );
384 384
 
385 385
 			// Add hidden fields to the search form
386 386
 			foreach ( $args as $key => $value ) {
387
-				$search_fields[] = array(
387
+				$search_fields[ ] = array(
388 388
 					'name'  => $key,
389 389
 					'input' => 'hidden',
390 390
 					'value' => $value,
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 	 */
406 406
 	public function filter_entries( $search_criteria ) {
407 407
 
408
-		if( 'post' === $this->search_method ) {
408
+		if ( 'post' === $this->search_method ) {
409 409
 			$get = $_POST;
410 410
 		} else {
411 411
 			$get = $_GET;
@@ -422,15 +422,15 @@  discard block
 block discarded – undo
422 422
 		$get = gv_map_deep( $get, 'urldecode' );
423 423
 
424 424
 		// add free search
425
-		if ( ! empty( $get['gv_search'] ) ) {
425
+		if ( ! empty( $get[ 'gv_search' ] ) ) {
426 426
 
427 427
 			// Search for a piece
428
-			$words = explode( ' ', $get['gv_search'] );
428
+			$words = explode( ' ', $get[ 'gv_search' ] );
429 429
 
430 430
 			$words = array_filter( $words );
431 431
 
432 432
 			foreach ( $words as $word ) {
433
-				$search_criteria['field_filters'][] = array(
433
+				$search_criteria[ 'field_filters' ][ ] = array(
434 434
 					'key' => null, // The field ID to search
435 435
 					'value' => $word, // The value to search
436 436
 					'operator' => 'contains', // What to search in. Options: `is` or `contains`
@@ -439,8 +439,8 @@  discard block
 block discarded – undo
439 439
 		}
440 440
 
441 441
 		//start date & end date
442
-		$curr_start = !empty( $get['gv_start'] ) ? $get['gv_start'] : '';
443
-		$curr_end = !empty( $get['gv_start'] ) ? $get['gv_end'] : '';
442
+		$curr_start = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_start' ] : '';
443
+		$curr_end = ! empty( $get[ 'gv_start' ] ) ? $get[ 'gv_end' ] : '';
444 444
 
445 445
         /**
446 446
          * @filter `gravityview_date_created_adjust_timezone` Whether to adjust the timezone for entries. \n
@@ -455,16 +455,16 @@  discard block
 block discarded – undo
455 455
 		/**
456 456
 		 * Don't set $search_criteria['start_date'] if start_date is empty as it may lead to bad query results (GFAPI::get_entries)
457 457
 		 */
458
-		if( !empty( $curr_start ) ) {
459
-			$search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start;
458
+		if ( ! empty( $curr_start ) ) {
459
+			$search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start;
460 460
 		}
461
-		if( !empty( $curr_end ) ) {
462
-			$search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end;
461
+		if ( ! empty( $curr_end ) ) {
462
+			$search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end;
463 463
 		}
464 464
 
465 465
 		// search for a specific entry ID
466 466
 		if ( ! empty( $get[ 'gv_id' ] ) ) {
467
-			$search_criteria['field_filters'][] = array(
467
+			$search_criteria[ 'field_filters' ][ ] = array(
468 468
 				'key' => 'id',
469 469
 				'value' => absint( $get[ 'gv_id' ] ),
470 470
 				'operator' => '=',
@@ -473,36 +473,36 @@  discard block
 block discarded – undo
473 473
 
474 474
 		// search for a specific Created_by ID
475 475
 		if ( ! empty( $get[ 'gv_by' ] ) ) {
476
-			$search_criteria['field_filters'][] = array(
476
+			$search_criteria[ 'field_filters' ][ ] = array(
477 477
 				'key' => 'created_by',
478
-				'value' => absint( $get['gv_by'] ),
478
+				'value' => absint( $get[ 'gv_by' ] ),
479 479
 				'operator' => '=',
480 480
 			);
481 481
 		}
482 482
 
483 483
 
484 484
 		// Get search mode passed in URL
485
-		$mode = isset( $get['mode'] ) && in_array( $get['mode'], array( 'any', 'all' ) ) ?  $get['mode'] : 'any';
485
+		$mode = isset( $get[ 'mode' ] ) && in_array( $get[ 'mode' ], array( 'any', 'all' ) ) ? $get[ 'mode' ] : 'any';
486 486
 
487 487
 		// get the other search filters
488 488
 		foreach ( $get as $key => $value ) {
489 489
 
490
-			if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[0] ) ) ) {
490
+			if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[ 0 ] ) ) ) {
491 491
 				continue;
492 492
 			}
493 493
 
494 494
 			// could return simple filter or multiple filters
495 495
 			$filter = $this->prepare_field_filter( $key, $value );
496 496
 
497
-			if ( isset( $filter[0]['value'] ) ) {
498
-				$search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter );
497
+			if ( isset( $filter[ 0 ][ 'value' ] ) ) {
498
+				$search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter );
499 499
 
500 500
 				// if date range type, set search mode to ALL
501
-				if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>=', '<=', '>', '<' ) ) ) {
501
+				if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>=', '<=', '>', '<' ) ) ) {
502 502
 					$mode = 'all';
503 503
 				}
504
-			} elseif( !empty( $filter ) ) {
505
-				$search_criteria['field_filters'][] = $filter;
504
+			} elseif ( ! empty( $filter ) ) {
505
+				$search_criteria[ 'field_filters' ][ ] = $filter;
506 506
 			}
507 507
 		}
508 508
 
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
 		 * @since 1.5.1
512 512
 		 * @param[out,in] string $mode Search mode (`any` vs `all`)
513 513
 		 */
514
-		$search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode );
514
+		$search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode );
515 515
 
516 516
 		do_action( 'gravityview_log_debug', sprintf( '%s[filter_entries] Returned Search Criteria: ', get_class( $this ) ), $search_criteria );
517 517
 
@@ -549,11 +549,11 @@  discard block
 block discarded – undo
549 549
 			'value' => $value,
550 550
 		);
551 551
 
552
-		switch ( $form_field['type'] ) {
552
+		switch ( $form_field[ 'type' ] ) {
553 553
 
554 554
 			case 'select':
555 555
 			case 'radio':
556
-				$filter['operator'] = 'is';
556
+				$filter[ 'operator' ] = 'is';
557 557
 				break;
558 558
 
559 559
 			case 'post_category':
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
 
568 568
 				foreach ( $value as $val ) {
569 569
 					$cat = get_term( $val, 'category' );
570
-					$filter[] = array(
570
+					$filter[ ] = array(
571 571
 						'key' => $field_id,
572 572
 						'value' => esc_attr( $cat->name ) . ':' . $val,
573 573
 						'operator' => 'is',
@@ -586,18 +586,18 @@  discard block
 block discarded – undo
586 586
 				$filter = array();
587 587
 
588 588
 				foreach ( $value as $val ) {
589
-					$filter[] = array( 'key' => $field_id, 'value' => $val );
589
+					$filter[ ] = array( 'key' => $field_id, 'value' => $val );
590 590
 				}
591 591
 
592 592
 				break;
593 593
 
594 594
 			case 'checkbox':
595 595
 				// convert checkbox on/off into the correct search filter
596
-				if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field['inputs'] ) && ! empty( $form_field['choices'] ) ) {
597
-					foreach ( $form_field['inputs'] as $k => $input ) {
598
-						if ( $input['id'] == $field_id ) {
599
-							$filter['value'] = $form_field['choices'][ $k ]['value'];
600
-							$filter['operator'] = 'is';
596
+				if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field[ 'inputs' ] ) && ! empty( $form_field[ 'choices' ] ) ) {
597
+					foreach ( $form_field[ 'inputs' ] as $k => $input ) {
598
+						if ( $input[ 'id' ] == $field_id ) {
599
+							$filter[ 'value' ] = $form_field[ 'choices' ][ $k ][ 'value' ];
600
+							$filter[ 'operator' ] = 'is';
601 601
 							break;
602 602
 						}
603 603
 					}
@@ -607,7 +607,7 @@  discard block
 block discarded – undo
607 607
 					$filter = array();
608 608
 
609 609
 					foreach ( $value as $val ) {
610
-						$filter[] = array(
610
+						$filter[ ] = array(
611 611
 								'key'   => $field_id,
612 612
 								'value' => $val,
613 613
 								'operator' => 'is',
@@ -628,9 +628,9 @@  discard block
 block discarded – undo
628 628
 					foreach ( $words as $word ) {
629 629
 						if ( ! empty( $word ) && strlen( $word ) > 1 ) {
630 630
 							// Keep the same key for each filter
631
-							$filter['value'] = $word;
631
+							$filter[ 'value' ] = $word;
632 632
 							// Add a search for the value
633
-							$filters[] = $filter;
633
+							$filters[ ] = $filter;
634 634
 						}
635 635
 					}
636 636
 
@@ -657,19 +657,19 @@  discard block
 block discarded – undo
657 657
 						 * @since 1.16.3
658 658
 						 * Safeguard until GF implements '<=' operator
659 659
 						 */
660
-						if( !GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) {
660
+						if ( ! GFFormsModel::is_valid_operator( $operator ) && $operator === '<=' ) {
661 661
 							$operator = '<';
662 662
 							$date = date( 'Y-m-d', strtotime( $date . ' +1 day' ) );
663 663
 						}
664 664
 
665
-						$filter[] = array(
665
+						$filter[ ] = array(
666 666
 							'key' => $field_id,
667 667
 							'value' => self::get_formatted_date( $date, 'Y-m-d' ),
668 668
 							'operator' => $operator,
669 669
 						);
670 670
 					}
671 671
 				} else {
672
-					$filter['value'] = self::get_formatted_date( $value, 'Y-m-d' );
672
+					$filter[ 'value' ] = self::get_formatted_date( $value, 'Y-m-d' );
673 673
 				}
674 674
 
675 675
 				break;
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
 			'ymd_dot' => 'Y.m.d',
701 701
 		);
702 702
 
703
-		if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){
703
+		if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) {
704 704
 			$format = $datepicker[ $field->dateFormat ];
705 705
 		}
706 706
 
@@ -731,7 +731,7 @@  discard block
 block discarded – undo
731 731
 	public function add_template_path( $file_paths ) {
732 732
 
733 733
 		// Index 100 is the default GravityView template path.
734
-		$file_paths[102] = self::$file . 'templates/';
734
+		$file_paths[ 102 ] = self::$file . 'templates/';
735 735
 
736 736
 		return $file_paths;
737 737
 	}
@@ -754,7 +754,7 @@  discard block
 block discarded – undo
754 754
 		}
755 755
 
756 756
 		// get configured search fields
757
-		$search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : '';
757
+		$search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : '';
758 758
 
759 759
 		if ( empty( $search_fields ) || ! is_array( $search_fields ) ) {
760 760
 			do_action( 'gravityview_log_debug', sprintf( '%s[render_frontend] No search fields configured for widget:', get_class( $this ) ), $widget_args );
@@ -768,24 +768,24 @@  discard block
 block discarded – undo
768 768
 
769 769
 			$updated_field = $field;
770 770
 
771
-			if ( in_array( $field['input'], array( 'date', 'date_range' ) ) ) {
771
+			if ( in_array( $field[ 'input' ], array( 'date', 'date_range' ) ) ) {
772 772
 				$has_date = true;
773 773
 			}
774 774
 
775 775
 			$updated_field = $this->get_search_filter_details( $updated_field );
776 776
 
777
-			switch ( $field['field'] ) {
777
+			switch ( $field[ 'field' ] ) {
778 778
 
779 779
 				case 'search_all':
780
-					$updated_field['key'] = 'search_all';
781
-					$updated_field['input'] = 'search_all';
782
-					$updated_field['value'] = $this->rgget_or_rgpost( 'gv_search' );
780
+					$updated_field[ 'key' ] = 'search_all';
781
+					$updated_field[ 'input' ] = 'search_all';
782
+					$updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_search' );
783 783
 					break;
784 784
 
785 785
 				case 'entry_date':
786
-					$updated_field['key'] = 'entry_date';
787
-					$updated_field['input'] = 'entry_date';
788
-					$updated_field['value'] = array(
786
+					$updated_field[ 'key' ] = 'entry_date';
787
+					$updated_field[ 'input' ] = 'entry_date';
788
+					$updated_field[ 'value' ] = array(
789 789
 						'start' => $this->rgget_or_rgpost( 'gv_start' ),
790 790
 						'end' => $this->rgget_or_rgpost( 'gv_end' ),
791 791
 					);
@@ -793,16 +793,16 @@  discard block
 block discarded – undo
793 793
 					break;
794 794
 
795 795
 				case 'entry_id':
796
-					$updated_field['key'] = 'entry_id';
797
-					$updated_field['input'] = 'entry_id';
798
-					$updated_field['value'] = $this->rgget_or_rgpost( 'gv_id' );
796
+					$updated_field[ 'key' ] = 'entry_id';
797
+					$updated_field[ 'input' ] = 'entry_id';
798
+					$updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_id' );
799 799
 					break;
800 800
 
801 801
 				case 'created_by':
802
-					$updated_field['key'] = 'created_by';
803
-					$updated_field['name'] = 'gv_by';
804
-					$updated_field['value'] = $this->rgget_or_rgpost( 'gv_by' );
805
-					$updated_field['choices'] = self::get_created_by_choices();
802
+					$updated_field[ 'key' ] = 'created_by';
803
+					$updated_field[ 'name' ] = 'gv_by';
804
+					$updated_field[ 'value' ] = $this->rgget_or_rgpost( 'gv_by' );
805
+					$updated_field[ 'choices' ] = self::get_created_by_choices();
806 806
 					break;
807 807
 			}
808 808
 
@@ -820,16 +820,16 @@  discard block
 block discarded – undo
820 820
 		 */
821 821
 		$gravityview_view->search_fields = apply_filters( 'gravityview_widget_search_filters', $search_fields, $this, $widget_args );
822 822
 
823
-		$gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal';
823
+		$gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal';
824 824
 
825 825
 		/** @since 1.14 */
826
-		$gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any';
826
+		$gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any';
827 827
 
828
-		$custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : '';
828
+		$custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : '';
829 829
 
830 830
 		$gravityview_view->search_class = self::get_search_class( $custom_class );
831 831
 
832
-		$gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false;
832
+		$gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false;
833 833
 
834 834
 		if ( $has_date ) {
835 835
 			// enqueue datepicker stuff only if needed!
@@ -851,10 +851,10 @@  discard block
 block discarded – undo
851 851
 	public static function get_search_class( $custom_class = '' ) {
852 852
 		$gravityview_view = GravityView_View::getInstance();
853 853
 
854
-		$search_class = 'gv-search-'.$gravityview_view->search_layout;
854
+		$search_class = 'gv-search-' . $gravityview_view->search_layout;
855 855
 
856
-		if ( ! empty( $custom_class )  ) {
857
-			$search_class .= ' '.$custom_class;
856
+		if ( ! empty( $custom_class ) ) {
857
+			$search_class .= ' ' . $custom_class;
858 858
 		}
859 859
 
860 860
 		/**
@@ -896,11 +896,11 @@  discard block
 block discarded – undo
896 896
 
897 897
 		$label = rgget( 'label', $field );
898 898
 
899
-		if( '' === $label ) {
899
+		if ( '' === $label ) {
900 900
 
901
-			$label = isset( $form_field['label'] ) ? $form_field['label'] : '';
901
+			$label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : '';
902 902
 
903
-			switch( $field['field'] ) {
903
+			switch ( $field[ 'field' ] ) {
904 904
 				case 'search_all':
905 905
 					$label = __( 'Search Entries:', 'gravityview' );
906 906
 					break;
@@ -918,10 +918,10 @@  discard block
 block discarded – undo
918 918
 					break;
919 919
 				default:
920 920
 					// If this is a field input, not a field
921
-					if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) {
921
+					if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) {
922 922
 
923 923
 						// Get the label for the field in question, which returns an array
924
-						$items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) );
924
+						$items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) );
925 925
 
926 926
 						// Get the item with the `label` key
927 927
 						$values = wp_list_pluck( $items, 'label' );
@@ -958,32 +958,32 @@  discard block
 block discarded – undo
958 958
 		$form = $gravityview_view->getForm();
959 959
 
960 960
 		// for advanced field ids (eg, first name / last name )
961
-		$name = 'filter_' . str_replace( '.', '_', $field['field'] );
961
+		$name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] );
962 962
 
963 963
 		// get searched value from $_GET/$_POST (string or array)
964 964
 		$value = $this->rgget_or_rgpost( $name );
965 965
 
966 966
 		// get form field details
967
-		$form_field = gravityview_get_field( $form, $field['field'] );
967
+		$form_field = gravityview_get_field( $form, $field[ 'field' ] );
968 968
 
969 969
 		$filter = array(
970
-			'key' => $field['field'],
970
+			'key' => $field[ 'field' ],
971 971
 			'name' => $name,
972 972
 			'label' => self::get_field_label( $field, $form_field ),
973
-			'input' => $field['input'],
973
+			'input' => $field[ 'input' ],
974 974
 			'value' => $value,
975
-			'type' => $form_field['type'],
975
+			'type' => $form_field[ 'type' ],
976 976
 		);
977 977
 
978 978
 		// collect choices
979
-		if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) {
980
-			$filter['choices'] = gravityview_get_terms_choices();
981
-		} elseif ( ! empty( $form_field['choices'] ) ) {
982
-			$filter['choices'] = $form_field['choices'];
979
+		if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) {
980
+			$filter[ 'choices' ] = gravityview_get_terms_choices();
981
+		} elseif ( ! empty( $form_field[ 'choices' ] ) ) {
982
+			$filter[ 'choices' ] = $form_field[ 'choices' ];
983 983
 		}
984 984
 
985
-		if ( 'date_range' === $field['input'] && empty( $value ) ) {
986
-			$filter['value'] = array( 'start' => '', 'end' => '' );
985
+		if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) {
986
+			$filter[ 'value' ] = array( 'start' => '', 'end' => '' );
987 987
 		}
988 988
 
989 989
 		return $filter;
@@ -1007,7 +1007,7 @@  discard block
 block discarded – undo
1007 1007
 
1008 1008
 		$choices = array();
1009 1009
 		foreach ( $users as $user ) {
1010
-			$choices[] = array(
1010
+			$choices[ ] = array(
1011 1011
 				'value' => $user->ID,
1012 1012
 				'text' => $user->display_name,
1013 1013
 			);
@@ -1062,7 +1062,7 @@  discard block
 block discarded – undo
1062 1062
 	 */
1063 1063
 	public function add_datepicker_js_dependency( $js_dependencies ) {
1064 1064
 
1065
-		$js_dependencies[] = 'jquery-ui-datepicker';
1065
+		$js_dependencies[ ] = 'jquery-ui-datepicker';
1066 1066
 
1067 1067
 		return $js_dependencies;
1068 1068
 	}
@@ -1106,7 +1106,7 @@  discard block
 block discarded – undo
1106 1106
 			'isRTL'             => is_rtl(),
1107 1107
 		), $view_data );
1108 1108
 
1109
-		$localizations['datepicker'] = $datepicker_settings;
1109
+		$localizations[ 'datepicker' ] = $datepicker_settings;
1110 1110
 
1111 1111
 		return $localizations;
1112 1112
 
@@ -1135,7 +1135,7 @@  discard block
 block discarded – undo
1135 1135
 	 * @return void
1136 1136
 	 */
1137 1137
 	private function maybe_enqueue_flexibility() {
1138
-		if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) {
1138
+		if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) {
1139 1139
 			wp_enqueue_script( 'gv-flexibility' );
1140 1140
 		}
1141 1141
 	}
@@ -1157,7 +1157,7 @@  discard block
 block discarded – undo
1157 1157
 		add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 );
1158 1158
 
1159 1159
 		$scheme = is_ssl() ? 'https://' : 'http://';
1160
-		wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' );
1160
+		wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' );
1161 1161
 
1162 1162
 		/**
1163 1163
 		 * @filter `gravityview_search_datepicker_class`
Please login to merge, or discard this patch.