Completed
Push — master ( ebef7a...94d09a )
by Zack
20:55 queued 16:56
created
includes/class-admin-welcome.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -34,10 +34,10 @@  discard block
 block discarded – undo
34 34
 	 * @since 1.0
35 35
 	 */
36 36
 	public function __construct() {
37
-		add_action( 'admin_menu', array( $this, 'admin_menus'), 200 );
37
+		add_action( 'admin_menu', array( $this, 'admin_menus' ), 200 );
38 38
 		add_action( 'admin_head', array( $this, 'admin_head' ) );
39
-		add_action( 'admin_init', array( $this, 'welcome'    ) );
40
-		add_filter( 'gravityview_is_admin_page', array( $this, 'is_dashboard_page'), 10, 2 );
39
+		add_action( 'admin_init', array( $this, 'welcome' ) );
40
+		add_filter( 'gravityview_is_admin_page', array( $this, 'is_dashboard_page' ), 10, 2 );
41 41
 	}
42 42
 
43 43
 	/**
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
 		// Add help page to GravityView menu
54 54
 		add_submenu_page(
55 55
 			'edit.php?post_type=gravityview',
56
-			__('GravityView: Getting Started', 'gravityview'),
57
-			__('Getting Started', 'gravityview'),
56
+			__( 'GravityView: Getting Started', 'gravityview' ),
57
+			__( 'Getting Started', 'gravityview' ),
58 58
 			$this->minimum_capability,
59 59
 			'gv-getting-started',
60 60
 			array( $this, 'getting_started_screen' )
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
 	 *
88 88
 	 * @return boolean  $is_page   True: yep; false: nope
89 89
 	 */
90
-	public function is_dashboard_page($is_page = false, $hook = NULL) {
90
+	public function is_dashboard_page( $is_page = false, $hook = NULL ) {
91 91
 		global $plugin_page;
92 92
 
93
-		if($is_page) { return $is_page; }
93
+		if ( $is_page ) { return $is_page; }
94 94
 
95 95
 		return in_array( $plugin_page, array( 'gv-about', 'gv-credits', 'gv-getting-started' ) );
96 96
 	}
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 		remove_submenu_page( 'edit.php?post_type=gravityview', 'gv-credits' );
109 109
 		remove_submenu_page( 'edit.php?post_type=gravityview', 'gv-changelog' );
110 110
 
111
-		if( !$this->is_dashboard_page() ) { return; }
111
+		if ( ! $this->is_dashboard_page() ) { return; }
112 112
 
113 113
 		?>
114 114
 		<style type="text/css" media="screen">
@@ -141,20 +141,20 @@  discard block
 block discarded – undo
141 141
 		// Don't fetch -beta, etc.
142 142
 		list( $display_version ) = explode( '-', GravityView_Plugin::version );
143 143
 
144
-		$selected = !empty( $plugin_page ) ? $plugin_page : 'gv-getting-started';
144
+		$selected = ! empty( $plugin_page ) ? $plugin_page : 'gv-getting-started';
145 145
 		?>
146 146
 
147 147
 		<h1><img class="alignleft" src="<?php echo plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ); ?>" width="100" height="132" /><?php printf( esc_html__( 'Welcome to GravityView %s', 'gravityview' ), $display_version ); ?></h1>
148 148
 		<div class="about-text"><?php esc_html_e( 'Thank you for installing GravityView. Beautifully display your Gravity Forms entries.', 'gravityview' ); ?></div>
149 149
 
150 150
 		<h2 class="nav-tab-wrapper clear">
151
-			<a class="nav-tab <?php echo $selected == 'gv-getting-started' ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'gv-getting-started', 'post_type' => 'gravityview'), 'edit.php' ) ) ); ?>">
151
+			<a class="nav-tab <?php echo $selected == 'gv-getting-started' ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'gv-getting-started', 'post_type' => 'gravityview' ), 'edit.php' ) ) ); ?>">
152 152
 				<?php _e( "Getting Started", 'gravityview' ); ?>
153 153
 			</a>
154
-			<a class="nav-tab <?php echo $selected == 'gv-changelog' ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'gv-changelog', 'post_type' => 'gravityview'), 'edit.php' ) ) ); ?>">
154
+			<a class="nav-tab <?php echo $selected == 'gv-changelog' ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'gv-changelog', 'post_type' => 'gravityview' ), 'edit.php' ) ) ); ?>">
155 155
 				<?php _e( "List of Changes", 'gravityview' ); ?>
156 156
 			</a>
157
-			<a class="nav-tab <?php echo $selected == 'gv-credits' ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'gv-credits', 'post_type' => 'gravityview'), 'edit.php' ) ) ); ?>">
157
+			<a class="nav-tab <?php echo $selected == 'gv-credits' ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'gv-credits', 'post_type' => 'gravityview' ), 'edit.php' ) ) ); ?>">
158 158
 				<?php _e( 'Credits', 'gravityview' ); ?>
159 159
 			</a>
160 160
 		</h2>
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 					<h2>Create a View</h2>
191 191
 
192 192
 					<ol class="ol-decimal">
193
-						<li>Go to <a href="<?php echo admin_url('post-new.php?post_type=gravityview'); ?>">Views &gt; New View</a></li>
193
+						<li>Go to <a href="<?php echo admin_url( 'post-new.php?post_type=gravityview' ); ?>">Views &gt; New View</a></li>
194 194
 						<li>If you want to <strong>create a new form</strong>, click the "Start Fresh" button</li>
195 195
 						<li>If you want to <strong>use an existing form&rsquo;s entries</strong>, select from the dropdown.</li>
196 196
 						<li>Select the type of View you would like to create. There are two core types of Views: <strong>Table</strong> and <strong>Listing</strong>.
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
 					</ul>
526 526
 
527 527
 					<h4><?php esc_attr_e( 'Want to contribute?', 'gravityview' ); ?></h4>
528
-					<p><?php echo sprintf( esc_attr__( 'If you want to contribute to the code, %syou can on Github%s. If your contributions are accepted, you will be thanked here.', 'gravityview'), '<a href="https://github.com/katzwebservices/GravityView">', '</a>' ); ?></p>
528
+					<p><?php echo sprintf( esc_attr__( 'If you want to contribute to the code, %syou can on Github%s. If your contributions are accepted, you will be thanked here.', 'gravityview' ), '<a href="https://github.com/katzwebservices/GravityView">', '</a>' ); ?></p>
529 529
 				</div>
530 530
 			</div>
531 531
 
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
 		global $plugin_page;
566 566
 
567 567
 		// Bail if we're just editing the plugin
568
-		if( $plugin_page === 'plugin-editor.php' ) { return; }
568
+		if ( $plugin_page === 'plugin-editor.php' ) { return; }
569 569
 
570 570
 		// Bail if no activation redirect
571 571
 		if ( ! get_transient( '_gv_activation_redirect' ) ) { return; }
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
 		$upgrade = get_option( 'gv_version_upgraded_from' );
577 577
 
578 578
 		// Don't do anything if they've already seen the new version info
579
-		if( $upgrade === GravityView_Plugin::version ) {
579
+		if ( $upgrade === GravityView_Plugin::version ) {
580 580
 			return;
581 581
 		}
582 582
 
@@ -584,10 +584,10 @@  discard block
 block discarded – undo
584 584
 		update_option( 'gv_version_upgraded_from', GravityView_Plugin::version );
585 585
 
586 586
 		// Bail if activating from network, or bulk
587
-		if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { return; }
587
+		if ( is_network_admin() || isset( $_GET[ 'activate-multi' ] ) ) { return; }
588 588
 
589 589
 		// First time install
590
-		if( ! $upgrade ) {
590
+		if ( ! $upgrade ) {
591 591
 			wp_safe_redirect( admin_url( 'edit.php?post_type=gravityview&page=gv-getting-started' ) ); exit;
592 592
 		}
593 593
 		// Update
Please login to merge, or discard this patch.
includes/class-cache.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 		/**
80 80
 		 * @see RGFormsModel::update_lead_property() Trigger when any entry property changes
81 81
 		 */
82
-		foreach( $this->lead_db_columns as $column ) {
82
+		foreach ( $this->lead_db_columns as $column ) {
83 83
 			add_action( 'gform_update_' . $column, array( $this, 'entry_status_changed' ), 10, 3 );
84 84
 		}
85 85
 
@@ -112,9 +112,9 @@  discard block
 block discarded – undo
112 112
 			return;
113 113
 		}
114 114
 
115
-		do_action( 'gravityview_log_debug', __METHOD__ . ' adding form ' . $entry['form_id'] . ' to blacklist because entry #' . $lead_id . ' was deleted', array( 'value' => $property_value, 'previous' => $previous_value ) );
115
+		do_action( 'gravityview_log_debug', __METHOD__ . ' adding form ' . $entry[ 'form_id' ] . ' to blacklist because entry #' . $lead_id . ' was deleted', array( 'value' => $property_value, 'previous' => $previous_value ) );
116 116
 		
117
-		$this->blacklist_add( $entry['form_id'] );
117
+		$this->blacklist_add( $entry[ 'form_id' ] );
118 118
 	}
119 119
 
120 120
 	/**
@@ -127,9 +127,9 @@  discard block
 block discarded – undo
127 127
 	 */
128 128
 	public function entry_updated( $form, $lead_id ) {
129 129
 
130
-		do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_updated] adding form ' . $form['id'] . ' to blacklist because entry #' . $lead_id . ' was updated' );
130
+		do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_updated] adding form ' . $form[ 'id' ] . ' to blacklist because entry #' . $lead_id . ' was updated' );
131 131
 
132
-		$this->blacklist_add( $form['id'] );
132
+		$this->blacklist_add( $form[ 'id' ] );
133 133
 	}
134 134
 
135 135
 	/**
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
 	 */
145 145
 	public function entry_created( $entry, $form ) {
146 146
 
147
-		do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_created] adding form ' . $form['id'] . ' to blacklist because entry #' . $entry['id'] . ' was created' );
147
+		do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_created] adding form ' . $form[ 'id' ] . ' to blacklist because entry #' . $entry[ 'id' ] . ' was created' );
148 148
 
149
-		$this->blacklist_add( $form['id'] );
149
+		$this->blacklist_add( $form[ 'id' ] );
150 150
 	}
151 151
 
152 152
 	/**
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 		// Normally just one form, but supports multiple forms
166 166
 		//
167 167
 		// Array of IDs 12, 5, 14 would result in `f-12f-5f-14`
168
-		$forms = 'f:' . implode( '&f:', (array) $form_ids );
168
+		$forms = 'f:' . implode( '&f:', (array)$form_ids );
169 169
 
170 170
 		// Prefix for transient keys
171 171
 		// Now the prefix would be: `gv-cache-f-12f-5f-14`
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 
243 243
 		$blacklist = get_option( self::BLACKLIST_OPTION_NAME, array() );
244 244
 
245
-		$updated_list = array_diff( $blacklist, (array) $form_ids );
245
+		$updated_list = array_diff( $blacklist, (array)$form_ids );
246 246
 
247 247
 		do_action( 'gravityview_log_debug', 'GravityView_Cache[blacklist_remove] Removing form IDs from cache blacklist', array(
248 248
 			'$form_ids'     => $form_ids,
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 			return false;
276 276
 		}
277 277
 
278
-		foreach ( (array) $form_ids as $form_id ) {
278
+		foreach ( (array)$form_ids as $form_id ) {
279 279
 
280 280
 			if ( in_array( $form_id, $blacklist ) ) {
281 281
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 			 * @filter `gravityview_cache_time_{$filter_name}` Modify the cache time for a type of cache
348 348
 			 * @param int $time_in_seconds Default: `DAY_IN_SECONDS`
349 349
 			 */
350
-			$cache_time = (int) apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS );
350
+			$cache_time = (int)apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS );
351 351
 
352 352
 			do_action( 'gravityview_log_debug', 'GravityView_Cache[set] Setting cache with transient key ' . $this->key . ' for ' . $cache_time . ' seconds' );
353 353
 
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
 			return;
384 384
 		}
385 385
 
386
-		foreach ( (array) $form_ids as $form_id ) {
386
+		foreach ( (array)$form_ids as $form_id ) {
387 387
 
388 388
 			$key = $this->get_cache_key_prefix( $form_id );
389 389
 
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
 
498 498
 		if ( GVCommon::has_cap( 'edit_gravityviews' ) ) {
499 499
 
500
-			if ( isset( $_GET['cache'] ) || isset( $_GET['nocache'] ) ) {
500
+			if ( isset( $_GET[ 'cache' ] ) || isset( $_GET[ 'nocache' ] ) ) {
501 501
 
502 502
 				do_action( 'gravityview_log_debug', 'GravityView_Cache[use_cache] Not using cache: ?cache or ?nocache is in the URL' );
503 503
 
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
 		 */
527 527
 		$use_cache = apply_filters( 'gravityview_use_cache', $use_cache, $this );
528 528
 
529
-		return (boolean) $use_cache;
529
+		return (boolean)$use_cache;
530 530
 	}
531 531
 
532 532
 }
Please login to merge, or discard this patch.
includes/class-data.php 1 patch
Spacing   +113 added lines, -113 removed lines patch added patch discarded remove patch
@@ -17,11 +17,11 @@  discard block
 block discarded – undo
17 17
 	 */
18 18
 	private function __construct( $passed_post = NULL ) {
19 19
 
20
-		if( !empty( $passed_post ) ) {
20
+		if ( ! empty( $passed_post ) ) {
21 21
 
22 22
 			$id_or_id_array = $this->maybe_get_view_id( $passed_post );
23 23
 
24
-			if( !empty( $id_or_id_array ) ) {
24
+			if ( ! empty( $id_or_id_array ) ) {
25 25
 				$this->add_view( $id_or_id_array );
26 26
 			}
27 27
 		}
@@ -56,33 +56,33 @@  discard block
 block discarded – undo
56 56
 
57 57
 		$ids = array();
58 58
 
59
-		if( ! empty( $passed_post ) ) {
59
+		if ( ! empty( $passed_post ) ) {
60 60
 
61
-			if( is_numeric( $passed_post ) ) {
61
+			if ( is_numeric( $passed_post ) ) {
62 62
 				$passed_post = get_post( $passed_post );
63 63
 			}
64 64
 
65 65
 			// Convert WP_Posts into WP_Posts[] array
66
-			if( $passed_post instanceof WP_Post ) {
66
+			if ( $passed_post instanceof WP_Post ) {
67 67
 				$passed_post = array( $passed_post );
68 68
 			}
69 69
 
70
-			if( is_array( $passed_post ) ) {
70
+			if ( is_array( $passed_post ) ) {
71 71
 
72
-				foreach ( $passed_post as &$post) {
73
-					if( ( get_post_type( $post ) === 'gravityview' ) ) {
74
-						$ids[] = $post->ID;
75
-					} else{
72
+				foreach ( $passed_post as &$post ) {
73
+					if ( ( get_post_type( $post ) === 'gravityview' ) ) {
74
+						$ids[ ] = $post->ID;
75
+					} else {
76 76
 						// Parse the Post Content
77 77
 						$id = $this->parse_post_content( $post->post_content );
78
-						if( $id ) {
79
-							$ids = array_merge( $ids, (array) $id );
78
+						if ( $id ) {
79
+							$ids = array_merge( $ids, (array)$id );
80 80
 						}
81 81
 
82 82
 						// Parse the Post Meta
83 83
 						$id = $this->parse_post_meta( $post->ID );
84
-						if( $id ) {
85
-							$ids = array_merge( $ids, (array) $id );
84
+						if ( $id ) {
85
+							$ids = array_merge( $ids, (array)$id );
86 86
 						}
87 87
 					}
88 88
 
@@ -93,24 +93,24 @@  discard block
 block discarded – undo
93 93
 				if ( is_string( $passed_post ) ) {
94 94
 
95 95
 					$id = $this->parse_post_content( $passed_post );
96
-					if( $id ) {
97
-						$ids = array_merge( $ids, (array) $id );
96
+					if ( $id ) {
97
+						$ids = array_merge( $ids, (array)$id );
98 98
 					}
99 99
 
100 100
 				} else {
101 101
 					$id = $this->get_id_from_atts( $passed_post );
102
-					$ids[] = intval( $id );
102
+					$ids[ ] = intval( $id );
103 103
 				}
104 104
 			}
105 105
 		}
106 106
 
107
-		if( empty($ids) ) {
107
+		if ( empty( $ids ) ) {
108 108
 			return NULL;
109 109
 		}
110 110
 
111 111
 		// If it's just one ID, return that.
112 112
 		// Otherwise, return array of IDs
113
-		return ( sizeof( $ids ) === 1 ) ? $ids[0] : $ids;
113
+		return ( sizeof( $ids ) === 1 ) ? $ids[ 0 ] : $ids;
114 114
 	}
115 115
 
116 116
 	/**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	 */
119 119
 	public static function getInstance( $passed_post = NULL ) {
120 120
 
121
-		if( empty( self::$instance ) ) {
121
+		if ( empty( self::$instance ) ) {
122 122
 			self::$instance = new GravityView_View_Data( $passed_post );
123 123
 		}
124 124
 
@@ -131,19 +131,19 @@  discard block
 block discarded – undo
131 131
 
132 132
 	function get_view( $view_id, $atts = NULL ) {
133 133
 
134
-		if( ! is_numeric( $view_id) ) {
135
-			do_action('gravityview_log_error', sprintf('GravityView_View_Data[get_view] $view_id passed is not numeric.', $view_id) );
134
+		if ( ! is_numeric( $view_id ) ) {
135
+			do_action( 'gravityview_log_error', sprintf( 'GravityView_View_Data[get_view] $view_id passed is not numeric.', $view_id ) );
136 136
 			return false;
137 137
 		}
138 138
 
139 139
 		// Backup: the view hasn't been fetched yet. Doing it now.
140 140
 		if ( ! isset( $this->views[ $view_id ] ) ) {
141
-			do_action('gravityview_log_debug', sprintf('GravityView_View_Data[get_view] View #%s not set yet.', $view_id) );
141
+			do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[get_view] View #%s not set yet.', $view_id ) );
142 142
 			return $this->add_view( $view_id, $atts );
143 143
 		}
144 144
 
145 145
 		if ( empty( $this->views[ $view_id ] ) ) {
146
-			do_action('gravityview_log_debug', sprintf('GravityView_View_Data[get_view] Returning; View #%s was empty.', $view_id) );
146
+			do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[get_view] Returning; View #%s was empty.', $view_id ) );
147 147
 			return false;
148 148
 		}
149 149
 
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
 	function add_view( $view_id, $atts = NULL ) {
175 175
 
176 176
 		// Handle array of IDs
177
-		if( is_array( $view_id ) ) {
178
-			foreach( $view_id as $id ) {
177
+		if ( is_array( $view_id ) ) {
178
+			foreach ( $view_id as $id ) {
179 179
 
180 180
 				$this->add_view( $id, $atts );
181 181
 			}
@@ -184,21 +184,21 @@  discard block
 block discarded – undo
184 184
 		}
185 185
 
186 186
 		// The view has been set already; returning stored view.
187
-		if ( !empty( $this->views[ $view_id ] ) ) {
188
-			do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] Returning; View #%s already exists.', $view_id) );
187
+		if ( ! empty( $this->views[ $view_id ] ) ) {
188
+			do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[add_view] Returning; View #%s already exists.', $view_id ) );
189 189
 			return $this->views[ $view_id ];
190 190
 		}
191 191
 
192
-		if( ! $this->view_exists( $view_id ) ) {
193
-			do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] Returning; View #%s does not exist.', $view_id) );
192
+		if ( ! $this->view_exists( $view_id ) ) {
193
+			do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[add_view] Returning; View #%s does not exist.', $view_id ) );
194 194
 			return false;
195 195
 		}
196 196
 
197 197
 		$form_id = gravityview_get_form_id( $view_id );
198 198
 
199
-		if( empty( $form_id ) ) {
199
+		if ( empty( $form_id ) ) {
200 200
 
201
-			do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] Returning; Post ID #%s does not have a connected form.', $view_id) );
201
+			do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[add_view] Returning; Post ID #%s does not have a connected form.', $view_id ) );
202 202
 
203 203
 			return false;
204 204
 		}
@@ -206,21 +206,21 @@  discard block
 block discarded – undo
206 206
 		// Get the settings for the View ID
207 207
 		$view_settings = gravityview_get_template_settings( $view_id );
208 208
 
209
-		do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] Settings pulled in from View #%s', $view_id), $view_settings );
209
+		do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[add_view] Settings pulled in from View #%s', $view_id ), $view_settings );
210 210
 
211 211
 		// Merge the view settings with the defaults
212 212
 		$view_defaults = wp_parse_args( $view_settings, self::get_default_args() );
213 213
 
214
-		do_action('gravityview_log_debug', 'GravityView_View_Data[add_view] View Defaults after merging View Settings with the default args.', $view_defaults );
214
+		do_action( 'gravityview_log_debug', 'GravityView_View_Data[add_view] View Defaults after merging View Settings with the default args.', $view_defaults );
215 215
 
216
-		if( ! empty( $atts ) && is_array( $atts ) ) {
216
+		if ( ! empty( $atts ) && is_array( $atts ) ) {
217 217
 
218
-			do_action('gravityview_log_debug', 'GravityView_View_Data[add_view] $atts before merging  with the $view_defaults', $atts );
218
+			do_action( 'gravityview_log_debug', 'GravityView_View_Data[add_view] $atts before merging  with the $view_defaults', $atts );
219 219
 
220 220
 			// Get the settings from the shortcode and merge them with defaults.
221 221
 			$atts = shortcode_atts( $view_defaults, $atts );
222 222
 
223
-			do_action('gravityview_log_debug', 'GravityView_View_Data[add_view] $atts after merging  with the $view_defaults', $atts );
223
+			do_action( 'gravityview_log_debug', 'GravityView_View_Data[add_view] $atts after merging  with the $view_defaults', $atts );
224 224
 
225 225
 		} else {
226 226
 
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 
230 230
 		}
231 231
 
232
-		unset( $atts['id'], $view_defaults, $view_settings );
232
+		unset( $atts[ 'id' ], $view_defaults, $view_settings );
233 233
 
234 234
 		$data = array(
235 235
 			'id' => $view_id,
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 			'form' => gravityview_get_form( $form_id ),
243 243
 		);
244 244
 
245
-		do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] View #%s being added.', $view_id), $data );
245
+		do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[add_view] View #%s being added.', $view_id ), $data );
246 246
 
247 247
 		$this->views[ $view_id ] = $data;
248 248
 
@@ -277,15 +277,15 @@  discard block
 block discarded – undo
277 277
 	 */
278 278
 	private function filter_fields( $dir_fields ) {
279 279
 
280
-		if( empty( $dir_fields ) || !is_array( $dir_fields ) ) {
280
+		if ( empty( $dir_fields ) || ! is_array( $dir_fields ) ) {
281 281
 			return $dir_fields;
282 282
 		}
283 283
 
284
-		foreach( $dir_fields as $area => $fields ) {
284
+		foreach ( $dir_fields as $area => $fields ) {
285 285
 
286
-			foreach( (array)$fields as $uniqid => $properties ) {
286
+			foreach ( (array)$fields as $uniqid => $properties ) {
287 287
 
288
-				if( $this->hide_field_check_conditions( $properties ) ) {
288
+				if ( $this->hide_field_check_conditions( $properties ) ) {
289 289
 					unset( $dir_fields[ $area ][ $uniqid ] );
290 290
 				}
291 291
 
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
 	private function hide_field_check_conditions( $properties ) {
308 308
 
309 309
 		// logged-in visibility
310
-		if( ! empty( $properties['only_loggedin'] ) && ! GVCommon::has_cap( $properties['only_loggedin_cap'] ) ) {
310
+		if ( ! empty( $properties[ 'only_loggedin' ] ) && ! GVCommon::has_cap( $properties[ 'only_loggedin_cap' ] ) ) {
311 311
 			return true;
312 312
 		}
313 313
 
@@ -321,14 +321,14 @@  discard block
 block discarded – undo
321 321
 		// Get the settings from the shortcode and merge them with defaults.
322 322
 		$atts = wp_parse_args( $atts, self::get_default_args() );
323 323
 
324
-		$view_id = ! empty( $atts['view_id'] ) ? (int)$atts['view_id'] : NULL;
324
+		$view_id = ! empty( $atts[ 'view_id' ] ) ? (int)$atts[ 'view_id' ] : NULL;
325 325
 
326
-		if( empty( $view_id ) && !empty( $atts['id'] ) ) {
327
-			$view_id = (int)$atts['id'];
326
+		if ( empty( $view_id ) && ! empty( $atts[ 'id' ] ) ) {
327
+			$view_id = (int)$atts[ 'id' ];
328 328
 		}
329 329
 
330
-		if( empty( $view_id ) ) {
331
-			do_action('gravityview_log_error', 'GravityView_View_Data[get_id_from_atts] Returning; no ID defined (Atts)', $atts );
330
+		if ( empty( $view_id ) ) {
331
+			do_action( 'gravityview_log_error', 'GravityView_View_Data[get_id_from_atts] Returning; no ID defined (Atts)', $atts );
332 332
 			return;
333 333
 		}
334 334
 
@@ -350,44 +350,44 @@  discard block
 block discarded – undo
350 350
 		 * @hack This is so that the shortcode is registered for the oEmbed preview in the Admin
351 351
 		 * @since 1.6
352 352
 		 */
353
-		if( ! shortcode_exists('gravityview') && class_exists( 'GravityView_Shortcode' ) ) {
353
+		if ( ! shortcode_exists( 'gravityview' ) && class_exists( 'GravityView_Shortcode' ) ) {
354 354
 			new GravityView_Shortcode;
355 355
 		}
356 356
 
357 357
 		$shortcodes = gravityview_has_shortcode_r( $content, 'gravityview' );
358 358
 
359
-		if( empty( $shortcodes ) ) {
359
+		if ( empty( $shortcodes ) ) {
360 360
 			return NULL;
361 361
 		}
362 362
 
363
-		do_action('gravityview_log_debug', 'GravityView_View_Data[parse_post_content] Parsing content, found shortcodes:', $shortcodes );
363
+		do_action( 'gravityview_log_debug', 'GravityView_View_Data[parse_post_content] Parsing content, found shortcodes:', $shortcodes );
364 364
 
365 365
 		$ids = array();
366 366
 
367
-		foreach ($shortcodes as $key => $shortcode) {
367
+		foreach ( $shortcodes as $key => $shortcode ) {
368 368
 
369
-			$args = shortcode_parse_atts( $shortcode[3] );
369
+			$args = shortcode_parse_atts( $shortcode[ 3 ] );
370 370
 
371
-			if( empty( $args['id'] ) ) {
372
-				do_action('gravityview_log_error', sprintf( 'GravityView_View_Data[parse_post_content] Returning; no ID defined in shortcode atts for Post #%s (Atts)', $post->ID ), $shortcode );
371
+			if ( empty( $args[ 'id' ] ) ) {
372
+				do_action( 'gravityview_log_error', sprintf( 'GravityView_View_Data[parse_post_content] Returning; no ID defined in shortcode atts for Post #%s (Atts)', $post->ID ), $shortcode );
373 373
 				continue;
374 374
 			}
375 375
 
376
-			do_action('gravityview_log_debug', sprintf('GravityView_View_Data[parse_post_content] Adding view #%s with shortcode args', $args['id']), $args );
376
+			do_action( 'gravityview_log_debug', sprintf( 'GravityView_View_Data[parse_post_content] Adding view #%s with shortcode args', $args[ 'id' ] ), $args );
377 377
 
378 378
 			// Store the View to the object for later fetching.
379
-			$this->add_view( $args['id'], $args );
379
+			$this->add_view( $args[ 'id' ], $args );
380 380
 
381
-			$ids[] = $args['id'];
381
+			$ids[ ] = $args[ 'id' ];
382 382
 		}
383 383
 
384
-		if( empty($ids) ) {
384
+		if ( empty( $ids ) ) {
385 385
 			return NULL;
386 386
 		}
387 387
 
388 388
 		// If it's just one ID, return that.
389 389
 		// Otherwise, return array of IDs
390
-		return ( sizeof( $ids ) === 1 ) ? $ids[0] : $ids;
390
+		return ( sizeof( $ids ) === 1 ) ? $ids[ 0 ] : $ids;
391 391
 
392 392
 	}
393 393
 
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
 		 */
409 409
 		$meta_keys = (array)apply_filters( 'gravityview/data/parse/meta_keys', array(), $post_id );
410 410
 
411
-		if( empty( $meta_keys ) ) {
411
+		if ( empty( $meta_keys ) ) {
412 412
 			return NULL;
413 413
 		}
414 414
 
@@ -416,16 +416,16 @@  discard block
 block discarded – undo
416 416
 
417 417
 		$meta_content = '';
418 418
 
419
-		foreach( $meta_keys as $key ) {
420
-			$meta = get_post_meta( $post_id, $key , true );
421
-			if( ! is_string( $meta ) ) {
419
+		foreach ( $meta_keys as $key ) {
420
+			$meta = get_post_meta( $post_id, $key, true );
421
+			if ( ! is_string( $meta ) ) {
422 422
 				continue;
423 423
 			}
424 424
 			$meta_content .= $meta . ' ';
425 425
 		}
426 426
 
427
-		if( empty( $meta_content ) ) {
428
-			do_action('gravityview_log_error', sprintf( 'GravityView_View_Data[parse_post_meta] Returning; Empty custom fields for Post #%s (Custom fields keys:)', $post_id ), $meta_keys );
427
+		if ( empty( $meta_content ) ) {
428
+			do_action( 'gravityview_log_error', sprintf( 'GravityView_View_Data[parse_post_meta] Returning; Empty custom fields for Post #%s (Custom fields keys:)', $post_id ), $meta_keys );
429 429
 			return NULL;
430 430
 		}
431 431
 
@@ -452,16 +452,16 @@  discard block
 block discarded – undo
452 452
 		$message = NULL;
453 453
 
454 454
 		// Not invalid if not set!
455
-		if( empty( $post_id ) || empty( $view_id ) ) {
455
+		if ( empty( $post_id ) || empty( $view_id ) ) {
456 456
 
457
-			if( $empty_is_valid ) {
457
+			if ( $empty_is_valid ) {
458 458
 				return true;
459 459
 			}
460 460
 
461 461
 			$message = esc_html__( 'The ID is required.', 'gravityview' );
462 462
 		}
463 463
 
464
-		if( ! $message ) {
464
+		if ( ! $message ) {
465 465
 			$status = get_post_status( $post_id );
466 466
 
467 467
 			// Nothing exists with that post ID.
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
 			}
474 474
 		}
475 475
 
476
-		if( ! $message ) {
476
+		if ( ! $message ) {
477 477
 
478 478
 			// Nothing exists with that post ID.
479 479
 			if ( empty( $status ) || in_array( $status, array( 'revision', 'attachment' ) ) ) {
@@ -482,25 +482,25 @@  discard block
 block discarded – undo
482 482
 
483 483
 		}
484 484
 
485
-		if( ! $message ) {
485
+		if ( ! $message ) {
486 486
 			$view_ids_in_post = GravityView_View_Data::getInstance()->maybe_get_view_id( $post_id );
487 487
 
488 488
 			// The post or page specified does not contain the shortcode.
489
-			if ( false === in_array( $view_id, (array) $view_ids_in_post ) ) {
489
+			if ( false === in_array( $view_id, (array)$view_ids_in_post ) ) {
490 490
 				$message = sprintf( esc_html__( 'The Post ID entered is not valid. You may have entered a post or page that does not contain the selected View. Make sure the post contains the following shortcode: %s', 'gravityview' ), '<br /><code>[gravityview id="' . intval( $view_id ) . '"]</code>' );
491 491
 			}
492 492
 		}
493 493
 
494
-		if( ! $message ) {
494
+		if ( ! $message ) {
495 495
 
496 496
 			// It's a View
497
-			if( 'gravityview' === get_post_type( $post_id ) ) {
498
-				$message = esc_html__( 'The ID is already a View.', 'gravityview' );;
497
+			if ( 'gravityview' === get_post_type( $post_id ) ) {
498
+				$message = esc_html__( 'The ID is already a View.', 'gravityview' ); ;
499 499
 			}
500 500
 
501 501
 		}
502 502
 
503
-		if( $message ) {
503
+		if ( $message ) {
504 504
 			return new WP_Error( 'invalid_embed_id', $message );
505 505
 		}
506 506
 
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
 
518 518
 		$args = self::get_default_args( $with_details );
519 519
 
520
-		if( !isset( $args[ $key ] ) ) { return NULL; }
520
+		if ( ! isset( $args[ $key ] ) ) { return NULL; }
521 521
 
522 522
 		return $args[ $key ];
523 523
 	}
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
 		 */
547 547
 		$default_settings = apply_filters( 'gravityview_default_args', array(
548 548
 			'id' => array(
549
-				'label' => __('View ID', 'gravityview'),
549
+				'label' => __( 'View ID', 'gravityview' ),
550 550
 				'type' => 'number',
551 551
 				'group'	=> 'default',
552 552
 				'value' => NULL,
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
 				'show_in_shortcode' => false,
555 555
 			),
556 556
 			'page_size' => array(
557
-				'label' 	=> __('Number of entries per page', 'gravityview'),
557
+				'label' 	=> __( 'Number of entries per page', 'gravityview' ),
558 558
 				'type' => 'number',
559 559
 				'class'	=> 'small-text',
560 560
 				'group'	=> 'default',
@@ -594,40 +594,40 @@  discard block
 block discarded – undo
594 594
 			'user_edit' => array(
595 595
 				'label'	=> __( 'Allow User Edit', 'gravityview' ),
596 596
 				'group'	=> 'default',
597
-				'desc'	=> __('Allow logged-in users to edit entries they created.', 'gravityview'),
597
+				'desc'	=> __( 'Allow logged-in users to edit entries they created.', 'gravityview' ),
598 598
 				'value'	=> 0,
599
-				'tooltip' => __('Display "Edit Entry" fields to non-administrator users if they created the entry. Edit Entry fields will always be displayed to site administrators.', 'gravityview'),
599
+				'tooltip' => __( 'Display "Edit Entry" fields to non-administrator users if they created the entry. Edit Entry fields will always be displayed to site administrators.', 'gravityview' ),
600 600
 				'type'	=> 'checkbox',
601 601
 				'show_in_shortcode' => true,
602 602
 			),
603 603
 			'user_delete' => array(
604 604
 				'label'	=> __( 'Allow User Delete', 'gravityview' ),
605 605
 				'group'	=> 'default',
606
-				'desc'	=> __('Allow logged-in users to delete entries they created.', 'gravityview'),
606
+				'desc'	=> __( 'Allow logged-in users to delete entries they created.', 'gravityview' ),
607 607
 				'value'	=> 0,
608
-				'tooltip' => __('Display "Delete Entry" fields to non-administrator users if they created the entry. Delete Entry fields will always be displayed to site administrators.', 'gravityview'),
608
+				'tooltip' => __( 'Display "Delete Entry" fields to non-administrator users if they created the entry. Delete Entry fields will always be displayed to site administrators.', 'gravityview' ),
609 609
 				'type'	=> 'checkbox',
610 610
 				'show_in_shortcode' => true,
611 611
 			),
612 612
 			'sort_field' => array(
613
-				'label'	=> __('Sort by field', 'gravityview'),
613
+				'label'	=> __( 'Sort by field', 'gravityview' ),
614 614
 				'type' => 'select',
615 615
 				'value' => '',
616 616
 				'group'	=> 'sort',
617 617
 				'options' => array(
618
-					'' => __( 'Default', 'gravityview'),
619
-					'date_created' => __( 'Date Created', 'gravityview'),
618
+					'' => __( 'Default', 'gravityview' ),
619
+					'date_created' => __( 'Date Created', 'gravityview' ),
620 620
 				),
621 621
 				'show_in_shortcode' => true,
622 622
 			),
623 623
 			'sort_direction' => array(
624
-				'label' 	=> __('Sort direction', 'gravityview'),
624
+				'label' 	=> __( 'Sort direction', 'gravityview' ),
625 625
 				'type' => 'select',
626 626
 				'value' => 'ASC',
627 627
 				'group'	=> 'sort',
628 628
 				'options' => array(
629
-					'ASC' => __('ASC', 'gravityview'),
630
-					'DESC' => __('DESC', 'gravityview'),
629
+					'ASC' => __( 'ASC', 'gravityview' ),
630
+					'DESC' => __( 'DESC', 'gravityview' ),
631 631
 					//'RAND' => __('Random', 'gravityview'),
632 632
 				),
633 633
 				'show_in_shortcode' => true,
@@ -643,83 +643,83 @@  discard block
 block discarded – undo
643 643
 				'show_in_template' => array( 'default_table' ),
644 644
 			),
645 645
 			'start_date' => array(
646
-				'label' 	=> __('Filter by Start Date', 'gravityview'),
646
+				'label' 	=> __( 'Filter by Start Date', 'gravityview' ),
647 647
 				'class'	=> 'gv-datepicker',
648
-				'desc'	=> __('Show entries submitted after this date. Supports relative dates, such as "-1 week" or "-1 month".', 'gravityview' ),
648
+				'desc'	=> __( 'Show entries submitted after this date. Supports relative dates, such as "-1 week" or "-1 month".', 'gravityview' ),
649 649
 				'type' => 'text',
650 650
 				'value' => '',
651 651
 				'group'	=> 'filter',
652 652
 				'show_in_shortcode' => true,
653 653
 			),
654 654
 			'end_date' => array(
655
-				'label' 	=> __('Filter by End Date', 'gravityview'),
655
+				'label' 	=> __( 'Filter by End Date', 'gravityview' ),
656 656
 				'class'	=> 'gv-datepicker',
657
-				'desc'	=> __('Show entries submitted before this date. Supports relative dates, such as "now" or "-3 days".', 'gravityview' ),
657
+				'desc'	=> __( 'Show entries submitted before this date. Supports relative dates, such as "now" or "-3 days".', 'gravityview' ),
658 658
 				'type' => 'text',
659 659
 				'value' => '',
660 660
 				'group'	=> 'filter',
661 661
 				'show_in_shortcode' => true,
662 662
 			),
663 663
 			'class' => array(
664
-				'label' 	=> __('CSS Class', 'gravityview'),
665
-				'desc'	=> __('CSS class to add to the wrapping HTML container.', 'gravityview'),
664
+				'label' 	=> __( 'CSS Class', 'gravityview' ),
665
+				'desc'	=> __( 'CSS class to add to the wrapping HTML container.', 'gravityview' ),
666 666
 				'group'	=> 'default',
667 667
 				'type' => 'text',
668 668
 				'value' => '',
669 669
 				'show_in_shortcode' => false,
670 670
 			),
671 671
 			'search_value' => array(
672
-				'label' 	=> __('Search Value', 'gravityview'),
673
-				'desc'	=> __('Define a default search value for the View', 'gravityview'),
672
+				'label' 	=> __( 'Search Value', 'gravityview' ),
673
+				'desc'	=> __( 'Define a default search value for the View', 'gravityview' ),
674 674
 				'type' => 'text',
675 675
 				'value' => '',
676 676
 				'group'	=> 'filter',
677 677
 				'show_in_shortcode' => false,
678 678
 			),
679 679
 			'search_field' => array(
680
-				'label' 	=> __('Search Field', 'gravityview'),
681
-				'desc'	=> __('If Search Value is set, you can define a specific field to search in. Otherwise, all fields will be searched.', 'gravityview'),
680
+				'label' 	=> __( 'Search Field', 'gravityview' ),
681
+				'desc'	=> __( 'If Search Value is set, you can define a specific field to search in. Otherwise, all fields will be searched.', 'gravityview' ),
682 682
 				'type' => 'number',
683 683
 				'value' => '',
684 684
 				'group'	=> 'filter',
685 685
 				'show_in_shortcode' => false,
686 686
 			),
687 687
 			'single_title' => array(
688
-				'label'	=> __('Single Entry Title', 'gravityview'),
688
+				'label'	=> __( 'Single Entry Title', 'gravityview' ),
689 689
 				'type'	=> 'text',
690
-				'desc'	=> __('When viewing a single entry, change the title of the page to this setting. Otherwise, the title will not change between the Multiple Entries and Single Entry views.', 'gravityview'),
690
+				'desc'	=> __( 'When viewing a single entry, change the title of the page to this setting. Otherwise, the title will not change between the Multiple Entries and Single Entry views.', 'gravityview' ),
691 691
 				'group'	=> 'default',
692 692
 				'value'	=> '',
693 693
 				'show_in_shortcode' => false,
694 694
 				'full_width' => true,
695 695
 			),
696 696
 			'back_link_label' => array(
697
-				'label'	=> __('Back Link Label', 'gravityview'),
697
+				'label'	=> __( 'Back Link Label', 'gravityview' ),
698 698
 				'group'	=> 'default',
699
-				'desc'	=> __('The text of the link that returns to the multiple entries view.', 'gravityview'),
699
+				'desc'	=> __( 'The text of the link that returns to the multiple entries view.', 'gravityview' ),
700 700
 				'type'	=> 'text',
701 701
 				'value'	=> '',
702 702
 				'show_in_shortcode' => false,
703 703
 				'full_width' => true,
704 704
 			),
705 705
 			'embed_only' => array(
706
-				'label'	=> __('Prevent Direct Access', 'gravityview'),
706
+				'label'	=> __( 'Prevent Direct Access', 'gravityview' ),
707 707
 				'group'	=> 'default',
708
-				'desc'	=> __('Only allow access to this View when embedded using the shortcode.', 'gravityview'),
708
+				'desc'	=> __( 'Only allow access to this View when embedded using the shortcode.', 'gravityview' ),
709 709
 				'type'	=> 'checkbox',
710 710
 				'value'	=> '',
711 711
 				'show_in_shortcode' => false,
712 712
 				'full_width' => true,
713 713
 			),
714
-		));
714
+		) );
715 715
 
716 716
 		// By default, we only want the key => value pairing, not the whole array.
717
-		if( empty( $with_details ) ) {
717
+		if ( empty( $with_details ) ) {
718 718
 
719 719
 			$defaults = array();
720 720
 
721
-			foreach( $default_settings as $key => $value ) {
722
-				$defaults[ $key ] = $value['value'];
721
+			foreach ( $default_settings as $key => $value ) {
722
+				$defaults[ $key ] = $value[ 'value' ];
723 723
 			}
724 724
 
725 725
 			return $defaults;
@@ -728,12 +728,12 @@  discard block
 block discarded – undo
728 728
 		// But sometimes, we want all the details.
729 729
 		else {
730 730
 
731
-			foreach ($default_settings as $key => $value) {
731
+			foreach ( $default_settings as $key => $value ) {
732 732
 
733 733
 				// If the $group argument is set for the method,
734 734
 				// ignore any settings that aren't in that group.
735
-				if( !empty( $group ) && is_string( $group ) ) {
736
-					if( empty( $value['group'] ) || $value['group'] !== $group ) {
735
+				if ( ! empty( $group ) && is_string( $group ) ) {
736
+					if ( empty( $value[ 'group' ] ) || $value[ 'group' ] !== $group ) {
737 737
 						unset( $default_settings[ $key ] );
738 738
 					}
739 739
 				}
Please login to merge, or discard this patch.
includes/widgets/class-gravityview-widget.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -51,14 +51,14 @@  discard block
 block discarded – undo
51 51
 	// hold widget View options
52 52
 	private $widget_options;
53 53
 
54
-	function __construct( $widget_label , $widget_id , $defaults = array(), $settings = array() ) {
54
+	function __construct( $widget_label, $widget_id, $defaults = array(), $settings = array() ) {
55 55
 
56 56
 
57 57
 		/**
58 58
 		 * The shortcode name is set to the lowercase name of the widget class, unless overridden by the class specifying a different value for $shortcode_name
59 59
 		 * @var string
60 60
 		 */
61
-		$this->shortcode_name = !isset( $this->shortcode_name ) ? strtolower( get_class($this) ) : $this->shortcode_name;
61
+		$this->shortcode_name = ! isset( $this->shortcode_name ) ? strtolower( get_class( $this ) ) : $this->shortcode_name;
62 62
 
63 63
 		$this->widget_label = $widget_label;
64 64
 		$this->widget_id = $widget_id;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 		$this->settings = wp_parse_args( $settings, $this->settings );
70 70
 
71 71
 		// register widgets to be listed in the View Configuration
72
-		add_filter( 'gravityview_register_directory_widgets', array( $this, 'register_widget') );
72
+		add_filter( 'gravityview_register_directory_widgets', array( $this, 'register_widget' ) );
73 73
 
74 74
 		// widget options
75 75
 		add_filter( 'gravityview_template_widget_options', array( $this, 'assign_widget_options' ), 10, 3 );
@@ -78,10 +78,10 @@  discard block
 block discarded – undo
78 78
 		add_action( "gravityview_render_widget_{$widget_id}", array( $this, 'render_frontend' ), 10, 1 );
79 79
 
80 80
 		// register shortcodes
81
-		add_action( 'wp', array( $this, 'add_shortcode') );
81
+		add_action( 'wp', array( $this, 'add_shortcode' ) );
82 82
 
83 83
 		// Use shortcodes in text widgets.
84
-		add_filter('widget_text', array( $this, 'maybe_do_shortcode' ) );
84
+		add_filter( 'widget_text', array( $this, 'maybe_do_shortcode' ) );
85 85
 	}
86 86
 
87 87
 
@@ -99,14 +99,14 @@  discard block
 block discarded – undo
99 99
 		 * @param boolean $enable_custom_class False by default. Return true if you want to enable.
100 100
 		 * @param GravityView_Widget $this Current instance of GravityView_Widget
101 101
 		 */
102
-		$enable_custom_class = apply_filters('gravityview/widget/enable_custom_class', false, $this );
102
+		$enable_custom_class = apply_filters( 'gravityview/widget/enable_custom_class', false, $this );
103 103
 
104
-		if( $enable_custom_class ) {
104
+		if ( $enable_custom_class ) {
105 105
 
106
-			$settings['custom_class'] = array(
106
+			$settings[ 'custom_class' ] = array(
107 107
 				'type' => 'text',
108 108
 				'label' => __( 'Custom CSS Class:', 'gravityview' ),
109
-				'desc' => __( 'This class will be added to the widget container', 'gravityview'),
109
+				'desc' => __( 'This class will be added to the widget container', 'gravityview' ),
110 110
 				'value' => '',
111 111
 				'merge_tags' => true,
112 112
 			);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	 * @return array|null   Settings array; NULL if not set
129 129
 	 */
130 130
 	public function get_settings() {
131
-		return !empty( $this->settings ) ? $this->settings : NULL;
131
+		return ! empty( $this->settings ) ? $this->settings : NULL;
132 132
 	}
133 133
 
134 134
 	/**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	public function get_setting( $key ) {
140 140
 		$setting = NULL;
141 141
 
142
-		if( isset( $this->settings ) && is_array( $this->settings ) ) {
142
+		if ( isset( $this->settings ) && is_array( $this->settings ) ) {
143 143
 			$setting = isset( $this->settings[ $key ] ) ? $this->settings[ $key ] : NULL;
144 144
 		}
145 145
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 	 */
155 155
 	function maybe_do_shortcode( $text, $widget = NULL ) {
156 156
 
157
-		if( !empty( $this->shortcode_name ) && has_shortcode( $text, $this->shortcode_name ) ) {
157
+		if ( ! empty( $this->shortcode_name ) && has_shortcode( $text, $this->shortcode_name ) ) {
158 158
 			return do_shortcode( $text );
159 159
 		}
160 160
 
@@ -176,28 +176,28 @@  discard block
 block discarded – undo
176 176
 	function add_shortcode( $run_on_singular = true ) {
177 177
 		global $post;
178 178
 
179
-		if( GravityView_Plugin::is_admin() ) { return; }
179
+		if ( GravityView_Plugin::is_admin() ) { return; }
180 180
 
181
-		if( empty( $this->shortcode_name ) ) { return; }
181
+		if ( empty( $this->shortcode_name ) ) { return; }
182 182
 
183 183
 		// If the widget shouldn't output on single entries, don't show it
184
-		if( empty( $this->show_on_single ) && class_exists('GravityView_frontend') && GravityView_frontend::is_single_entry() ) {
185
-			do_action('gravityview_log_debug', sprintf( '%s[add_shortcode]: Skipping; set to not run on single entry.', get_class($this)) );
184
+		if ( empty( $this->show_on_single ) && class_exists( 'GravityView_frontend' ) && GravityView_frontend::is_single_entry() ) {
185
+			do_action( 'gravityview_log_debug', sprintf( '%s[add_shortcode]: Skipping; set to not run on single entry.', get_class( $this ) ) );
186 186
 
187 187
 			add_shortcode( $this->shortcode_name, '__return_null' );
188 188
 			return;
189 189
 		}
190 190
 
191 191
 
192
-		if( !has_gravityview_shortcode( $post ) ) {
192
+		if ( ! has_gravityview_shortcode( $post ) ) {
193 193
 
194
-			do_action('gravityview_log_debug', sprintf( '%s[add_shortcode]: No shortcode present; not adding render_frontend shortcode.', get_class($this)) );
194
+			do_action( 'gravityview_log_debug', sprintf( '%s[add_shortcode]: No shortcode present; not adding render_frontend shortcode.', get_class( $this ) ) );
195 195
 
196 196
 			add_shortcode( $this->shortcode_name, '__return_null' );
197 197
 			return;
198 198
 		}
199 199
 
200
-		add_shortcode( $this->shortcode_name, array( $this, 'render_shortcode') );
200
+		add_shortcode( $this->shortcode_name, array( $this, 'render_shortcode' ) );
201 201
 	}
202 202
 
203 203
 	/**
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 	 */
208 208
 	function register_widget( $widgets ) {
209 209
 		$widgets[ $this->widget_id ] = array(
210
-			'label' => $this->widget_label ,
210
+			'label' => $this->widget_label,
211 211
 			'description' => $this->widget_description,
212 212
 			'subtitle' => $this->widget_subtitle,
213 213
 		);
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 	 */
225 225
 	public function assign_widget_options( $options = array(), $template = '', $widget = '' ) {
226 226
 
227
-		if( $this->widget_id === $widget ) {
227
+		if ( $this->widget_id === $widget ) {
228 228
 			$options = array_merge( $options, $this->settings );
229 229
 		}
230 230
 
@@ -237,9 +237,9 @@  discard block
 block discarded – undo
237 237
 	 *
238 238
 	 * @return void
239 239
 	 */
240
-	public function render_frontend( $widget_args, $content = '', $context = '') {
240
+	public function render_frontend( $widget_args, $content = '', $context = '' ) {
241 241
 		// to be defined by child class
242
-		if( !$this->pre_render_frontend() ) {
242
+		if ( ! $this->pre_render_frontend() ) {
243 243
 			return;
244 244
 		}
245 245
 	}
@@ -251,8 +251,8 @@  discard block
 block discarded – undo
251 251
 	public function pre_render_frontend() {
252 252
 		$gravityview_view = GravityView_View::getInstance();
253 253
 
254
-		if( empty( $gravityview_view ) ) {
255
-			do_action('gravityview_log_debug', sprintf( '%s[render_frontend]: $gravityview_view not instantiated yet.', get_class($this)) );
254
+		if ( empty( $gravityview_view ) ) {
255
+			do_action( 'gravityview_log_debug', sprintf( '%s[render_frontend]: $gravityview_view not instantiated yet.', get_class( $this ) ) );
256 256
 			return false;
257 257
 		}
258 258
 
@@ -263,8 +263,8 @@  discard block
 block discarded – undo
263 263
 		 */
264 264
 		$hide_until_search = apply_filters( 'gravityview/widget/hide_until_searched', $gravityview_view->hide_until_searched, $this );
265 265
 
266
-		if( $hide_until_search ) {
267
-			do_action('gravityview_log_debug', sprintf( '%s[render_frontend]: Hide View data until search is performed', get_class($this)) );
266
+		if ( $hide_until_search ) {
267
+			do_action( 'gravityview_log_debug', sprintf( '%s[render_frontend]: Hide View data until search is performed', get_class( $this ) ) );
268 268
 			return false;
269 269
 		}
270 270
 
Please login to merge, or discard this patch.
includes/widgets/register-gravityview-widgets.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,15 +20,15 @@
 block discarded – undo
20 20
  */
21 21
 function gravityview_register_gravityview_widgets() {
22 22
 
23
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget.php' );
23
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget.php' );
24 24
 
25
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget-pagination-info.php' );
26
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget-page-links.php' );
27
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget-custom-content.php' );
28
-	include_once( GRAVITYVIEW_DIR .'includes/widgets/search-widget/class-search-widget.php' );
25
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget-pagination-info.php' );
26
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget-page-links.php' );
27
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget-custom-content.php' );
28
+	include_once( GRAVITYVIEW_DIR . 'includes/widgets/search-widget/class-search-widget.php' );
29 29
 
30
-	if( class_exists('GFPolls') ) {
31
-		include_once( GRAVITYVIEW_DIR .'includes/widgets/poll/class-gravityview-widget-poll.php' );
30
+	if ( class_exists( 'GFPolls' ) ) {
31
+		include_once( GRAVITYVIEW_DIR . 'includes/widgets/poll/class-gravityview-widget-poll.php' );
32 32
 	}
33 33
 
34 34
 }
Please login to merge, or discard this patch.
includes/widgets/poll/class-gravityview-widget-poll.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
 	 */
22 22
 	function __construct() {
23 23
 
24
-		$this->widget_description = __('Displays the results of Poll Fields that exist in the form.', 'gravityview' );
24
+		$this->widget_description = __( 'Displays the results of Poll Fields that exist in the form.', 'gravityview' );
25 25
 
26
-		$this->widget_subtitle = sprintf( _x('Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' );
26
+		$this->widget_subtitle = sprintf( _x( 'Note: this will display poll results for %sall form entries%s, not only the entries displayed in the View.', 'The string placeholders are for emphasis HTML', 'gravityview' ), '<em>', '</em>' );
27 27
 
28 28
 		$default_values = array(
29 29
 			'header' => 1,
@@ -32,32 +32,32 @@  discard block
 block discarded – undo
32 32
 
33 33
 		$settings = array(
34 34
 			'percentages' => array(
35
-				'label' => __('Display Percentages', 'gravityview'),
35
+				'label' => __( 'Display Percentages', 'gravityview' ),
36 36
 				'type' => 'checkbox',
37 37
 				'value' => true,
38 38
 				'tooltip' => __( 'Display results percentages as part of results? Supported values are: true, false. Defaults to "true".', 'gravityview' ),
39 39
 			),
40 40
 			'counts' => array(
41
-				'label' => __('Display Counts', 'gravityview'),
41
+				'label' => __( 'Display Counts', 'gravityview' ),
42 42
 				'type' => 'checkbox',
43 43
 				'value' => true,
44 44
 				'tooltip' => __( 'Display number of times each choice has been selected when displaying results? Supported values are: true, false. Defaults to "true".', 'gravityview' ),
45 45
 			),
46 46
 			'style' => array(
47 47
 				'type' => 'select',
48
-				'label' => __('Style', 'gravityview'),
48
+				'label' => __( 'Style', 'gravityview' ),
49 49
 				'tooltip' => __( 'The Polls Add-On currently supports 4 built in styles: red, green, orange, blue. Defaults to "green".', 'gravityview' ),
50 50
 				'value' => 'green',
51 51
 				'choices' => array(
52
-					'green' => __('Green', 'gravityview'),
53
-					'blue' => __('Blue', 'gravityview'),
54
-					'red' => __('Red', 'gravityview'),
55
-					'orange' => __('Orange', 'gravityview'),
52
+					'green' => __( 'Green', 'gravityview' ),
53
+					'blue' => __( 'Blue', 'gravityview' ),
54
+					'red' => __( 'Red', 'gravityview' ),
55
+					'orange' => __( 'Orange', 'gravityview' ),
56 56
 				)
57 57
 			)
58 58
 		);
59 59
 
60
-		parent::__construct( __( 'Poll Results', 'gravityview' ) , 'poll', $default_values, $settings );
60
+		parent::__construct( __( 'Poll Results', 'gravityview' ), 'poll', $default_values, $settings );
61 61
 
62 62
 		// frontend - add template path
63 63
 		add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) );
@@ -88,11 +88,11 @@  discard block
 block discarded – undo
88 88
 
89 89
 		$GFPolls = GFPolls::get_instance();
90 90
 
91
-		wp_enqueue_script('gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array('jquery'), $GFPolls->_version);
91
+		wp_enqueue_script( 'gpoll_js', $GFPolls->get_base_url() . '/js/gpoll.js', array( 'jquery' ), $GFPolls->_version );
92 92
 
93 93
 		$GFPolls->localize_scripts();
94 94
 
95
-		wp_enqueue_style('gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version);
95
+		wp_enqueue_style( 'gpoll_css', $GFPolls->get_base_url() . '/css/gpoll.css', null, $GFPolls->_version );
96 96
 	}
97 97
 
98 98
 	/**
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	 */
103 103
 	public function pre_render_frontend() {
104 104
 
105
-		if( !class_exists('GFPolls') ) {
105
+		if ( ! class_exists( 'GFPolls' ) ) {
106 106
 
107 107
 			$return = false;
108 108
 
@@ -158,14 +158,14 @@  discard block
 block discarded – undo
158 158
 	 *
159 159
 	 * @since 1.8
160 160
 	 */
161
-	public function render_frontend( $widget_args, $content = '', $context = '') {
161
+	public function render_frontend( $widget_args, $content = '', $context = '' ) {
162 162
 
163
-		if( !$this->pre_render_frontend() ) {
163
+		if ( ! $this->pre_render_frontend() ) {
164 164
 			return;
165 165
 		}
166 166
 
167 167
 		// Make sure the class is loaded in DataTables
168
-		if( !class_exists( 'GFFormDisplay' ) ) {
168
+		if ( ! class_exists( 'GFFormDisplay' ) ) {
169 169
 			include_once( GFCommon::get_base_path() . '/form_display.php' );
170 170
 		}
171 171
 
@@ -173,14 +173,14 @@  discard block
 block discarded – undo
173 173
 
174 174
 		$settings = $this->get_frontend_settings( $widget_args );
175 175
 
176
-		$percentages = empty( $settings['percentages'] ) ? 'false' : 'true';
176
+		$percentages = empty( $settings[ 'percentages' ] ) ? 'false' : 'true';
177 177
 
178
-		$counts = empty( $settings['counts'] ) ? 'false' : 'true';
178
+		$counts = empty( $settings[ 'counts' ] ) ? 'false' : 'true';
179 179
 
180
-		if( !empty( $settings['field'] ) ) {
181
-			$merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings['field'], $settings['style'], $percentages, $counts );
180
+		if ( ! empty( $settings[ 'field' ] ) ) {
181
+			$merge_tag = sprintf( '{gpoll: field="%d" style="%s" percentages="%s" counts="%s"}', $settings[ 'field' ], $settings[ 'style' ], $percentages, $counts );
182 182
 		} else {
183
-			$merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings['style'], $percentages, $counts );
183
+			$merge_tag = sprintf( '{all_poll_results: style="%s" percentages="%s" counts="%s"}', $settings[ 'style' ], $percentages, $counts );
184 184
 		}
185 185
 
186 186
 		$gravityview_view = GravityView_View::getInstance();
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 
190 190
 		$gravityview_view->poll_settings = $settings;
191 191
 
192
-		$gravityview_view->render('widget', 'poll', false );
192
+		$gravityview_view->render( 'widget', 'poll', false );
193 193
 
194 194
 	}
195 195
 
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-hidden.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,4 +7,4 @@
 block discarded – undo
7 7
 
8 8
 $gravityview_view = GravityView_View::getInstance();
9 9
 $search_field = $gravityview_view->search_field;
10
-?><div><input type="hidden" name="<?php echo esc_attr( $search_field['name'] ); ?>" value="<?php echo esc_attr( $search_field['value'] ); ?>"></div>
11 10
\ No newline at end of file
11
+?><div><input type="hidden" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="<?php echo esc_attr( $search_field[ 'value' ] ); ?>"></div>
12 12
\ No newline at end of file
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-date_range.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,17 +7,17 @@
 block discarded – undo
7 7
 
8 8
 $gravityview_view = GravityView_View::getInstance();
9 9
 $view_id = $gravityview_view->getViewId();
10
-$value = $gravityview_view->search_field['value'];
11
-$label = $gravityview_view->search_field['label'];
12
-$name = $gravityview_view->search_field['name'];
10
+$value = $gravityview_view->search_field[ 'value' ];
11
+$label = $gravityview_view->search_field[ 'label' ];
12
+$name = $gravityview_view->search_field[ 'name' ];
13 13
 ?>
14 14
 
15 15
 <div class="gv-search-box gv-search-date">
16
-	<?php if( ! gv_empty( $label, false ) ) { ?>
17
-	<label for="search-box-<?php echo esc_attr( $name ).'-start'; ?>"><?php echo esc_html( $label ); ?></label>
16
+	<?php if ( ! gv_empty( $label, false ) ) { ?>
17
+	<label for="search-box-<?php echo esc_attr( $name ) . '-start'; ?>"><?php echo esc_html( $label ); ?></label>
18 18
 	<?php } ?>
19 19
 	<p>
20
-		<input name="<?php echo esc_attr( $name ).'[start]'; ?>" id="search-box-<?php echo esc_attr( $name ).'-start'; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e('Start date', 'gravityview' ); ?>" value="<?php echo $value['start']; ?>">
21
-		<input name="<?php echo esc_attr( $name ).'[end]'; ?>" id="search-box-<?php echo esc_attr( $name ).'-end'; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e('End date', 'gravityview' ); ?>" value="<?php echo $value['end']; ?>">
20
+		<input name="<?php echo esc_attr( $name ) . '[start]'; ?>" id="search-box-<?php echo esc_attr( $name ) . '-start'; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e( 'Start date', 'gravityview' ); ?>" value="<?php echo $value[ 'start' ]; ?>">
21
+		<input name="<?php echo esc_attr( $name ) . '[end]'; ?>" id="search-box-<?php echo esc_attr( $name ) . '-end'; ?>" type="text" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" placeholder="<?php esc_attr_e( 'End date', 'gravityview' ); ?>" value="<?php echo $value[ 'end' ]; ?>">
22 22
 	</p>
23 23
 </div>
24 24
\ No newline at end of file
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-search_all.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,14 +7,14 @@
 block discarded – undo
7 7
 
8 8
 $gravityview_view = GravityView_View::getInstance();
9 9
 $view_id = $gravityview_view->getViewId();
10
-$value = $gravityview_view->search_field['value'];
11
-$label = $gravityview_view->search_field['label'];
10
+$value = $gravityview_view->search_field[ 'value' ];
11
+$label = $gravityview_view->search_field[ 'label' ];
12 12
 
13 13
 ?>
14 14
 
15 15
 <div class="gv-search-box">
16 16
 	<div class="gv-search">
17
-	<?php if( ! gv_empty( $label, false ) ) { ?>
17
+	<?php if ( ! gv_empty( $label, false ) ) { ?>
18 18
 		<label for="gv_search_<?php echo $view_id; ?>"><?php echo esc_html( $label ); ?></label>
19 19
 	<?php } ?>
20 20
 		<p><input type="text" name="gv_search" id="gv_search_<?php echo $view_id; ?>" value="<?php echo $value; ?>" /></p>
Please login to merge, or discard this patch.