Completed
Push — develop ( 9f9944...94d99e )
by Zack
32:58 queued 13:00
created
includes/class-gravityview-powered-by.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 
70 70
 		$url = add_query_arg( array(
71 71
 			'utm_source' => 'powered_by',
72
-            'utm_term' => get_bloginfo('name' ),
72
+			'utm_term' => get_bloginfo('name' ),
73 73
 		), $url );
74 74
 
75 75
 		/**
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
 		$powered_by = gravityview()->plugin->settings->get_gravitykit_setting( 'powered_by', 0 );
34 34
 
35
-		if( empty( $powered_by ) ) {
35
+		if ( empty( $powered_by ) ) {
36 36
 			return;
37 37
 		}
38 38
 
@@ -59,17 +59,17 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	protected function get_url() {
61 61
 
62
-		$url = sprintf( self::url, get_bloginfo('name' ) );
62
+		$url = sprintf( self::url, get_bloginfo( 'name' ) );
63 63
 
64 64
 		$affiliate_id = gravityview()->plugin->settings->get_gravitykit_setting( 'affiliate_id', '' );
65 65
 
66
-		if( $affiliate_id && is_numeric( $affiliate_id ) ) {
66
+		if ( $affiliate_id && is_numeric( $affiliate_id ) ) {
67 67
 			$url = add_query_arg( array( 'ref' => $affiliate_id ), $url );
68 68
 		}
69 69
 
70 70
 		$url = add_query_arg( array(
71 71
 			'utm_source' => 'powered_by',
72
-            'utm_term' => get_bloginfo('name' ),
72
+            'utm_term' => get_bloginfo( 'name' ),
73 73
 		), $url );
74 74
 
75 75
 		/**
Please login to merge, or discard this patch.
future/includes/class-gv-entry.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
 		$args = array();
115 115
 
116
-		$view_id = is_null ( $view ) ? null : $view->ID;
116
+		$view_id = is_null( $view ) ? null : $view->ID;
117 117
 
118 118
 		$permalink = null;
119 119
 
@@ -126,8 +126,8 @@  discard block
 block discarded – undo
126 126
 
127 127
 				$view_collection = View_Collection::from_post( $post );
128 128
 
129
-				if( 1 < $view_collection->count() ) {
130
-					$args['gvid'] = $view_id;
129
+				if ( 1 < $view_collection->count() ) {
130
+					$args[ 'gvid' ] = $view_id;
131 131
 				}
132 132
 			}
133 133
 		}
@@ -157,21 +157,21 @@  discard block
 block discarded – undo
157 157
 			 */
158 158
 			$link_parts = explode( '?', $permalink );
159 159
 
160
-			$query = ! empty( $link_parts[1] ) ? '?' . $link_parts[1] : '';
160
+			$query = ! empty( $link_parts[ 1 ] ) ? '?' . $link_parts[ 1 ] : '';
161 161
 
162
-			$permalink = trailingslashit( $link_parts[0] ) . $entry_endpoint_name . '/'. $entry_slug .'/' . $query;
162
+			$permalink = trailingslashit( $link_parts[ 0 ] ) . $entry_endpoint_name . '/' . $entry_slug . '/' . $query;
163 163
 		} else {
164 164
 			$args[ $entry_endpoint_name ] = $entry_slug;
165 165
 		}
166 166
 
167 167
 		if ( $track_directory ) {
168
-			if ( ! empty( $_GET['pagenum'] ) ) {
169
-				$args['pagenum'] = intval( $_GET['pagenum'] );
168
+			if ( ! empty( $_GET[ 'pagenum' ] ) ) {
169
+				$args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] );
170 170
 			}
171 171
 
172 172
 			if ( $sort = Utils::_GET( 'sort' ) ) {
173
-				$args['sort'] = $sort;
174
-				$args['dir'] = Utils::_GET( 'dir' );
173
+				$args[ 'sort' ] = $sort;
174
+				$args[ 'dir' ] = Utils::_GET( 'dir' );
175 175
 			}
176 176
 		}
177 177
 
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 
210 210
 		$entry_slug = \GravityView_API::get_entry_slug( $this->ID, $this->as_entry() );
211 211
 
212
-		if( ! $apply_filter ) {
212
+		if ( ! $apply_filter ) {
213 213
 			return $entry_slug;
214 214
 		}
215 215
 
Please login to merge, or discard this patch.
includes/class-frontend-views.php 2 patches
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
 		}
452 452
 
453 453
 		// WooCommerce doesn't $post_id
454
-		if ( empty( $passed_post_id ) )  {
454
+		if ( empty( $passed_post_id ) ) {
455 455
 			return $passed_title;
456 456
 		}
457 457
 
@@ -1206,7 +1206,7 @@  discard block
 block discarded – undo
1206 1206
 					 */
1207 1207
 					$address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id );
1208 1208
 
1209
-					switch( strtolower( $address_part ) ){
1209
+					switch( strtolower( $address_part ) ) {
1210 1210
 						case 'street':
1211 1211
 							$sort_field_id .= '.1';
1212 1212
 							break;
@@ -1296,7 +1296,7 @@  discard block
 block discarded – undo
1296 1296
 		 */
1297 1297
 		$single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry );
1298 1298
 
1299
-		if ( empty( $single_entry ) ){
1299
+		if ( empty( $single_entry ) ) {
1300 1300
 			return false;
1301 1301
 		} else {
1302 1302
 			return $single_entry;
Please login to merge, or discard this patch.
Spacing   +95 added lines, -95 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
 	private function __construct() {}
86 86
 
87 87
 	private function initialize() {
88
-		add_action( 'wp', array( $this, 'parse_content'), 11 );
88
+		add_action( 'wp', array( $this, 'parse_content' ), 11 );
89 89
 		add_filter( 'render_block', array( $this, 'detect_views_in_block_content' ) );
90 90
 		add_filter( 'parse_query', array( $this, 'parse_query_fix_frontpage' ), 10 );
91
-		add_action( 'template_redirect', array( $this, 'set_entry_data'), 1 );
91
+		add_action( 'template_redirect', array( $this, 'set_entry_data' ), 1 );
92 92
 
93 93
 		// Enqueue scripts and styles after GravityView_Template::register_styles()
94 94
 		add_action( 'wp_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 20 );
@@ -235,18 +235,18 @@  discard block
 block discarded – undo
235 235
 
236 236
 		if ( ! empty( $view_id ) ) {
237 237
 
238
-			$this->context_view_id = (int) $view_id;
238
+			$this->context_view_id = (int)$view_id;
239 239
 
240
-		} elseif ( isset( $_GET['gvid'] ) && $multiple_views ) {
240
+		} elseif ( isset( $_GET[ 'gvid' ] ) && $multiple_views ) {
241 241
 			/**
242 242
 			 * used on a has_multiple_views context
243 243
 			 * @see GravityView_API::entry_link
244 244
 			 */
245
-			$this->context_view_id = (int) $_GET['gvid'];
245
+			$this->context_view_id = (int)$_GET[ 'gvid' ];
246 246
 
247 247
 		} elseif ( ! $multiple_views ) {
248 248
 			$array_keys = array_keys( $this->getGvOutputData()->get_views() );
249
-			$this->context_view_id = (int) array_pop( $array_keys );
249
+			$this->context_view_id = (int)array_pop( $array_keys );
250 250
 			unset( $array_keys );
251 251
 		}
252 252
 
@@ -279,25 +279,25 @@  discard block
 block discarded – undo
279 279
 		global $wp_rewrite;
280 280
 
281 281
 		$is_front_page = ( $query->is_home || $query->is_page );
282
-		$show_on_front = ( 'page' === get_option('show_on_front') );
283
-		$front_page_id = get_option('page_on_front');
282
+		$show_on_front = ( 'page' === get_option( 'show_on_front' ) );
283
+		$front_page_id = get_option( 'page_on_front' );
284 284
 
285
-		if (  $is_front_page && $show_on_front && $front_page_id ) {
285
+		if ( $is_front_page && $show_on_front && $front_page_id ) {
286 286
 
287 287
 			// Force to be an array, potentially a query string ( entry=16 )
288 288
 			$_query = wp_parse_args( $query->query );
289 289
 
290 290
 			// pagename can be set and empty depending on matched rewrite rules. Ignore an empty pagename.
291
-			if ( isset( $_query['pagename'] ) && '' === $_query['pagename'] ) {
292
-				unset( $_query['pagename'] );
291
+			if ( isset( $_query[ 'pagename' ] ) && '' === $_query[ 'pagename' ] ) {
292
+				unset( $_query[ 'pagename' ] );
293 293
 			}
294 294
 
295 295
 			// this is where will break from core wordpress
296 296
 			/** @internal Don't use this filter; it will be unnecessary soon - it's just a patch for specific use case */
297 297
 			$ignore = apply_filters( 'gravityview/internal/ignored_endpoints', array( 'preview', 'page', 'paged', 'cpage' ), $query );
298 298
 			$endpoints = \GV\Utils::get( $wp_rewrite, 'endpoints' );
299
-			foreach ( (array) $endpoints as $endpoint ) {
300
-				$ignore[] = $endpoint[1];
299
+			foreach ( (array)$endpoints as $endpoint ) {
300
+				$ignore[ ] = $endpoint[ 1 ];
301 301
 			}
302 302
 			unset( $endpoints );
303 303
 
@@ -307,21 +307,21 @@  discard block
 block discarded – undo
307 307
 			// - The query includes keys that are associated with registered endpoints. `entry`, for example.
308 308
 			if ( empty( $_query ) || ! array_diff( array_keys( $_query ), $ignore ) ) {
309 309
 
310
-				$qv =& $query->query_vars;
310
+				$qv = & $query->query_vars;
311 311
 
312 312
 				// Prevent redirect when on the single entry endpoint
313
-				if( self::is_single_entry() ) {
313
+				if ( self::is_single_entry() ) {
314 314
 					add_filter( 'redirect_canonical', '__return_false' );
315 315
 				}
316 316
 
317 317
 				$query->is_page = true;
318 318
 				$query->is_home = false;
319
-				$qv['page_id']  = $front_page_id;
319
+				$qv[ 'page_id' ]  = $front_page_id;
320 320
 
321 321
 				// Correct <!--nextpage--> for page_on_front
322
-				if ( ! empty( $qv['paged'] ) ) {
323
-					$qv['page'] = $qv['paged'];
324
-					unset( $qv['paged'] );
322
+				if ( ! empty( $qv[ 'paged' ] ) ) {
323
+					$qv[ 'page' ] = $qv[ 'paged' ];
324
+					unset( $qv[ 'paged' ] );
325 325
 				}
326 326
 			}
327 327
 
@@ -383,11 +383,11 @@  discard block
 block discarded – undo
383 383
 			$blocks = parse_blocks( $post_content );
384 384
 
385 385
 			foreach ( $blocks as $block ) {
386
-				if ( empty( $block['attrs']['ref'] ) ) {
386
+				if ( empty( $block[ 'attrs' ][ 'ref' ] ) ) {
387 387
 					continue;
388 388
 				}
389 389
 
390
-				$block_post = get_post( $block['attrs']['ref'] );
390
+				$block_post = get_post( $block[ 'attrs' ][ 'ref' ] );
391 391
 
392 392
 				if ( $block_post ) {
393 393
 					$post_content .= $block_post->post_content;
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 
441 441
 		$search_method = GravityView_Widget_Search::getInstance()->get_search_method();
442 442
 
443
-		if( 'post' === $search_method ) {
443
+		if ( 'post' === $search_method ) {
444 444
 			$get = $_POST;
445 445
 		} else {
446 446
 			$get = $_GET;
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
 		$gventry = gravityview()->request->is_entry();
493 493
 
494 494
 		// If this is the directory view, return.
495
-		if( ! $gventry ) {
495
+		if ( ! $gventry ) {
496 496
 			return $passed_title;
497 497
 		}
498 498
 
@@ -510,19 +510,19 @@  discard block
 block discarded – undo
510 510
 		}
511 511
 
512 512
 		// WooCommerce doesn't $post_id
513
-		if ( empty( $passed_post_id ) )  {
513
+		if ( empty( $passed_post_id ) ) {
514 514
 			return $passed_title;
515 515
 		}
516 516
 
517 517
 		// Don't modify the title for anything other than the current view/post.
518 518
 		// This is true for embedded shortcodes and Views.
519
-		if ( is_object( $post ) && (int) $post->ID !== (int) $passed_post_id ) {
519
+		if ( is_object( $post ) && (int)$post->ID !== (int)$passed_post_id ) {
520 520
 			return $passed_title;
521 521
 		}
522 522
 
523 523
 		$view = gravityview()->request->is_view();
524 524
 
525
-		if( $view ) {
525
+		if ( $view ) {
526 526
 			return $this->_get_single_entry_title( $view, $entry, $passed_title );
527 527
 		}
528 528
 
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
 		$view_collection = \GV\View_Collection::from_post( $post );
546 546
 
547 547
 		// We have multiple Views, but no gvid...this isn't valid security
548
-		if( 1 < $view_collection->count() ) {
548
+		if ( 1 < $view_collection->count() ) {
549 549
 			return $passed_title;
550 550
 		}
551 551
 
@@ -579,18 +579,18 @@  discard block
 block discarded – undo
579 579
 		 */
580 580
 		$check_entry_display = apply_filters( 'gravityview/single/title/check_entry_display', true, $entry, $view );
581 581
 
582
-		if( $check_entry_display ) {
582
+		if ( $check_entry_display ) {
583 583
 
584 584
 			$check_display = GVCommon::check_entry_display( $entry, $view );
585 585
 
586
-			if( is_wp_error( $check_display ) ) {
586
+			if ( is_wp_error( $check_display ) ) {
587 587
 				return $passed_title;
588 588
 			}
589 589
 		}
590 590
 
591 591
 		$title = $view->settings->get( 'single_title', $passed_title );
592 592
 
593
-		$form = GVCommon::get_form( $entry['form_id'] );
593
+		$form = GVCommon::get_form( $entry[ 'form_id' ] );
594 594
 
595 595
 		// We are allowing HTML in the fields, so no escaping the output
596 596
 		$title = GravityView_API::replace_variables( $title, $form, $entry );
@@ -661,7 +661,7 @@  discard block
 block discarded – undo
661 661
 
662 662
 		$context = GravityView_View::getInstance()->getContext();
663 663
 
664
-		switch( $context ) {
664
+		switch ( $context ) {
665 665
 			case 'directory':
666 666
 				$tab = __( 'Multiple Entries', 'gk-gravityview' );
667 667
 				break;
@@ -675,12 +675,12 @@  discard block
 block discarded – undo
675 675
 		}
676 676
 
677 677
 
678
-		$title = sprintf( esc_html_x('The %s layout has not been configured.', 'Displayed when a View is not configured. %s is replaced by the tab label', 'gk-gravityview' ), $tab );
678
+		$title = sprintf( esc_html_x( 'The %s layout has not been configured.', 'Displayed when a View is not configured. %s is replaced by the tab label', 'gk-gravityview' ), $tab );
679 679
 		$edit_link = admin_url( sprintf( 'post.php?post=%d&action=edit#%s-view', $view_id, $context ) );
680
-		$action_text = sprintf( esc_html__('Add fields to %s', 'gk-gravityview' ), $tab );
680
+		$action_text = sprintf( esc_html__( 'Add fields to %s', 'gk-gravityview' ), $tab );
681 681
 		$message = esc_html__( 'You can only see this message because you are able to edit this View.', 'gk-gravityview' );
682 682
 
683
-		$image =  sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', $tab, esc_url(plugins_url( sprintf( 'assets/images/tab-%s.png', $context ), GRAVITYVIEW_FILE ) ) );
683
+		$image = sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', $tab, esc_url( plugins_url( sprintf( 'assets/images/tab-%s.png', $context ), GRAVITYVIEW_FILE ) ) );
684 684
 		$output = sprintf( '<h3>%s <strong><a href="%s">%s</a></strong></h3><p>%s</p>', $title, esc_url( $edit_link ), $action_text, $message );
685 685
 
686 686
 		echo GVCommon::generate_notice( $output . $image, 'gv-error error', 'edit_gravityview', $view_id );
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
 		$direct_access = apply_filters( 'gravityview_direct_access', true, $view->ID );
728 728
 		$embed_only = $view->settings->get( 'embed_only' );
729 729
 
730
-		if( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) {
730
+		if ( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) {
731 731
 			return __( 'You are not allowed to view this content.', 'gk-gravityview' );
732 732
 		}
733 733
 
@@ -774,7 +774,7 @@  discard block
 block discarded – undo
774 774
 				$datetime_format = 'Y-m-d H:i:s';
775 775
 				$search_is_outside_view_bounds = false;
776 776
 
777
-				if( ! empty( $search_criteria[ $key ] ) ) {
777
+				if ( ! empty( $search_criteria[ $key ] ) ) {
778 778
 
779 779
 					$search_date = strtotime( $search_criteria[ $key ], GFCommon::get_local_timestamp() );
780 780
 
@@ -802,14 +802,14 @@  discard block
 block discarded – undo
802 802
 				if ( empty( $search_criteria[ $key ] ) || $search_is_outside_view_bounds ) {
803 803
 
804 804
 					// Then we override the search and re-set the start date
805
-					$return_search_criteria[ $key ] = date_i18n( $datetime_format , $date, true );
805
+					$return_search_criteria[ $key ] = date_i18n( $datetime_format, $date, true );
806 806
 				}
807 807
 			}
808 808
 		}
809 809
 
810
-		if( isset( $return_search_criteria['start_date'] ) && isset( $return_search_criteria['end_date'] ) ) {
810
+		if ( isset( $return_search_criteria[ 'start_date' ] ) && isset( $return_search_criteria[ 'end_date' ] ) ) {
811 811
 			// The start date is AFTER the end date. This will result in no results, but let's not force the issue.
812
-			if ( strtotime( $return_search_criteria['start_date'] ) > strtotime( $return_search_criteria['end_date'] ) ) {
812
+			if ( strtotime( $return_search_criteria[ 'start_date' ] ) > strtotime( $return_search_criteria[ 'end_date' ] ) ) {
813 813
 				gravityview()->log->error( 'Invalid search: the start date is after the end date.', array( 'data' => $return_search_criteria ) );
814 814
 			}
815 815
 		}
@@ -828,19 +828,19 @@  discard block
 block discarded – undo
828 828
 	public static function process_search_only_approved( $args, $search_criteria ) {
829 829
 
830 830
 		/** @since 1.19 */
831
-		if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) {
831
+		if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) {
832 832
 			gravityview()->log->debug( 'User can moderate entries; showing all approval statuses' );
833 833
 			return $search_criteria;
834 834
 		}
835 835
 
836
-		if ( ! empty( $args['show_only_approved'] ) ) {
836
+		if ( ! empty( $args[ 'show_only_approved' ] ) ) {
837 837
 
838
-			$search_criteria['field_filters'][] = array(
838
+			$search_criteria[ 'field_filters' ][ ] = array(
839 839
 				'key' => GravityView_Entry_Approval::meta_key,
840 840
 				'value' => GravityView_Entry_Approval_Status::APPROVED
841 841
 			);
842 842
 
843
-			$search_criteria['field_filters']['mode'] = 'all'; // force all the criterias to be met
843
+			$search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; // force all the criterias to be met
844 844
 
845 845
 			gravityview()->log->debug( '[process_search_only_approved] Search Criteria if show only approved: ', array( 'data' => $search_criteria ) );
846 846
 		}
@@ -867,18 +867,18 @@  discard block
 block discarded – undo
867 867
 	 */
868 868
 	public static function is_entry_approved( $entry, $args = array() ) {
869 869
 
870
-		if ( empty( $entry['id'] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args['show_only_approved'] ) ) {
870
+		if ( empty( $entry[ 'id' ] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args[ 'show_only_approved' ] ) ) {
871 871
 			// is implicitly approved if entry is null or View settings doesn't require to check for approval
872 872
 			return true;
873 873
 		}
874 874
 
875 875
 		/** @since 1.19 */
876
-		if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) {
876
+		if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) {
877 877
 			gravityview()->log->debug( 'User can moderate entries, so entry is approved for viewing' );
878 878
 			return true;
879 879
 		}
880 880
 
881
-		$is_approved = gform_get_meta( $entry['id'], GravityView_Entry_Approval::meta_key );
881
+		$is_approved = gform_get_meta( $entry[ 'id' ], GravityView_Entry_Approval::meta_key );
882 882
 
883 883
 		return GravityView_Entry_Approval_Status::is_approved( $is_approved );
884 884
 	}
@@ -902,7 +902,7 @@  discard block
 block discarded – undo
902 902
 		 * Compatibility with filters hooking in `gravityview_search_criteria` instead of `gravityview_fe_search_criteria`.
903 903
 		 */
904 904
 		$criteria = apply_filters( 'gravityview_search_criteria', array(), array( $form_id ), \GV\Utils::get( $args, 'id' ) );
905
-		$search_criteria = isset( $criteria['search_criteria'] ) ? $criteria['search_criteria'] : array( 'field_filters' => array() );
905
+		$search_criteria = isset( $criteria[ 'search_criteria' ] ) ? $criteria[ 'search_criteria' ] : array( 'field_filters' => array() );
906 906
 
907 907
 		/**
908 908
 		 * @filter `gravityview_fe_search_criteria` Modify the search criteria
@@ -922,29 +922,29 @@  discard block
 block discarded – undo
922 922
 		gravityview()->log->debug( '[get_search_criteria] Search Criteria after hook gravityview_fe_search_criteria: ', array( 'data' =>$search_criteria ) );
923 923
 
924 924
 		// implicity search
925
-		if ( ! empty( $args['search_value'] ) ) {
925
+		if ( ! empty( $args[ 'search_value' ] ) ) {
926 926
 
927 927
 			// Search operator options. Options: `is` or `contains`
928
-			$operator = ! empty( $args['search_operator'] ) && in_array( $args['search_operator'], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args['search_operator'] : 'contains';
928
+			$operator = ! empty( $args[ 'search_operator' ] ) && in_array( $args[ 'search_operator' ], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args[ 'search_operator' ] : 'contains';
929 929
 
930
-			$search_criteria['field_filters'][] = array(
930
+			$search_criteria[ 'field_filters' ][ ] = array(
931 931
 				'key' => \GV\Utils::_GET( 'search_field', \GV\Utils::get( $args, 'search_field' ) ), // The field ID to search
932
-				'value' => _wp_specialchars( $args['search_value'] ), // The value to search. Encode ampersands but not quotes.
932
+				'value' => _wp_specialchars( $args[ 'search_value' ] ), // The value to search. Encode ampersands but not quotes.
933 933
 				'operator' => $operator,
934 934
 			);
935 935
 
936 936
 			// Lock search mode to "all" with implicit presearch filter.
937
-			$search_criteria['field_filters']['mode'] = 'all';
937
+			$search_criteria[ 'field_filters' ][ 'mode' ] = 'all';
938 938
 		}
939 939
 
940
-		if( $search_criteria !== $original_search_criteria ) {
940
+		if ( $search_criteria !== $original_search_criteria ) {
941 941
 			gravityview()->log->debug( '[get_search_criteria] Search Criteria after implicity search: ', array( 'data' => $search_criteria ) );
942 942
 		}
943 943
 
944 944
 		// Handle setting date range
945 945
 		$search_criteria = self::process_search_dates( $args, $search_criteria );
946 946
 
947
-		if( $search_criteria !== $original_search_criteria ) {
947
+		if ( $search_criteria !== $original_search_criteria ) {
948 948
 			gravityview()->log->debug( '[get_search_criteria] Search Criteria after date params: ', array( 'data' => $search_criteria ) );
949 949
 		}
950 950
 
@@ -955,7 +955,7 @@  discard block
 block discarded – undo
955 955
 		 * @filter `gravityview_status` Modify entry status requirements to be included in search results.
956 956
 		 * @param string $status Default: `active`. Accepts all Gravity Forms entry statuses, including `spam` and `trash`
957 957
 		 */
958
-		$search_criteria['status'] = apply_filters( 'gravityview_status', 'active', $args );
958
+		$search_criteria[ 'status' ] = apply_filters( 'gravityview_status', 'active', $args );
959 959
 
960 960
 		return $search_criteria;
961 961
 	}
@@ -1067,7 +1067,7 @@  discard block
 block discarded – undo
1067 1067
 			'search_criteria' => $search_criteria,
1068 1068
 			'sorting' => self::updateViewSorting( $args, $form_id ),
1069 1069
 			'paging' => $paging,
1070
-			'cache' => isset( $args['cache'] ) ? $args['cache'] : true,
1070
+			'cache' => isset( $args[ 'cache' ] ) ? $args[ 'cache' ] : true,
1071 1071
 		);
1072 1072
 
1073 1073
 		/**
@@ -1092,7 +1092,7 @@  discard block
 block discarded – undo
1092 1092
 		 * @param array $parameters Array with `search_criteria`, `sorting` and `paging` keys.
1093 1093
 		 * @param array $args View configuration args.
1094 1094
 		 */
1095
-		$parameters = apply_filters( 'gravityview_get_entries_'.\GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id );
1095
+		$parameters = apply_filters( 'gravityview_get_entries_' . \GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id );
1096 1096
 
1097 1097
 		gravityview()->log->debug( '$parameters passed to gravityview_get_entries(): ', array( 'data' => $parameters ) );
1098 1098
 
@@ -1117,17 +1117,17 @@  discard block
 block discarded – undo
1117 1117
 		$default_page_size = apply_filters( 'gravityview_default_page_size', 25 );
1118 1118
 
1119 1119
 		// Paging & offset
1120
-		$page_size = ! empty( $args['page_size'] ) ? intval( $args['page_size'] ) : $default_page_size;
1120
+		$page_size = ! empty( $args[ 'page_size' ] ) ? intval( $args[ 'page_size' ] ) : $default_page_size;
1121 1121
 
1122 1122
 		if ( -1 === $page_size ) {
1123 1123
 			$page_size = PHP_INT_MAX;
1124 1124
 		}
1125 1125
 
1126
-		$curr_page = empty( $_GET['pagenum'] ) ? 1 : intval( $_GET['pagenum'] );
1126
+		$curr_page = empty( $_GET[ 'pagenum' ] ) ? 1 : intval( $_GET[ 'pagenum' ] );
1127 1127
 		$offset = ( $curr_page - 1 ) * $page_size;
1128 1128
 
1129
-		if ( ! empty( $args['offset'] ) ) {
1130
-			$offset += intval( $args['offset'] );
1129
+		if ( ! empty( $args[ 'offset' ] ) ) {
1130
+			$offset += intval( $args[ 'offset' ] );
1131 1131
 		}
1132 1132
 
1133 1133
 		$paging = array(
@@ -1152,11 +1152,11 @@  discard block
 block discarded – undo
1152 1152
 	public static function updateViewSorting( $args, $form_id ) {
1153 1153
 		$sorting = array();
1154 1154
 
1155
-		$has_values = isset( $_GET['sort'] );
1155
+		$has_values = isset( $_GET[ 'sort' ] );
1156 1156
 
1157
-		if ( $has_values && is_array( $_GET['sort'] ) ) {
1158
-			$sorts = array_keys( $_GET['sort'] );
1159
-			$dirs  = array_values( $_GET['sort'] );
1157
+		if ( $has_values && is_array( $_GET[ 'sort' ] ) ) {
1158
+			$sorts = array_keys( $_GET[ 'sort' ] );
1159
+			$dirs  = array_values( $_GET[ 'sort' ] );
1160 1160
 
1161 1161
 			if ( $has_values = array_filter( $dirs ) ) {
1162 1162
 				$sort_field_id = end( $sorts );
@@ -1165,11 +1165,11 @@  discard block
 block discarded – undo
1165 1165
 		}
1166 1166
 
1167 1167
 		if ( ! isset( $sort_field_id ) ) {
1168
-			$sort_field_id = isset( $_GET['sort'] ) ? $_GET['sort'] : \GV\Utils::get( $args, 'sort_field' );
1168
+			$sort_field_id = isset( $_GET[ 'sort' ] ) ? $_GET[ 'sort' ] : \GV\Utils::get( $args, 'sort_field' );
1169 1169
 		}
1170 1170
 
1171 1171
 		if ( ! isset( $sort_direction ) ) {
1172
-			$sort_direction = isset( $_GET['dir'] ) ? $_GET['dir'] : \GV\Utils::get( $args, 'sort_direction' );
1172
+			$sort_direction = isset( $_GET[ 'dir' ] ) ? $_GET[ 'dir' ] : \GV\Utils::get( $args, 'sort_direction' );
1173 1173
 		}
1174 1174
 
1175 1175
 		if ( is_array( $sort_field_id ) ) {
@@ -1201,10 +1201,10 @@  discard block
 block discarded – undo
1201 1201
 				$form = GFAPI::get_form( $form_id );
1202 1202
 
1203 1203
 				// Get the first GF_Field field ID, set as the key for entry randomization
1204
-				if ( ! empty( $form['fields'] ) ) {
1204
+				if ( ! empty( $form[ 'fields' ] ) ) {
1205 1205
 
1206 1206
 					/** @var GF_Field $field */
1207
-					foreach ( $form['fields'] as $field ) {
1207
+					foreach ( $form[ 'fields' ] as $field ) {
1208 1208
 						if ( ! is_a( $field, 'GF_Field' ) ) {
1209 1209
 							continue;
1210 1210
 						}
@@ -1253,7 +1253,7 @@  discard block
 block discarded – undo
1253 1253
 		if ( is_array( $sort_field_id ) ) {
1254 1254
 			$modified_ids = array();
1255 1255
 			foreach ( $sort_field_id as $_sort_field_id ) {
1256
-				$modified_ids []= self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id );
1256
+				$modified_ids [ ] = self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id );
1257 1257
 			}
1258 1258
 			return $modified_ids;
1259 1259
 		}
@@ -1262,11 +1262,11 @@  discard block
 block discarded – undo
1262 1262
 
1263 1263
 		$sort_field = GFFormsModel::get_field( $form, $sort_field_id );
1264 1264
 
1265
-		if( ! $sort_field ) {
1265
+		if ( ! $sort_field ) {
1266 1266
 			return $sort_field_id;
1267 1267
 		}
1268 1268
 
1269
-		switch ( $sort_field['type'] ) {
1269
+		switch ( $sort_field[ 'type' ] ) {
1270 1270
 
1271 1271
 			case 'address':
1272 1272
 				// Sorting by full address
@@ -1283,7 +1283,7 @@  discard block
 block discarded – undo
1283 1283
 					 */
1284 1284
 					$address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id );
1285 1285
 
1286
-					switch( strtolower( $address_part ) ){
1286
+					switch ( strtolower( $address_part ) ) {
1287 1287
 						case 'street':
1288 1288
 							$sort_field_id .= '.1';
1289 1289
 							break;
@@ -1356,7 +1356,7 @@  discard block
 block discarded – undo
1356 1356
 		if ( ! class_exists( '\GV\Entry' ) ) {
1357 1357
 
1358 1358
 			// Not using gravityview()->log->error(), since that may not exist yet either!
1359
-			do_action( 'gravityview_log_error', '\GV\Entry not defined yet. Backtrace: ' . wp_debug_backtrace_summary()  );
1359
+			do_action( 'gravityview_log_error', '\GV\Entry not defined yet. Backtrace: ' . wp_debug_backtrace_summary() );
1360 1360
 
1361 1361
 			return null;
1362 1362
 		}
@@ -1373,7 +1373,7 @@  discard block
 block discarded – undo
1373 1373
 		 */
1374 1374
 		$single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry );
1375 1375
 
1376
-		if ( empty( $single_entry ) ){
1376
+		if ( empty( $single_entry ) ) {
1377 1377
 			return false;
1378 1378
 		} else {
1379 1379
 			return $single_entry;
@@ -1394,7 +1394,7 @@  discard block
 block discarded – undo
1394 1394
 			$views = $this->getGvOutputData()->get_views();
1395 1395
 
1396 1396
 			foreach ( $views as $view_id => $data ) {
1397
-				$view = \GV\View::by_id( $data['id'] );
1397
+				$view = \GV\View::by_id( $data[ 'id' ] );
1398 1398
 				$view_id = $view->ID;
1399 1399
 				$template_id = gravityview_get_template_id( $view->ID );
1400 1400
 				$data = $view->as_data();
@@ -1424,7 +1424,7 @@  discard block
 block discarded – undo
1424 1424
 					 * @param \GV\View The View.
1425 1425
 					 */
1426 1426
 					$js_dependency = apply_filters( 'gravityview_lightbox_script', $js_dependency, $view );
1427
-					$js_dependencies[] = $js_dependency;
1427
+					$js_dependencies[ ] = $js_dependency;
1428 1428
 
1429 1429
 					/**
1430 1430
 					 * @filter `gravity_view_lightbox_style` Modify the lightbox CSS slug. Default: `thickbox`
@@ -1440,7 +1440,7 @@  discard block
 block discarded – undo
1440 1440
 					 * @param \GV\View The View.
1441 1441
 					 */
1442 1442
 					$css_dependency = apply_filters( 'gravityview_lightbox_style', $css_dependency, $view );
1443
-					$css_dependencies[] = $css_dependency;
1443
+					$css_dependencies[ ] = $css_dependency;
1444 1444
 				}
1445 1445
 
1446 1446
 				/**
@@ -1448,19 +1448,19 @@  discard block
 block discarded – undo
1448 1448
 				 * @see https://github.com/katzwebservices/GravityView/issues/536
1449 1449
 				 * @since 1.15
1450 1450
 				 */
1451
-				if( gravityview_view_has_single_checkbox_or_radio( $data['form'], $data['fields'] ) ) {
1452
-					$css_dependencies[] = 'dashicons';
1451
+				if ( gravityview_view_has_single_checkbox_or_radio( $data[ 'form' ], $data[ 'fields' ] ) ) {
1452
+					$css_dependencies[ ] = 'dashicons';
1453 1453
 				}
1454 1454
 
1455 1455
 				wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GV_PLUGIN_VERSION, true );
1456 1456
 
1457 1457
 				$script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
1458 1458
 
1459
-				wp_register_script( 'gravityview-fe-view', plugins_url( 'assets/js/fe-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), apply_filters( 'gravityview_js_dependencies', $js_dependencies ) , GV_PLUGIN_VERSION, true );
1459
+				wp_register_script( 'gravityview-fe-view', plugins_url( 'assets/js/fe-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), apply_filters( 'gravityview_js_dependencies', $js_dependencies ), GV_PLUGIN_VERSION, true );
1460 1460
 
1461 1461
 				wp_enqueue_script( 'gravityview-fe-view' );
1462 1462
 
1463
-				if ( ! empty( $data['atts']['sort_columns'] ) ) {
1463
+				if ( ! empty( $data[ 'atts' ][ 'sort_columns' ] ) ) {
1464 1464
 					wp_enqueue_style( 'gravityview_font', plugins_url( 'assets/css/font.css', GRAVITYVIEW_FILE ), $css_dependencies, GV_PLUGIN_VERSION, 'all' );
1465 1465
 				}
1466 1466
 
@@ -1523,7 +1523,7 @@  discard block
 block discarded – undo
1523 1523
 	public static function add_style( $template_id ) {
1524 1524
 
1525 1525
 		if ( ! empty( $template_id ) && wp_style_is( 'gravityview_style_' . $template_id, 'registered' ) ) {
1526
-			gravityview()->log->debug(  'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) );
1526
+			gravityview()->log->debug( 'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) );
1527 1527
 			wp_enqueue_style( 'gravityview_style_' . $template_id );
1528 1528
 		} elseif ( empty( $template_id ) ) {
1529 1529
 			gravityview()->log->error( 'Cannot add template style; template_id is empty' );
@@ -1554,11 +1554,11 @@  discard block
 block discarded – undo
1554 1554
 		 * Not a table-based template; don't add sort icons
1555 1555
 		 * @since 1.12
1556 1556
 		 */
1557
-		if( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) {
1557
+		if ( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) {
1558 1558
 			return $label;
1559 1559
 		}
1560 1560
 
1561
-		if ( ! $this->is_field_sortable( $field['id'], $form ) ) {
1561
+		if ( ! $this->is_field_sortable( $field[ 'id' ], $form ) ) {
1562 1562
 			return $label;
1563 1563
 		}
1564 1564
 
@@ -1566,29 +1566,29 @@  discard block
 block discarded – undo
1566 1566
 
1567 1567
 		$class = 'gv-sort';
1568 1568
 
1569
-		$sort_field_id = self::_override_sorting_id_by_field_type( $field['id'], $form['id'] );
1569
+		$sort_field_id = self::_override_sorting_id_by_field_type( $field[ 'id' ], $form[ 'id' ] );
1570 1570
 
1571 1571
 		$sort_args = array(
1572
-			'sort' => $field['id'],
1572
+			'sort' => $field[ 'id' ],
1573 1573
 			'dir' => 'asc',
1574 1574
 		);
1575 1575
 
1576
-		if ( ! empty( $sorting['key'] ) && (string) $sort_field_id === (string) $sorting['key'] ) {
1576
+		if ( ! empty( $sorting[ 'key' ] ) && (string)$sort_field_id === (string)$sorting[ 'key' ] ) {
1577 1577
 			//toggle sorting direction.
1578
-			if ( 'asc' === $sorting['direction'] ) {
1579
-				$sort_args['dir'] = 'desc';
1578
+			if ( 'asc' === $sorting[ 'direction' ] ) {
1579
+				$sort_args[ 'dir' ] = 'desc';
1580 1580
 				$class .= ' gv-icon-sort-desc';
1581 1581
 			} else {
1582
-				$sort_args['dir'] = 'asc';
1582
+				$sort_args[ 'dir' ] = 'asc';
1583 1583
 				$class .= ' gv-icon-sort-asc';
1584 1584
 			}
1585 1585
 		} else {
1586 1586
 			$class .= ' gv-icon-caret-up-down';
1587 1587
 		}
1588 1588
 
1589
-		$url = add_query_arg( $sort_args, remove_query_arg( array('pagenum') ) );
1589
+		$url = add_query_arg( $sort_args, remove_query_arg( array( 'pagenum' ) ) );
1590 1590
 
1591
-		return '<a href="'. esc_url_raw( $url ) .'" class="'. $class .'" ></a>&nbsp;'. $label;
1591
+		return '<a href="' . esc_url_raw( $url ) . '" class="' . $class . '" ></a>&nbsp;' . $label;
1592 1592
 
1593 1593
 	}
1594 1594
 
@@ -1606,7 +1606,7 @@  discard block
 block discarded – undo
1606 1606
 
1607 1607
 		$field_type = $field_id;
1608 1608
 
1609
-		if( is_numeric( $field_id ) ) {
1609
+		if ( is_numeric( $field_id ) ) {
1610 1610
 			$field = GFFormsModel::get_field( $form, $field_id );
1611 1611
 			$field_type = $field ? $field->type : $field_id;
1612 1612
 		}
@@ -1635,7 +1635,7 @@  discard block
 block discarded – undo
1635 1635
 			return false;
1636 1636
 		}
1637 1637
 
1638
-		return apply_filters( "gravityview/sortable/formfield_{$form['id']}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) );
1638
+		return apply_filters( "gravityview/sortable/formfield_{$form[ 'id' ]}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) );
1639 1639
 
1640 1640
 	}
1641 1641
 
Please login to merge, or discard this patch.
includes/class-gravityview-entry-list.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
 	public function get_output() {
191 191
 
192 192
 		// No Entries
193
-		if( empty( $this->entries ) ) {
194
-			return '<div class="gv-no-results">'.$this->empty_message.'</div>';
193
+		if ( empty( $this->entries ) ) {
194
+			return '<div class="gv-no-results">' . $this->empty_message . '</div>';
195 195
 		}
196 196
 
197 197
 		$output = '';
@@ -202,22 +202,22 @@  discard block
 block discarded – undo
202 202
 			$current_entry = GravityView_View::getInstance()->getCurrentEntry();
203 203
 		}
204 204
 
205
-		$output .= '<'. $this->wrapper_tag .'>';
205
+		$output .= '<' . $this->wrapper_tag . '>';
206 206
 
207
-		foreach( $this->entries as $entry ) {
207
+		foreach ( $this->entries as $entry ) {
208 208
 
209 209
 			if ( $entry instanceof \GV\Entry ) {
210 210
 				$entry = $entry->as_entry();
211 211
 			}
212 212
 
213
-			if( $this->skip_entry( $entry, $current_entry ) ) {
213
+			if ( $this->skip_entry( $entry, $current_entry ) ) {
214 214
 				continue;
215 215
 			}
216 216
 
217 217
 			$output .= $this->get_item_output( $entry );
218 218
 		}
219 219
 
220
-		$output .= '</'. $this->wrapper_tag .'>';
220
+		$output .= '</' . $this->wrapper_tag . '>';
221 221
 
222 222
 		/**
223 223
 		 * @filter `gravityview/widget/recent-entries/output` Modify the HTML of the Recent Entries widget output
@@ -240,15 +240,15 @@  discard block
 block discarded – undo
240 240
 	private function skip_entry( $entry, $current_entry ) {
241 241
 
242 242
 		// If skip entry is off, or there's no current entry, return false
243
-		if( empty( $this->skip_current_entry ) || empty( $current_entry ) ) {
243
+		if ( empty( $this->skip_current_entry ) || empty( $current_entry ) ) {
244 244
 			return false;
245 245
 		}
246 246
 
247 247
 		// If in Single or Edit mode, $current_entry will be an array.
248
-		$current_entry_id = is_array( $current_entry ) ? $current_entry['id'] : $current_entry;
248
+		$current_entry_id = is_array( $current_entry ) ? $current_entry[ 'id' ] : $current_entry;
249 249
 
250 250
 		// If the entry ID matches the current entry, yes: skip
251
-		if( $entry['id'] === $current_entry_id ) {
251
+		if ( $entry[ 'id' ] === $current_entry_id ) {
252 252
 			return true;
253 253
 		}
254 254
 
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 
284 284
 		$item_output = gravityview_get_link( $link, $this->link_format );
285 285
 
286
-		if( !empty( $this->after_link ) ) {
286
+		if ( ! empty( $this->after_link ) ) {
287 287
 
288 288
 			/**
289 289
 			 * @filter `gravityview/entry-list/after-link` Modify the content displayed after the entry link in an entry list
@@ -292,14 +292,14 @@  discard block
 block discarded – undo
292 292
 			 * @param array $entry Gravity Forms entry array
293 293
 			 * @param GravityView_Entry_List $this The current class instance
294 294
 			 */
295
-			$after_link = apply_filters( 'gravityview/entry-list/after-link', '<div>'.$this->after_link.'</div>', $entry, $this );
295
+			$after_link = apply_filters( 'gravityview/entry-list/after-link', '<div>' . $this->after_link . '</div>', $entry, $this );
296 296
 
297 297
 			$item_output .= $after_link;
298 298
 		}
299 299
 
300 300
 		$item_output = GravityView_API::replace_variables( $item_output, $this->form, $entry );
301 301
 
302
-		$item_output = '<'. $this->item_tag .'>'. $item_output .'</'. $this->item_tag .'>';
302
+		$item_output = '<' . $this->item_tag . '>' . $item_output . '</' . $this->item_tag . '>';
303 303
 
304 304
 		/**
305 305
 		 * @filter `gravityview/entry-list/item` Modify each item's output in an entry list
Please login to merge, or discard this patch.
includes/presets/default-table/class-gravityview-default-template-table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,15 +88,15 @@
 block discarded – undo
88 88
 	 */
89 89
 	public function maybe_modify_button_label( $label = '', $atts = array() ) {
90 90
 
91
-		if( $this->template_id !== \GV\Utils::get( $atts, 'template_id' ) ) {
91
+		if ( $this->template_id !== \GV\Utils::get( $atts, 'template_id' ) ) {
92 92
 			return $label;
93 93
 		}
94 94
 
95
-		if( 'field' !== \GV\Utils::get( $atts, 'type' ) ) {
95
+		if ( 'field' !== \GV\Utils::get( $atts, 'type' ) ) {
96 96
 			return $label;
97 97
 		}
98 98
 
99
-		if( 'edit' === \GV\Utils::get( $atts, 'zone' ) ) {
99
+		if ( 'edit' === \GV\Utils::get( $atts, 'zone' ) ) {
100 100
 			return $label;
101 101
 		}
102 102
 
Please login to merge, or discard this patch.
includes/admin/class.field.type.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
         $defaults = self::get_field_defaults();
34 34
 
35 35
         // Backward compatibility
36
-        if( !empty( $field['choices'] ) ) {
37
-        	$field['options'] = $field['choices'];
38
-        	unset( $field['choices'] );
36
+        if ( ! empty( $field[ 'choices' ] ) ) {
37
+        	$field[ 'options' ] = $field[ 'choices' ];
38
+        	unset( $field[ 'choices' ] );
39 39
         }
40 40
 
41
-        $this->field =  wp_parse_args( $field, $defaults );
41
+        $this->field = wp_parse_args( $field, $defaults );
42 42
 
43
-        $this->value = is_null( $curr_value ) ? $this->field['value'] : $curr_value;
43
+        $this->value = is_null( $curr_value ) ? $this->field[ 'value' ] : $curr_value;
44 44
 
45 45
     }
46 46
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
 
81 81
     function get_tooltip() {
82
-        if( ! function_exists('gform_tooltip') ) {
82
+        if ( ! function_exists( 'gform_tooltip' ) ) {
83 83
             return null;
84 84
         }
85 85
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	    	'url' => '#',
90 90
 	    ) );
91 91
 
92
-        return !empty( $this->field['tooltip'] ) ? ' '. $this->tooltip( $this->field['tooltip'], false, true, $article ) : null;
92
+        return ! empty( $this->field[ 'tooltip' ] ) ? ' ' . $this->tooltip( $this->field[ 'tooltip' ], false, true, $article ) : null;
93 93
     }
94 94
 
95 95
     /**
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 	     * Below this line has been modified by GravityView.
133 133
 	     */
134 134
 
135
-		if ( empty( $tooltip_text ) && empty( $article['id'] ) ) {
135
+		if ( empty( $tooltip_text ) && empty( $article[ 'id' ] ) ) {
136 136
 			return '';
137 137
 		}
138 138
 
@@ -168,8 +168,8 @@  discard block
 block discarded – undo
168 168
      * @return string
169 169
      */
170 170
     function get_field_id() {
171
-        if( isset( $this->field['id'] ) ) {
172
-            return esc_attr( $this->field['id'] );
171
+        if ( isset( $this->field[ 'id' ] ) ) {
172
+            return esc_attr( $this->field[ 'id' ] );
173 173
         }
174 174
         return esc_attr( sanitize_html_class( $this->name ) );
175 175
     }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      * @return string
180 180
      */
181 181
     function get_field_label() {
182
-        return esc_html( trim( $this->field['label'] ) );
182
+        return esc_html( trim( $this->field[ 'label' ] ) );
183 183
     }
184 184
 
185 185
 	/**
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 	 * @return string
191 191
 	 */
192 192
 	function get_field_left_label() {
193
-		return ! empty( $this->field['left_label'] ) ? esc_html( trim( $this->field['left_label'] ) ) : NULL;
193
+		return ! empty( $this->field[ 'left_label' ] ) ? esc_html( trim( $this->field[ 'left_label' ] ) ) : NULL;
194 194
 	}
195 195
 
196 196
     /**
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      * @return string
199 199
      */
200 200
     function get_label_class() {
201
-        return 'gv-label-'. sanitize_html_class( $this->field['type'] );
201
+        return 'gv-label-' . sanitize_html_class( $this->field[ 'type' ] );
202 202
     }
203 203
 
204 204
 
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      * @return string
208 208
      */
209 209
     function get_field_desc() {
210
-        return !empty( $this->field['desc'] ) ? '<span class="howto">'. $this->field['desc'] .'</span>' : '';
210
+        return ! empty( $this->field[ 'desc' ] ) ? '<span class="howto">' . $this->field[ 'desc' ] . '</span>' : '';
211 211
     }
212 212
 
213 213
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      */
241 241
     function render_setting( $override_input = NULL ) {
242 242
 
243
-        if( !empty( $this->field['full_width'] ) ) { ?>
243
+        if ( ! empty( $this->field[ 'full_width' ] ) ) { ?>
244 244
             <th scope="row" colspan="2">
245 245
                 <div>
246 246
                     <label for="<?php echo $this->get_field_id(); ?>">
Please login to merge, or discard this patch.
Indentation   +176 added lines, -176 removed lines patch added patch discarded remove patch
@@ -10,107 +10,107 @@  discard block
 block discarded – undo
10 10
 	 *
11 11
 	 * @var string
12 12
 	 */
13
-    protected $name;
13
+	protected $name;
14 14
 
15 15
 	/**
16 16
 	 * Field settings
17 17
 	 *
18 18
 	 * @var array
19 19
 	 */
20
-    protected $field;
20
+	protected $field;
21 21
 
22 22
 	/**
23 23
 	 * Field current value
24 24
 	 *
25 25
 	 * @var mixed
26 26
 	 */
27
-    protected $value;
28
-
29
-    function __construct( $name = '', $field = array(), $curr_value = NULL ) {
30
-
31
-        $this->name = $name;
32
-
33
-        $defaults = self::get_field_defaults();
34
-
35
-        // Backward compatibility
36
-        if( !empty( $field['choices'] ) ) {
37
-        	$field['options'] = $field['choices'];
38
-        	unset( $field['choices'] );
39
-        }
40
-
41
-        $this->field =  wp_parse_args( $field, $defaults );
42
-
43
-        $this->value = is_null( $curr_value ) ? $this->field['value'] : $curr_value;
44
-
45
-    }
46
-
47
-    /**
48
-     * Returns the default details for a field option
49
-     *
50
-     * - default    // default option value, in case nothing is defined (@deprecated)
51
-     * - desc       // option description
52
-     * - value      // the option default value
53
-     * - label      // the option label
54
-     * - left_label // In case of checkboxes, left label will appear on the left of the checkbox
55
-     * - id         // the field id
56
-     * - type       // the option type ( text, checkbox, select, ... )
57
-     * - options    // when type is select, define the select options ('choices' is @deprecated)
58
-     * - merge_tags // if the option supports merge tags feature
59
-     * - class      // (new) define extra classes for the field
60
-     * - tooltip    //
61
-     *
62
-     * @return array
63
-     */
64
-    public static function get_field_defaults() {
65
-        return array(
66
-            'desc' => '',
67
-            'value' => null,
68
-            'label' => '',
69
-            'left_label' => null,
70
-            'id' => null,
71
-            'type'  => 'text',
72
-            'options' => null,
73
-            'merge_tags' => true,
74
-            'class' => '',
75
-            'tooltip' => null,
76
-            'requires' => null
77
-        );
78
-    }
79
-
80
-
81
-    function get_tooltip() {
82
-        if( ! function_exists('gform_tooltip') ) {
83
-            return null;
84
-        }
85
-
86
-	    $article = wp_parse_args( \GV\Utils::get( $this->field, 'article', array() ), array(
87
-	    	'id' => '',
88
-	    	'type' => 'modal',
89
-	    	'url' => '#',
90
-	    ) );
91
-
92
-        return !empty( $this->field['tooltip'] ) ? ' '. $this->tooltip( $this->field['tooltip'], false, true, $article ) : null;
93
-    }
94
-
95
-    /**
96
-     * Displays the tooltip
97
-     *
98
-     * @since 2.8.1
99
-     *
100
-     * @global $__gf_tooltips
101
-     *
102
-     * @param string $name      The name of the tooltip to be displayed
103
-     * @param string $css_class Optional. The CSS class to apply toi the element. Defaults to empty string.
104
-     * @param bool   $return    Optional. If the tooltip should be returned instead of output. Defaults to false (output)
105
-     * @param array  $article   Optional. Details about support doc article connected to the tooltip. {
106
-     *   @type string $id   Unique ID of article for Beacon API
107
-     *   @type string $url  URL of support doc article
108
-     *   @type string $type Type of Beacon element to open. {@see https://developer.helpscout.com/beacon-2/web/javascript-api/#beaconarticle}
109
-     * }
110
-     *
111
-     * @return string
112
-     */
113
-    function tooltip( $name, $css_class = '', $return = false, $article = array() ) {
27
+	protected $value;
28
+
29
+	function __construct( $name = '', $field = array(), $curr_value = NULL ) {
30
+
31
+		$this->name = $name;
32
+
33
+		$defaults = self::get_field_defaults();
34
+
35
+		// Backward compatibility
36
+		if( !empty( $field['choices'] ) ) {
37
+			$field['options'] = $field['choices'];
38
+			unset( $field['choices'] );
39
+		}
40
+
41
+		$this->field =  wp_parse_args( $field, $defaults );
42
+
43
+		$this->value = is_null( $curr_value ) ? $this->field['value'] : $curr_value;
44
+
45
+	}
46
+
47
+	/**
48
+	 * Returns the default details for a field option
49
+	 *
50
+	 * - default    // default option value, in case nothing is defined (@deprecated)
51
+	 * - desc       // option description
52
+	 * - value      // the option default value
53
+	 * - label      // the option label
54
+	 * - left_label // In case of checkboxes, left label will appear on the left of the checkbox
55
+	 * - id         // the field id
56
+	 * - type       // the option type ( text, checkbox, select, ... )
57
+	 * - options    // when type is select, define the select options ('choices' is @deprecated)
58
+	 * - merge_tags // if the option supports merge tags feature
59
+	 * - class      // (new) define extra classes for the field
60
+	 * - tooltip    //
61
+	 *
62
+	 * @return array
63
+	 */
64
+	public static function get_field_defaults() {
65
+		return array(
66
+			'desc' => '',
67
+			'value' => null,
68
+			'label' => '',
69
+			'left_label' => null,
70
+			'id' => null,
71
+			'type'  => 'text',
72
+			'options' => null,
73
+			'merge_tags' => true,
74
+			'class' => '',
75
+			'tooltip' => null,
76
+			'requires' => null
77
+		);
78
+	}
79
+
80
+
81
+	function get_tooltip() {
82
+		if( ! function_exists('gform_tooltip') ) {
83
+			return null;
84
+		}
85
+
86
+		$article = wp_parse_args( \GV\Utils::get( $this->field, 'article', array() ), array(
87
+			'id' => '',
88
+			'type' => 'modal',
89
+			'url' => '#',
90
+		) );
91
+
92
+		return !empty( $this->field['tooltip'] ) ? ' '. $this->tooltip( $this->field['tooltip'], false, true, $article ) : null;
93
+	}
94
+
95
+	/**
96
+	 * Displays the tooltip
97
+	 *
98
+	 * @since 2.8.1
99
+	 *
100
+	 * @global $__gf_tooltips
101
+	 *
102
+	 * @param string $name      The name of the tooltip to be displayed
103
+	 * @param string $css_class Optional. The CSS class to apply toi the element. Defaults to empty string.
104
+	 * @param bool   $return    Optional. If the tooltip should be returned instead of output. Defaults to false (output)
105
+	 * @param array  $article   Optional. Details about support doc article connected to the tooltip. {
106
+	 *   @type string $id   Unique ID of article for Beacon API
107
+	 *   @type string $url  URL of support doc article
108
+	 *   @type string $type Type of Beacon element to open. {@see https://developer.helpscout.com/beacon-2/web/javascript-api/#beaconarticle}
109
+	 * }
110
+	 *
111
+	 * @return string
112
+	 */
113
+	function tooltip( $name, $css_class = '', $return = false, $article = array() ) {
114 114
 		global $__gf_tooltips; //declared as global to improve WPML performance
115 115
 
116 116
 		$css_class = empty( $css_class ) ? 'tooltip' : $css_class;
@@ -128,17 +128,17 @@  discard block
 block discarded – undo
128 128
 		$tooltip_class = isset( $__gf_tooltips[ $name ] ) ? "tooltip_{$name}" : '';
129 129
 		$tooltip_class = esc_attr( $tooltip_class );
130 130
 
131
-	    /**
132
-	     * Below this line has been modified by GravityView.
133
-	     */
131
+		/**
132
+		 * Below this line has been modified by GravityView.
133
+		 */
134 134
 
135 135
 		if ( empty( $tooltip_text ) && empty( $article['id'] ) ) {
136 136
 			return '';
137 137
 		}
138 138
 
139 139
 		$url = '#';
140
-	    $atts = 'onclick="return false;" onkeypress="return false;"';
141
-	    $anchor_text = '<i class=\'fa fa-question-circle\'></i>';
140
+		$atts = 'onclick="return false;" onkeypress="return false;"';
141
+		$anchor_text = '<i class=\'fa fa-question-circle\'></i>';
142 142
 		$css_class = gravityview_sanitize_html_class( 'gf_tooltip ' . $css_class . ' ' . $tooltip_class );
143 143
 
144 144
 		$tooltip = sprintf( '<a href="%s" %s class="%s" title="%s" role="button">%s</a>',
@@ -149,11 +149,11 @@  discard block
 block discarded – undo
149 149
 			$anchor_text
150 150
 		);
151 151
 
152
-	    /**
153
-	     * Modify the tooltip HTML before outputting
154
-	     * @internal
155
-	     * @see GravityView_Support_Port::maybe_add_article_to_tooltip()
156
-	     */
152
+		/**
153
+		 * Modify the tooltip HTML before outputting
154
+		 * @internal
155
+		 * @see GravityView_Support_Port::maybe_add_article_to_tooltip()
156
+		 */
157 157
 		$tooltip = apply_filters( 'gravityview/tooltips/tooltip', $tooltip, $article, $url, $atts, $css_class, $tooltip_text, $anchor_text );
158 158
 
159 159
 		if ( ! $return ) {
@@ -163,84 +163,84 @@  discard block
 block discarded – undo
163 163
 		return $tooltip;
164 164
 	}
165 165
 
166
-    /**
167
-     * Build input id based on the name
168
-     * @return string
169
-     */
170
-    function get_field_id() {
171
-        if( isset( $this->field['id'] ) ) {
172
-            return esc_attr( $this->field['id'] );
173
-        }
174
-        return esc_attr( sanitize_html_class( $this->name ) );
175
-    }
176
-
177
-    /**
178
-     * Retrieve field label
179
-     * @return string
180
-     */
181
-    function get_field_label() {
182
-        return esc_html( trim( $this->field['label'] ) );
183
-    }
166
+	/**
167
+	 * Build input id based on the name
168
+	 * @return string
169
+	 */
170
+	function get_field_id() {
171
+		if( isset( $this->field['id'] ) ) {
172
+			return esc_attr( $this->field['id'] );
173
+		}
174
+		return esc_attr( sanitize_html_class( $this->name ) );
175
+	}
176
+
177
+	/**
178
+	 * Retrieve field label
179
+	 * @return string
180
+	 */
181
+	function get_field_label() {
182
+		return esc_html( trim( $this->field['label'] ) );
183
+	}
184 184
 
185 185
 	/**
186 186
 	 * Retrieve field left label
187
-     *
188
-     * @since 1.7
189
-     *
187
+	 *
188
+	 * @since 1.7
189
+	 *
190 190
 	 * @return string
191 191
 	 */
192 192
 	function get_field_left_label() {
193 193
 		return ! empty( $this->field['left_label'] ) ? esc_html( trim( $this->field['left_label'] ) ) : NULL;
194 194
 	}
195 195
 
196
-    /**
197
-     * Retrieve field label class
198
-     * @return string
199
-     */
200
-    function get_label_class() {
201
-        return 'gv-label-'. sanitize_html_class( $this->field['type'] );
202
-    }
203
-
204
-
205
-    /**
206
-     * Retrieve field description
207
-     * @return string
208
-     */
209
-    function get_field_desc() {
210
-        return !empty( $this->field['desc'] ) ? '<span class="howto">'. $this->field['desc'] .'</span>' : '';
211
-    }
212
-
213
-
214
-    /**
215
-     * Verify if field should have merge tags
216
-     * @return boolean
217
-     */
218
-    function show_merge_tags() {
219
-        // Show the merge tags if the field is a list view
220
-        $is_list = preg_match( '/_list-/ism', $this->name );
221
-        // Or is a single entry view
222
-        $is_single = preg_match( '/single_/ism', $this->name );
223
-
224
-        return ( $is_single || $is_list );
225
-    }
226
-
227
-
228
-
229
-    /**
230
-     * important! Override this class
231
-     * outputs the field option html
232
-     */
233
-    function render_option() {
234
-        // to replace on each field
235
-    }
236
-
237
-    /**
238
-     * important! Override this class if needed
239
-     * outputs the field setting html
240
-     */
241
-    function render_setting( $override_input = NULL ) {
242
-
243
-        if( !empty( $this->field['full_width'] ) ) { ?>
196
+	/**
197
+	 * Retrieve field label class
198
+	 * @return string
199
+	 */
200
+	function get_label_class() {
201
+		return 'gv-label-'. sanitize_html_class( $this->field['type'] );
202
+	}
203
+
204
+
205
+	/**
206
+	 * Retrieve field description
207
+	 * @return string
208
+	 */
209
+	function get_field_desc() {
210
+		return !empty( $this->field['desc'] ) ? '<span class="howto">'. $this->field['desc'] .'</span>' : '';
211
+	}
212
+
213
+
214
+	/**
215
+	 * Verify if field should have merge tags
216
+	 * @return boolean
217
+	 */
218
+	function show_merge_tags() {
219
+		// Show the merge tags if the field is a list view
220
+		$is_list = preg_match( '/_list-/ism', $this->name );
221
+		// Or is a single entry view
222
+		$is_single = preg_match( '/single_/ism', $this->name );
223
+
224
+		return ( $is_single || $is_list );
225
+	}
226
+
227
+
228
+
229
+	/**
230
+	 * important! Override this class
231
+	 * outputs the field option html
232
+	 */
233
+	function render_option() {
234
+		// to replace on each field
235
+	}
236
+
237
+	/**
238
+	 * important! Override this class if needed
239
+	 * outputs the field setting html
240
+	 */
241
+	function render_setting( $override_input = NULL ) {
242
+
243
+		if( !empty( $this->field['full_width'] ) ) { ?>
244 244
             <th scope="row" colspan="2">
245 245
                 <div>
246 246
                     <label for="<?php echo $this->get_field_id(); ?>">
@@ -260,14 +260,14 @@  discard block
 block discarded – undo
260 260
             </td>
261 261
         <?php }
262 262
 
263
-    }
263
+	}
264 264
 
265
-    /**
266
-     * important! Override this class
267
-     * outputs the input html part
268
-     */
269
-    function render_input( $override_input ) {
270
-        echo '';
271
-    }
265
+	/**
266
+	 * important! Override this class
267
+	 * outputs the input html part
268
+	 */
269
+	function render_input( $override_input ) {
270
+		echo '';
271
+	}
272 272
 
273 273
 }
Please login to merge, or discard this patch.
future/includes/class-gv-utils.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 		 * Try subkeys after split.
92 92
 		 */
93 93
 		if ( count( $parts = explode( '/', $key, 2 ) ) > 1 ) {
94
-			return self::get( self::get( $array, $parts[0] ), $parts[1], $default );
94
+			return self::get( self::get( $array, $parts[ 0 ] ), $parts[ 1 ], $default );
95 95
 		}
96 96
 
97 97
 		return $default;
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 	public static function gf_query_debug( $query ) {
146 146
 		$introspect = $query->_introspect();
147 147
 		return array(
148
-			'where' => $query->_where_unwrap( $introspect['where'] )
148
+			'where' => $query->_where_unwrap( $introspect[ 'where' ] )
149 149
 		);
150 150
 	}
151 151
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 		if ( $condition->expressions ) {
159 159
 			$conditions = array();
160 160
 			foreach ( $condition->expressions as $expression ) {
161
-				$conditions[] = self::gf_query_strip_condition_column_aliases( $expression );
161
+				$conditions[ ] = self::gf_query_strip_condition_column_aliases( $expression );
162 162
 			}
163 163
 			return call_user_func_array(
164 164
 				array( '\GF_Query_Condition', $condition->operator == 'AND' ? '_and' : '_or' ),
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field-date-updated.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
 	 */
48 48
 	public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) {
49 49
 
50
-		if( 'edit' === $context ) {
50
+		if ( 'edit' === $context ) {
51 51
 			return $field_options;
52 52
 		}
53 53
 
54
-		$this->add_field_support('date_display', $field_options );
54
+		$this->add_field_support( 'date_display', $field_options );
55 55
 
56 56
 		return $field_options;
57 57
 	}
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
 	public function get_content( $output = '', $entry = array(), $field_settings = array(), $field = array() ) {
72 72
 
73 73
 		/** Overridden by a template. */
74
-		if( \GV\Utils::get( $field, 'field_path' ) !== gravityview()->plugin->dir( 'templates/fields/field-html.php' ) ) {
74
+		if ( \GV\Utils::get( $field, 'field_path' ) !== gravityview()->plugin->dir( 'templates/fields/field-html.php' ) ) {
75 75
 			return $output;
76 76
 		}
77 77
 
78
-		return GVCommon::format_date( $field['value'], 'format=' . \GV\Utils::get( $field_settings, 'date_display' ) );
78
+		return GVCommon::format_date( $field[ 'value' ], 'format=' . \GV\Utils::get( $field_settings, 'date_display' ) );
79 79
 	}
80 80
 }
81 81
 
Please login to merge, or discard this patch.
includes/extensions/lightbox/class-gravityview-lightbox.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 	 */
39 39
 	public function set_provider( $provider = null ) {
40 40
 
41
-		if( gravityview()->request->is_admin() ) {
41
+		if ( gravityview()->request->is_admin() ) {
42 42
 			return;
43 43
 		}
44 44
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 		}
58 58
 
59 59
 		// We're switching providers; remove the hooks that were added.
60
-		if( self::$active_provider ) {
60
+		if ( self::$active_provider ) {
61 61
 			self::$active_provider->remove_hooks();
62 62
 		}
63 63
 
Please login to merge, or discard this patch.