Completed
Pull Request — master (#651)
by Zack
03:46
created
includes/widgets/search-widget/templates/search-field-date.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 ?>
12 12
 
13 13
 <div class="gv-search-box gv-search-date">
14
-	<?php if( ! gv_empty( $search_field['label'], false ) ) { ?>
15
-	<label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label>
14
+	<?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?>
15
+	<label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label>
16 16
 	<?php } ?>
17 17
 	<p>
18
-		<input type="text" name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" value="<?php echo esc_attr( $search_field['value'] ); ?>" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" >
18
+		<input type="text" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="<?php echo esc_attr( $search_field[ 'value' ] ); ?>" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" >
19 19
 	</p>
20 20
 </div>
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-multiselect.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,22 +10,22 @@
 block discarded – undo
10 10
 $search_field = $gravityview_view->search_field;
11 11
 
12 12
 // Make sure that there are choices to display
13
-if( empty( $search_field['choices'] ) ) {
14
-	do_action('gravityview_log_debug', 'search-field-multiselect.php - No choices for field' );
13
+if ( empty( $search_field[ 'choices' ] ) ) {
14
+	do_action( 'gravityview_log_debug', 'search-field-multiselect.php - No choices for field' );
15 15
 	return;
16 16
 }
17 17
 
18 18
 ?>
19 19
 <div class="gv-search-box gv-search-field-multiselect">
20
-	<?php if( ! gv_empty( $search_field['label'], false ) ) { ?>
21
-	<label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label>
20
+	<?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?>
21
+	<label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label>
22 22
 	<?php } ?>
23 23
 	<p>
24
-		<select name="<?php echo esc_attr( $search_field['name'] ); ?>[]" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" multiple>
25
-			<option value="" <?php gv_selected( '', $search_field['value'], true ); ?>>&mdash;</option>
24
+		<select name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>[]" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" multiple>
25
+			<option value="" <?php gv_selected( '', $search_field[ 'value' ], true ); ?>>&mdash;</option>
26 26
 			<?php
27
-			foreach( $search_field['choices'] as $choice ) : ?>
28
-				<option value="<?php echo esc_attr( $choice['value'] ); ?>" <?php gv_selected( $choice['value'], $search_field['value'], true ); ?>><?php echo esc_html( $choice['text'] ); ?></option>
27
+			foreach ( $search_field[ 'choices' ] as $choice ) : ?>
28
+				<option value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" <?php gv_selected( $choice[ 'value' ], $search_field[ 'value' ], true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option>
29 29
 			<?php endforeach; ?>
30 30
 		</select>
31 31
 	</p>
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-select.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,22 +10,22 @@
 block discarded – undo
10 10
 $search_field = $gravityview_view->search_field;
11 11
 
12 12
 // Make sure that there are choices to display
13
-if( empty( $search_field['choices'] ) ) {
14
-	do_action('gravityview_log_debug', 'search-field-select.php - No choices for field' );
13
+if ( empty( $search_field[ 'choices' ] ) ) {
14
+	do_action( 'gravityview_log_debug', 'search-field-select.php - No choices for field' );
15 15
 	return;
16 16
 }
17 17
 
18 18
 ?>
19 19
 <div class="gv-search-box gv-search-field-select">
20
-	<?php if( ! gv_empty( $search_field['label'], false ) ) { ?>
21
-	<label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label>
20
+	<?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?>
21
+	<label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label>
22 22
 	<?php } ?>
23 23
 	<p>
24
-		<select name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>">
25
-			<option value="" <?php selected( '', $search_field['value'], true ); ?>>&mdash;</option>
24
+		<select name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>">
25
+			<option value="" <?php selected( '', $search_field[ 'value' ], true ); ?>>&mdash;</option>
26 26
 			<?php
27
-			foreach( $search_field['choices'] as $choice ) : ?>
28
-				<option value="<?php echo esc_attr( $choice['value'] ); ?>" <?php selected( $choice['value'], $search_field['value'], true ); ?>><?php echo esc_html( $choice['text'] ); ?></option>
27
+			foreach ( $search_field[ 'choices' ] as $choice ) : ?>
28
+				<option value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" <?php selected( $choice[ 'value' ], $search_field[ 'value' ], true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option>
29 29
 			<?php endforeach; ?>
30 30
 		</select>
31 31
 	</p>
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-input_text.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
10 10
 
11 11
 ?>
12 12
 <div class="gv-search-box gv-search-field-text">
13
-	<?php if( ! gv_empty( $search_field['label'], false ) ) { ?>
14
-	<label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label>
13
+	<?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?>
14
+	<label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label>
15 15
 	<?php } ?>
16 16
 	<p>
17
-		<input type="text" name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" value="<?php echo esc_attr( $search_field['value'] ); ?>">
17
+		<input type="text" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="<?php echo esc_attr( $search_field[ 'value' ] ); ?>">
18 18
 	</p>
19 19
 </div>
20 20
\ No newline at end of file
Please login to merge, or discard this patch.
includes/widgets/search-widget/class-search-widget.php 1 patch
Spacing   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 				'type' => 'radio',
57 57
 				'full_width' => true,
58 58
 				'label' => esc_html__( 'Search Mode', 'gravityview' ),
59
-				'desc' => __('Should search results match all search fields, or any?', 'gravityview'),
59
+				'desc' => __( 'Should search results match all search fields, or any?', 'gravityview' ),
60 60
 				'value' => 'any',
61 61
 				'class' => 'hide-if-js',
62 62
 				'options' => array(
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
 		// admin - add scripts - run at 1100 to make sure GravityView_Admin_Views::add_scripts_and_styles() runs first at 999
80 80
 		add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 1100 );
81
-		add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') );
81
+		add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) );
82 82
 		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
83 83
 
84 84
 		// ajax - get the searchable fields
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 		$script_min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
113 113
 		$script_source = empty( $script_min ) ? '/source' : '';
114 114
 
115
-		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 );
115
+		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 );
116 116
 
117 117
 
118 118
 		/**
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 	 * @return array Scripts allowed in no-conflict mode, plus the search widget script
167 167
 	 */
168 168
 	public function register_no_conflict( $allowed ) {
169
-		$allowed[] = 'gravityview_searchwidget_admin';
169
+		$allowed[ ] = 'gravityview_searchwidget_admin';
170 170
 		return $allowed;
171 171
 	}
172 172
 
@@ -179,24 +179,24 @@  discard block
 block discarded – undo
179 179
 	 */
180 180
 	public static function get_searchable_fields() {
181 181
 
182
-		if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxsearchwidget' ) ) {
182
+		if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxsearchwidget' ) ) {
183 183
 			exit( '0' );
184 184
 		}
185 185
 
186 186
 		$form = '';
187 187
 
188 188
 		// Fetch the form for the current View
189
-		if ( ! empty( $_POST['view_id'] ) ) {
189
+		if ( ! empty( $_POST[ 'view_id' ] ) ) {
190 190
 
191
-			$form = gravityview_get_form_id( $_POST['view_id'] );
191
+			$form = gravityview_get_form_id( $_POST[ 'view_id' ] );
192 192
 
193
-		} elseif ( ! empty( $_POST['formid'] ) ) {
193
+		} elseif ( ! empty( $_POST[ 'formid' ] ) ) {
194 194
 
195
-			$form = (int) $_POST['formid'];
195
+			$form = (int)$_POST[ 'formid' ];
196 196
 
197
-		} elseif ( ! empty( $_POST['template_id'] ) && class_exists( 'GravityView_Ajax' ) ) {
197
+		} elseif ( ! empty( $_POST[ 'template_id' ] ) && class_exists( 'GravityView_Ajax' ) ) {
198 198
 
199
-			$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
199
+			$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
200 200
 
201 201
 		}
202 202
 
@@ -244,8 +244,8 @@  discard block
 block discarded – undo
244 244
 			)
245 245
 		);
246 246
 
247
-		foreach( $custom_fields as $custom_field_key => $custom_field ) {
248
-			$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'] );
247
+		foreach ( $custom_fields as $custom_field_key => $custom_field ) {
248
+			$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' ] );
249 249
 		}
250 250
 
251 251
 		if ( ! empty( $fields ) ) {
@@ -254,13 +254,13 @@  discard block
 block discarded – undo
254 254
 
255 255
 			foreach ( $fields as $id => $field ) {
256 256
 
257
-				if ( in_array( $field['type'], $blacklist_field_types ) ) {
257
+				if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) {
258 258
 					continue;
259 259
 				}
260 260
 
261
-				$types = self::get_search_input_types( $id, $field['type'] );
261
+				$types = self::get_search_input_types( $id, $field[ 'type' ] );
262 262
 
263
-				$output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'data-inputtypes="'. esc_attr( $types ) .'">'. esc_html( $field['label'] ) .'</option>';
263
+				$output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . 'data-inputtypes="' . esc_attr( $types ) . '">' . esc_html( $field[ 'label' ] ) . '</option>';
264 264
 			}
265 265
 		}
266 266
 
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 	public static function get_search_input_types( $id = '', $field_type = null ) {
283 283
 
284 284
 		// @todo - This needs to be improved - many fields have . including products and addresses
285
-		if ( false !== strpos( (string) $id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) {
285
+		if ( false !== strpos( (string)$id, '.' ) && in_array( $field_type, array( 'checkbox' ) ) || in_array( $id, array( 'is_fulfilled' ) ) ) {
286 286
 			$input_type = 'boolean'; // on/off checkbox
287 287
 		} elseif ( in_array( $field_type, array( 'checkbox', 'post_category', 'multiselect' ) ) ) {
288 288
 			$input_type = 'multi'; //multiselect
@@ -324,19 +324,19 @@  discard block
 block discarded – undo
324 324
 			$post_id = 0;
325 325
 
326 326
 			// We're in the WordPress Widget context, and an overriding post ID has been set.
327
-			if ( ! empty( $widget_args['post_id'] ) ) {
328
-				$post_id = absint( $widget_args['post_id'] );
327
+			if ( ! empty( $widget_args[ 'post_id' ] ) ) {
328
+				$post_id = absint( $widget_args[ 'post_id' ] );
329 329
 			}
330 330
 			// We're in the WordPress Widget context, and the base View ID should be used
331
-			else if ( ! empty( $widget_args['view_id'] ) ) {
332
-				$post_id = absint( $widget_args['view_id'] );
331
+			else if ( ! empty( $widget_args[ 'view_id' ] ) ) {
332
+				$post_id = absint( $widget_args[ 'view_id' ] );
333 333
 			}
334 334
 
335 335
 			$args = gravityview_get_permalink_query_args( $post_id );
336 336
 
337 337
 			// Add hidden fields to the search form
338 338
 			foreach ( $args as $key => $value ) {
339
-				$search_fields[] = array(
339
+				$search_fields[ ] = array(
340 340
 					'name'  => $key,
341 341
 					'input' => 'hidden',
342 342
 					'value' => $value,
@@ -368,15 +368,15 @@  discard block
 block discarded – undo
368 368
 		$get = array_map( 'urldecode', $get );
369 369
 
370 370
 		// add free search
371
-		if ( ! empty( $get['gv_search'] ) ) {
371
+		if ( ! empty( $get[ 'gv_search' ] ) ) {
372 372
 
373 373
 			// Search for a piece
374
-			$words = explode( ' ', $get['gv_search'] );
374
+			$words = explode( ' ', $get[ 'gv_search' ] );
375 375
 
376 376
 			$words = array_filter( $words );
377 377
 
378 378
 			foreach ( $words as $word ) {
379
-				$search_criteria['field_filters'][] = array(
379
+				$search_criteria[ 'field_filters' ][ ] = array(
380 380
 					'key' => null, // The field ID to search
381 381
 					'value' => $word, // The value to search
382 382
 					'operator' => 'contains', // What to search in. Options: `is` or `contains`
@@ -401,16 +401,16 @@  discard block
 block discarded – undo
401 401
 		/**
402 402
 		 * Don't set $search_criteria['start_date'] if start_date is empty as it may lead to bad query results (GFAPI::get_entries)
403 403
 		 */
404
-		if( !empty( $curr_start ) ) {
405
-			$search_criteria['start_date'] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start;
404
+		if ( ! empty( $curr_start ) ) {
405
+			$search_criteria[ 'start_date' ] = $adjust_tz ? get_gmt_from_date( $curr_start ) : $curr_start;
406 406
 		}
407
-		if( !empty( $curr_end ) ) {
408
-			$search_criteria['end_date'] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end;
407
+		if ( ! empty( $curr_end ) ) {
408
+			$search_criteria[ 'end_date' ] = $adjust_tz ? get_gmt_from_date( $curr_end ) : $curr_end;
409 409
 		}
410 410
 
411 411
 		// search for a specific entry ID
412 412
 		if ( ! empty( $get[ 'gv_id' ] ) ) {
413
-			$search_criteria['field_filters'][] = array(
413
+			$search_criteria[ 'field_filters' ][ ] = array(
414 414
 				'key' => 'id',
415 415
 				'value' => absint( $get[ 'gv_id' ] ),
416 416
 				'operator' => '=',
@@ -419,9 +419,9 @@  discard block
 block discarded – undo
419 419
 
420 420
 		// search for a specific Created_by ID
421 421
 		if ( ! empty( $get[ 'gv_by' ] ) ) {
422
-			$search_criteria['field_filters'][] = array(
422
+			$search_criteria[ 'field_filters' ][ ] = array(
423 423
 				'key' => 'created_by',
424
-				'value' => absint( $get['gv_by'] ),
424
+				'value' => absint( $get[ 'gv_by' ] ),
425 425
 				'operator' => '=',
426 426
 			);
427 427
 		}
@@ -433,22 +433,22 @@  discard block
 block discarded – undo
433 433
 		// get the other search filters
434 434
 		foreach ( $get as $key => $value ) {
435 435
 
436
-			if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[0] ) ) ) {
436
+			if ( 0 !== strpos( $key, 'filter_' ) || empty( $value ) || ( is_array( $value ) && count( $value ) === 1 && empty( $value[ 0 ] ) ) ) {
437 437
 				continue;
438 438
 			}
439 439
 
440 440
 			// could return simple filter or multiple filters
441 441
 			$filter = $this->prepare_field_filter( $key, $value );
442 442
 
443
-			if ( isset( $filter[0]['value'] ) ) {
444
-				$search_criteria['field_filters'] = array_merge( $search_criteria['field_filters'], $filter );
443
+			if ( isset( $filter[ 0 ][ 'value' ] ) ) {
444
+				$search_criteria[ 'field_filters' ] = array_merge( $search_criteria[ 'field_filters' ], $filter );
445 445
 
446 446
 				// if date range type, set search mode to ALL
447
-				if ( ! empty( $filter[0]['operator'] ) && in_array( $filter[0]['operator'], array( '>', '<' ) ) ) {
447
+				if ( ! empty( $filter[ 0 ][ 'operator' ] ) && in_array( $filter[ 0 ][ 'operator' ], array( '>', '<' ) ) ) {
448 448
 					$mode = 'all';
449 449
 				}
450
-			} elseif( !empty( $filter ) ) {
451
-				$search_criteria['field_filters'][] = $filter;
450
+			} elseif ( ! empty( $filter ) ) {
451
+				$search_criteria[ 'field_filters' ][ ] = $filter;
452 452
 			}
453 453
 		}
454 454
 
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
 		 * @since 1.5.1
458 458
 		 * @param[out,in] string $mode Search mode (`any` vs `all`)
459 459
 		 */
460
-		$search_criteria['field_filters']['mode'] = apply_filters( 'gravityview/search/mode', $mode );
460
+		$search_criteria[ 'field_filters' ][ 'mode' ] = apply_filters( 'gravityview/search/mode', $mode );
461 461
 
462 462
 		do_action( 'gravityview_log_debug', sprintf( '%s[filter_entries] Returned Search Criteria: ', get_class( $this ) ), $search_criteria );
463 463
 
@@ -493,11 +493,11 @@  discard block
 block discarded – undo
493 493
 			'value' => _wp_specialchars( $value ), // Gravity Forms encodes ampersands but not quotes
494 494
 		);
495 495
 
496
-		switch ( $form_field['type'] ) {
496
+		switch ( $form_field[ 'type' ] ) {
497 497
 
498 498
 			case 'select':
499 499
 			case 'radio':
500
-				$filter['operator'] = 'is';
500
+				$filter[ 'operator' ] = 'is';
501 501
 				break;
502 502
 
503 503
 			case 'post_category':
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
 
512 512
 				foreach ( $value as $val ) {
513 513
 					$cat = get_term( $val, 'category' );
514
-					$filter[] = array(
514
+					$filter[ ] = array(
515 515
 						'key' => $field_id,
516 516
 						'value' => esc_attr( $cat->name ) . ':' . $val,
517 517
 						'operator' => 'is',
@@ -530,18 +530,18 @@  discard block
 block discarded – undo
530 530
 				$filter = array();
531 531
 
532 532
 				foreach ( $value as $val ) {
533
-					$filter[] = array( 'key' => $field_id, 'value' => $val );
533
+					$filter[ ] = array( 'key' => $field_id, 'value' => $val );
534 534
 				}
535 535
 
536 536
 				break;
537 537
 
538 538
 			case 'checkbox':
539 539
 				// convert checkbox on/off into the correct search filter
540
-				if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field['inputs'] ) && ! empty( $form_field['choices'] ) ) {
541
-					foreach ( $form_field['inputs'] as $k => $input ) {
542
-						if ( $input['id'] == $field_id ) {
543
-							$filter['value'] = $form_field['choices'][ $k ]['value'];
544
-							$filter['operator'] = 'is';
540
+				if ( false !== strpos( $field_id, '.' ) && ! empty( $form_field[ 'inputs' ] ) && ! empty( $form_field[ 'choices' ] ) ) {
541
+					foreach ( $form_field[ 'inputs' ] as $k => $input ) {
542
+						if ( $input[ 'id' ] == $field_id ) {
543
+							$filter[ 'value' ] = $form_field[ 'choices' ][ $k ][ 'value' ];
544
+							$filter[ 'operator' ] = 'is';
545 545
 							break;
546 546
 						}
547 547
 					}
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
551 551
 					$filter = array();
552 552
 
553 553
 					foreach ( $value as $val ) {
554
-						$filter[] = array(
554
+						$filter[ ] = array(
555 555
 								'key'   => $field_id,
556 556
 								'value' => $val,
557 557
 								'operator' => 'is',
@@ -572,9 +572,9 @@  discard block
 block discarded – undo
572 572
 					foreach ( $words as $word ) {
573 573
 						if ( ! empty( $word ) && strlen( $word ) > 1 ) {
574 574
 							// Keep the same key for each filter
575
-							$filter['value'] = $word;
575
+							$filter[ 'value' ] = $word;
576 576
 							// Add a search for the value
577
-							$filters[] = $filter;
577
+							$filters[ ] = $filter;
578 578
 						}
579 579
 					}
580 580
 
@@ -596,14 +596,14 @@  discard block
 block discarded – undo
596 596
 						}
597 597
 						$operator = 'start' === $k ? '>' : '<';
598 598
 
599
-						$filter[] = array(
599
+						$filter[ ] = array(
600 600
 							'key' => $field_id,
601 601
 							'value' => self::get_formatted_date( $date, 'Y-m-d' ),
602 602
 							'operator' => $operator,
603 603
 						);
604 604
 					}
605 605
 				} else {
606
-					$filter['value'] = self::get_formatted_date( $value, 'Y-m-d' );
606
+					$filter[ 'value' ] = self::get_formatted_date( $value, 'Y-m-d' );
607 607
 				}
608 608
 
609 609
 				break;
@@ -634,7 +634,7 @@  discard block
 block discarded – undo
634 634
 			'ymd_dot' => 'Y.m.d',
635 635
 		);
636 636
 
637
-		if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ){
637
+		if ( ! empty( $field->dateFormat ) && isset( $datepicker[ $field->dateFormat ] ) ) {
638 638
 			$format = $datepicker[ $field->dateFormat ];
639 639
 		}
640 640
 
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
 	public function add_template_path( $file_paths ) {
666 666
 
667 667
 		// Index 100 is the default GravityView template path.
668
-		$file_paths[102] = self::$file . 'templates/';
668
+		$file_paths[ 102 ] = self::$file . 'templates/';
669 669
 
670 670
 		return $file_paths;
671 671
 	}
@@ -688,7 +688,7 @@  discard block
 block discarded – undo
688 688
 		}
689 689
 
690 690
 		// get configured search fields
691
-		$search_fields = ! empty( $widget_args['search_fields'] ) ? json_decode( $widget_args['search_fields'], true ) : '';
691
+		$search_fields = ! empty( $widget_args[ 'search_fields' ] ) ? json_decode( $widget_args[ 'search_fields' ], true ) : '';
692 692
 
693 693
 		if ( empty( $search_fields ) || ! is_array( $search_fields ) ) {
694 694
 			do_action( 'gravityview_log_debug', sprintf( '%s[render_frontend] No search fields configured for widget:', get_class( $this ) ), $widget_args );
@@ -702,24 +702,24 @@  discard block
 block discarded – undo
702 702
 
703 703
 			$updated_field = $field;
704 704
 
705
-			if ( in_array( $field['input'], array( 'date', 'date_range' ) ) ) {
705
+			if ( in_array( $field[ 'input' ], array( 'date', 'date_range' ) ) ) {
706 706
 				$has_date = true;
707 707
 			}
708 708
 
709 709
 			$updated_field = $this->get_search_filter_details( $updated_field );
710 710
 
711
-			switch ( $field['field'] ) {
711
+			switch ( $field[ 'field' ] ) {
712 712
 
713 713
 				case 'search_all':
714
-					$updated_field['key'] = 'search_all';
715
-					$updated_field['input'] = 'search_all';
716
-					$updated_field['value'] = esc_attr( stripslashes_deep( rgget( 'gv_search' ) ) );
714
+					$updated_field[ 'key' ] = 'search_all';
715
+					$updated_field[ 'input' ] = 'search_all';
716
+					$updated_field[ 'value' ] = esc_attr( stripslashes_deep( rgget( 'gv_search' ) ) );
717 717
 					break;
718 718
 
719 719
 				case 'entry_date':
720
-					$updated_field['key'] = 'entry_date';
721
-					$updated_field['input'] = 'entry_date';
722
-					$updated_field['value'] = array(
720
+					$updated_field[ 'key' ] = 'entry_date';
721
+					$updated_field[ 'input' ] = 'entry_date';
722
+					$updated_field[ 'value' ] = array(
723 723
 						'start' => esc_attr( stripslashes_deep( rgget( 'gv_start' ) ) ),
724 724
 						'end' => esc_attr( stripslashes_deep( rgget( 'gv_end' ) ) ),
725 725
 					);
@@ -727,16 +727,16 @@  discard block
 block discarded – undo
727 727
 					break;
728 728
 
729 729
 				case 'entry_id':
730
-					$updated_field['key'] = 'entry_id';
731
-					$updated_field['input'] = 'entry_id';
732
-					$updated_field['value'] = esc_attr( stripslashes_deep( rgget( 'gv_id' ) ) );
730
+					$updated_field[ 'key' ] = 'entry_id';
731
+					$updated_field[ 'input' ] = 'entry_id';
732
+					$updated_field[ 'value' ] = esc_attr( stripslashes_deep( rgget( 'gv_id' ) ) );
733 733
 					break;
734 734
 
735 735
 				case 'created_by':
736
-					$updated_field['key'] = 'created_by';
737
-					$updated_field['name'] = 'gv_by';
738
-					$updated_field['value'] = esc_attr( stripslashes_deep( rgget( 'gv_by' ) ) );
739
-					$updated_field['choices'] = self::get_created_by_choices();
736
+					$updated_field[ 'key' ] = 'created_by';
737
+					$updated_field[ 'name' ] = 'gv_by';
738
+					$updated_field[ 'value' ] = esc_attr( stripslashes_deep( rgget( 'gv_by' ) ) );
739
+					$updated_field[ 'choices' ] = self::get_created_by_choices();
740 740
 					break;
741 741
 			}
742 742
 
@@ -754,16 +754,16 @@  discard block
 block discarded – undo
754 754
 		 */
755 755
 		$gravityview_view->search_fields = apply_filters( 'gravityview_widget_search_filters', $search_fields, $this, $widget_args );
756 756
 
757
-		$gravityview_view->search_layout = ! empty( $widget_args['search_layout'] ) ? $widget_args['search_layout'] : 'horizontal';
757
+		$gravityview_view->search_layout = ! empty( $widget_args[ 'search_layout' ] ) ? $widget_args[ 'search_layout' ] : 'horizontal';
758 758
 
759 759
 		/** @since 1.14 */
760
-		$gravityview_view->search_mode = ! empty( $widget_args['search_mode'] ) ? $widget_args['search_mode'] : 'any';
760
+		$gravityview_view->search_mode = ! empty( $widget_args[ 'search_mode' ] ) ? $widget_args[ 'search_mode' ] : 'any';
761 761
 
762
-		$custom_class = ! empty( $widget_args['custom_class'] ) ? $widget_args['custom_class'] : '';
762
+		$custom_class = ! empty( $widget_args[ 'custom_class' ] ) ? $widget_args[ 'custom_class' ] : '';
763 763
 
764 764
 		$gravityview_view->search_class = self::get_search_class( $custom_class );
765 765
 
766
-		$gravityview_view->search_clear = ! empty( $widget_args['search_clear'] ) ? $widget_args['search_clear'] : false;
766
+		$gravityview_view->search_clear = ! empty( $widget_args[ 'search_clear' ] ) ? $widget_args[ 'search_clear' ] : false;
767 767
 
768 768
 		if ( $has_date ) {
769 769
 			// enqueue datepicker stuff only if needed!
@@ -785,10 +785,10 @@  discard block
 block discarded – undo
785 785
 	public static function get_search_class( $custom_class = '' ) {
786 786
 		$gravityview_view = GravityView_View::getInstance();
787 787
 
788
-		$search_class = 'gv-search-'.$gravityview_view->search_layout;
788
+		$search_class = 'gv-search-' . $gravityview_view->search_layout;
789 789
 
790
-		if ( ! empty( $custom_class )  ) {
791
-			$search_class .= ' '.$custom_class;
790
+		if ( ! empty( $custom_class ) ) {
791
+			$search_class .= ' ' . $custom_class;
792 792
 		}
793 793
 
794 794
 		/**
@@ -831,11 +831,11 @@  discard block
 block discarded – undo
831 831
 
832 832
 		$label = rgget( 'label', $field );
833 833
 
834
-		if( '' === $label ) {
834
+		if ( '' === $label ) {
835 835
 
836
-			$label = isset( $form_field['label'] ) ? $form_field['label'] : '';
836
+			$label = isset( $form_field[ 'label' ] ) ? $form_field[ 'label' ] : '';
837 837
 
838
-			switch( $field['field'] ) {
838
+			switch ( $field[ 'field' ] ) {
839 839
 				case 'search_all':
840 840
 					$label = __( 'Search Entries:', 'gravityview' );
841 841
 					break;
@@ -853,10 +853,10 @@  discard block
 block discarded – undo
853 853
 					break;
854 854
 				default:
855 855
 					// If this is a field input, not a field
856
-					if ( strpos( $field['field'], '.' ) > 0 && ! empty( $form_field['inputs'] ) ) {
856
+					if ( strpos( $field[ 'field' ], '.' ) > 0 && ! empty( $form_field[ 'inputs' ] ) ) {
857 857
 
858 858
 						// Get the label for the field in question, which returns an array
859
-						$items = wp_list_filter( $form_field['inputs'], array( 'id' => $field['field'] ) );
859
+						$items = wp_list_filter( $form_field[ 'inputs' ], array( 'id' => $field[ 'field' ] ) );
860 860
 
861 861
 						// Get the item with the `label` key
862 862
 						$values = wp_list_pluck( $items, 'label' );
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
 		$form = $gravityview_view->getForm();
894 894
 
895 895
 		// for advanced field ids (eg, first name / last name )
896
-		$name = 'filter_' . str_replace( '.', '_', $field['field'] );
896
+		$name = 'filter_' . str_replace( '.', '_', $field[ 'field' ] );
897 897
 
898 898
 		// get searched value from $_GET (string or array)
899 899
 		$value = rgget( $name );
@@ -903,26 +903,26 @@  discard block
 block discarded – undo
903 903
 		$value = is_array( $value ) ? array_map( 'urldecode', $value ) : urldecode( $value );
904 904
 
905 905
 		// get form field details
906
-		$form_field = gravityview_get_field( $form, $field['field'] );
906
+		$form_field = gravityview_get_field( $form, $field[ 'field' ] );
907 907
 
908 908
 		$filter = array(
909
-			'key' => $field['field'],
909
+			'key' => $field[ 'field' ],
910 910
 			'name' => $name,
911 911
 			'label' => self::get_field_label( $field, $form_field ),
912
-			'input' => $field['input'],
912
+			'input' => $field[ 'input' ],
913 913
 			'value' => _wp_specialchars( $value ),
914
-			'type' => $form_field['type'],
914
+			'type' => $form_field[ 'type' ],
915 915
 		);
916 916
 
917 917
 		// collect choices
918
-		if ( 'post_category' === $form_field['type'] && ! empty( $form_field['displayAllCategories'] ) && empty( $form_field['choices'] ) ) {
919
-			$filter['choices'] = gravityview_get_terms_choices();
920
-		} elseif ( ! empty( $form_field['choices'] ) ) {
921
-			$filter['choices'] = $form_field['choices'];
918
+		if ( 'post_category' === $form_field[ 'type' ] && ! empty( $form_field[ 'displayAllCategories' ] ) && empty( $form_field[ 'choices' ] ) ) {
919
+			$filter[ 'choices' ] = gravityview_get_terms_choices();
920
+		} elseif ( ! empty( $form_field[ 'choices' ] ) ) {
921
+			$filter[ 'choices' ] = $form_field[ 'choices' ];
922 922
 		}
923 923
 
924
-		if ( 'date_range' === $field['input'] && empty( $value ) ) {
925
-			$filter['value'] = array( 'start' => '', 'end' => '' );
924
+		if ( 'date_range' === $field[ 'input' ] && empty( $value ) ) {
925
+			$filter[ 'value' ] = array( 'start' => '', 'end' => '' );
926 926
 		}
927 927
 
928 928
 		return $filter;
@@ -946,7 +946,7 @@  discard block
 block discarded – undo
946 946
 
947 947
 		$choices = array();
948 948
 		foreach ( $users as $user ) {
949
-			$choices[] = array(
949
+			$choices[ ] = array(
950 950
 				'value' => $user->ID,
951 951
 				'text' => $user->display_name,
952 952
 			);
@@ -981,7 +981,7 @@  discard block
 block discarded – undo
981 981
 	 */
982 982
 	public function add_datepicker_js_dependency( $js_dependencies ) {
983 983
 
984
-		$js_dependencies[] = 'jquery-ui-datepicker';
984
+		$js_dependencies[ ] = 'jquery-ui-datepicker';
985 985
 
986 986
 		return $js_dependencies;
987 987
 	}
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
 			'isRTL'             => is_rtl(),
1026 1026
 		), $view_data );
1027 1027
 
1028
-		$localizations['datepicker'] = $datepicker_settings;
1028
+		$localizations[ 'datepicker' ] = $datepicker_settings;
1029 1029
 
1030 1030
 		return $localizations;
1031 1031
 
@@ -1054,7 +1054,7 @@  discard block
 block discarded – undo
1054 1054
 	 * @return void
1055 1055
 	 */
1056 1056
 	private function maybe_enqueue_flexibility() {
1057
-		if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/MSIE [8-9]/', $_SERVER['HTTP_USER_AGENT'] ) ) {
1057
+		if ( isset( $_SERVER[ 'HTTP_USER_AGENT' ] ) && preg_match( '/MSIE [8-9]/', $_SERVER[ 'HTTP_USER_AGENT' ] ) ) {
1058 1058
 			wp_enqueue_script( 'gv-flexibility' );
1059 1059
 		}
1060 1060
 	}
@@ -1076,7 +1076,7 @@  discard block
 block discarded – undo
1076 1076
 		add_filter( 'gravityview_js_localization', array( $this, 'add_datepicker_localization' ), 10, 2 );
1077 1077
 
1078 1078
 		$scheme = is_ssl() ? 'https://' : 'http://';
1079
-		wp_enqueue_style( 'jquery-ui-datepicker', $scheme.'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' );
1079
+		wp_enqueue_style( 'jquery-ui-datepicker', $scheme . 'ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' );
1080 1080
 
1081 1081
 		/**
1082 1082
 		 * @filter `gravityview_search_datepicker_class`
Please login to merge, or discard this patch.
includes/class-api.php 1 patch
Spacing   +146 added lines, -146 removed lines patch added patch discarded remove patch
@@ -30,29 +30,29 @@  discard block
 block discarded – undo
30 30
 
31 31
 		$label = '';
32 32
 
33
-		if( !empty( $field['show_label'] ) || $force_show_label ) {
33
+		if ( ! empty( $field[ 'show_label' ] ) || $force_show_label ) {
34 34
 
35
-			$label = $field['label'];
35
+			$label = $field[ 'label' ];
36 36
 
37 37
 			// Support Gravity Forms 1.9+
38
-			if( class_exists( 'GF_Field' ) ) {
38
+			if ( class_exists( 'GF_Field' ) ) {
39 39
 
40
-				$field_object = RGFormsModel::get_field( $form, $field['id'] );
40
+				$field_object = RGFormsModel::get_field( $form, $field[ 'id' ] );
41 41
 
42
-				if( $field_object ) {
42
+				if ( $field_object ) {
43 43
 
44
-					$input = GFFormsModel::get_input( $field_object, $field['id'] );
44
+					$input = GFFormsModel::get_input( $field_object, $field[ 'id' ] );
45 45
 
46 46
 					// This is a complex field, with labels on a per-input basis
47
-					if( $input ) {
47
+					if ( $input ) {
48 48
 
49 49
 						// Does the input have a custom label on a per-input basis? Otherwise, default label.
50
-						$label = ! empty( $input['customLabel'] ) ? $input['customLabel'] : $input['label'];
50
+						$label = ! empty( $input[ 'customLabel' ] ) ? $input[ 'customLabel' ] : $input[ 'label' ];
51 51
 
52 52
 					} else {
53 53
 
54 54
 						// This is a field with one label
55
-						$label = $field_object->get_field_label( true, $field['label'] );
55
+						$label = $field_object->get_field_label( true, $field[ 'label' ] );
56 56
 
57 57
 					}
58 58
 
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 			}
62 62
 
63 63
 			// Use Gravity Forms label by default, but if a custom label is defined in GV, use it.
64
-			if ( !empty( $field['custom_label'] ) ) {
64
+			if ( ! empty( $field[ 'custom_label' ] ) ) {
65 65
 
66
-				$label = self::replace_variables( $field['custom_label'], $form, $entry );
66
+				$label = self::replace_variables( $field[ 'custom_label' ], $form, $entry );
67 67
 
68 68
 			}
69 69
 
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
 
118 118
 		$width = NULL;
119 119
 
120
-		if( !empty( $field['width'] ) ) {
121
-			$width = absint( $field['width'] );
120
+		if ( ! empty( $field[ 'width' ] ) ) {
121
+			$width = absint( $field[ 'width' ] );
122 122
 
123 123
 			// If using percentages, limit to 100%
124
-			if( '%d%%' === $format && $width > 100 ) {
124
+			if ( '%d%%' === $format && $width > 100 ) {
125 125
 				$width = 100;
126 126
 			}
127 127
 
@@ -144,39 +144,39 @@  discard block
 block discarded – undo
144 144
 
145 145
 		$classes = array();
146 146
 
147
-		if( !empty( $field['custom_class'] ) ) {
147
+		if ( ! empty( $field[ 'custom_class' ] ) ) {
148 148
 
149
-            $custom_class = $field['custom_class'];
149
+            $custom_class = $field[ 'custom_class' ];
150 150
 
151
-            if( !empty( $entry ) ) {
151
+            if ( ! empty( $entry ) ) {
152 152
 
153 153
                 // We want the merge tag to be formatted as a class. The merge tag may be
154 154
                 // replaced by a multiple-word value that should be output as a single class.
155 155
                 // "Office Manager" will be formatted as `.OfficeManager`, not `.Office` and `.Manager`
156
-                add_filter('gform_merge_tag_filter', 'sanitize_html_class');
156
+                add_filter( 'gform_merge_tag_filter', 'sanitize_html_class' );
157 157
 
158
-                $custom_class = self::replace_variables( $custom_class, $form, $entry);
158
+                $custom_class = self::replace_variables( $custom_class, $form, $entry );
159 159
 
160 160
                 // And then we want life to return to normal
161
-                remove_filter('gform_merge_tag_filter', 'sanitize_html_class');
161
+                remove_filter( 'gform_merge_tag_filter', 'sanitize_html_class' );
162 162
             }
163 163
 
164 164
 			// And now we want the spaces to be handled nicely.
165
-			$classes[] = gravityview_sanitize_html_class( $custom_class );
165
+			$classes[ ] = gravityview_sanitize_html_class( $custom_class );
166 166
 
167 167
 		}
168 168
 
169
-		if(!empty($field['id'])) {
170
-			if( !empty( $form ) && !empty( $form['id'] ) ) {
171
-				$form_id = '-'.$form['id'];
169
+		if ( ! empty( $field[ 'id' ] ) ) {
170
+			if ( ! empty( $form ) && ! empty( $form[ 'id' ] ) ) {
171
+				$form_id = '-' . $form[ 'id' ];
172 172
 			} else {
173
-				$form_id = $gravityview_view->getFormId() ? '-'. $gravityview_view->getFormId() : '';
173
+				$form_id = $gravityview_view->getFormId() ? '-' . $gravityview_view->getFormId() : '';
174 174
 			}
175 175
 
176
-			$classes[] = 'gv-field'.$form_id.'-'.$field['id'];
176
+			$classes[ ] = 'gv-field' . $form_id . '-' . $field[ 'id' ];
177 177
 		}
178 178
 
179
-		return esc_attr(implode(' ', $classes));
179
+		return esc_attr( implode( ' ', $classes ) );
180 180
 	}
181 181
 
182 182
 	/**
@@ -193,16 +193,16 @@  discard block
 block discarded – undo
193 193
 	 */
194 194
 	public static function field_html_attr_id( $field, $form = array(), $entry = array() ) {
195 195
 		$gravityview_view = GravityView_View::getInstance();
196
-		$id = $field['id'];
196
+		$id = $field[ 'id' ];
197 197
 
198 198
 		if ( ! empty( $id ) ) {
199
-			if ( ! empty( $form ) && ! empty( $form['id'] ) ) {
200
-				$form_id = '-' . $form['id'];
199
+			if ( ! empty( $form ) && ! empty( $form[ 'id' ] ) ) {
200
+				$form_id = '-' . $form[ 'id' ];
201 201
 			} else {
202 202
 				$form_id = $gravityview_view->getFormId() ? '-' . $gravityview_view->getFormId() : '';
203 203
 			}
204 204
 
205
-			$id = 'gv-field' . $form_id . '-' . $field['id'];
205
+			$id = 'gv-field' . $form_id . '-' . $field[ 'id' ];
206 206
 		}
207 207
 
208 208
 		return esc_attr( $id );
@@ -219,13 +219,13 @@  discard block
 block discarded – undo
219 219
 	 */
220 220
 	public static function field_value( $entry, $field_settings, $format = 'html' ) {
221 221
 
222
-		if( empty( $entry['form_id'] ) || empty( $field_settings['id'] ) ) {
222
+		if ( empty( $entry[ 'form_id' ] ) || empty( $field_settings[ 'id' ] ) ) {
223 223
 			return NULL;
224 224
 		}
225 225
 
226 226
 		$gravityview_view = GravityView_View::getInstance();
227 227
 
228
-		if( class_exists( 'GFCache' ) ) {
228
+		if ( class_exists( 'GFCache' ) ) {
229 229
 			/**
230 230
 			 * Gravity Forms' GFCache function was thrashing the database, causing double the amount of time for the field_value() method to run.
231 231
 			 *
@@ -240,46 +240,46 @@  discard block
 block discarded – undo
240 240
 			 * @param boolean false Tell Gravity Forms not to store this as a transient
241 241
 			 * @param  int 0 Time to store the value. 0 is maximum amount of time possible.
242 242
 			 */
243
-			GFCache::set( "GFFormsModel::get_lead_field_value_" . $entry["id"] . "_" . $field_settings["id"], false, false, 0 );
243
+			GFCache::set( "GFFormsModel::get_lead_field_value_" . $entry[ "id" ] . "_" . $field_settings[ "id" ], false, false, 0 );
244 244
 		}
245 245
 
246
-		$field_id = $field_settings['id'];
246
+		$field_id = $field_settings[ 'id' ];
247 247
 
248 248
 		$form = $gravityview_view->getForm();
249 249
 
250 250
 		$field = gravityview_get_field( $form, $field_id );
251 251
 
252
-		$field_type = RGFormsModel::get_input_type($field);
252
+		$field_type = RGFormsModel::get_input_type( $field );
253 253
 
254
-		if( $field_type ) {
255
-			$field_type = $field['type'];
256
-			$value = RGFormsModel::get_lead_field_value($entry, $field);
254
+		if ( $field_type ) {
255
+			$field_type = $field[ 'type' ];
256
+			$value = RGFormsModel::get_lead_field_value( $entry, $field );
257 257
 		} else {
258 258
 			// For non-integer field types (`id`, `date_created`, etc.)
259 259
 			$field_type = $field_id;
260
-			$field['type'] = $field_id;
261
-			$value = isset($entry[$field_type]) ? $entry[$field_type] : NULL;
260
+			$field[ 'type' ] = $field_id;
261
+			$value = isset( $entry[ $field_type ] ) ? $entry[ $field_type ] : NULL;
262 262
 		}
263 263
 
264 264
 		// Prevent any PHP warnings that may be generated
265 265
 		ob_start();
266 266
 
267
-		$display_value = GFCommon::get_lead_field_display($field, $value, $entry["currency"], false, $format);
267
+		$display_value = GFCommon::get_lead_field_display( $field, $value, $entry[ "currency" ], false, $format );
268 268
 
269
-		if( $errors = ob_get_clean() ) {
269
+		if ( $errors = ob_get_clean() ) {
270 270
 			do_action( 'gravityview_log_error', 'GravityView_API[field_value] Errors when calling GFCommon::get_lead_field_display()', $errors );
271 271
 		}
272 272
 
273
-		$display_value = apply_filters("gform_entry_field_value", $display_value, $field, $entry, $form);
273
+		$display_value = apply_filters( "gform_entry_field_value", $display_value, $field, $entry, $form );
274 274
 
275 275
 		// prevent the use of merge_tags for non-admin fields
276
-		if( !empty( $field['adminOnly'] ) ) {
276
+		if ( ! empty( $field[ 'adminOnly' ] ) ) {
277 277
 			$display_value = self::replace_variables( $display_value, $form, $entry );
278 278
 		}
279 279
 
280 280
 		// Check whether the field exists in /includes/fields/{$field_type}.php
281 281
 		// This can be overridden by user template files.
282
-		$field_path = $gravityview_view->locate_template("fields/{$field_type}.php");
282
+		$field_path = $gravityview_view->locate_template( "fields/{$field_type}.php" );
283 283
 
284 284
 		// Set the field data to be available in the templates
285 285
 		$gravityview_view->setCurrentField( array(
@@ -293,11 +293,11 @@  discard block
 block discarded – undo
293 293
 			'entry' => $entry,
294 294
 			'field_type' => $field_type, /** {@since 1.6} */
295 295
 		    'field_path' => $field_path, /** {@since 1.16} */
296
-		));
296
+		) );
297 297
 
298
-		if( ! empty( $field_path ) ) {
298
+		if ( ! empty( $field_path ) ) {
299 299
 
300
-			do_action( 'gravityview_log_debug', sprintf('[field_value] Rendering %s', $field_path ) );
300
+			do_action( 'gravityview_log_debug', sprintf( '[field_value] Rendering %s', $field_path ) );
301 301
 
302 302
 			ob_start();
303 303
 
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 
313 313
 		}
314 314
 
315
-		$field_settings = $gravityview_view->getCurrentField('field_settings');
315
+		$field_settings = $gravityview_view->getCurrentField( 'field_settings' );
316 316
 
317 317
 		/**
318 318
 		 * @filter `gravityview_field_entry_value_{$field_type}_pre_link` Modify the field value output for a field type before Show As Link setting is applied. Example: `gravityview_field_entry_value_number_pre_link`
@@ -330,9 +330,9 @@  discard block
 block discarded – undo
330 330
 		 * Fields can override this by modifying the field data variable inside the field. See /templates/fields/post_image.php for an example.
331 331
 		 *
332 332
 		 */
333
-		if( !empty( $field_settings['show_as_link'] ) && ! gv_empty( $output, false, false ) ) {
333
+		if ( ! empty( $field_settings[ 'show_as_link' ] ) && ! gv_empty( $output, false, false ) ) {
334 334
 
335
-			$link_atts = empty( $field_settings['new_window'] ) ? array() : array( 'target' => '_blank' );
335
+			$link_atts = empty( $field_settings[ 'new_window' ] ) ? array() : array( 'target' => '_blank' );
336 336
 
337 337
 			$output = self::entry_link_html( $entry, $output, $link_atts, $field_settings );
338 338
 
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
 		 * @param  array $field_settings Settings for the particular GV field
347 347
 		 * @param array $field Current field being displayed
348 348
 		 */
349
-		$output = apply_filters( 'gravityview_field_entry_value_'.$field_type, $output, $entry, $field_settings, $gravityview_view->getCurrentField() );
349
+		$output = apply_filters( 'gravityview_field_entry_value_' . $field_type, $output, $entry, $field_settings, $gravityview_view->getCurrentField() );
350 350
 
351 351
 		/**
352 352
 		 * @filter `gravityview_field_entry_value` Modify the field value output for all field types
@@ -375,14 +375,14 @@  discard block
 block discarded – undo
375 375
 	 */
376 376
 	public static function entry_link_html( $entry = array(), $anchor_text = '', $passed_tag_atts = array(), $field_settings = array() ) {
377 377
 
378
-		if ( empty( $entry ) || ! is_array( $entry ) || ! isset( $entry['id'] ) ) {
378
+		if ( empty( $entry ) || ! is_array( $entry ) || ! isset( $entry[ 'id' ] ) ) {
379 379
 			do_action( 'gravityview_log_debug', 'GravityView_API[entry_link_tag] Entry not defined; returning null', $entry );
380 380
 			return NULL;
381 381
 		}
382 382
 
383 383
 		$href = self::entry_link( $entry );
384 384
 
385
-		if( '' === $href ) {
385
+		if ( '' === $href ) {
386 386
 			return NULL;
387 387
 		}
388 388
 
@@ -405,19 +405,19 @@  discard block
 block discarded – undo
405 405
 	 * @param  boolean     $wpautop Apply wpautop() to the output?
406 406
 	 * @return string               HTML of "no results" text
407 407
 	 */
408
-	public static function no_results($wpautop = true) {
408
+	public static function no_results( $wpautop = true ) {
409 409
 		$gravityview_view = GravityView_View::getInstance();
410 410
 
411 411
 		$is_search = false;
412 412
 
413
-		if( $gravityview_view && ( $gravityview_view->curr_start || $gravityview_view->curr_end || $gravityview_view->curr_search ) ) {
413
+		if ( $gravityview_view && ( $gravityview_view->curr_start || $gravityview_view->curr_end || $gravityview_view->curr_search ) ) {
414 414
 			$is_search = true;
415 415
 		}
416 416
 
417
-		if($is_search) {
418
-			$output = __('This search returned no results.', 'gravityview');
417
+		if ( $is_search ) {
418
+			$output = __( 'This search returned no results.', 'gravityview' );
419 419
 		} else {
420
-			$output = __('No entries match your request.', 'gravityview');
420
+			$output = __( 'No entries match your request.', 'gravityview' );
421 421
 		}
422 422
 
423 423
 		/**
@@ -425,9 +425,9 @@  discard block
 block discarded – undo
425 425
 		 * @param string $output The existing "No Entries" text
426 426
 		 * @param boolean $is_search Is the current page a search result, or just a multiple entries screen?
427 427
 		 */
428
-		$output = apply_filters( 'gravitview_no_entries_text', $output, $is_search);
428
+		$output = apply_filters( 'gravitview_no_entries_text', $output, $is_search );
429 429
 
430
-		return $wpautop ? wpautop($output) : $output;
430
+		return $wpautop ? wpautop( $output ) : $output;
431 431
 	}
432 432
 
433 433
 	/**
@@ -444,37 +444,37 @@  discard block
 block discarded – undo
444 444
 
445 445
 		$gravityview_view = GravityView_View::getInstance();
446 446
 
447
-		if( empty( $post_id ) ) {
447
+		if ( empty( $post_id ) ) {
448 448
 
449 449
 			$post_id = false;
450 450
 
451 451
 			// DataTables passes the Post ID
452
-			if( defined('DOING_AJAX') && DOING_AJAX ) {
452
+			if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
453 453
 
454
-				$post_id = isset( $_POST['post_id'] ) ? (int)$_POST['post_id'] : false;
454
+				$post_id = isset( $_POST[ 'post_id' ] ) ? (int)$_POST[ 'post_id' ] : false;
455 455
 
456 456
 			} else {
457 457
 
458 458
 				// The Post ID has been passed via the shortcode
459
-				if( !empty( $gravityview_view ) && $gravityview_view->getPostId() ) {
459
+				if ( ! empty( $gravityview_view ) && $gravityview_view->getPostId() ) {
460 460
 
461 461
 					$post_id = $gravityview_view->getPostId();
462 462
 
463 463
 				} else {
464 464
 
465 465
 					// This is a GravityView post type
466
-					if( GravityView_frontend::getInstance()->isGravityviewPostType() ) {
466
+					if ( GravityView_frontend::getInstance()->isGravityviewPostType() ) {
467 467
 
468 468
 						$post_id = isset( $gravityview_view ) ? $gravityview_view->getViewId() : $post->ID;
469 469
 
470 470
 					} else {
471 471
 
472 472
 						// This is an embedded GravityView; use the embedded post's ID as the base.
473
-						if( GravityView_frontend::getInstance()->isPostHasShortcode() && is_a( $post, 'WP_Post' ) ) {
473
+						if ( GravityView_frontend::getInstance()->isPostHasShortcode() && is_a( $post, 'WP_Post' ) ) {
474 474
 
475 475
 							$post_id = $post->ID;
476 476
 
477
-						} elseif( $gravityview_view->getViewId() ) {
477
+						} elseif ( $gravityview_view->getViewId() ) {
478 478
 
479 479
 							// The GravityView has been embedded in a widget or in a template, and
480 480
 							// is not in the current content. Thus, we defer to the View's own ID.
@@ -489,36 +489,36 @@  discard block
 block discarded – undo
489 489
 		}
490 490
 
491 491
 		// No post ID, get outta here.
492
-		if( empty( $post_id ) ) {
492
+		if ( empty( $post_id ) ) {
493 493
 			return NULL;
494 494
 		}
495 495
 
496 496
 		// If we've saved the permalink in memory, use it
497 497
 		// @since 1.3
498
-		$link = wp_cache_get( 'gv_directory_link_'.$post_id );
498
+		$link = wp_cache_get( 'gv_directory_link_' . $post_id );
499 499
 
500
-		if( empty( $link ) ) {
500
+		if ( empty( $link ) ) {
501 501
 
502 502
 			$link = get_permalink( $post_id );
503 503
 
504 504
 			// If not yet saved, cache the permalink.
505 505
 			// @since 1.3
506
-			wp_cache_set( 'gv_directory_link_'.$post_id, $link );
506
+			wp_cache_set( 'gv_directory_link_' . $post_id, $link );
507 507
 
508 508
 		}
509 509
 
510 510
 		// Deal with returning to proper pagination for embedded views
511
-		if( $link && $add_query_args ) {
511
+		if ( $link && $add_query_args ) {
512 512
 
513 513
 			$args = array();
514 514
 
515
-			if( $pagenum = rgget('pagenum') ) {
516
-				$args['pagenum'] = intval( $pagenum );
515
+			if ( $pagenum = rgget( 'pagenum' ) ) {
516
+				$args[ 'pagenum' ] = intval( $pagenum );
517 517
 			}
518 518
 
519
-			if( $sort = rgget('sort') ) {
520
-				$args['sort'] = $sort;
521
-				$args['dir'] = rgget('dir');
519
+			if ( $sort = rgget( 'sort' ) ) {
520
+				$args[ 'sort' ] = $sort;
521
+				$args[ 'dir' ] = rgget( 'dir' );
522 522
 			}
523 523
 
524 524
 			$link = add_query_arg( $args, $link );
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
 	private static function get_custom_entry_slug( $id, $entry = array() ) {
542 542
 
543 543
 		// Generate an unique hash to use as the default value
544
-		$slug = substr( wp_hash( $id, 'gravityview'.$id ), 0, 8 );
544
+		$slug = substr( wp_hash( $id, 'gravityview' . $id ), 0, 8 );
545 545
 
546 546
 		/**
547 547
 		 * @filter `gravityview_entry_slug` Modify the unique hash ID generated, if you want to improve usability or change the format. This will allow for custom URLs, such as `{entryid}-{first-name}` or even, if unique, `{first-name}-{last-name}`
@@ -552,7 +552,7 @@  discard block
 block discarded – undo
552 552
 		$slug = apply_filters( 'gravityview_entry_slug', $slug, $id, $entry );
553 553
 
554 554
 		// Make sure we have something - use the original ID as backup.
555
-		if( empty( $slug ) ) {
555
+		if ( empty( $slug ) ) {
556 556
 			$slug = $id;
557 557
 		}
558 558
 
@@ -581,7 +581,7 @@  discard block
 block discarded – undo
581 581
 		 * @filter `gravityview_custom_entry_slug` Whether to enable and use custom entry slugs.
582 582
 		 * @param boolean True: Allow for slugs based on entry values. False: always use entry IDs (default)
583 583
 		 */
584
-		$custom = apply_filters('gravityview_custom_entry_slug', false );
584
+		$custom = apply_filters( 'gravityview_custom_entry_slug', false );
585 585
 
586 586
 		// If we're using custom slug...
587 587
 		if ( $custom ) {
@@ -595,7 +595,7 @@  discard block
 block discarded – undo
595 595
 			// If it does have a hash set, and the hash is expected, use it.
596 596
 			// This check allows users to change the hash structure using the
597 597
 			// gravityview_entry_hash filter and have the old hashes expire.
598
-			if( empty( $value ) || $value !== $hash ) {
598
+			if ( empty( $value ) || $value !== $hash ) {
599 599
 
600 600
 				gform_update_meta( $id_or_string, 'gravityview_unique_id', $hash );
601 601
 
@@ -623,12 +623,12 @@  discard block
 block discarded – undo
623 623
          * @param boolean $custom Should we process the custom entry slug?
624 624
          */
625 625
         $custom = apply_filters( 'gravityview_custom_entry_slug', false );
626
-        if( $custom ) {
626
+        if ( $custom ) {
627 627
             // create the gravityview_unique_id and save it
628 628
 
629 629
             // Get the entry hash
630
-            $hash = self::get_custom_entry_slug( $entry['id'], $entry );
631
-            gform_update_meta( $entry['id'], 'gravityview_unique_id', $hash );
630
+            $hash = self::get_custom_entry_slug( $entry[ 'id' ], $entry );
631
+            gform_update_meta( $entry[ 'id' ], 'gravityview_unique_id', $hash );
632 632
 
633 633
         }
634 634
     }
@@ -645,14 +645,14 @@  discard block
 block discarded – undo
645 645
 	 */
646 646
 	public static function entry_link( $entry, $post_id = NULL, $add_directory_args = true ) {
647 647
 
648
-		if( ! empty( $entry ) && ! is_array( $entry ) ) {
648
+		if ( ! empty( $entry ) && ! is_array( $entry ) ) {
649 649
 			$entry = GVCommon::get_entry( $entry );
650
-		} else if( empty( $entry ) ) {
650
+		} else if ( empty( $entry ) ) {
651 651
 			$entry = GravityView_frontend::getInstance()->getEntry();
652 652
 		}
653 653
 
654 654
 		// Second parameter used to be passed as $field; this makes sure it's not an array
655
-		if( !is_numeric( $post_id ) ) {
655
+		if ( ! is_numeric( $post_id ) ) {
656 656
 			$post_id = NULL;
657 657
 		}
658 658
 
@@ -660,19 +660,19 @@  discard block
 block discarded – undo
660 660
 		$directory_link = self::directory_link( $post_id, false );
661 661
 
662 662
 		// No post ID? Get outta here.
663
-		if( empty( $directory_link ) ) {
663
+		if ( empty( $directory_link ) ) {
664 664
 			return '';
665 665
 		}
666 666
 
667 667
 		$query_arg_name = GravityView_Post_Types::get_entry_var_name();
668 668
 
669
-		$entry_slug = self::get_entry_slug( $entry['id'], $entry );
669
+		$entry_slug = self::get_entry_slug( $entry[ 'id' ], $entry );
670 670
 
671
-		if( get_option('permalink_structure') && !is_preview() ) {
671
+		if ( get_option( 'permalink_structure' ) && ! is_preview() ) {
672 672
 
673 673
 			$args = array();
674 674
 
675
-			$directory_link = trailingslashit( $directory_link ) . $query_arg_name . '/'. $entry_slug .'/';
675
+			$directory_link = trailingslashit( $directory_link ) . $query_arg_name . '/' . $entry_slug . '/';
676 676
 
677 677
 		} else {
678 678
 
@@ -682,18 +682,18 @@  discard block
 block discarded – undo
682 682
 		/**
683 683
 		 * @since 1.7.3
684 684
 		 */
685
-		if( $add_directory_args ) {
685
+		if ( $add_directory_args ) {
686 686
 
687
-			if( !empty( $_GET['pagenum'] ) ) {
688
-				$args['pagenum'] = intval( $_GET['pagenum'] );
687
+			if ( ! empty( $_GET[ 'pagenum' ] ) ) {
688
+				$args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] );
689 689
 			}
690 690
 
691 691
 			/**
692 692
 			 * @since 1.7
693 693
 			 */
694
-			if( $sort = rgget('sort') ) {
695
-				$args['sort'] = $sort;
696
-				$args['dir'] = rgget('dir');
694
+			if ( $sort = rgget( 'sort' ) ) {
695
+				$args[ 'sort' ] = $sort;
696
+				$args[ 'dir' ] = rgget( 'dir' );
697 697
 			}
698 698
 
699 699
 		}
@@ -703,8 +703,8 @@  discard block
 block discarded – undo
703 703
 		 * has the view id so that Advanced Filters can be applied correctly when rendering the single view
704 704
 		 * @see GravityView_frontend::get_context_view_id()
705 705
 		 */
706
-		if( class_exists( 'GravityView_View_Data' ) && GravityView_View_Data::getInstance()->has_multiple_views() ) {
707
-			$args['gvid'] = gravityview_get_view_id();
706
+		if ( class_exists( 'GravityView_View_Data' ) && GravityView_View_Data::getInstance()->has_multiple_views() ) {
707
+			$args[ 'gvid' ] = gravityview_get_view_id();
708 708
 		}
709 709
 
710 710
 		return add_query_arg( $args, $directory_link );
@@ -722,7 +722,7 @@  discard block
 block discarded – undo
722 722
 }
723 723
 
724 724
 function gv_class( $field, $form = NULL, $entry = array() ) {
725
-	return GravityView_API::field_class( $field, $form, $entry  );
725
+	return GravityView_API::field_class( $field, $form, $entry );
726 726
 }
727 727
 
728 728
 /**
@@ -744,11 +744,11 @@  discard block
 block discarded – undo
744 744
 
745 745
 	$default_css_class = ! empty( $view_id ) ? sprintf( 'gv-container gv-container-%d', $view_id ) : 'gv-container';
746 746
 
747
-	if( GravityView_View::getInstance()->isHideUntilSearched() ) {
747
+	if ( GravityView_View::getInstance()->isHideUntilSearched() ) {
748 748
 		$default_css_class .= ' hidden';
749 749
 	}
750 750
 
751
-	$css_class = trim( $passed_css_class . ' '. $default_css_class );
751
+	$css_class = trim( $passed_css_class . ' ' . $default_css_class );
752 752
 
753 753
 	/**
754 754
 	 * @filter `gravityview/render/container/class` Modify the CSS class to be added to the wrapper <div> of a View
@@ -759,7 +759,7 @@  discard block
 block discarded – undo
759 759
 
760 760
 	$css_class = gravityview_sanitize_html_class( $css_class );
761 761
 
762
-	if( $echo ) {
762
+	if ( $echo ) {
763 763
 		echo $css_class;
764 764
 	}
765 765
 
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
 
771 771
 	$value = GravityView_API::field_value( $entry, $field );
772 772
 
773
-	if( $value === '') {
773
+	if ( $value === '' ) {
774 774
 		/**
775 775
 		 * @filter `gravityview_empty_value` What to display when a field is empty
776 776
 		 * @param string $value (empty string)
@@ -789,7 +789,7 @@  discard block
 block discarded – undo
789 789
 	return GravityView_API::entry_link( $entry, $post_id );
790 790
 }
791 791
 
792
-function gv_no_results($wpautop = true) {
792
+function gv_no_results( $wpautop = true ) {
793 793
 	return GravityView_API::no_results( $wpautop );
794 794
 }
795 795
 
@@ -802,7 +802,7 @@  discard block
 block discarded – undo
802 802
 
803 803
 	$href = gv_directory_link();
804 804
 
805
-	if( empty( $href ) ) { return NULL; }
805
+	if ( empty( $href ) ) { return NULL; }
806 806
 
807 807
 	// calculate link label
808 808
 	$gravityview_view = GravityView_View::getInstance();
@@ -818,7 +818,7 @@  discard block
 block discarded – undo
818 818
 
819 819
 	$link = gravityview_get_link( $href, esc_html( $label ), array(
820 820
 		'data-viewid' => $gravityview_view->getViewId()
821
-	));
821
+	) );
822 822
 
823 823
 	return $link;
824 824
 }
@@ -837,7 +837,7 @@  discard block
 block discarded – undo
837 837
  */
838 838
 function gravityview_get_field_value( $entry, $field_id, $display_value ) {
839 839
 
840
-	if( floatval( $field_id ) === floor( floatval( $field_id ) ) ) {
840
+	if ( floatval( $field_id ) === floor( floatval( $field_id ) ) ) {
841 841
 
842 842
 		// For the complete field value as generated by Gravity Forms
843 843
 		return $display_value;
@@ -867,16 +867,16 @@  discard block
 block discarded – undo
867 867
 
868 868
 	$terms = explode( ', ', $value );
869 869
 
870
-	foreach ($terms as $term_name ) {
870
+	foreach ( $terms as $term_name ) {
871 871
 
872 872
 		// If we're processing a category,
873
-		if( $taxonomy === 'category' ) {
873
+		if ( $taxonomy === 'category' ) {
874 874
 
875 875
 			// Use rgexplode to prevent errors if : doesn't exist
876 876
 			list( $term_name, $term_id ) = rgexplode( ':', $value, 2 );
877 877
 
878 878
 			// The explode was succesful; we have the category ID
879
-			if( !empty( $term_id )) {
879
+			if ( ! empty( $term_id ) ) {
880 880
 				$term = get_term_by( 'id', $term_id, $taxonomy );
881 881
 			} else {
882 882
 			// We have to fall back to the name
@@ -889,7 +889,7 @@  discard block
 block discarded – undo
889 889
 		}
890 890
 
891 891
 		// There's still a tag/category here.
892
-		if( $term ) {
892
+		if ( $term ) {
893 893
 
894 894
 			$term_link = get_term_link( $term, $taxonomy );
895 895
 
@@ -898,11 +898,11 @@  discard block
 block discarded – undo
898 898
 			    continue;
899 899
 			}
900 900
 
901
-			$output[] = gravityview_get_link( $term_link, esc_html( $term->name ) );
901
+			$output[ ] = gravityview_get_link( $term_link, esc_html( $term->name ) );
902 902
 		}
903 903
 	}
904 904
 
905
-	return implode(', ', $output );
905
+	return implode( ', ', $output );
906 906
 }
907 907
 
908 908
 /**
@@ -916,8 +916,8 @@  discard block
 block discarded – undo
916 916
 
917 917
 	$output = get_the_term_list( $post_id, $taxonomy, NULL, ', ' );
918 918
 
919
-	if( empty( $link ) ) {
920
-		return strip_tags( $output);
919
+	if ( empty( $link ) ) {
920
+		return strip_tags( $output );
921 921
 	}
922 922
 
923 923
 	return $output;
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
 	$fe = GravityView_frontend::getInstance();
937 937
 
938 938
 	// Solve problem when loading content via admin-ajax.php
939
-	if( ! $fe->getGvOutputData() ) {
939
+	if ( ! $fe->getGvOutputData() ) {
940 940
 
941 941
 		do_action( 'gravityview_log_debug', '[gravityview_get_current_views] gv_output_data not defined; parsing content.' );
942 942
 
@@ -944,7 +944,7 @@  discard block
 block discarded – undo
944 944
 	}
945 945
 
946 946
 	// Make 100% sure that we're dealing with a properly called situation
947
-	if( !is_a( $fe->getGvOutputData(), 'GravityView_View_Data' ) ) {
947
+	if ( ! is_a( $fe->getGvOutputData(), 'GravityView_View_Data' ) ) {
948 948
 
949 949
 		do_action( 'gravityview_log_debug', '[gravityview_get_current_views] gv_output_data not an object or get_view not callable.', $fe->getGvOutputData() );
950 950
 
@@ -964,10 +964,10 @@  discard block
 block discarded – undo
964 964
 
965 965
 	$fe = GravityView_frontend::getInstance();
966 966
 
967
-	if( ! $fe->getGvOutputData() ) { return array(); }
967
+	if ( ! $fe->getGvOutputData() ) { return array(); }
968 968
 
969 969
 	// If not set, grab the current view ID
970
-	if( empty( $view_id ) ) {
970
+	if ( empty( $view_id ) ) {
971 971
 		$view_id = $fe->get_context_view_id();
972 972
 	}
973 973
 
@@ -1032,11 +1032,11 @@  discard block
 block discarded – undo
1032 1032
 	 */
1033 1033
 	$is_edit_entry = apply_filters( 'gravityview_is_edit_entry', false );
1034 1034
 
1035
-	if( $is_edit_entry ) {
1035
+	if ( $is_edit_entry ) {
1036 1036
 		$context = 'edit';
1037
-	} else if( class_exists( 'GravityView_frontend' ) && $single = GravityView_frontend::is_single_entry() ) {
1037
+	} else if ( class_exists( 'GravityView_frontend' ) && $single = GravityView_frontend::is_single_entry() ) {
1038 1038
 		$context = 'single';
1039
-	} else if( class_exists( 'GravityView_View' ) ) {
1039
+	} else if ( class_exists( 'GravityView_View' ) ) {
1040 1040
 		$context = GravityView_View::getInstance()->getContext();
1041 1041
 	}
1042 1042
 
@@ -1064,12 +1064,12 @@  discard block
 block discarded – undo
1064 1064
 function gravityview_get_files_array( $value, $gv_class = '' ) {
1065 1065
 	/** @define "GRAVITYVIEW_DIR" "../" */
1066 1066
 
1067
-	if( !class_exists( 'GravityView_Field' ) ) {
1068
-		include_once( GRAVITYVIEW_DIR .'includes/fields/class-gravityview-field.php' );
1067
+	if ( ! class_exists( 'GravityView_Field' ) ) {
1068
+		include_once( GRAVITYVIEW_DIR . 'includes/fields/class-gravityview-field.php' );
1069 1069
 	}
1070 1070
 
1071
-	if( !class_exists( 'GravityView_Field_FileUpload' ) ) {
1072
-		include_once( GRAVITYVIEW_DIR .'includes/fields/fileupload.php' );
1071
+	if ( ! class_exists( 'GravityView_Field_FileUpload' ) ) {
1072
+		include_once( GRAVITYVIEW_DIR . 'includes/fields/fileupload.php' );
1073 1073
 	}
1074 1074
 
1075 1075
 	return GravityView_Field_FileUpload::get_files_array( $value, $gv_class );
@@ -1147,12 +1147,12 @@  discard block
 block discarded – undo
1147 1147
 	$args = apply_filters( 'gravityview/field_output/args', $args, $passed_args );
1148 1148
 
1149 1149
 	// Required fields.
1150
-	if ( empty( $args['field'] ) || empty( $args['form'] ) ) {
1150
+	if ( empty( $args[ 'field' ] ) || empty( $args[ 'form' ] ) ) {
1151 1151
 		do_action( 'gravityview_log_error', '[gravityview_field_output] Field or form are empty.', $args );
1152 1152
 		return '';
1153 1153
 	}
1154 1154
 
1155
-	$entry = empty( $args['entry'] ) ? array() : $args['entry'];
1155
+	$entry = empty( $args[ 'entry' ] ) ? array() : $args[ 'entry' ];
1156 1156
 
1157 1157
 	/**
1158 1158
 	 * Create the content variables for replacing.
@@ -1168,37 +1168,37 @@  discard block
 block discarded – undo
1168 1168
 		'field_id' => '',
1169 1169
 	);
1170 1170
 
1171
-	$context['value'] = gv_value( $entry, $args['field'] );
1171
+	$context[ 'value' ] = gv_value( $entry, $args[ 'field' ] );
1172 1172
 
1173 1173
 	// If the value is empty and we're hiding empty, return empty.
1174
-	if ( $context['value'] === '' && ! empty( $args['hide_empty'] ) ) {
1174
+	if ( $context[ 'value' ] === '' && ! empty( $args[ 'hide_empty' ] ) ) {
1175 1175
 		return '';
1176 1176
 	}
1177 1177
 
1178
-	if ( $context['value'] !== '' && ! empty( $args['wpautop'] ) ) {
1179
-		$context['value'] = wpautop( $context['value'] );
1178
+	if ( $context[ 'value' ] !== '' && ! empty( $args[ 'wpautop' ] ) ) {
1179
+		$context[ 'value' ] = wpautop( $context[ 'value' ] );
1180 1180
 	}
1181 1181
 
1182 1182
 	// Get width setting, if exists
1183
-	$context['width'] = GravityView_API::field_width( $args['field'] );
1183
+	$context[ 'width' ] = GravityView_API::field_width( $args[ 'field' ] );
1184 1184
 
1185 1185
 	// If replacing with CSS inline formatting, let's do it.
1186
-	$context['width:style'] = GravityView_API::field_width( $args['field'], 'width:' . $context['width'] . '%;' );
1186
+	$context[ 'width:style' ] = GravityView_API::field_width( $args[ 'field' ], 'width:' . $context[ 'width' ] . '%;' );
1187 1187
 
1188 1188
 	// Grab the Class using `gv_class`
1189
-	$context['class'] = gv_class( $args['field'], $args['form'], $entry );
1190
-	$context['field_id'] = GravityView_API::field_html_attr_id( $args['field'], $args['form'], $entry );
1189
+	$context[ 'class' ] = gv_class( $args[ 'field' ], $args[ 'form' ], $entry );
1190
+	$context[ 'field_id' ] = GravityView_API::field_html_attr_id( $args[ 'field' ], $args[ 'form' ], $entry );
1191 1191
 
1192 1192
 	// Get field label if needed
1193
-	if ( ! empty( $args['label_markup'] ) && ! empty( $args['field']['show_label'] ) ) {
1194
-		$context['label'] = str_replace( array( '{{label}}', '{{ label }}' ), '<span class="gv-field-label">{{ label_value }}</span>', $args['label_markup'] );
1193
+	if ( ! empty( $args[ 'label_markup' ] ) && ! empty( $args[ 'field' ][ 'show_label' ] ) ) {
1194
+		$context[ 'label' ] = str_replace( array( '{{label}}', '{{ label }}' ), '<span class="gv-field-label">{{ label_value }}</span>', $args[ 'label_markup' ] );
1195 1195
 	}
1196 1196
 
1197 1197
 	// Default Label value
1198
-	$context['label_value'] = gv_label( $args['field'], $entry );
1198
+	$context[ 'label_value' ] = gv_label( $args[ 'field' ], $entry );
1199 1199
 
1200
-	if ( empty( $context['label'] ) && ! empty( $context['label_value'] ) ){
1201
-		$context['label'] = '<span class="gv-field-label">{{ label_value }}</span>';
1200
+	if ( empty( $context[ 'label' ] ) && ! empty( $context[ 'label_value' ] ) ) {
1201
+		$context[ 'label' ] = '<span class="gv-field-label">{{ label_value }}</span>';
1202 1202
 	}
1203 1203
 
1204 1204
 	/**
@@ -1207,7 +1207,7 @@  discard block
 block discarded – undo
1207 1207
 	 * @param string $markup The HTML for the markup
1208 1208
 	 * @param array $args All args for the field output
1209 1209
 	 */
1210
-	$html = apply_filters( 'gravityview/field_output/pre_html', $args['markup'], $args );
1210
+	$html = apply_filters( 'gravityview/field_output/pre_html', $args[ 'markup' ], $args );
1211 1211
 
1212 1212
 	/**
1213 1213
 	 * @filter `gravityview/field_output/open_tag` Modify the opening tags for the template content placeholders
@@ -1230,7 +1230,7 @@  discard block
 block discarded – undo
1230 1230
 	foreach ( $context as $tag => $value ) {
1231 1231
 
1232 1232
 		// If the tag doesn't exist just skip it
1233
-		if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ){
1233
+		if ( false === strpos( $html, $open_tag . $tag . $close_tag ) && false === strpos( $html, $open_tag . ' ' . $tag . ' ' . $close_tag ) ) {
1234 1234
 			continue;
1235 1235
 		}
1236 1236
 
Please login to merge, or discard this patch.
includes/class-common.php 1 patch
Spacing   +107 added lines, -107 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
 		$entry = self::get_entry( $entry_slug, true );
126 126
 
127
-		$form = self::get_form( $entry['form_id'] );
127
+		$form = self::get_form( $entry[ 'form_id' ] );
128 128
 
129 129
 		return $form;
130 130
 	}
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 
176 176
 		$results = GFAPI::get_entries( 0, $search_criteria, null, $paging );
177 177
 
178
-		$result = ( ! empty( $results ) && ! empty( $results[0]['id'] ) ) ? $results[0]['id'] : null;
178
+		$result = ( ! empty( $results ) && ! empty( $results[ 0 ][ 'id' ] ) ) ? $results[ 0 ][ 'id' ] : null;
179 179
 
180 180
 		return $result;
181 181
 	}
@@ -193,9 +193,9 @@  discard block
 block discarded – undo
193 193
 		if ( class_exists( 'GFAPI' ) ) {
194 194
 			$gf_forms = GFAPI::get_forms();
195 195
 			foreach ( $gf_forms as $form ) {
196
-				$forms[] = array(
197
-					'id' => $form['id'],
198
-					'title' => $form['title'],
196
+				$forms[ ] = array(
197
+					'id' => $form[ 'id' ],
198
+					'title' => $form[ 'title' ],
199 199
 				);
200 200
 			}
201 201
 		}
@@ -227,9 +227,9 @@  discard block
 block discarded – undo
227 227
 		}
228 228
 
229 229
 		if ( $form ) {
230
-			foreach ( $form['fields'] as $field ) {
231
-				if ( $include_parent_field || empty( $field['inputs'] ) ) {
232
-					$fields[ $field['id'] ] = array(
230
+			foreach ( $form[ 'fields' ] as $field ) {
231
+				if ( $include_parent_field || empty( $field[ 'inputs' ] ) ) {
232
+					$fields[ $field[ 'id' ] ] = array(
233 233
 						'label' => rgar( $field, 'label' ),
234 234
 						'parent' => null,
235 235
 						'type' => rgar( $field, 'type' ),
@@ -238,16 +238,16 @@  discard block
 block discarded – undo
238 238
 					);
239 239
 				}
240 240
 
241
-				if ( $add_default_properties && ! empty( $field['inputs'] ) ) {
242
-					foreach ( $field['inputs'] as $input ) {
241
+				if ( $add_default_properties && ! empty( $field[ 'inputs' ] ) ) {
242
+					foreach ( $field[ 'inputs' ] as $input ) {
243 243
                         /**
244 244
                          * @hack
245 245
                          * In case of email/email confirmation, the input for email has the same id as the parent field
246 246
                          */
247
-                        if( 'email' == rgar( $field, 'type' ) && false === strpos( $input['id'], '.' ) ) {
247
+                        if ( 'email' == rgar( $field, 'type' ) && false === strpos( $input[ 'id' ], '.' ) ) {
248 248
                             continue;
249 249
                         }
250
-						$fields[ (string)$input['id'] ] = array(
250
+						$fields[ (string)$input[ 'id' ] ] = array(
251 251
 							'label' => rgar( $input, 'label' ),
252 252
 							'customLabel' => rgar( $input, 'customLabel' ),
253 253
 							'parent' => $field,
@@ -259,11 +259,11 @@  discard block
 block discarded – undo
259 259
 				}
260 260
 
261 261
 				/** @since 1.14 */
262
-				if( 'list' === $field['type'] && !empty( $field['enableColumns'] ) ) {
262
+				if ( 'list' === $field[ 'type' ] && ! empty( $field[ 'enableColumns' ] ) ) {
263 263
 
264
-					foreach ( (array)$field['choices'] as $key => $input ) {
264
+					foreach ( (array)$field[ 'choices' ] as $key => $input ) {
265 265
 
266
-						$input_id = sprintf( '%d.%d', $field['id'], $key ); // {field_id}.{column_key}
266
+						$input_id = sprintf( '%d.%d', $field[ 'id' ], $key ); // {field_id}.{column_key}
267 267
 
268 268
 						$fields[ $input_id ] = array(
269 269
 							'label'       => rgar( $input, 'text' ),
@@ -279,25 +279,25 @@  discard block
 block discarded – undo
279 279
 				/**
280 280
 				 * @since 1.8
281 281
 				 */
282
-				if( 'quiz' === $field['type'] ) {
282
+				if ( 'quiz' === $field[ 'type' ] ) {
283 283
 					$has_quiz_fields = true;
284 284
 				}
285 285
 
286 286
 				/**
287 287
 				 * @since 1.8
288 288
 				 */
289
-				if( 'poll' === $field['type'] ) {
289
+				if ( 'poll' === $field[ 'type' ] ) {
290 290
 					$has_poll_fields = true;
291 291
 				}
292 292
 
293
-				if( GFCommon::is_product_field( $field['type'] ) ){
293
+				if ( GFCommon::is_product_field( $field[ 'type' ] ) ) {
294 294
 					$has_product_fields = true;
295 295
 				}
296 296
 
297 297
 				/**
298 298
 				 * @hack Version 1.9
299 299
 				 */
300
-				$field_for_is_post_field = class_exists( 'GF_Fields' ) ? (object) $field : (array) $field;
300
+				$field_for_is_post_field = class_exists( 'GF_Fields' ) ? (object)$field : (array)$field;
301 301
 
302 302
 				if ( GFCommon::is_post_field( $field_for_is_post_field ) ) {
303 303
 					$has_post_fields = true;
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 		 * @since 1.7
310 310
 		 */
311 311
 		if ( $has_post_fields ) {
312
-			$fields['post_id'] = array(
312
+			$fields[ 'post_id' ] = array(
313 313
 				'label' => __( 'Post ID', 'gravityview' ),
314 314
 				'type' => 'post_id',
315 315
 			);
@@ -320,10 +320,10 @@  discard block
 block discarded – undo
320 320
 			$payment_fields = GravityView_Fields::get_all( 'pricing' );
321 321
 
322 322
 			foreach ( $payment_fields as $payment_field ) {
323
-				if( isset( $fields["{$payment_field->name}"] ) ) {
323
+				if ( isset( $fields[ "{$payment_field->name}" ] ) ) {
324 324
 					continue;
325 325
 				}
326
-				$fields["{$payment_field->name}"] = array(
326
+				$fields[ "{$payment_field->name}" ] = array(
327 327
 					'label' => $payment_field->label,
328 328
 					'desc' => $payment_field->description,
329 329
 					'type' => $payment_field->name,
@@ -334,24 +334,24 @@  discard block
 block discarded – undo
334 334
 		/**
335 335
 		 * @since 1.8
336 336
 		 */
337
-		if( $has_quiz_fields ) {
337
+		if ( $has_quiz_fields ) {
338 338
 
339
-			$fields['gquiz_score']   = array(
339
+			$fields[ 'gquiz_score' ] = array(
340 340
 				'label' => __( 'Quiz Score Total', 'gravityview' ),
341 341
 				'type'  => 'quiz_score',
342 342
 				'desc'  => __( 'Displays the number of correct Quiz answers the user submitted.', 'gravityview' ),
343 343
 			);
344
-			$fields['gquiz_percent'] = array(
344
+			$fields[ 'gquiz_percent' ] = array(
345 345
 				'label' => __( 'Quiz Percentage Grade', 'gravityview' ),
346 346
 				'type'  => 'quiz_percent',
347 347
 				'desc'  => __( 'Displays the percentage of correct Quiz answers the user submitted.', 'gravityview' ),
348 348
 			);
349
-			$fields['gquiz_grade']   = array(
349
+			$fields[ 'gquiz_grade' ] = array(
350 350
 				'label' => __( 'Quiz Letter Grade', 'gravityview' ),
351 351
 				'type'  => 'quiz_grade',
352 352
 				'desc'  => __( 'Displays the Grade the user achieved based on Letter Grading configured in the Quiz Settings.', 'gravityview' ),
353 353
 			);
354
-			$fields['gquiz_is_pass'] = array(
354
+			$fields[ 'gquiz_is_pass' ] = array(
355 355
 				'label' => __( 'Quiz Pass/Fail', 'gravityview' ),
356 356
 				'type'  => 'quiz_is_pass',
357 357
 				'desc'  => __( 'Displays either Passed or Failed based on the Pass/Fail settings configured in the Quiz Settings.', 'gravityview' ),
@@ -373,9 +373,9 @@  discard block
 block discarded – undo
373 373
 
374 374
 		$fields = array();
375 375
 
376
-		foreach ( $extra_fields as $key => $field ){
377
-			if ( ! empty( $only_default_column ) && ! empty( $field['is_default_column'] ) ) {
378
-				$fields[ $key ] = array( 'label' => $field['label'], 'type' => 'entry_meta' );
376
+		foreach ( $extra_fields as $key => $field ) {
377
+			if ( ! empty( $only_default_column ) && ! empty( $field[ 'is_default_column' ] ) ) {
378
+				$fields[ $key ] = array( 'label' => $field[ 'label' ], 'type' => 'entry_meta' );
379 379
 			}
380 380
 		}
381 381
 
@@ -415,32 +415,32 @@  discard block
 block discarded – undo
415 415
 			'search_criteria' => null,
416 416
 			'sorting' => null,
417 417
 			'paging' => null,
418
-			'cache' => (isset( $passed_criteria['cache'] ) ? $passed_criteria['cache'] : true),
418
+			'cache' => ( isset( $passed_criteria[ 'cache' ] ) ? $passed_criteria[ 'cache' ] : true ),
419 419
 		);
420 420
 
421 421
 		$criteria = wp_parse_args( $passed_criteria, $search_criteria_defaults );
422 422
 
423
-		if ( ! empty( $criteria['search_criteria']['field_filters'] ) ) {
424
-			foreach ( $criteria['search_criteria']['field_filters'] as &$filter ) {
423
+		if ( ! empty( $criteria[ 'search_criteria' ][ 'field_filters' ] ) ) {
424
+			foreach ( $criteria[ 'search_criteria' ][ 'field_filters' ] as &$filter ) {
425 425
 
426 426
 				if ( ! is_array( $filter ) ) {
427 427
 					continue;
428 428
 				}
429 429
 
430 430
 				// By default, we want searches to be wildcard for each field.
431
-				$filter['operator'] = empty( $filter['operator'] ) ? 'contains' : $filter['operator'];
431
+				$filter[ 'operator' ] = empty( $filter[ 'operator' ] ) ? 'contains' : $filter[ 'operator' ];
432 432
 
433 433
 				/**
434 434
 				 * @filter `gravityview_search_operator` Modify the search operator for the field (contains, is, isnot, etc)
435 435
 				 * @param string $operator Existing search operator
436 436
 				 * @param array $filter array with `key`, `value`, `operator`, `type` keys
437 437
 				 */
438
-				$filter['operator'] = apply_filters( 'gravityview_search_operator', $filter['operator'], $filter );
438
+				$filter[ 'operator' ] = apply_filters( 'gravityview_search_operator', $filter[ 'operator' ], $filter );
439 439
 			}
440 440
 
441 441
 			// don't send just the [mode] without any field filter.
442
-			if( count( $criteria['search_criteria']['field_filters'] ) === 1 && array_key_exists( 'mode' , $criteria['search_criteria']['field_filters'] ) ) {
443
-				unset( $criteria['search_criteria']['field_filters']['mode'] );
442
+			if ( count( $criteria[ 'search_criteria' ][ 'field_filters' ] ) === 1 && array_key_exists( 'mode', $criteria[ 'search_criteria' ][ 'field_filters' ] ) ) {
443
+				unset( $criteria[ 'search_criteria' ][ 'field_filters' ][ 'mode' ] );
444 444
 			}
445 445
 
446 446
 		}
@@ -451,21 +451,21 @@  discard block
 block discarded – undo
451 451
 		 * Prepare date formats to be in Gravity Forms DB format;
452 452
 		 * $passed_criteria may include date formats incompatible with Gravity Forms.
453 453
 		 */
454
-		foreach ( array('start_date', 'end_date' ) as $key ) {
454
+		foreach ( array( 'start_date', 'end_date' ) as $key ) {
455 455
 
456
-			if ( ! empty( $criteria['search_criteria'][ $key ] ) ) {
456
+			if ( ! empty( $criteria[ 'search_criteria' ][ $key ] ) ) {
457 457
 
458 458
 				// Use date_create instead of new DateTime so it returns false if invalid date format.
459
-				$date = date_create( $criteria['search_criteria'][ $key ] );
459
+				$date = date_create( $criteria[ 'search_criteria' ][ $key ] );
460 460
 
461 461
 				if ( $date ) {
462 462
 					// Gravity Forms wants dates in the `Y-m-d H:i:s` format.
463
-					$criteria['search_criteria'][ $key ] = $date->format( 'Y-m-d H:i:s' );
463
+					$criteria[ 'search_criteria' ][ $key ] = $date->format( 'Y-m-d H:i:s' );
464 464
 				} else {
465 465
 					// If it's an invalid date, unset it. Gravity Forms freaks out otherwise.
466
-					unset( $criteria['search_criteria'][ $key ] );
466
+					unset( $criteria[ 'search_criteria' ][ $key ] );
467 467
 
468
-					do_action( 'gravityview_log_error', '[filter_get_entries_criteria] '.$key.' Date format not valid:', $criteria['search_criteria'][ $key ] );
468
+					do_action( 'gravityview_log_error', '[filter_get_entries_criteria] ' . $key . ' Date format not valid:', $criteria[ 'search_criteria' ][ $key ] );
469 469
 				}
470 470
 			}
471 471
 		}
@@ -473,12 +473,12 @@  discard block
 block discarded – undo
473 473
 
474 474
 		// When multiple views are embedded, OR single entry, calculate the context view id and send it to the advanced filter
475 475
 		if ( class_exists( 'GravityView_View_Data' ) && GravityView_View_Data::getInstance()->has_multiple_views() || GravityView_frontend::getInstance()->getSingleEntry() ) {
476
-			$criteria['context_view_id'] = GravityView_frontend::getInstance()->get_context_view_id();
476
+			$criteria[ 'context_view_id' ] = GravityView_frontend::getInstance()->get_context_view_id();
477 477
 		} elseif ( 'delete' === RGForms::get( 'action' ) ) {
478
-			$criteria['context_view_id'] = isset( $_GET['view_id'] ) ? $_GET['view_id'] : null;
479
-		} elseif( !isset( $criteria['context_view_id'] ) ) {
478
+			$criteria[ 'context_view_id' ] = isset( $_GET[ 'view_id' ] ) ? $_GET[ 'view_id' ] : null;
479
+		} elseif ( ! isset( $criteria[ 'context_view_id' ] ) ) {
480 480
             // Prevent overriding the Context View ID: Some widgets could set the context_view_id (e.g. Recent Entries widget)
481
-			$criteria['context_view_id'] = null;
481
+			$criteria[ 'context_view_id' ] = null;
482 482
 		}
483 483
 
484 484
 		/**
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
 		 * @param array $form_ids Forms to search
488 488
 		 * @param int $view_id ID of the view being used to search
489 489
 		 */
490
-		$criteria = apply_filters( 'gravityview_search_criteria', $criteria, $form_ids, $criteria['context_view_id'] );
490
+		$criteria = apply_filters( 'gravityview_search_criteria', $criteria, $form_ids, $criteria[ 'context_view_id' ] );
491 491
 
492 492
 		return (array)$criteria;
493 493
 
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
 		/** Reduce # of database calls */
519 519
 		add_filter( 'gform_is_encrypted_field', '__return_false' );
520 520
 
521
-		if ( ! empty( $criteria['cache'] ) ) {
521
+		if ( ! empty( $criteria[ 'cache' ] ) ) {
522 522
 
523 523
 			$Cache = new GravityView_Cache( $form_ids, $criteria );
524 524
 
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
 
527 527
 				// Still update the total count when using cached results
528 528
 				if ( ! is_null( $total ) ) {
529
-					$total = GFAPI::count_entries( $form_ids, $criteria['search_criteria'] );
529
+					$total = GFAPI::count_entries( $form_ids, $criteria[ 'search_criteria' ] );
530 530
 				}
531 531
 
532 532
 				$return = $entries;
@@ -546,9 +546,9 @@  discard block
 block discarded – undo
546 546
 			$entries = apply_filters( 'gravityview_before_get_entries', null, $criteria, $passed_criteria, $total );
547 547
 
548 548
 			// No entries returned from gravityview_before_get_entries
549
-			if( is_null( $entries ) ) {
549
+			if ( is_null( $entries ) ) {
550 550
 
551
-				$entries = GFAPI::get_entries( $form_ids, $criteria['search_criteria'], $criteria['sorting'], $criteria['paging'], $total );
551
+				$entries = GFAPI::get_entries( $form_ids, $criteria[ 'search_criteria' ], $criteria[ 'sorting' ], $criteria[ 'paging' ], $total );
552 552
 
553 553
 				if ( is_wp_error( $entries ) ) {
554 554
 					do_action( 'gravityview_log_error', $entries->get_error_message(), $entries );
@@ -557,7 +557,7 @@  discard block
 block discarded – undo
557 557
 				}
558 558
 			}
559 559
 
560
-			if ( ! empty( $criteria['cache'] ) && isset( $Cache ) ) {
560
+			if ( ! empty( $criteria[ 'cache' ] ) && isset( $Cache ) ) {
561 561
 
562 562
 				// Cache results
563 563
 				$Cache->set( $entries, 'entries' );
@@ -644,7 +644,7 @@  discard block
 block discarded – undo
644 644
 			 */
645 645
 			$check_entry_display = apply_filters( 'gravityview/common/get_entry/check_entry_display', $check_entry_display, $entry );
646 646
 
647
-			if( $check_entry_display ) {
647
+			if ( $check_entry_display ) {
648 648
 				// Is the entry allowed
649 649
 				$entry = self::check_entry_display( $entry );
650 650
 			}
@@ -677,12 +677,12 @@  discard block
 block discarded – undo
677 677
 
678 678
 		$value = false;
679 679
 
680
-		if( 'context' === $val1 ) {
680
+		if ( 'context' === $val1 ) {
681 681
 
682 682
 			$matching_contexts = array( $val2 );
683 683
 
684 684
 			// We allow for non-standard contexts.
685
-			switch( $val2 ) {
685
+			switch ( $val2 ) {
686 686
 				// Check for either single or edit
687 687
 				case 'singular':
688 688
 					$matching_contexts = array( 'single', 'edit' );
@@ -742,7 +742,7 @@  discard block
 block discarded – undo
742 742
 			return false;
743 743
 		}
744 744
 
745
-		if ( empty( $entry['form_id'] ) ) {
745
+		if ( empty( $entry[ 'form_id' ] ) ) {
746 746
 			do_action( 'gravityview_log_debug', '[apply_filters_to_entry] Entry is empty! Entry:', $entry );
747 747
 			return false;
748 748
 		}
@@ -750,26 +750,26 @@  discard block
 block discarded – undo
750 750
 		$criteria = self::calculate_get_entries_criteria();
751 751
 
752 752
 		// Make sure the current View is connected to the same form as the Entry
753
-		if( ! empty( $criteria['context_view_id'] ) ) {
754
-			$context_view_id = intval( $criteria['context_view_id'] );
753
+		if ( ! empty( $criteria[ 'context_view_id' ] ) ) {
754
+			$context_view_id = intval( $criteria[ 'context_view_id' ] );
755 755
 			$context_form_id = gravityview_get_form_id( $context_view_id );
756
-			if( intval( $context_form_id ) !== intval( $entry['form_id'] ) ) {
757
-				do_action( 'gravityview_log_debug', sprintf( '[apply_filters_to_entry] Entry form ID does not match current View connected form ID:', $entry['form_id'] ), $criteria['context_view_id'] );
756
+			if ( intval( $context_form_id ) !== intval( $entry[ 'form_id' ] ) ) {
757
+				do_action( 'gravityview_log_debug', sprintf( '[apply_filters_to_entry] Entry form ID does not match current View connected form ID:', $entry[ 'form_id' ] ), $criteria[ 'context_view_id' ] );
758 758
 				return false;
759 759
 			}
760 760
 		}
761 761
 
762
-		if ( empty( $criteria['search_criteria'] ) || ! is_array( $criteria['search_criteria'] ) ) {
762
+		if ( empty( $criteria[ 'search_criteria' ] ) || ! is_array( $criteria[ 'search_criteria' ] ) ) {
763 763
 			do_action( 'gravityview_log_debug', '[apply_filters_to_entry] Entry approved! No search criteria found:', $criteria );
764 764
 			return $entry;
765 765
 		}
766 766
 
767
-		$search_criteria = $criteria['search_criteria'];
767
+		$search_criteria = $criteria[ 'search_criteria' ];
768 768
 		unset( $criteria );
769 769
 
770 770
 		// check entry status
771
-		if ( array_key_exists( 'status', $search_criteria ) && $search_criteria['status'] != $entry['status'] ) {
772
-			do_action( 'gravityview_log_debug', sprintf( '[apply_filters_to_entry] Entry status - %s - is not valid according to filter:', $entry['status'] ), $search_criteria );
771
+		if ( array_key_exists( 'status', $search_criteria ) && $search_criteria[ 'status' ] != $entry[ 'status' ] ) {
772
+			do_action( 'gravityview_log_debug', sprintf( '[apply_filters_to_entry] Entry status - %s - is not valid according to filter:', $entry[ 'status' ] ), $search_criteria );
773 773
 			return false;
774 774
 		}
775 775
 
@@ -777,37 +777,37 @@  discard block
 block discarded – undo
777 777
 		// @todo: Does it make sense to apply the Date create filters to the single entry?
778 778
 
779 779
 		// field_filters
780
-		if ( empty( $search_criteria['field_filters'] ) || ! is_array( $search_criteria['field_filters'] ) ) {
780
+		if ( empty( $search_criteria[ 'field_filters' ] ) || ! is_array( $search_criteria[ 'field_filters' ] ) ) {
781 781
 			do_action( 'gravityview_log_debug', '[apply_filters_to_entry] Entry approved! No field filters criteria found:', $search_criteria );
782 782
 			return $entry;
783 783
 		}
784 784
 
785
-		$filters = $search_criteria['field_filters'];
785
+		$filters = $search_criteria[ 'field_filters' ];
786 786
 		unset( $search_criteria );
787 787
 
788
-		$mode = array_key_exists( 'mode', $filters ) ? strtolower( $filters['mode'] ) : 'all';
789
-		unset( $filters['mode'] );
788
+		$mode = array_key_exists( 'mode', $filters ) ? strtolower( $filters[ 'mode' ] ) : 'all';
789
+		unset( $filters[ 'mode' ] );
790 790
 
791
-		$form = self::get_form( $entry['form_id'] );
791
+		$form = self::get_form( $entry[ 'form_id' ] );
792 792
 
793 793
 		foreach ( $filters as $filter ) {
794 794
 
795
-			if ( ! isset( $filter['key'] ) ) {
795
+			if ( ! isset( $filter[ 'key' ] ) ) {
796 796
 				continue;
797 797
 			}
798 798
 
799
-			$k = $filter['key'];
799
+			$k = $filter[ 'key' ];
800 800
 
801 801
 			if ( in_array( $k, array( 'created_by', 'payment_status' ) ) ) {
802 802
 				$field_value = $entry[ $k ];
803 803
 				$field = null;
804 804
 			} else {
805 805
 				$field = self::get_field( $form, $k );
806
-				$field_value  = GFFormsModel::get_lead_field_value( $entry, $field );
806
+				$field_value = GFFormsModel::get_lead_field_value( $entry, $field );
807 807
 			}
808 808
 
809
-			$operator = isset( $filter['operator'] ) ? strtolower( $filter['operator'] ) : 'is';
810
-			$is_value_match = GFFormsModel::is_value_match( $field_value, $filter['value'], $operator, $field );
809
+			$operator = isset( $filter[ 'operator' ] ) ? strtolower( $filter[ 'operator' ] ) : 'is';
810
+			$is_value_match = GFFormsModel::is_value_match( $field_value, $filter[ 'value' ], $operator, $field );
811 811
 
812 812
 			// verify if we are already free to go!
813 813
 			if ( ! $is_value_match && 'all' === $mode ) {
@@ -865,25 +865,25 @@  discard block
 block discarded – undo
865 865
 		 * Gravity Forms code to adjust date to locally-configured Time Zone
866 866
 		 * @see GFCommon::format_date() for original code
867 867
 		 */
868
-		$date_gmt_time   = mysql2date( 'G', $date_string );
868
+		$date_gmt_time = mysql2date( 'G', $date_string );
869 869
 		$date_local_timestamp = GFCommon::get_local_timestamp( $date_gmt_time );
870 870
 
871
-		$format  = rgar( $atts, 'format' );
872
-		$is_human  = ! empty( $atts['human'] );
873
-		$is_diff  = ! empty( $atts['diff'] );
874
-		$is_raw = ! empty( $atts['raw'] );
875
-		$is_timestamp = ! empty( $atts['timestamp'] );
876
-		$include_time = ! empty( $atts['time'] );
871
+		$format = rgar( $atts, 'format' );
872
+		$is_human = ! empty( $atts[ 'human' ] );
873
+		$is_diff = ! empty( $atts[ 'diff' ] );
874
+		$is_raw = ! empty( $atts[ 'raw' ] );
875
+		$is_timestamp = ! empty( $atts[ 'timestamp' ] );
876
+		$include_time = ! empty( $atts[ 'time' ] );
877 877
 
878 878
 		// If we're using time diff, we want to have a different default format
879
-		if( empty( $format ) ) {
879
+		if ( empty( $format ) ) {
880 880
 			$format = $is_diff ? esc_html__( '%s ago', 'gravityview' ) : get_option( 'date_format' );
881 881
 		}
882 882
 
883 883
 		// If raw was specified, don't modify the stored value
884 884
 		if ( $is_raw ) {
885 885
 			$formatted_date = $date_string;
886
-		} elseif( $is_timestamp ) {
886
+		} elseif ( $is_timestamp ) {
887 887
 			$formatted_date = $date_local_timestamp;
888 888
 		} elseif ( $is_diff ) {
889 889
 			$formatted_date = sprintf( $format, human_time_diff( $date_gmt_time ) );
@@ -911,7 +911,7 @@  discard block
 block discarded – undo
911 911
 		}
912 912
 
913 913
 		$field = self::get_field( $form, $field_id );
914
-		return isset( $field['label'] ) ?  $field['label'] : '';
914
+		return isset( $field[ 'label' ] ) ? $field[ 'label' ] : '';
915 915
 
916 916
 	}
917 917
 
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
 	 * @return array|null Array: Gravity Forms field array; NULL: Gravity Forms GFFormsModel does not exist
930 930
 	 */
931 931
 	public static function get_field( $form, $field_id ) {
932
-		if ( class_exists( 'GFFormsModel' ) ){
932
+		if ( class_exists( 'GFFormsModel' ) ) {
933 933
 			return GFFormsModel::get_field( $form, $field_id );
934 934
 		} else {
935 935
 			return null;
@@ -976,17 +976,17 @@  discard block
 block discarded – undo
976 976
 			$shortcodes = array();
977 977
 
978 978
 			preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER );
979
-			if ( empty( $matches ) ){
979
+			if ( empty( $matches ) ) {
980 980
 				return false;
981 981
 			}
982 982
 
983 983
 			foreach ( $matches as $shortcode ) {
984
-				if ( $tag === $shortcode[2] ) {
984
+				if ( $tag === $shortcode[ 2 ] ) {
985 985
 
986 986
 					// Changed this to $shortcode instead of true so we get the parsed atts.
987
-					$shortcodes[] = $shortcode;
987
+					$shortcodes[ ] = $shortcode;
988 988
 
989
-				} else if ( isset( $shortcode[5] ) && $result = self::has_shortcode_r( $shortcode[5], $tag ) ) {
989
+				} else if ( isset( $shortcode[ 5 ] ) && $result = self::has_shortcode_r( $shortcode[ 5 ], $tag ) ) {
990 990
 					$shortcodes = $result;
991 991
 				}
992 992
 			}
@@ -1137,7 +1137,7 @@  discard block
 block discarded – undo
1137 1137
 	 * @return string         html
1138 1138
 	 */
1139 1139
 	public static function get_sortable_fields( $formid, $current = '' ) {
1140
-		$output = '<option value="" ' . selected( '', $current, false ).'>' . esc_html__( 'Default', 'gravityview' ) .'</option>';
1140
+		$output = '<option value="" ' . selected( '', $current, false ) . '>' . esc_html__( 'Default', 'gravityview' ) . '</option>';
1141 1141
 
1142 1142
 		if ( empty( $formid ) ) {
1143 1143
 			return $output;
@@ -1150,11 +1150,11 @@  discard block
 block discarded – undo
1150 1150
 			$blacklist_field_types = apply_filters( 'gravityview_blacklist_field_types', array( 'list', 'textarea' ), null );
1151 1151
 
1152 1152
 			foreach ( $fields as $id => $field ) {
1153
-				if ( in_array( $field['type'], $blacklist_field_types ) ) {
1153
+				if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) {
1154 1154
 					continue;
1155 1155
 				}
1156 1156
 
1157
-				$output .= '<option value="'. $id .'" '. selected( $id, $current, false ).'>'. esc_attr( $field['label'] ) .'</option>';
1157
+				$output .= '<option value="' . $id . '" ' . selected( $id, $current, false ) . '>' . esc_attr( $field[ 'label' ] ) . '</option>';
1158 1158
 			}
1159 1159
 		}
1160 1160
 
@@ -1189,9 +1189,9 @@  discard block
 block discarded – undo
1189 1189
 		$blacklist_field_types = apply_filters( 'gravityview_blacklist_field_types', $blacklist, NULL );
1190 1190
 
1191 1191
 		// TODO: Convert to using array_filter
1192
-		foreach( $fields as $id => $field ) {
1192
+		foreach ( $fields as $id => $field ) {
1193 1193
 
1194
-			if( in_array( $field['type'], $blacklist_field_types ) ) {
1194
+			if ( in_array( $field[ 'type' ], $blacklist_field_types ) ) {
1195 1195
 				unset( $fields[ $id ] );
1196 1196
 			}
1197 1197
 		}
@@ -1232,14 +1232,14 @@  discard block
 block discarded – undo
1232 1232
 	 * @param  int|array  $field field key or field array
1233 1233
 	 * @return boolean
1234 1234
 	 */
1235
-	public static function is_field_numeric(  $form = null, $field = '' ) {
1235
+	public static function is_field_numeric( $form = null, $field = '' ) {
1236 1236
 
1237 1237
 		if ( ! is_array( $form ) && ! is_array( $field ) ) {
1238 1238
 			$form = self::get_form( $form );
1239 1239
 		}
1240 1240
 
1241 1241
 		// If entry meta, it's a string. Otherwise, numeric
1242
-		if( ! is_numeric( $field ) && is_string( $field ) ) {
1242
+		if ( ! is_numeric( $field ) && is_string( $field ) ) {
1243 1243
 			$type = $field;
1244 1244
 		} else {
1245 1245
 			$type = self::get_field_type( $form, $field );
@@ -1253,9 +1253,9 @@  discard block
 block discarded – undo
1253 1253
 		$numeric_types = apply_filters( 'gravityview/common/numeric_types', array( 'number', 'time' ) );
1254 1254
 
1255 1255
 		// Defer to GravityView_Field setting, if the field type is registered and `is_numeric` is true
1256
-		if( $gv_field = GravityView_Fields::get( $type ) ) {
1257
-			if( true === $gv_field->is_numeric ) {
1258
-				$numeric_types[] = $gv_field->is_numeric;
1256
+		if ( $gv_field = GravityView_Fields::get( $type ) ) {
1257
+			if ( true === $gv_field->is_numeric ) {
1258
+				$numeric_types[ ] = $gv_field->is_numeric;
1259 1259
 			}
1260 1260
 		}
1261 1261
 
@@ -1405,11 +1405,11 @@  discard block
 block discarded – undo
1405 1405
 		$final_atts = array_filter( $final_atts );
1406 1406
 
1407 1407
 		// If the href wasn't passed as an attribute, use the value passed to the function
1408
-		if ( empty( $final_atts['href'] ) && ! empty( $href ) ) {
1409
-			$final_atts['href'] = $href;
1408
+		if ( empty( $final_atts[ 'href' ] ) && ! empty( $href ) ) {
1409
+			$final_atts[ 'href' ] = $href;
1410 1410
 		}
1411 1411
 
1412
-		$final_atts['href'] = esc_url_raw( $href );
1412
+		$final_atts[ 'href' ] = esc_url_raw( $href );
1413 1413
 
1414 1414
 		// Sort the attributes alphabetically, to help testing
1415 1415
 		ksort( $final_atts );
@@ -1420,7 +1420,7 @@  discard block
 block discarded – undo
1420 1420
 			$output .= sprintf( ' %s="%s"', $attr, esc_attr( $value ) );
1421 1421
 		}
1422 1422
 
1423
-		if( '' !== $output ) {
1423
+		if ( '' !== $output ) {
1424 1424
 			$output = '<a' . $output . '>' . $anchor_text . '</a>';
1425 1425
 		}
1426 1426
 
@@ -1444,7 +1444,7 @@  discard block
 block discarded – undo
1444 1444
 	public static function array_merge_recursive_distinct( array &$array1, array &$array2 ) {
1445 1445
 		$merged = $array1;
1446 1446
 
1447
-		foreach ( $array2 as $key => &$value )  {
1447
+		foreach ( $array2 as $key => &$value ) {
1448 1448
 			if ( is_array( $value ) && isset( $merged[ $key ] ) && is_array( $merged[ $key ] ) ) {
1449 1449
 				$merged[ $key ] = self::array_merge_recursive_distinct( $merged[ $key ], $value );
1450 1450
 			} else {
@@ -1479,7 +1479,7 @@  discard block
 block discarded – undo
1479 1479
 		 * `$context` is where are we using this information (e.g. change_entry_creator, search_widget ..)
1480 1480
 		 * @param array $settings Settings array, with `number` key defining the # of users to display
1481 1481
 		 */
1482
-		$get_users_settings = apply_filters( 'gravityview/get_users/'. $context, apply_filters( 'gravityview_change_entry_creator_user_parameters', $get_users_settings ) );
1482
+		$get_users_settings = apply_filters( 'gravityview/get_users/' . $context, apply_filters( 'gravityview_change_entry_creator_user_parameters', $get_users_settings ) );
1483 1483
 
1484 1484
 		return get_users( $get_users_settings );
1485 1485
 	}
@@ -1494,7 +1494,7 @@  discard block
 block discarded – undo
1494 1494
      * @return string
1495 1495
      */
1496 1496
     public static function generate_notice( $notice, $class = '' ) {
1497
-        return '<div class="gv-notice '.gravityview_sanitize_html_class( $class ) .'">'. $notice .'</div>';
1497
+        return '<div class="gv-notice ' . gravityview_sanitize_html_class( $class ) . '">' . $notice . '</div>';
1498 1498
     }
1499 1499
 
1500 1500
 
Please login to merge, or discard this patch.
includes/class-admin-views.php 1 patch
Spacing   +177 added lines, -177 removed lines patch added patch discarded remove patch
@@ -28,30 +28,30 @@  discard block
 block discarded – undo
28 28
 		add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 );
29 29
 
30 30
 		// Tooltips
31
-		add_filter( 'gform_tooltips', array( $this, 'tooltips') );
31
+		add_filter( 'gform_tooltips', array( $this, 'tooltips' ) );
32 32
 
33 33
 		// adding styles and scripts
34
-		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 );
35
-		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') );
36
-		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') );
37
-		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') );
38
-		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') );
39
-
40
-		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 );
41
-		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 );
42
-		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 );
43
-		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') );
44
-		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 );
34
+		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 );
35
+		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) );
36
+		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) );
37
+		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) );
38
+		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
39
+
40
+		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 );
41
+		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 );
42
+		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 );
43
+		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) );
44
+		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 );
45 45
 
46 46
 		// @todo check if this hook is needed..
47 47
 		//add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 );
48 48
 
49 49
 		// Add Connected Form column
50
-		add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) );
50
+		add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) );
51 51
 
52 52
 		add_filter( 'gform_toolbar_menu', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 );
53 53
 
54
-		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content'), 10, 2 );
54
+		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content' ), 10, 2 );
55 55
 
56 56
 		add_action( 'restrict_manage_posts', array( $this, 'add_view_dropdown' ) );
57 57
 
@@ -66,11 +66,11 @@  discard block
 block discarded – undo
66 66
 	public function filter_pre_get_posts_by_gravityview_form_id( &$query ) {
67 67
 		global $pagenow;
68 68
 
69
-		if ( !is_admin() ) {
69
+		if ( ! is_admin() ) {
70 70
 			return;
71 71
 		}
72 72
 
73
-		if( 'edit.php' !== $pagenow || ! rgget( 'gravityview_form_id' ) || ! isset( $query->query_vars[ 'post_type' ] ) ) {
73
+		if ( 'edit.php' !== $pagenow || ! rgget( 'gravityview_form_id' ) || ! isset( $query->query_vars[ 'post_type' ] ) ) {
74 74
 			return;
75 75
 		}
76 76
 
@@ -87,18 +87,18 @@  discard block
 block discarded – undo
87 87
 	function add_view_dropdown() {
88 88
 		$current_screen = get_current_screen();
89 89
 
90
-		if( 'gravityview' !== $current_screen->post_type ) {
90
+		if ( 'gravityview' !== $current_screen->post_type ) {
91 91
 			return;
92 92
 		}
93 93
 
94 94
 		$forms = gravityview_get_forms();
95 95
 		$current_form = rgget( 'gravityview_form_id' );
96 96
 		// If there are no forms to select, show no forms.
97
-		if( !empty( $forms ) ) { ?>
97
+		if ( ! empty( $forms ) ) { ?>
98 98
 			<select name="gravityview_form_id" id="gravityview_form_id">
99 99
 				<option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option>
100
-				<?php foreach( $forms as $form ) { ?>
101
-					<option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option>
100
+				<?php foreach ( $forms as $form ) { ?>
101
+					<option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option>
102 102
 				<?php } ?>
103 103
 			</select>
104 104
 		<?php }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	 */
112 112
 	public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) {
113 113
 		_deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' );
114
-		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id );
114
+		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id );
115 115
 	}
116 116
 
117 117
 	/**
@@ -134,37 +134,37 @@  discard block
 block discarded – undo
134 134
 
135 135
 		$connected_views = gravityview_get_connected_views( $id );
136 136
 
137
-		if( empty( $connected_views ) ) {
137
+		if ( empty( $connected_views ) ) {
138 138
 			return $menu_items;
139 139
 		}
140 140
 
141 141
 		$sub_menu_items = array();
142 142
 		foreach ( (array)$connected_views as $view ) {
143 143
 
144
-			if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
144
+			if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
145 145
 				continue;
146 146
 			}
147 147
 
148
-			$label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
148
+			$label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
149 149
 
150
-			$sub_menu_items[] = array(
150
+			$sub_menu_items[ ] = array(
151 151
 				'label' => esc_attr( $label ),
152
-				'url' => admin_url( 'post.php?action=edit&post='.$view->ID ),
152
+				'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ),
153 153
 			);
154 154
 		}
155 155
 
156 156
 		// If there were no items added, then let's create the parent menu
157
-		if( $sub_menu_items ) {
157
+		if ( $sub_menu_items ) {
158 158
 
159 159
 			// Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown
160
-			$sub_menu_items[] = array(
160
+			$sub_menu_items[ ] = array(
161 161
 				'url' => '#',
162 162
 				'label' => '',
163 163
 				'menu_class' => 'hidden',
164 164
 				'capabilities' => '',
165 165
 			);
166 166
 
167
-			$menu_items['gravityview'] = array(
167
+			$menu_items[ 'gravityview' ] = array(
168 168
 				'label'          => __( 'Connected Views', 'gravityview' ),
169 169
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
170 170
 				'title'          => __( 'GravityView Views using this form as a data source', 'gravityview' ),
@@ -194,8 +194,8 @@  discard block
 block discarded – undo
194 194
 		$add = array( 'captcha', 'page' );
195 195
 
196 196
 		// Don't allowing editing the following values:
197
-		if( $context === 'edit' ) {
198
-			$add[] = 'post_id';
197
+		if ( $context === 'edit' ) {
198
+			$add[ ] = 'post_id';
199 199
 		}
200 200
 
201 201
 		$return = array_merge( $array, $add );
@@ -218,32 +218,32 @@  discard block
 block discarded – undo
218 218
 		foreach ( $default_args as $key => $arg ) {
219 219
 
220 220
 			// If an arg has `tooltip` defined, but it's false, don't display a tooltip
221
-			if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; }
221
+			if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; }
222 222
 
223 223
 			// By default, use `tooltip` if defined.
224
-			$tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip'];
224
+			$tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ];
225 225
 
226 226
 			// Otherwise, use the description as a tooltip.
227
-			if( empty( $tooltip ) && !empty( $arg['desc'] ) ) {
228
-				$tooltip = $arg['desc'];
227
+			if ( empty( $tooltip ) && ! empty( $arg[ 'desc' ] ) ) {
228
+				$tooltip = $arg[ 'desc' ];
229 229
 			}
230 230
 
231 231
 			// If there's no tooltip set, continue
232
-			if( empty( $tooltip ) ) {
232
+			if ( empty( $tooltip ) ) {
233 233
 				continue;
234 234
 			}
235 235
 
236 236
 			// Add the tooltip
237
-			$gv_tooltips[ 'gv_'.$key ] = array(
238
-				'title'	=> $arg['label'],
237
+			$gv_tooltips[ 'gv_' . $key ] = array(
238
+				'title'	=> $arg[ 'label' ],
239 239
 				'value'	=> $tooltip,
240 240
 			);
241 241
 
242 242
 		}
243 243
 
244
-		$gv_tooltips['gv_css_merge_tags'] = array(
245
-			'title' => __('CSS Merge Tags', 'gravityview'),
246
-			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' )
244
+		$gv_tooltips[ 'gv_css_merge_tags' ] = array(
245
+			'title' => __( 'CSS Merge Tags', 'gravityview' ),
246
+			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' )
247 247
 		);
248 248
 
249 249
 		/**
@@ -254,9 +254,9 @@  discard block
 block discarded – undo
254 254
 
255 255
 		foreach ( $gv_tooltips as $key => $tooltip ) {
256 256
 
257
-			$title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>';
257
+			$title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>';
258 258
 
259
-			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) );
259
+			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) );
260 260
 		}
261 261
 
262 262
 		return $tooltips;
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	 *
271 271
 	 * @return void
272 272
 	 */
273
-	public function add_custom_column_content( $column_name = NULL, $post_id )	{
273
+	public function add_custom_column_content( $column_name = NULL, $post_id ) {
274 274
 
275 275
 		$output = '';
276 276
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 				// Generate backup if label doesn't exist: `example_name` => `Example Name`
293 293
 				$template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) );
294 294
 
295
-				$output = $template ? $template['label'] : $template_id_pretty;
295
+				$output = $template ? $template[ 'label' ] : $template_id_pretty;
296 296
 
297 297
 				break;
298 298
 
@@ -333,44 +333,44 @@  discard block
 block discarded – undo
333 333
 	static public function get_connected_form_links( $form, $include_form_link = true ) {
334 334
 
335 335
 		// Either the form is empty or the form ID is 0, not yet set.
336
-		if( empty( $form ) ) {
336
+		if ( empty( $form ) ) {
337 337
 			return '';
338 338
 		}
339 339
 
340 340
 		// The $form is passed as the form ID
341
-		if( !is_array( $form ) ) {
341
+		if ( ! is_array( $form ) ) {
342 342
 			$form = gravityview_get_form( $form );
343 343
 		}
344 344
 
345
-		$form_id = $form['id'];
345
+		$form_id = $form[ 'id' ];
346 346
 		$links = array();
347 347
 
348
-		if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
348
+		if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
349 349
 			$form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;id=%d', $form_id ) );
350
-			$form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>';
351
-			$links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>';
350
+			$form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>';
351
+			$links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>';
352 352
 		} else {
353
-			$form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>';
353
+			$form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>';
354 354
 		}
355 355
 
356
-		if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
356
+		if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
357 357
 			$entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&amp;id=%d', $form_id ) );
358
-			$links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>';
358
+			$links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>';
359 359
 		}
360 360
 
361
-		if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
361
+		if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
362 362
 			$settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;view=settings&amp;id=%d', $form_id ) );
363
-			$links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>';
363
+			$links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>';
364 364
 		}
365 365
 
366
-		if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) {
366
+		if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) {
367 367
 			$preview_url = site_url( sprintf( '?gf_page=preview&amp;id=%d', $form_id ) );
368
-			$links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>';
368
+			$links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>';
369 369
 		}
370 370
 
371 371
 		$output = '';
372 372
 
373
-		if( !empty( $include_form_link ) ) {
373
+		if ( ! empty( $include_form_link ) ) {
374 374
 			$output .= $form_link;
375 375
 		}
376 376
 
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 		 */
383 383
 		$links = apply_filters( 'gravityview_connected_form_links', $links, $form );
384 384
 
385
-		$output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>';
385
+		$output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>';
386 386
 
387 387
 		return $output;
388 388
 	}
@@ -396,8 +396,8 @@  discard block
 block discarded – undo
396 396
 		// Get the date column and save it for later to add back in.
397 397
 		// This adds it after the Data Source column.
398 398
 		// This way, we don't need to do array_slice, array_merge, etc.
399
-		$date = $columns['date'];
400
-		unset( $columns['date'] );
399
+		$date = $columns[ 'date' ];
400
+		unset( $columns[ 'date' ] );
401 401
 
402 402
 		$data_source_required_caps = array(
403 403
 			'gravityforms_edit_forms',
@@ -408,14 +408,14 @@  discard block
 block discarded – undo
408 408
 			'gravityforms_preview_forms',
409 409
 		);
410 410
 
411
-		if( GVCommon::has_cap( $data_source_required_caps ) ) {
412
-			$columns['gv_connected_form'] = __( 'Data Source', 'gravityview' );
411
+		if ( GVCommon::has_cap( $data_source_required_caps ) ) {
412
+			$columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' );
413 413
 		}
414 414
 
415
-		$columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
415
+		$columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
416 416
 
417 417
 		// Add the date back in.
418
-		$columns['date'] = $date;
418
+		$columns[ 'date' ] = $date;
419 419
 
420 420
 		return $columns;
421 421
 	}
@@ -429,12 +429,12 @@  discard block
 block discarded – undo
429 429
 	 */
430 430
 	function save_postdata( $post_id ) {
431 431
 
432
-		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){
432
+		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
433 433
 			return;
434 434
 		}
435 435
 
436 436
 		// validate post_type
437
-		if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) {
437
+		if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) {
438 438
 			return;
439 439
 		}
440 440
 
@@ -449,90 +449,90 @@  discard block
 block discarded – undo
449 449
 		$statii = array();
450 450
 
451 451
 		// check if this is a start fresh View
452
-		if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) {
452
+		if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) {
453 453
 
454
-			$form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : '';
454
+			$form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : '';
455 455
 			// save form id
456
-			$statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
456
+			$statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
457 457
 
458 458
 		}
459 459
 
460
-		if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) {
460
+		if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) {
461 461
 			do_action( 'gravityview_log_error', __METHOD__ . ' - Current user does not have the capability to create a new Form.', wp_get_current_user() );
462 462
 			return;
463 463
 		}
464 464
 
465 465
 		// Was this a start fresh?
466
-		if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) {
467
-			$statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
466
+		if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) {
467
+			$statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
468 468
 		} else {
469
-			$statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
469
+			$statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
470 470
 		}
471 471
 
472 472
 		// Check if we have a template id
473
-		if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) {
473
+		if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) {
474 474
 
475
-			$template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : '';
475
+			$template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : '';
476 476
 
477 477
 			// now save template id
478
-			$statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
478
+			$statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
479 479
 		}
480 480
 
481 481
 
482 482
 		// save View Configuration metabox
483
-		if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) {
483
+		if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) {
484 484
 
485 485
 			// template settings
486
-			if( empty( $_POST['template_settings'] ) ) {
487
-				$_POST['template_settings'] = array();
486
+			if ( empty( $_POST[ 'template_settings' ] ) ) {
487
+				$_POST[ 'template_settings' ] = array();
488 488
 			}
489
-			$statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] );
489
+			$statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] );
490 490
 
491 491
 			$fields = array();
492 492
 
493 493
 			// Directory&single Visible Fields
494
-			if( !empty( $preset_fields ) ) {
494
+			if ( ! empty( $preset_fields ) ) {
495 495
 
496 496
 				$fields = $preset_fields;
497 497
 
498
-			} elseif( !empty( $_POST['fields'] ) ) {
498
+			} elseif ( ! empty( $_POST[ 'fields' ] ) ) {
499 499
 
500
-				if( !is_array( $_POST['fields'] ) ) {
500
+				if ( ! is_array( $_POST[ 'fields' ] ) ) {
501 501
 
502 502
 					// Fields are passed as a jQuery-serialized array, created in admin-views.js in the serializeForm method
503 503
 					// Not using parse_str due to max_input_vars limitation
504 504
 					$fields_holder = array();
505
-					GVCommon::gv_parse_str( $_POST['fields'], $fields_holder );
505
+					GVCommon::gv_parse_str( $_POST[ 'fields' ], $fields_holder );
506 506
 
507
-					if( isset( $fields_holder['fields'] ) ) {
507
+					if ( isset( $fields_holder[ 'fields' ] ) ) {
508 508
 
509 509
 						// When parsed, there's a m
510
-						$fields = $fields_holder['fields'];
510
+						$fields = $fields_holder[ 'fields' ];
511 511
 
512 512
 					} else {
513 513
 
514
-						do_action('gravityview_log_error', '[save_postdata] No `fields` key was found after parsing $fields string', $fields_holder );
514
+						do_action( 'gravityview_log_error', '[save_postdata] No `fields` key was found after parsing $fields string', $fields_holder );
515 515
 
516 516
 					}
517 517
 
518 518
 				} else {
519 519
 
520
-					$fields = $_POST['fields'];
520
+					$fields = $_POST[ 'fields' ];
521 521
 
522 522
 				}
523 523
 			}
524 524
 
525
-			$statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
525
+			$statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
526 526
 
527 527
 			// Directory Visible Widgets
528
-			if( empty( $_POST['widgets'] ) ) {
529
-				$_POST['widgets'] = array();
528
+			if ( empty( $_POST[ 'widgets' ] ) ) {
529
+				$_POST[ 'widgets' ] = array();
530 530
 			}
531
-			$statii['directory_widgets'] = update_post_meta( $post_id, '_gravityview_directory_widgets', $_POST['widgets'] );
531
+			$statii[ 'directory_widgets' ] = update_post_meta( $post_id, '_gravityview_directory_widgets', $_POST[ 'widgets' ] );
532 532
 
533 533
 		} // end save view configuration
534 534
 
535
-		do_action('gravityview_log_debug', '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array_map( 'intval', $statii ) );
535
+		do_action( 'gravityview_log_debug', '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array_map( 'intval', $statii ) );
536 536
 	}
537 537
 
538 538
 	/**
@@ -564,20 +564,20 @@  discard block
 block discarded – undo
564 564
 
565 565
 		$output = '';
566 566
 
567
-		if( !empty( $fields ) ) {
567
+		if ( ! empty( $fields ) ) {
568 568
 
569
-			foreach( $fields as $id => $details ) {
569
+			foreach ( $fields as $id => $details ) {
570 570
 
571
-				if( in_array( $details['type'], $blacklist_field_types ) ) {
571
+				if ( in_array( $details[ 'type' ], $blacklist_field_types ) ) {
572 572
 					continue;
573 573
 				}
574 574
 
575 575
 				// Edit mode only allows editing the parent fields, not single inputs.
576
-				if( $context === 'edit' && !empty( $details['parent'] ) ) {
576
+				if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) {
577 577
 					continue;
578 578
 				}
579 579
 
580
-				$output .= new GravityView_Admin_View_Field( $details['label'], $id, $details );
580
+				$output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details );
581 581
 
582 582
 			} // End foreach
583 583
 		}
@@ -585,7 +585,7 @@  discard block
 block discarded – undo
585 585
 		echo $output;
586 586
 
587 587
 		// For the EDIT view we only want to allow the form fields.
588
-		if( $context === 'edit' ) {
588
+		if ( $context === 'edit' ) {
589 589
 			return;
590 590
 		}
591 591
 
@@ -609,16 +609,16 @@  discard block
 block discarded – undo
609 609
 		$additional_fields = apply_filters( 'gravityview_additional_fields', array(
610 610
 			array(
611 611
 				'label_text' => __( '+ Add All Fields', 'gravityview' ),
612
-				'desc' => __('Add all the available fields at once.', 'gravityview'),
612
+				'desc' => __( 'Add all the available fields at once.', 'gravityview' ),
613 613
 				'field_id' => 'all-fields',
614 614
 				'label_type' => 'field',
615 615
 				'input_type' => NULL,
616 616
 				'field_options' => NULL,
617 617
 				'settings_html'	=> NULL,
618 618
 			)
619
-		));
619
+		) );
620 620
 
621
-		if( !empty( $additional_fields )) {
621
+		if ( ! empty( $additional_fields ) ) {
622 622
 			foreach ( (array)$additional_fields as $item ) {
623 623
 
624 624
 				// Prevent items from not having index set
@@ -629,16 +629,16 @@  discard block
 block discarded – undo
629 629
 					'input_type' => NULL,
630 630
 					'field_options' => NULL,
631 631
 					'settings_html'	=> NULL,
632
-				));
632
+				) );
633 633
 
634 634
 				// Backward compat.
635
-				if( !empty( $item['field_options'] ) ) {
635
+				if ( ! empty( $item[ 'field_options' ] ) ) {
636 636
 					// Use settings_html from now on.
637
-					$item['settings_html'] = $item['field_options'];
637
+					$item[ 'settings_html' ] = $item[ 'field_options' ];
638 638
 				}
639 639
 
640 640
 				// Render a label for each of them
641
-				echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item );
641
+				echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item );
642 642
 
643 643
 			}
644 644
 		}
@@ -651,64 +651,64 @@  discard block
 block discarded – undo
651 651
 	 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
652 652
 	 * @return array
653 653
 	 */
654
-	function get_entry_default_fields($form, $zone) {
654
+	function get_entry_default_fields( $form, $zone ) {
655 655
 
656 656
 		$entry_default_fields = array();
657 657
 
658
-		if( in_array( $zone, array( 'directory', 'single' ) ) ) {
658
+		if ( in_array( $zone, array( 'directory', 'single' ) ) ) {
659 659
 
660 660
 			$entry_default_fields = array(
661 661
 				'id' => array(
662
-					'label' => __('Entry ID', 'gravityview'),
662
+					'label' => __( 'Entry ID', 'gravityview' ),
663 663
 					'type' => 'id',
664
-					'desc'	=> __('The unique ID of the entry.', 'gravityview'),
664
+					'desc'	=> __( 'The unique ID of the entry.', 'gravityview' ),
665 665
 				),
666 666
 				'date_created' => array(
667
-					'label' => __('Entry Date', 'gravityview'),
668
-					'desc'	=> __('The date the entry was created.', 'gravityview'),
667
+					'label' => __( 'Entry Date', 'gravityview' ),
668
+					'desc'	=> __( 'The date the entry was created.', 'gravityview' ),
669 669
 					'type' => 'date_created',
670 670
 				),
671 671
 				'source_url' => array(
672
-					'label' => __('Source URL', 'gravityview'),
672
+					'label' => __( 'Source URL', 'gravityview' ),
673 673
 					'type' => 'source_url',
674
-					'desc'	=> __('The URL of the page where the form was submitted.', 'gravityview'),
674
+					'desc'	=> __( 'The URL of the page where the form was submitted.', 'gravityview' ),
675 675
 				),
676 676
 				'ip' => array(
677
-					'label' => __('User IP', 'gravityview'),
677
+					'label' => __( 'User IP', 'gravityview' ),
678 678
 					'type' => 'ip',
679
-					'desc'	=> __('The IP Address of the user who created the entry.', 'gravityview'),
679
+					'desc'	=> __( 'The IP Address of the user who created the entry.', 'gravityview' ),
680 680
 				),
681 681
 				'created_by' => array(
682
-					'label' => __('User', 'gravityview'),
682
+					'label' => __( 'User', 'gravityview' ),
683 683
 					'type' => 'created_by',
684
-					'desc'	=> __('Details of the logged-in user who created the entry (if any).', 'gravityview'),
684
+					'desc'	=> __( 'Details of the logged-in user who created the entry (if any).', 'gravityview' ),
685 685
 				),
686 686
 
687 687
 				/**
688 688
 				 * @since  1.2
689 689
 				 */
690 690
 				'custom'	=> array(
691
-					'label'	=> __('Custom Content', 'gravityview'),
691
+					'label'	=> __( 'Custom Content', 'gravityview' ),
692 692
 					'type'	=> 'custom',
693
-					'desc'	=> __('Insert custom text or HTML.', 'gravityview'),
693
+					'desc'	=> __( 'Insert custom text or HTML.', 'gravityview' ),
694 694
 				),
695 695
 
696 696
 				/**
697 697
 				 * @since 1.7.2
698 698
 				 */
699 699
 				'other_entries' => array(
700
-					'label'	=> __('Other Entries', 'gravityview'),
700
+					'label'	=> __( 'Other Entries', 'gravityview' ),
701 701
 					'type'	=> 'other_entries',
702
-					'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
702
+					'desc'	=> __( 'Display other entries created by the entry creator.', 'gravityview' ),
703 703
 				),
704 704
 			);
705 705
 
706 706
 
707
-			if( 'single' !== $zone) {
707
+			if ( 'single' !== $zone ) {
708 708
 
709
-				$entry_default_fields['entry_link'] = array(
710
-					'label' => __('Link to Entry', 'gravityview'),
711
-					'desc'	=> __('A dedicated link to the single entry with customizable text.', 'gravityview'),
709
+				$entry_default_fields[ 'entry_link' ] = array(
710
+					'label' => __( 'Link to Entry', 'gravityview' ),
711
+					'desc'	=> __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ),
712 712
 					'type' => 'entry_link',
713 713
 				);
714 714
 			}
@@ -722,7 +722,7 @@  discard block
 block discarded – undo
722 722
 		 * @param  string|array $form form_ID or form object
723 723
 		 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
724 724
 		 */
725
-		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone);
725
+		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone );
726 726
 	}
727 727
 
728 728
 	/**
@@ -733,7 +733,7 @@  discard block
 block discarded – undo
733 733
 	 */
734 734
 	function get_available_fields( $form = '', $zone = NULL ) {
735 735
 
736
-		if( empty( $form ) ) {
736
+		if ( empty( $form ) ) {
737 737
 			do_action( 'gravityview_log_error', '[get_available_fields] $form is empty' );
738 738
 			return array();
739 739
 		}
@@ -742,7 +742,7 @@  discard block
 block discarded – undo
742 742
 		$fields = gravityview_get_form_fields( $form, true );
743 743
 
744 744
 		// get meta fields ( only if form was already created )
745
-		if( !is_array( $form ) ) {
745
+		if ( ! is_array( $form ) ) {
746 746
 			$meta_fields = gravityview_get_entry_meta( $form );
747 747
 		} else {
748 748
 			$meta_fields = array();
@@ -766,11 +766,11 @@  discard block
 block discarded – undo
766 766
 
767 767
 		$widgets = $this->get_registered_widgets();
768 768
 
769
-		if( !empty( $widgets ) ) {
769
+		if ( ! empty( $widgets ) ) {
770 770
 
771
-			foreach( $widgets as $id => $details ) {
771
+			foreach ( $widgets as $id => $details ) {
772 772
 
773
-				echo new GravityView_Admin_View_Widget( $details['label'], $id, $details );
773
+				echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details );
774 774
 
775 775
 			}
776 776
 		}
@@ -804,7 +804,7 @@  discard block
 block discarded – undo
804 804
 	function render_active_areas( $template_id, $type, $zone, $rows, $values ) {
805 805
 		global $post;
806 806
 
807
-		if( $type === 'widget' ) {
807
+		if ( $type === 'widget' ) {
808 808
 			$button_label = __( 'Add Widget', 'gravityview' );
809 809
 		} else {
810 810
 			$button_label = __( 'Add Field', 'gravityview' );
@@ -813,15 +813,15 @@  discard block
 block discarded – undo
813 813
 		$available_items = array();
814 814
 
815 815
 		// if saved values, get available fields to label everyone
816
-		if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) {
816
+		if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) {
817 817
 
818
-			if( !empty( $_POST['template_id'] ) ) {
819
-				$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
818
+			if ( ! empty( $_POST[ 'template_id' ] ) ) {
819
+				$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
820 820
 			} else {
821 821
 				$form = gravityview_get_form_id( $post->ID );
822 822
 			}
823 823
 
824
-			if( 'field' === $type ) {
824
+			if ( 'field' === $type ) {
825 825
 				$available_items = $this->get_available_fields( $form, $zone );
826 826
 			} else {
827 827
 				$available_items = $this->get_registered_widgets();
@@ -829,39 +829,39 @@  discard block
 block discarded – undo
829 829
 
830 830
 		}
831 831
 
832
-		foreach( $rows as $row ) :
833
-			foreach( $row as $col => $areas ) :
834
-				$column = ($col == '2-2') ? '1-2' : $col; ?>
832
+		foreach ( $rows as $row ) :
833
+			foreach ( $row as $col => $areas ) :
834
+				$column = ( $col == '2-2' ) ? '1-2' : $col; ?>
835 835
 
836 836
 				<div class="gv-grid-col-<?php echo esc_attr( $column ); ?>">
837 837
 
838
-					<?php foreach( $areas as $area ) : 	?>
838
+					<?php foreach ( $areas as $area ) : 	?>
839 839
 
840 840
 						<div class="gv-droppable-area">
841
-							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>">
841
+							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>">
842 842
 
843 843
 								<?php // render saved fields
844 844
 
845
-								if( !empty( $values[ $zone .'_'. $area['areaid'] ] ) ) {
845
+								if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) {
846 846
 
847
-									foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) {
847
+									foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) {
848 848
 
849 849
 										$input_type = NULL;
850
-										$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
850
+										$original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false;
851 851
 
852
-										if( !$original_item ) {
852
+										if ( ! $original_item ) {
853 853
 
854
-											do_action('gravityview_log_error', 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array('available_items' => $available_items, 'field' => $field ));
854
+											do_action( 'gravityview_log_error', 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array( 'available_items' => $available_items, 'field' => $field ) );
855 855
 
856 856
 											$original_item = $field;
857 857
 										} else {
858 858
 
859
-											$input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL;
859
+											$input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL;
860 860
 
861 861
 										}
862 862
 
863 863
 										// Field options dialog box
864
-										$field_options = GravityView_Render_Settings::render_field_options( $type, $template_id, $field['id'], $original_item['label'], $zone .'_'. $area['areaid'], $input_type, $uniqid, $field, $zone, $original_item );
864
+										$field_options = GravityView_Render_Settings::render_field_options( $type, $template_id, $field[ 'id' ], $original_item[ 'label' ], $zone . '_' . $area[ 'areaid' ], $input_type, $uniqid, $field, $zone, $original_item );
865 865
 
866 866
 										$item = array(
867 867
 											'input_type' => $input_type,
@@ -870,16 +870,16 @@  discard block
 block discarded – undo
870 870
 										);
871 871
 
872 872
 										// Merge the values with the current item to pass things like widget descriptions and original field names
873
-										if( $original_item ) {
873
+										if ( $original_item ) {
874 874
 											$item = wp_parse_args( $item, $original_item );
875 875
 										}
876 876
 
877
-										switch( $type ) {
877
+										switch ( $type ) {
878 878
 											case 'widget':
879
-												echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field );
879
+												echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field );
880 880
 												break;
881 881
 											default:
882
-												echo new GravityView_Admin_View_Field( $item['label'], $field['id'], $item, $field );
882
+												echo new GravityView_Admin_View_Field( $item[ 'label' ], $field[ 'id' ], $item, $field );
883 883
 										}
884 884
 
885 885
 
@@ -889,11 +889,11 @@  discard block
 block discarded – undo
889 889
 
890 890
 								} // End if zone is not empty ?>
891 891
 
892
-								<span class="drop-message"><?php echo sprintf(esc_attr__('"+ %s" or drag existing %ss here.', 'gravityview'), $button_label, $type ); ?></span>
892
+								<span class="drop-message"><?php echo sprintf( esc_attr__( '"+ %s" or drag existing %ss here.', 'gravityview' ), $button_label, $type ); ?></span>
893 893
 							</div>
894 894
 							<div class="gv-droppable-area-action">
895
-								<a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"><?php echo '+ '.esc_html( $button_label ); ?></a>
896
-								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area['title'] ); ?></strong><?php if( !empty( $area['subtitle'] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area['subtitle'] ); ?></span><?php } ?></p>
895
+								<a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"><?php echo '+ ' . esc_html( $button_label ); ?></a>
896
+								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area[ 'title' ] ); ?></strong><?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area[ 'subtitle' ] ); ?></span><?php } ?></p>
897 897
 							</div>
898 898
 						</div>
899 899
 
@@ -915,7 +915,7 @@  discard block
 block discarded – undo
915 915
 		$default_widget_areas = GravityView_Plugin::get_default_widget_areas();
916 916
 
917 917
 		$widgets = array();
918
-		if( !empty( $post_id ) ) {
918
+		if ( ! empty( $post_id ) ) {
919 919
 			$widgets = get_post_meta( $post_id, '_gravityview_directory_widgets', true );
920 920
 
921 921
 		}
@@ -946,19 +946,19 @@  discard block
 block discarded – undo
946 946
 	 */
947 947
 	function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) {
948 948
 
949
-		if( empty( $template_id ) ) {
949
+		if ( empty( $template_id ) ) {
950 950
 			do_action( 'gravityview_log_debug', '[render_directory_active_areas] $template_id is empty' );
951 951
 			return;
952 952
 		}
953 953
 
954 954
 		$template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context );
955 955
 
956
-		if( empty( $template_areas ) ) {
956
+		if ( empty( $template_areas ) ) {
957 957
 
958 958
 			do_action( 'gravityview_log_debug', '[render_directory_active_areas] No areas defined. Maybe template %s is disabled.', $template_id );
959 959
 			$output = '<div>';
960
-			$output .= '<h2 class="description" style="font-size: 16px; margin:0">'. sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>'.$template_id.'</em>' ) .'</h2>';
961
-			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">'.esc_html__('The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview').'</p>';
960
+			$output .= '<h2 class="description" style="font-size: 16px; margin:0">' . sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>' . $template_id . '</em>' ) . '</h2>';
961
+			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">' . esc_html__( 'The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview' ) . '</p>';
962 962
 			$output .= '</div>';
963 963
 		} else {
964 964
 
@@ -973,7 +973,7 @@  discard block
 block discarded – undo
973 973
 
974 974
 		}
975 975
 
976
-		if( $echo ) {
976
+		if ( $echo ) {
977 977
 			echo $output;
978 978
 		}
979 979
 
@@ -993,25 +993,25 @@  discard block
 block discarded – undo
993 993
 		$is_widgets_page = ( $pagenow === 'widgets.php' );
994 994
 
995 995
 		// Add the GV font (with the Astronaut)
996
-		wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version );
996
+		wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version );
997 997
 
998
-		wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version, true );
998
+		wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version, true );
999 999
 
1000 1000
 		// Don't process any scripts below here if it's not a GravityView page.
1001
-		if( !gravityview_is_admin_page($hook) && !$is_widgets_page ) { return; }
1001
+		if ( ! gravityview_is_admin_page( $hook ) && ! $is_widgets_page ) { return; }
1002 1002
 
1003 1003
 		// Only enqueue the following on single pages
1004
-		if( gravityview_is_admin_page($hook, 'single') || $is_widgets_page ) {
1004
+		if ( gravityview_is_admin_page( $hook, 'single' ) || $is_widgets_page ) {
1005 1005
 
1006 1006
 			wp_enqueue_script( 'jquery-ui-datepicker' );
1007
-			wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), GravityView_Plugin::version );
1007
+			wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), GravityView_Plugin::version );
1008 1008
 
1009
-			$script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
1009
+			$script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
1010 1010
 
1011 1011
 			//enqueue scripts
1012 1012
 			wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), GravityView_Plugin::version );
1013 1013
 
1014
-			wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1014
+			wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array(
1015 1015
 				'cookiepath' => COOKIEPATH,
1016 1016
 				'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1017 1017
 				'label_viewname' => __( 'Enter View name here', 'gravityview' ),
@@ -1024,9 +1024,9 @@  discard block
 block discarded – undo
1024 1024
 				'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1025 1025
 				'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1026 1026
 				'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1027
-			));
1027
+			) );
1028 1028
 
1029
-			wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array('dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version );
1029
+			wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), GravityView_Plugin::version );
1030 1030
 
1031 1031
 			self::enqueue_gravity_forms_scripts();
1032 1032
 
@@ -1045,10 +1045,10 @@  discard block
 block discarded – undo
1045 1045
 		);
1046 1046
 
1047 1047
 		if ( wp_is_mobile() ) {
1048
-				    $scripts[] = 'jquery-touch-punch';
1048
+				    $scripts[ ] = 'jquery-touch-punch';
1049 1049
 		}
1050 1050
 
1051
-		foreach ($scripts as $script) {
1051
+		foreach ( $scripts as $script ) {
1052 1052
 			wp_enqueue_script( $script );
1053 1053
 		}
1054 1054
 	}
@@ -1057,11 +1057,11 @@  discard block
 block discarded – undo
1057 1057
 
1058 1058
 		$filter = current_filter();
1059 1059
 
1060
-		if( preg_match('/script/ism', $filter ) ) {
1060
+		if ( preg_match( '/script/ism', $filter ) ) {
1061 1061
 			$allow_scripts = array( 'jquery-ui-core', 'jquery-ui-dialog', 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'gravityview_views_scripts', 'gravityview-support', 'gravityview-jquery-cookie', 'gravityview_views_datepicker',
1062 1062
 			'sack', 'gform_gravityforms', 'gform_forms', 'gform_form_admin', 'jquery-ui-autocomplete' );
1063 1063
 			$registered = array_merge( $registered, $allow_scripts );
1064
-		} elseif( preg_match('/style/ism', $filter ) ) {
1064
+		} elseif ( preg_match( '/style/ism', $filter ) ) {
1065 1065
 			$allow_styles = array( 'dashicons', 'wp-jquery-ui-dialog', 'gravityview_views_styles', 'gravityview_global', 'gravityview_views_datepicker' );
1066 1066
 			$registered = array_merge( $registered, $allow_styles );
1067 1067
 		}
Please login to merge, or discard this patch.
includes/class-admin-approve-entries.php 1 patch
Spacing   +72 added lines, -72 removed lines patch added patch discarded remove patch
@@ -34,19 +34,19 @@  discard block
 block discarded – undo
34 34
 		/** gf_entries page - entries table screen */
35 35
 
36 36
 		// capture bulk actions
37
-		add_action( 'init', array( $this, 'process_bulk_action') );
37
+		add_action( 'init', array( $this, 'process_bulk_action' ) );
38 38
 		// add hidden field with approve status
39 39
 		add_action( 'gform_entries_first_column', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 );
40 40
 		// process ajax approve entry requests
41
-		add_action('wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved'));
41
+		add_action( 'wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved' ) );
42 42
 
43 43
 		// in case entry is edited (on admin or frontend)
44
-		add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2);
44
+		add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2 );
45 45
 
46 46
 		add_filter( 'gravityview_tooltips', array( $this, 'tooltips' ) );
47 47
 
48 48
 		// adding styles and scripts
49
-		add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') );
49
+		add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) );
50 50
 		// bypass Gravity Forms no-conflict mode
51 51
 		add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) );
52 52
 		add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) );
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 	 */
62 62
 	function tooltips( $tooltips ) {
63 63
 
64
-		$tooltips['form_gravityview_fields'] = array(
65
-			'title' => __('GravityView Fields', 'gravityview'),
66
-			'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'),
64
+		$tooltips[ 'form_gravityview_fields' ] = array(
65
+			'title' => __( 'GravityView Fields', 'gravityview' ),
66
+			'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ),
67 67
 		);
68 68
 
69 69
 		return $tooltips;
@@ -178,12 +178,12 @@  discard block
 block discarded – undo
178 178
 		}
179 179
 
180 180
 		// gforms_update_note is sent when bulk editing entry notes. We don't want to process then.
181
-		if ( 'bulk' === RGForms::post( 'action' ) && empty( $_POST['gforms_update_note'] ) ) {
181
+		if ( 'bulk' === RGForms::post( 'action' ) && empty( $_POST[ 'gforms_update_note' ] ) ) {
182 182
 
183 183
 			check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' );
184 184
 
185 185
 			// The action is formatted like: approve-16 or disapprove-16, where the first word is the name of the action and the second is the ID of the form. Bulk action 2 is the bottom bulk action select form.
186
-			$bulk_action = ! empty( $_POST['bulk_action'] ) ? $_POST['bulk_action'] : $_POST['bulk_action2'];
186
+			$bulk_action = ! empty( $_POST[ 'bulk_action' ] ) ? $_POST[ 'bulk_action' ] : $_POST[ 'bulk_action2' ];
187 187
 
188 188
 			/**
189 189
 			 * The extra '-' is to make sure that there are at *least* two items in array.
@@ -199,13 +199,13 @@  discard block
 block discarded – undo
199 199
 			}
200 200
 
201 201
 			// All entries are set to be updated, not just the visible ones
202
-			if ( ! empty( $_POST['all_entries'] ) ) {
202
+			if ( ! empty( $_POST[ 'all_entries' ] ) ) {
203 203
 
204 204
 				// Convert the current entry search into GF-formatted search criteria
205 205
 				$search = array(
206
-					'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0,
207
-					'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '',
208
-					'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains',
206
+					'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0,
207
+					'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '',
208
+					'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains',
209 209
 				);
210 210
 
211 211
 				$search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id );
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 
216 216
 			} else {
217 217
 
218
-				$entries = $_POST['lead'];
218
+				$entries = $_POST[ 'lead' ];
219 219
 
220 220
 			}
221 221
 
@@ -256,12 +256,12 @@  discard block
 block discarded – undo
256 256
 	 */
257 257
 	private static function update_bulk( $entries, $approved, $form_id ) {
258 258
 
259
-		if( empty($entries) || ( $entries !== true && !is_array($entries) ) ) {
259
+		if ( empty( $entries ) || ( $entries !== true && ! is_array( $entries ) ) ) {
260 260
 			do_action( 'gravityview_log_error', __METHOD__ . ' Entries were empty or malformed.', $entries );
261 261
 			return false;
262 262
 		}
263 263
 
264
-		if( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) {
264
+		if ( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) {
265 265
 			do_action( 'gravityview_log_error', __METHOD__ . ' User does not have the `gravityview_moderate_entries` capability.' );
266 266
 			return false;
267 267
 		}
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
 		// calculate approved field id
272 272
 		$approved_column_id = self::get_approved_column( $form_id );
273 273
 
274
-		foreach( $entries as $entry_id ) {
274
+		foreach ( $entries as $entry_id ) {
275 275
 			self::update_approved( (int)$entry_id, $approved, $form_id, $approved_column_id );
276 276
 		}
277 277
 	}
@@ -290,14 +290,14 @@  discard block
 block discarded – undo
290 290
 	 * @param int $approvedcolumn (default: 0)
291 291
 	 * @return boolean True: It worked; False: it failed
292 292
 	 */
293
-	public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) {
293
+	public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) {
294 294
 
295
-		if( !class_exists( 'GFAPI' ) ) {
295
+		if ( ! class_exists( 'GFAPI' ) ) {
296 296
 			do_action( 'gravityview_log_error', __METHOD__ . 'GFAPI does not exist' );
297 297
 			return false;
298 298
 		}
299 299
 
300
-		if( empty( $approvedcolumn ) ) {
300
+		if ( empty( $approvedcolumn ) ) {
301 301
 			$approvedcolumn = self::get_approved_column( $form_id );
302 302
 		}
303 303
 
@@ -316,10 +316,10 @@  discard block
 block discarded – undo
316 316
 		self::update_approved_meta( $entry_id, $approved );
317 317
 
318 318
 		// add note to entry
319
-		if( $result === true ) {
319
+		if ( $result === true ) {
320 320
 			$note = empty( $approved ) ? __( 'Disapproved the Entry for GravityView', 'gravityview' ) : __( 'Approved the Entry for GravityView', 'gravityview' );
321 321
 
322
-			if( class_exists( 'GravityView_Entry_Notes' ) ){
322
+			if ( class_exists( 'GravityView_Entry_Notes' ) ) {
323 323
 				global $current_user;
324 324
       			get_currentuserinfo();
325 325
 				GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $current_user->display_name, $note );
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
 			 */
333 333
 			do_action( 'gravityview_clear_form_cache', $form_id );
334 334
 
335
-		} else if( is_wp_error( $result ) ) {
335
+		} else if ( is_wp_error( $result ) ) {
336 336
 
337 337
 			do_action( 'gravityview_log_error', __METHOD__ . sprintf( ' - Entry approval not updated: %s', $result->get_error_message() ) );
338 338
 
@@ -354,12 +354,12 @@  discard block
 block discarded – undo
354 354
 	 */
355 355
 	public static function after_update_entry_update_approved_meta( $form, $entry_id = NULL ) {
356 356
 
357
-		$approvedcolumn = self::get_approved_column( $form['id'] );
357
+		$approvedcolumn = self::get_approved_column( $form[ 'id' ] );
358 358
 
359 359
         /**
360 360
          * If the form doesn't contain the approve field, don't assume anything.
361 361
          */
362
-        if( empty( $approvedcolumn ) ) {
362
+        if ( empty( $approvedcolumn ) ) {
363 363
             return;
364 364
         }
365 365
 
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
 	private static function update_approved_meta( $entry_id, $is_approved ) {
382 382
 
383 383
 		// update entry meta
384
-		if( function_exists('gform_update_meta') ) {
384
+		if ( function_exists( 'gform_update_meta' ) ) {
385 385
 
386 386
 			gform_update_meta( $entry_id, 'is_approved', $is_approved );
387 387
 
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
 			 */
394 394
 			do_action( 'gravityview/approve_entries/updated', $entry_id, $is_approved );
395 395
 
396
-			if( empty( $is_approved ) ) {
396
+			if ( empty( $is_approved ) ) {
397 397
 
398 398
 				/**
399 399
 				 * @action `gravityview/approve_entries/disapproved` Triggered when an entry is rejected
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
 
416 416
 		} else {
417 417
 
418
-			do_action('gravityview_log_error', __METHOD__ . ' - `gform_update_meta` does not exist.' );
418
+			do_action( 'gravityview_log_error', __METHOD__ . ' - `gform_update_meta` does not exist.' );
419 419
 
420 420
 		}
421 421
 	}
@@ -427,21 +427,21 @@  discard block
 block discarded – undo
427 427
 	 */
428 428
 	public function ajax_update_approved() {
429 429
 
430
-		if( empty( $_POST['entry_id'] ) || empty( $_POST['form_id'] ) ) {
430
+		if ( empty( $_POST[ 'entry_id' ] ) || empty( $_POST[ 'form_id' ] ) ) {
431 431
 
432 432
 			do_action( 'gravityview_log_error', __METHOD__ . ' entry_id or form_id are empty.', $_POST );
433 433
 
434 434
 			$result = false;
435 435
 		}
436 436
 
437
-		else if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxgfentries' ) ) {
437
+		else if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxgfentries' ) ) {
438 438
 
439 439
 			do_action( 'gravityview_log_error', __METHOD__ . ' Security check failed.', $_POST );
440 440
 
441 441
 			$result = false;
442 442
 		}
443 443
 
444
-		else if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $_POST['entry_id'] ) ) {
444
+		else if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $_POST[ 'entry_id' ] ) ) {
445 445
 
446 446
 			do_action( 'gravityview_log_error', __METHOD__ . ' User does not have the `gravityview_moderate_entries` capability.' );
447 447
 
@@ -450,11 +450,11 @@  discard block
 block discarded – undo
450 450
 
451 451
 		else {
452 452
 
453
-			$result = self::update_approved( $_POST['entry_id'], $_POST['approved'], $_POST['form_id'] );
453
+			$result = self::update_approved( $_POST[ 'entry_id' ], $_POST[ 'approved' ], $_POST[ 'form_id' ] );
454 454
 
455
-			if( is_wp_error( $result ) ) {
455
+			if ( is_wp_error( $result ) ) {
456 456
 				/** @var WP_Error $result */
457
-				do_action( 'gravityview_log_error', __METHOD__ .' Error updating approval: ' . $result->get_error_message() );
457
+				do_action( 'gravityview_log_error', __METHOD__ . ' Error updating approval: ' . $result->get_error_message() );
458 458
 				$result = false;
459 459
 			}
460 460
 
@@ -474,29 +474,29 @@  discard block
 block discarded – undo
474 474
 	 */
475 475
 	static public function get_approved_column( $form ) {
476 476
 
477
-        if( empty( $form ) ) {
477
+        if ( empty( $form ) ) {
478 478
             return null;
479 479
         }
480 480
 
481
-        if( !is_array( $form ) ) {
481
+        if ( ! is_array( $form ) ) {
482 482
             $form = GVCommon::get_form( $form );
483 483
         }
484 484
 
485
-		foreach( $form['fields'] as $key => $field ) {
485
+		foreach ( $form[ 'fields' ] as $key => $field ) {
486 486
 
487
-            $field = (array) $field;
487
+            $field = (array)$field;
488 488
 
489
-			if( !empty( $field['gravityview_approved'] ) ) {
490
-				if( !empty($field['inputs'][0]['id']) ) {
491
-					return $field['inputs'][0]['id'];
489
+			if ( ! empty( $field[ 'gravityview_approved' ] ) ) {
490
+				if ( ! empty( $field[ 'inputs' ][ 0 ][ 'id' ] ) ) {
491
+					return $field[ 'inputs' ][ 0 ][ 'id' ];
492 492
 				}
493 493
 			}
494 494
 
495 495
             // Note: This is just for backward compatibility from GF Directory plugin and old GV versions - when using i18n it may not work..
496
-            if( 'checkbox' == $field['type'] && isset( $field['inputs'] ) && is_array( $field['inputs'] ) ) {
497
-                foreach ( $field['inputs'] as $key2 => $input ) {
498
-                    if ( strtolower( $input['label'] ) == 'approved' ) {
499
-                        return $input['id'];
496
+            if ( 'checkbox' == $field[ 'type' ] && isset( $field[ 'inputs' ] ) && is_array( $field[ 'inputs' ] ) ) {
497
+                foreach ( $field[ 'inputs' ] as $key2 => $input ) {
498
+                    if ( strtolower( $input[ 'label' ] ) == 'approved' ) {
499
+                        return $input[ 'id' ];
500 500
                     }
501 501
                 }
502 502
             }
@@ -507,18 +507,18 @@  discard block
 block discarded – undo
507 507
 
508 508
 
509 509
 
510
-	static public function add_entry_approved_hidden_input(  $form_id, $field_id, $value, $entry, $query_string ) {
510
+	static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) {
511 511
 
512
-		if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) {
512
+		if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) {
513 513
 			return;
514 514
 		}
515 515
 
516
-		if( empty( $entry['id'] ) ) {
516
+		if ( empty( $entry[ 'id' ] ) ) {
517 517
 			return;
518 518
 		}
519 519
 
520
-		if( gform_get_meta( $entry['id'], 'is_approved' ) ) {
521
-			echo '<input type="hidden" class="entry_approved" id="entry_approved_'. $entry['id'] .'" value="true" />';
520
+		if ( gform_get_meta( $entry[ 'id' ], 'is_approved' ) ) {
521
+			echo '<input type="hidden" class="entry_approved" id="entry_approved_' . $entry[ 'id' ] . '" value="true" />';
522 522
 		}
523 523
 	}
524 524
 
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
 
528 528
 	function add_scripts_and_styles( $hook ) {
529 529
 
530
-		if( !class_exists( 'RGForms' ) ) {
530
+		if ( ! class_exists( 'RGForms' ) ) {
531 531
 
532 532
 			do_action( 'gravityview_log_error', 'GravityView_Admin_ApproveEntries[add_scripts_and_styles] RGForms does not exist.' );
533 533
 
@@ -536,39 +536,39 @@  discard block
 block discarded – undo
536 536
 
537 537
 		// enqueue styles & scripts gf_entries
538 538
 		// But only if we're on the main Entries page, not on reports pages
539
-		if( RGForms::get_page() === 'entry_list' ) {
539
+		if ( RGForms::get_page() === 'entry_list' ) {
540 540
 
541
-			$form_id = RGForms::get('id');
541
+			$form_id = RGForms::get( 'id' );
542 542
 
543 543
 			// If there are no forms identified, use the first form. That's how GF does it.
544
-			if( empty( $form_id ) && class_exists('RGFormsModel') ) {
544
+			if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) {
545 545
 				$forms = gravityview_get_forms();
546
-				if( !empty( $forms ) ) {
547
-					$form_id = $forms[0]['id'];
546
+				if ( ! empty( $forms ) ) {
547
+					$form_id = $forms[ 0 ][ 'id' ];
548 548
 				}
549 549
 			}
550 550
 
551 551
 			$approvedcolumn = self::get_approved_column( $form_id );
552 552
 
553
-			wp_register_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version );
553
+			wp_register_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version );
554 554
 			wp_enqueue_style( 'gravityview_entries_list' );
555 555
 
556
-			$script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
556
+			$script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
557 557
 
558
-			wp_register_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version );
558
+			wp_register_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version );
559 559
 			wp_enqueue_script( 'gravityview_gf_entries_scripts' );
560 560
 
561 561
 			wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array(
562
-				'nonce' => wp_create_nonce( 'gravityview_ajaxgfentries'),
562
+				'nonce' => wp_create_nonce( 'gravityview_ajaxgfentries' ),
563 563
 				'form_id' => $form_id,
564 564
 				'show_column' => (int)$this->show_approve_entry_column( $form_id ),
565 565
 				'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ),
566 566
 				'bulk_actions' => $this->get_bulk_actions( $form_id ),
567 567
 				'bulk_message' => $this->bulk_update_message,
568
-				'approve_title' => __( 'Entry not approved for directory viewing. Click to approve this entry.', 'gravityview'),
569
-				'unapprove_title' => __( 'Entry approved for directory viewing. Click to disapprove this entry.', 'gravityview'),
570
-				'column_title' => __( 'Show entry in directory view?', 'gravityview'),
571
-				'column_link' => esc_url( add_query_arg( array('sort' => $approvedcolumn) ) ),
568
+				'approve_title' => __( 'Entry not approved for directory viewing. Click to approve this entry.', 'gravityview' ),
569
+				'unapprove_title' => __( 'Entry approved for directory viewing. Click to disapprove this entry.', 'gravityview' ),
570
+				'column_title' => __( 'Show entry in directory view?', 'gravityview' ),
571
+				'column_link' => esc_url( add_query_arg( array( 'sort' => $approvedcolumn ) ) ),
572 572
 			) );
573 573
 
574 574
 		}
@@ -611,8 +611,8 @@  discard block
 block discarded – undo
611 611
 		// Sanitize the values, just to be sure.
612 612
 		foreach ( $bulk_actions as $key => $group ) {
613 613
 			foreach ( $group as $i => $action ) {
614
-				$bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] );
615
-				$bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] );
614
+				$bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] );
615
+				$bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] );
616 616
 			}
617 617
 		}
618 618
 
@@ -637,13 +637,13 @@  discard block
 block discarded – undo
637 637
 		 * @since 1.7.2
638 638
 		 * @param boolean $hide_if_no_connections
639 639
 		 */
640
-		$hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false );
640
+		$hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false );
641 641
 
642
-		if( $hide_if_no_connections ) {
642
+		if ( $hide_if_no_connections ) {
643 643
 
644 644
 			$connected_views = gravityview_get_connected_views( $form_id );
645 645
 
646
-			if( empty( $connected_views ) ) {
646
+			if ( empty( $connected_views ) ) {
647 647
 				$show_approve_column = false;
648 648
 			}
649 649
 		}
@@ -653,18 +653,18 @@  discard block
 block discarded – undo
653 653
 		 * @param boolean $show_approve_column Whether the column will be shown
654 654
 		 * @param int $form_id The ID of the Gravity Forms form for which entries are being shown
655 655
 		 */
656
-		$show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id );
656
+		$show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id );
657 657
 
658 658
 		return $show_approve_column;
659 659
 	}
660 660
 
661 661
 	function register_gform_noconflict_script( $scripts ) {
662
-		$scripts[] = 'gravityview_gf_entries_scripts';
662
+		$scripts[ ] = 'gravityview_gf_entries_scripts';
663 663
 		return $scripts;
664 664
 	}
665 665
 
666 666
 	function register_gform_noconflict_style( $styles ) {
667
-		$styles[] = 'gravityview_entries_list';
667
+		$styles[ ] = 'gravityview_entries_list';
668 668
 		return $styles;
669 669
 	}
670 670
 
Please login to merge, or discard this patch.