Completed
Pull Request — develop (#1577)
by Zack
31:56 queued 11:58
created
future/includes/class-gv-shortcode-gravityview.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,8 +79,9 @@
 block discarded – undo
79 79
 		 * Check permissions.
80 80
 		 */
81 81
 		while ( $error = $view->can_render( array( 'shortcode' ), $request ) ) {
82
-			if ( ! is_wp_error( $error ) )
83
-				break;
82
+			if ( ! is_wp_error( $error ) ) {
83
+							break;
84
+			}
84 85
 
85 86
 			switch ( str_replace( 'gravityview/', '', $error->get_error_code() ) ) {
86 87
 				case 'post_password_required':
Please login to merge, or discard this patch.
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 			'class' => '',
44 44
 		) );
45 45
 
46
-		if ( ! $view_id = $atts['id'] ? : $atts['view_id'] ) {
47
-			if ( $atts['detail'] && $view = $request->is_view() ) {
46
+		if ( ! $view_id = $atts[ 'id' ] ?: $atts[ 'view_id' ] ) {
47
+			if ( $atts[ 'detail' ] && $view = $request->is_view() ) {
48 48
 				$view_id = $view->ID;
49 49
 			}
50 50
 		}
@@ -114,12 +114,12 @@  discard block
 block discarded – undo
114 114
 			}
115 115
 		}
116 116
 
117
-		$is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID );
117
+		$is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID );
118 118
 
119 119
 		/**
120 120
 		 * View details.
121 121
 		 */
122
-		if ( $atts['detail'] ) {
122
+		if ( $atts[ 'detail' ] ) {
123 123
 			$entries = $view->get_entries( $request );
124 124
 			return self::_return( $this->detail( $view, $entries, $atts ) );
125 125
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 				return self::_return( '' );
137 137
 			}
138 138
 
139
-			if ( $entry['status'] != 'active' ) {
139
+			if ( $entry[ 'status' ] != 'active' ) {
140 140
 				gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) );
141 141
 				return self::_return( __( 'You are not allowed to view this content.', 'gravityview' ) );
142 142
 			}
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 			}
148 148
 
149 149
 			if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) {
150
-				if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) )  ) {
150
+				if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) {
151 151
 					gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) );
152 152
 					return self::_return( __( 'You are not allowed to view this content.', 'gravityview' ) );
153 153
 				}
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 			$entryset = $entry->is_multi() ? $entry->entries : array( $entry );
171 171
 
172 172
 			foreach ( $entryset as $e ) {
173
-				if ( $e['status'] != 'active' ) {
173
+				if ( $e[ 'status' ] != 'active' ) {
174 174
 					gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $e->ID ) );
175 175
 					return self::_return( __( 'You are not allowed to view this content.', 'gravityview' ) );
176 176
 				}
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 				}
182 182
 
183 183
 				if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) {
184
-					if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) )  ) {
184
+					if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) ) ) {
185 185
 						gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $e->ID ) );
186 186
 						return self::_return( __( 'You are not allowed to view this content.', 'gravityview' ) );
187 187
 					}
@@ -206,10 +206,10 @@  discard block
 block discarded – undo
206 206
 
207 207
 				// Mock the request with the actual View, not the global one
208 208
 				$mock_request = new \GV\Mock_Request();
209
-				$mock_request->returns['is_view'] = $view;
210
-				$mock_request->returns['is_entry'] = $request->is_entry( $view->form ? $view->form->ID : 0 );
211
-				$mock_request->returns['is_edit_entry'] = $request->is_edit_entry( $view->form ? $view->form->ID : 0 );
212
-				$mock_request->returns['is_search'] = $request->is_search();
209
+				$mock_request->returns[ 'is_view' ] = $view;
210
+				$mock_request->returns[ 'is_entry' ] = $request->is_entry( $view->form ? $view->form->ID : 0 );
211
+				$mock_request->returns[ 'is_edit_entry' ] = $request->is_edit_entry( $view->form ? $view->form->ID : 0 );
212
+				$mock_request->returns[ 'is_search' ] = $request->is_search();
213 213
 
214 214
 				$request = $mock_request;
215 215
 			}
@@ -245,16 +245,16 @@  discard block
 block discarded – undo
245 245
 		$filtered_atts = shortcode_atts( $supported_atts, $passed_atts, 'gravityview' );
246 246
 
247 247
 		// Only keep the passed attributes after making sure that they're valid pairs
248
-		$filtered_atts = array_intersect_key( (array) $passed_atts, $filtered_atts );
248
+		$filtered_atts = array_intersect_key( (array)$passed_atts, $filtered_atts );
249 249
 
250 250
 		$atts = array();
251 251
 
252
-		foreach( $filtered_atts as $key => $passed_value ) {
252
+		foreach ( $filtered_atts as $key => $passed_value ) {
253 253
 
254 254
 			// Allow using GravityView merge tags in shortcode attributes, like {get} and {created_by}
255 255
 			$passed_value = \GravityView_Merge_Tags::replace_variables( $passed_value );
256 256
 
257
-			switch( $defaults[ $key ]['type'] ) {
257
+			switch ( $defaults[ $key ][ 'type' ] ) {
258 258
 
259 259
 				/**
260 260
 				 * Make sure number fields are numeric.
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
 				 * @see http://php.net/manual/en/function.is-numeric.php#107326
263 263
 				 */
264 264
 				case 'number':
265
-					if( is_numeric( $passed_value ) ) {
265
+					if ( is_numeric( $passed_value ) ) {
266 266
 						$atts[ $key ] = ( $passed_value + 0 );
267 267
 					}
268 268
 					break;
@@ -277,8 +277,8 @@  discard block
 block discarded – undo
277 277
 				 */
278 278
 				case 'select':
279 279
 				case 'radio':
280
-					$options = isset( $defaults[ $key ]['choices'] ) ? $defaults[ $key ]['choices'] : $defaults[ $key ]['options'];
281
-					if( in_array( $passed_value, array_keys( $options ) ) ) {
280
+					$options = isset( $defaults[ $key ][ 'choices' ] ) ? $defaults[ $key ][ 'choices' ] : $defaults[ $key ][ 'options' ];
281
+					if ( in_array( $passed_value, array_keys( $options ) ) ) {
282 282
 						$atts[ $key ] = $passed_value;
283 283
 					}
284 284
 					break;
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 			}
291 291
 		}
292 292
 
293
-		$atts['detail'] = \GV\Utils::get( $passed_atts, 'detail', null );
293
+		$atts[ 'detail' ] = \GV\Utils::get( $passed_atts, 'detail', null );
294 294
 
295 295
 		return $atts;
296 296
 	}
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
 	private function detail( $view, $entries, $atts ) {
308 308
 		$output = '';
309 309
 
310
-		switch ( $key = $atts['detail'] ):
310
+		switch ( $key = $atts[ 'detail' ] ):
311 311
 			case 'total_entries':
312 312
 				$output = number_format_i18n( $entries->total() );
313 313
 				break;
Please login to merge, or discard this patch.
includes/class-admin-installer.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	 *
50 50
 	 * @param array $items Scripts or styles to exclude from no-conflict
51 51
 	 *
52
-	 * @return array
52
+	 * @return string[]
53 53
 	 */
54 54
 	public function register_noconflict( $items ) {
55 55
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -449,9 +449,7 @@
 block discarded – undo
449 449
 			$button_label = sprintf( __( 'Upgrade to %s for Access', 'gravityview' ), $required_license );
450 450
 			$button_class = 'button-primary button-large';
451 451
 			$href         = 'https://gravityview.co/pricing/?utm_source=admin-installer&utm_medium=admin&utm_campaign=Admin%20Notice&utm_content=' . $required_license;
452
-		}
453
-
454
-        elseif ( ! empty( $download_info['coming_soon'] ) ) {
452
+		} elseif ( ! empty( $download_info['coming_soon'] ) ) {
455 453
 	        $spinner      = false;
456 454
 	        $status       = 'notinstalled';
457 455
 	        $status_label = __( 'Coming Soon', 'gravityview' );
Please login to merge, or discard this patch.
Indentation   +94 added lines, -94 removed lines patch added patch discarded remove patch
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
 	 */
67 67
 	public function add_downloads_data_filters() {
68 68
 
69
-	    $downloads_data = get_site_transient( self::DOWNLOADS_DATA_TRANSIENT );
69
+		$downloads_data = get_site_transient( self::DOWNLOADS_DATA_TRANSIENT );
70 70
 
71
-	    if ( ! $downloads_data && ! isset( $_GET['cache'] ) ) {
71
+		if ( ! $downloads_data && ! isset( $_GET['cache'] ) ) {
72 72
 			return;
73 73
 		}
74 74
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	 */
98 98
 	public function add_admin_menu() {
99 99
 
100
-	    $menu_text = _x( 'Manage Add-Ons', 'Extensions are WordPress plugins that add functionality to GravityView and Gravity Forms', 'gravityview' );
100
+		$menu_text = _x( 'Manage Add-Ons', 'Extensions are WordPress plugins that add functionality to GravityView and Gravity Forms', 'gravityview' );
101 101
 
102 102
 		$menu_text = sprintf( '<span title="%s" style="margin: 0">%s</span>', esc_attr__( 'Plugins that extend GravityView and Gravity Forms functionality.', 'gravityview' ), $menu_text );
103 103
 
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
 	}
113 113
 
114 114
 	/**
115
-     * When on the Installer page, show a different notice than on the Settings page
116
-     *
115
+	 * When on the Installer page, show a different notice than on the Settings page
116
+	 *
117 117
 	 * @param array $notice
118 118
 	 *
119 119
 	 * @return string License notice
@@ -121,10 +121,10 @@  discard block
 block discarded – undo
121 121
 	public function maybe_modify_license_notice( $notice = '' ) {
122 122
 
123 123
 		if ( ! gravityview()->request->is_admin( '', 'downloads' ) ) {
124
-            return $notice;
125
-        }
124
+			return $notice;
125
+		}
126 126
 
127
-        return esc_html__( 'Your license %s. Do you want access to these plugins? %sActivate your license%s or %sget a license here%s.', 'gravityview' );
127
+		return esc_html__( 'Your license %s. Do you want access to these plugins? %sActivate your license%s or %sget a license here%s.', 'gravityview' );
128 128
 	}
129 129
 
130 130
 	/**
@@ -167,43 +167,43 @@  discard block
 block discarded – undo
167 167
 	 * Get downloads data from transient or from API; save transient after getting data from API
168 168
 	 *
169 169
 	 * @return WP_Error|array If error, returns WP_Error. If not valid JSON, empty array. Otherwise, this structure: {
170
-     *   @type array  $info {
171
-     *       @type string $id int 17
172
-     *       @type string $slug Extension slug
173
-     *       @type string $title Extension title
174
-     *       @type string $create_date in '2018-07-19 20:03:10' format
175
-     *       @type string $modified_date
176
-     *       @type string $status
177
-     *       @type string $link URL to public plugin page
178
-     *       @type string $content
179
-     *       @type string $excerpt
180
-     *       @type string $thumbnail URL to thumbnail
181
-     *       @type array  $category Taxonomy details for the plugin's category {
182
-     *         @type int $term_id => int 30
183
-     *         @type string $name => string 'Plugins' (length=7)
184
-     *         @type string $slug => string 'plugins' (length=7)
185
-     *         @type int $term_group => int 0
186
-     *         @type int $term_taxonomy_id => int 30
187
-     *         @type string $taxonomy => string 'download_category' (length=17)
188
-     *         @type string $description => string '' (length=0)
189
-     *         @type int $parent => int 0
190
-     *         @type int $count => int 4
191
-     *         @type string $filter => string 'raw' (length=3)
192
-     *       }
193
-     *       @type array $tags {see $category above}
194
-     *       @type string $textdomain string 'gravityview' (length=11)
195
-     *   }
196
-     *   @type array $pricing array of `price_name_slugs` => '00.00' values, if price options exist
197
-     *   @type array $licensing {
198
-     *       @type bool   $enabled Is licensing enabled for the extension
199
-     *       @type string $version Version number
200
-     *       @type string $exp_unit Expiration unit ('years')
201
-     *       @type string $exp_length Expiration length ('1')
202
-     *   }
203
-     *   @type array $files Array of files. Empty if user has no access to the file. {
204
-     *       @type string $file string URL of the file download
205
-     *   }
206
-     * }
170
+	 *   @type array  $info {
171
+	 *       @type string $id int 17
172
+	 *       @type string $slug Extension slug
173
+	 *       @type string $title Extension title
174
+	 *       @type string $create_date in '2018-07-19 20:03:10' format
175
+	 *       @type string $modified_date
176
+	 *       @type string $status
177
+	 *       @type string $link URL to public plugin page
178
+	 *       @type string $content
179
+	 *       @type string $excerpt
180
+	 *       @type string $thumbnail URL to thumbnail
181
+	 *       @type array  $category Taxonomy details for the plugin's category {
182
+	 *         @type int $term_id => int 30
183
+	 *         @type string $name => string 'Plugins' (length=7)
184
+	 *         @type string $slug => string 'plugins' (length=7)
185
+	 *         @type int $term_group => int 0
186
+	 *         @type int $term_taxonomy_id => int 30
187
+	 *         @type string $taxonomy => string 'download_category' (length=17)
188
+	 *         @type string $description => string '' (length=0)
189
+	 *         @type int $parent => int 0
190
+	 *         @type int $count => int 4
191
+	 *         @type string $filter => string 'raw' (length=3)
192
+	 *       }
193
+	 *       @type array $tags {see $category above}
194
+	 *       @type string $textdomain string 'gravityview' (length=11)
195
+	 *   }
196
+	 *   @type array $pricing array of `price_name_slugs` => '00.00' values, if price options exist
197
+	 *   @type array $licensing {
198
+	 *       @type bool   $enabled Is licensing enabled for the extension
199
+	 *       @type string $version Version number
200
+	 *       @type string $exp_unit Expiration unit ('years')
201
+	 *       @type string $exp_length Expiration length ('1')
202
+	 *   }
203
+	 *   @type array $files Array of files. Empty if user has no access to the file. {
204
+	 *       @type string $file string URL of the file download
205
+	 *   }
206
+	 * }
207 207
 	 */
208 208
 	public function get_downloads_data() {
209 209
 
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 		) );
236 236
 
237 237
 		if ( is_wp_error( $response ) ) {
238
-		    gravityview()->log->error( "Extension data response is an error", array( 'data' => $response ) );
238
+			gravityview()->log->error( "Extension data response is an error", array( 'data' => $response ) );
239 239
 			return $response;
240 240
 		}
241 241
 
@@ -288,10 +288,10 @@  discard block
 block discarded – undo
288 288
                 <div class="gv-admin-installer-notice notice inline error">
289 289
                     <h3><?php esc_html_e( 'Extensions and plugins data cannot be loaded at the moment. Please try again later.', 'gravityview' ); ?></h3>
290 290
                     <?php
291
-                    if ( is_wp_error( $downloads_data ) ) {
292
-	                    echo wpautop( '<pre>' . esc_html( $downloads_data->get_error_message() ) . '</pre>' );
293
-                    }
294
-                    ?>
291
+					if ( is_wp_error( $downloads_data ) ) {
292
+						echo wpautop( '<pre>' . esc_html( $downloads_data->get_error_message() ) . '</pre>' );
293
+					}
294
+					?>
295 295
                 </div>
296 296
             </div>
297 297
 			<?php
@@ -379,9 +379,9 @@  discard block
 block discarded – undo
379 379
 	 */
380 380
 	protected function render_download( $download, $wp_plugins ) {
381 381
 
382
-        $details = $this->get_download_display_details( $download, $wp_plugins );
382
+		$details = $this->get_download_display_details( $download, $wp_plugins );
383 383
 
384
-        $download_info = $details['download_info'];
384
+		$download_info = $details['download_info'];
385 385
 
386 386
 		?>
387 387
         <div class="item <?php echo esc_attr( $details['item_class'] ); ?>">
@@ -405,45 +405,45 @@  discard block
 block discarded – undo
405 405
 
406 406
                 <div class="addon-excerpt"><?php
407 407
 
408
-                    $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info['excerpt'] );
408
+					$excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info['excerpt'] );
409 409
 
410
-                    // Allow some pure HTML tags, but remove everything else from the excerpt.
411
-                    $tags = array( '<strong>', '</strong>', '<em>', '</em>', '<code>', '</code>' );
412
-                    $replacements = array( '[b]', '[/b]', '[i]', '[/i]', '[code]', '[/code]' );
410
+					// Allow some pure HTML tags, but remove everything else from the excerpt.
411
+					$tags = array( '<strong>', '</strong>', '<em>', '</em>', '<code>', '</code>' );
412
+					$replacements = array( '[b]', '[/b]', '[i]', '[/i]', '[code]', '[/code]' );
413 413
 
414
-                    $excerpt = str_replace( $tags, $replacements, $excerpt );
415
-                    $excerpt = esc_html( strip_tags( $excerpt ) );
414
+					$excerpt = str_replace( $tags, $replacements, $excerpt );
415
+					$excerpt = esc_html( strip_tags( $excerpt ) );
416 416
 					$excerpt = str_replace( $replacements, $tags, $excerpt );
417 417
 
418 418
 					echo wpautop( $excerpt );
419
-                ?></div>
419
+				?></div>
420 420
             </div>
421 421
         </div>
422 422
 		<?php
423 423
 	}
424 424
 
425 425
 	/**
426
-     * Generates details array for the download to keep the render_download() method a bit tidier
427
-     *
426
+	 * Generates details array for the download to keep the render_download() method a bit tidier
427
+	 *
428 428
 	 * @since 2.10 Allow managing installed add-ons whether or not the user's license shows they have access.
429 429
 	 *
430 430
 	 * @param array $download Single download, as returned by {@see get_downloads_data}
431 431
 	 * @param array $wp_plugins All active plugins, as returned by {@see get_plugins()}
432 432
 	 *
433 433
 	 * @return array {
434
-     *   @type array $download_info
435
-     *   @type string $plugin_path
436
-     *   @type string $status License status returned by Easy Digital Downloads ("active", "inactive", "expired", "revoked", etc)
437
-     *   @type string $status_label
438
-     *   @type string $button_title Title attribute to show when hovering over the download's button
439
-     *   @type string $button_class CSS class to use for the button
440
-     *   @type string $button_label Text to use for the download's anchor link
441
-     *   @type string $href URL for the download's button
442
-     *   @type bool   $spinner Whether to show the spinner icon
443
-     *   @type string $item_class CSS class for the download container
444
-     *   @type string $required_license The name of the required license for the download ("All Access" or "Core + Extensions")
445
-     *   @type bool   $is_active Is the current GravityView license (as entered in Settings) active?
446
-     * }
434
+	 *   @type array $download_info
435
+	 *   @type string $plugin_path
436
+	 *   @type string $status License status returned by Easy Digital Downloads ("active", "inactive", "expired", "revoked", etc)
437
+	 *   @type string $status_label
438
+	 *   @type string $button_title Title attribute to show when hovering over the download's button
439
+	 *   @type string $button_class CSS class to use for the button
440
+	 *   @type string $button_label Text to use for the download's anchor link
441
+	 *   @type string $href URL for the download's button
442
+	 *   @type bool   $spinner Whether to show the spinner icon
443
+	 *   @type string $item_class CSS class for the download container
444
+	 *   @type string $required_license The name of the required license for the download ("All Access" or "Core + Extensions")
445
+	 *   @type bool   $is_active Is the current GravityView license (as entered in Settings) active?
446
+	 * }
447 447
 	 */
448 448
 	private function get_download_display_details( $download, $wp_plugins ) {
449 449
 
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 			'slug' => '',
455 455
 			'excerpt' => '',
456 456
 			'link' => '',
457
-            'coming_soon' => false,
457
+			'coming_soon' => false,
458 458
 			'installer_title' => null, // May not be defined
459 459
 			'installer_excerpt' => null, // May not be defined
460 460
 		) );
@@ -496,14 +496,14 @@  discard block
 block discarded – undo
496 496
 			$href         = 'https://gravityview.co/pricing/?utm_source=admin-installer&utm_medium=admin&utm_campaign=Admin%20Notice&utm_content=' . $required_license;
497 497
 		}
498 498
 
499
-        elseif ( ! empty( $download_info['coming_soon'] ) ) {
500
-	        $spinner      = false;
501
-	        $status       = 'notinstalled';
502
-	        $status_label = __( 'Coming Soon', 'gravityview' );
503
-	        $button_label = __( 'Learn More', 'gravityview' );
504
-	        $button_class = 'button-primary button-large';
505
-	        $href         = \GV\Utils::get( $download_info, 'link', 'https://gravityview.co/extensions/' );
506
-        }
499
+		elseif ( ! empty( $download_info['coming_soon'] ) ) {
500
+			$spinner      = false;
501
+			$status       = 'notinstalled';
502
+			$status_label = __( 'Coming Soon', 'gravityview' );
503
+			$button_label = __( 'Learn More', 'gravityview' );
504
+			$button_class = 'button-primary button-large';
505
+			$href         = \GV\Utils::get( $download_info, 'link', 'https://gravityview.co/extensions/' );
506
+		}
507 507
 
508 508
 		// Access but the plugin is not installed
509 509
 		elseif ( ! $wp_plugin ) {
@@ -547,18 +547,18 @@  discard block
 block discarded – undo
547 547
 		$download_info['link'] = add_query_arg( array( 'license_key' => $license_key ), $download_info['link'] );
548 548
 
549 549
 		return compact( 'download_info','plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' );
550
-    }
550
+	}
551 551
 
552 552
 	/**
553
-     * Returns the base price for an extension
554
-     *
553
+	 * Returns the base price for an extension
554
+	 *
555 555
 	 * @param array $download
556 556
 	 *
557 557
 	 * @return float Base price for an extension. If not for sale separately, returns 0
558 558
 	 */
559 559
 	private function get_download_base_price( $download ) {
560 560
 
561
-	    $base_price = \GV\Utils::get( $download, 'pricing/amount', 0 );
561
+		$base_price = \GV\Utils::get( $download, 'pricing/amount', 0 );
562 562
 		$base_price = \GFCommon::to_number( $base_price );
563 563
 
564 564
 		unset( $download['pricing']['amount'] );
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
 		}
570 570
 
571 571
 		return floatval( $base_price );
572
-    }
572
+	}
573 573
 
574 574
 	/**
575 575
 	 * Handle AJAX request to activate extension
@@ -587,8 +587,8 @@  discard block
 block discarded – undo
587 587
 
588 588
 		if ( is_wp_error( $result ) || ! is_plugin_active( $data['path'] ) ) {
589 589
 			wp_send_json_error( array(
590
-                'error' => sprintf( __( 'Plugin activation failed: %s', 'gravityview' ), $result->get_error_message() )
591
-            ) );
590
+				'error' => sprintf( __( 'Plugin activation failed: %s', 'gravityview' ), $result->get_error_message() )
591
+			) );
592 592
 		}
593 593
 
594 594
 		wp_send_json_success();
@@ -609,10 +609,10 @@  discard block
 block discarded – undo
609 609
 		deactivate_plugins( $data['path'] );
610 610
 
611 611
 		if( is_plugin_active( $data['path'] ) ) {
612
-            wp_send_json_error( array(
613
-                'error' => sprintf( __( 'Plugin deactivation failed.', 'gravityview' ) )
614
-            ) );
615
-        }
612
+			wp_send_json_error( array(
613
+				'error' => sprintf( __( 'Plugin deactivation failed.', 'gravityview' ) )
614
+			) );
615
+		}
616 616
 
617 617
 		wp_send_json_success();
618 618
 	}
Please login to merge, or discard this patch.
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 */
54 54
 	public function register_noconflict( $items ) {
55 55
 
56
-		$items[] = 'gravityview-admin-installer';
56
+		$items[ ] = 'gravityview-admin-installer';
57 57
 
58 58
 		return $items;
59 59
 	}
@@ -68,21 +68,21 @@  discard block
 block discarded – undo
68 68
 
69 69
 	    $downloads_data = get_site_transient( self::DOWNLOADS_DATA_TRANSIENT );
70 70
 
71
-	    if ( ! $downloads_data && ! isset( $_GET['cache'] ) ) {
71
+	    if ( ! $downloads_data && ! isset( $_GET[ 'cache' ] ) ) {
72 72
 			return;
73 73
 		}
74 74
 
75
-		add_filter( 'plugins_api', function ( $data, $action, $args ) use ( $downloads_data ) {
75
+		add_filter( 'plugins_api', function( $data, $action, $args ) use ( $downloads_data ) {
76 76
 			foreach ( $downloads_data as $extension ) {
77
-				if ( empty( $extension['info'] ) || empty( $args->slug ) || $args->slug !== $extension['info']['slug'] ) {
77
+				if ( empty( $extension[ 'info' ] ) || empty( $args->slug ) || $args->slug !== $extension[ 'info' ][ 'slug' ] ) {
78 78
 					continue;
79 79
 				}
80 80
 
81
-				return (object) array(
82
-					'slug'          => $extension['info']['slug'],
83
-					'name'          => $extension['info']['title'],
84
-					'version'       => $extension['licensing']['version'],
85
-					'download_link' => $extension['files'][0]['file'],
81
+				return (object)array(
82
+					'slug'          => $extension[ 'info' ][ 'slug' ],
83
+					'name'          => $extension[ 'info' ][ 'title' ],
84
+					'version'       => $extension[ 'licensing' ][ 'version' ],
85
+					'download_link' => $extension[ 'files' ][ 0 ][ 'file' ],
86 86
 				);
87 87
 			}
88 88
 
@@ -149,13 +149,13 @@  discard block
 block discarded – undo
149 149
 
150 150
 		foreach ( $all_plugins as $path => $plugin ) {
151 151
 
152
-			if ( empty( $plugin['TextDomain'] ) ) {
152
+			if ( empty( $plugin[ 'TextDomain' ] ) ) {
153 153
 				continue;
154 154
 			}
155 155
 
156
-			$wp_plugins[ $plugin['TextDomain'] ] = array(
156
+			$wp_plugins[ $plugin[ 'TextDomain' ] ] = array(
157 157
 				'path'      => $path,
158
-				'version'   => $plugin['Version'],
158
+				'version'   => $plugin[ 'Version' ],
159 159
 				'activated' => is_plugin_active( $path )
160 160
 			);
161 161
 		}
@@ -209,11 +209,11 @@  discard block
 block discarded – undo
209 209
 
210 210
 		$downloads_data = get_site_transient( self::DOWNLOADS_DATA_TRANSIENT );
211 211
 
212
-		if ( $downloads_data && ! isset( $_GET['cache'] ) ) {
212
+		if ( $downloads_data && ! isset( $_GET[ 'cache' ] ) ) {
213 213
 			return $downloads_data;
214 214
 		}
215 215
 
216
-		if( \GV\Plugin::is_network_activated() ) {
216
+		if ( \GV\Plugin::is_network_activated() ) {
217 217
 			$home_url = network_home_url();
218 218
 		} else {
219 219
 			$home_url = home_url();
@@ -241,13 +241,13 @@  discard block
 block discarded – undo
241 241
 
242 242
 		$downloads_data = json_decode( wp_remote_retrieve_body( $response ), true );
243 243
 
244
-		if ( empty( $downloads_data['products'] ) ) {
244
+		if ( empty( $downloads_data[ 'products' ] ) ) {
245 245
 			return array();
246 246
 		}
247 247
 
248
-		$this->set_downloads_data( $downloads_data['products'] );
248
+		$this->set_downloads_data( $downloads_data[ 'products' ] );
249 249
 
250
-		return $downloads_data['products'];
250
+		return $downloads_data[ 'products' ];
251 251
 	}
252 252
 
253 253
 	/**
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
 
308 308
             <h2><?php esc_html_e( 'The following plugins extend GravityView and Gravity Forms functionality:', 'gravityview' ); ?></h2>
309 309
 
310
-			<a class="button button-secondary gv-admin-installer-refresh-link" href="<?php echo add_query_arg(array( 'cache' => 1 ) ); ?>"><i class="dashicons dashicons-update" style="margin-top: .2em"></i> <?php esc_html_e( 'Refresh', 'gravityview' ); ?></a>
310
+			<a class="button button-secondary gv-admin-installer-refresh-link" href="<?php echo add_query_arg( array( 'cache' => 1 ) ); ?>"><i class="dashicons dashicons-update" style="margin-top: .2em"></i> <?php esc_html_e( 'Refresh', 'gravityview' ); ?></a>
311 311
 
312 312
 			<hr class="wp-header-end" />
313 313
 
@@ -324,11 +324,11 @@  discard block
 block discarded – undo
324 324
 
325 325
 				$this->render_section( 'extensions', esc_html__( 'GravityView Extensions', 'gravityview' ), $downloads_data, $wp_plugins );
326 326
 
327
-				$this->render_section(  'plugins', esc_html__( 'Gravity Forms Add-Ons', 'gravityview' ), $downloads_data, $wp_plugins );
327
+				$this->render_section( 'plugins', esc_html__( 'Gravity Forms Add-Ons', 'gravityview' ), $downloads_data, $wp_plugins );
328 328
 
329
-				$this->render_section(  'labs', esc_html__( 'GravityView Labs', 'gravityview' ), $downloads_data, $wp_plugins );
329
+				$this->render_section( 'labs', esc_html__( 'GravityView Labs', 'gravityview' ), $downloads_data, $wp_plugins );
330 330
 
331
-				$this->render_section(  'friends', esc_html__( 'Friends of GravityView', 'gravityview' ), $downloads_data, $wp_plugins );
331
+				$this->render_section( 'friends', esc_html__( 'Friends of GravityView', 'gravityview' ), $downloads_data, $wp_plugins );
332 332
 				?>
333 333
             </div>
334 334
         </div>
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
 				continue;
356 356
 			}
357 357
 
358
-			if ( empty( $download['info'] ) ) {
358
+			if ( empty( $download[ 'info' ] ) ) {
359 359
 				continue;
360 360
 			}
361 361
 
@@ -383,31 +383,31 @@  discard block
 block discarded – undo
383 383
 
384 384
         $details = $this->get_download_display_details( $download, $wp_plugins );
385 385
 
386
-        $download_info = $details['download_info'];
386
+        $download_info = $details[ 'download_info' ];
387 387
 
388 388
 		?>
389
-        <div class="item <?php echo esc_attr( $details['item_class'] ); ?>">
389
+        <div class="item <?php echo esc_attr( $details[ 'item_class' ] ); ?>">
390 390
             <div class="addon-inner">
391
-                <a href="<?php echo esc_url( $download_info['link'] ); ?>" rel="external noreferrer noopener" title="<?php esc_html_e( 'Visit the plugin page', 'gravityview' ); ?>"><img class="thumbnail" src="<?php echo esc_attr( $download_info['thumbnail'] ); ?>" alt="" /></a>
392
-                <h3><?php echo esc_html( \GV\Utils::get( $download_info, 'installer_title', $download_info['title'] ) ); ?></h3>
391
+                <a href="<?php echo esc_url( $download_info[ 'link' ] ); ?>" rel="external noreferrer noopener" title="<?php esc_html_e( 'Visit the plugin page', 'gravityview' ); ?>"><img class="thumbnail" src="<?php echo esc_attr( $download_info[ 'thumbnail' ] ); ?>" alt="" /></a>
392
+                <h3><?php echo esc_html( \GV\Utils::get( $download_info, 'installer_title', $download_info[ 'title' ] ) ); ?></h3>
393 393
                 <div>
394
-                    <?php if( ! empty( $details['status_label'] ) ) { ?>
395
-                    <div class="status <?php echo esc_attr( $details['status'] ); ?>" title="<?php printf( esc_attr__( 'Plugin status: %s', 'gravityview' ), esc_html( $details['status_label'] ) ); ?>">
396
-                        <span class="dashicons dashicons-admin-plugins"></span> <span class="status-label"><?php echo esc_html( $details['status_label'] ); ?></span>
394
+                    <?php if ( ! empty( $details[ 'status_label' ] ) ) { ?>
395
+                    <div class="status <?php echo esc_attr( $details[ 'status' ] ); ?>" title="<?php printf( esc_attr__( 'Plugin status: %s', 'gravityview' ), esc_html( $details[ 'status_label' ] ) ); ?>">
396
+                        <span class="dashicons dashicons-admin-plugins"></span> <span class="status-label"><?php echo esc_html( $details[ 'status_label' ] ); ?></span>
397 397
                     </div>
398 398
 			        <?php } ?>
399 399
 
400
-					<?php if ( 'gravityview' !== $download_info['slug'] ) { ?>
401
-                    <a data-status="<?php echo esc_attr( $details['status'] ); ?>" data-plugin-path="<?php echo esc_attr( $details['plugin_path'] ); ?>" href="<?php echo esc_url( $details['href'] ); ?>" class="button <?php echo esc_attr( $details['button_class'] ); ?>" title="<?php echo esc_attr( $details['button_title'] ); ?>">
402
-                        <span class="title"><?php echo esc_html( $details['button_label'] ); ?></span>
403
-                        <?php if( $details['spinner'] ) { ?><span class="spinner"></span><?php } ?>
400
+					<?php if ( 'gravityview' !== $download_info[ 'slug' ] ) { ?>
401
+                    <a data-status="<?php echo esc_attr( $details[ 'status' ] ); ?>" data-plugin-path="<?php echo esc_attr( $details[ 'plugin_path' ] ); ?>" href="<?php echo esc_url( $details[ 'href' ] ); ?>" class="button <?php echo esc_attr( $details[ 'button_class' ] ); ?>" title="<?php echo esc_attr( $details[ 'button_title' ] ); ?>">
402
+                        <span class="title"><?php echo esc_html( $details[ 'button_label' ] ); ?></span>
403
+                        <?php if ( $details[ 'spinner' ] ) { ?><span class="spinner"></span><?php } ?>
404 404
                     </a>
405 405
 					<?php } ?>
406 406
                 </div>
407 407
 
408 408
                 <div class="addon-excerpt"><?php
409 409
 
410
-                    $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info['excerpt'] );
410
+                    $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info[ 'excerpt' ] );
411 411
 
412 412
                     // Allow some pure HTML tags, but remove everything else from the excerpt.
413 413
                     $tags = array( '<strong>', '</strong>', '<em>', '</em>', '<code>', '</code>' );
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
 	 */
450 450
 	private function get_download_display_details( $download, $wp_plugins ) {
451 451
 
452
-		$download_info = wp_parse_args( (array) $download['info'], array(
452
+		$download_info = wp_parse_args( (array)$download[ 'info' ], array(
453 453
 			'thumbnail' => '',
454 454
 			'title' => '',
455 455
 			'textdomain' => '',
@@ -461,9 +461,9 @@  discard block
 block discarded – undo
461 461
 			'installer_excerpt' => null, // May not be defined
462 462
 		) );
463 463
 
464
-		$wp_plugin = \GV\Utils::get( $wp_plugins, $download_info['textdomain'], false );
464
+		$wp_plugin = \GV\Utils::get( $wp_plugins, $download_info[ 'textdomain' ], false );
465 465
 
466
-		$has_access = ! empty( $download['files'] );
466
+		$has_access = ! empty( $download[ 'files' ] );
467 467
 		$spinner = true;
468 468
 		$href = $plugin_path = '#';
469 469
 		$status = $item_class = $button_title = $button_class = '';
@@ -473,11 +473,11 @@  discard block
 block discarded – undo
473 473
 		$required_license = $galactic_only ? __( 'All Access', 'gravityview' ) : __( 'Core + Extensions', 'gravityview' );
474 474
 
475 475
 		// The license is not active - no matter what level, this should not work
476
-		if( ! $is_active  && empty( $base_price ) ) {
476
+		if ( ! $is_active && empty( $base_price ) ) {
477 477
 			$spinner      = false;
478 478
 			$status_label = '';
479 479
 			$button_label = sprintf( __( 'Active %s License is Required.', 'gravityview' ), $required_license );
480
-			$href         = $download_info['link'];
480
+			$href         = $download_info[ 'link' ];
481 481
 			$button_class = 'button-primary';
482 482
 		}
483 483
 
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
 			$status_label = '';
488 488
 			$button_label = sprintf( __( 'Purchase Now for %s', 'gravityview' ), '$' . $base_price );
489 489
 			$button_class = 'button-primary button-large';
490
-			$href         = $download_info['link'];
490
+			$href         = $download_info[ 'link' ];
491 491
 			$item_class   = 'featured';
492 492
 		}
493 493
 
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
 			$href         = 'https://gravityview.co/pricing/?utm_source=admin-installer&utm_medium=admin&utm_campaign=Admin%20Notice&utm_content=' . $required_license;
501 501
 		}
502 502
 
503
-        elseif ( ! empty( $download_info['coming_soon'] ) ) {
503
+        elseif ( ! empty( $download_info[ 'coming_soon' ] ) ) {
504 504
 	        $spinner      = false;
505 505
 	        $status       = 'notinstalled';
506 506
 	        $status_label = __( 'Coming Soon', 'gravityview' );
@@ -515,8 +515,8 @@  discard block
 block discarded – undo
515 515
 			$href = add_query_arg(
516 516
 				array(
517 517
 					'action'   => 'install-plugin',
518
-					'plugin'   => $download_info['slug'],
519
-					'_wpnonce' => wp_create_nonce( 'install-plugin_' . $download_info['slug'] ),
518
+					'plugin'   => $download_info[ 'slug' ],
519
+					'_wpnonce' => wp_create_nonce( 'install-plugin_' . $download_info[ 'slug' ] ),
520 520
 				),
521 521
 				self_admin_url( 'update.php' )
522 522
 			);
@@ -532,12 +532,12 @@  discard block
 block discarded – undo
532 532
 			$status = 'inactive';
533 533
 			$status_label = __( 'Inactive', 'gravityview' );
534 534
 			$button_label = __( 'Activate', 'gravityview' );
535
-			$plugin_path = $wp_plugin['path'];
535
+			$plugin_path = $wp_plugin[ 'path' ];
536 536
 			$button_class = 'button-secondary';
537 537
 		}
538 538
 		// The plugin is installed and active
539
-		elseif ( ! empty( $wp_plugin['path'] ) ) {
540
-			$plugin_path = $wp_plugin['path'];
539
+		elseif ( ! empty( $wp_plugin[ 'path' ] ) ) {
540
+			$plugin_path = $wp_plugin[ 'path' ];
541 541
 			$status = 'active';
542 542
 			$status_label = __( 'Active', 'gravityview' );
543 543
 			$button_label = __( 'Deactivate', 'gravityview' );
@@ -550,9 +550,9 @@  discard block
 block discarded – undo
550 550
 			$href = add_query_arg( array( 'license_key' => $license_key ), $href );
551 551
 		}
552 552
 
553
-		$download_info['link'] = add_query_arg( array( 'license_key' => $license_key ), $download_info['link'] );
553
+		$download_info[ 'link' ] = add_query_arg( array( 'license_key' => $license_key ), $download_info[ 'link' ] );
554 554
 
555
-		return compact( 'download_info','plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' );
555
+		return compact( 'download_info', 'plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' );
556 556
     }
557 557
 
558 558
 	/**
@@ -567,11 +567,11 @@  discard block
 block discarded – undo
567 567
 	    $base_price = \GV\Utils::get( $download, 'pricing/amount', 0 );
568 568
 		$base_price = \GFCommon::to_number( $base_price );
569 569
 
570
-		unset( $download['pricing']['amount'] );
570
+		unset( $download[ 'pricing' ][ 'amount' ] );
571 571
 
572 572
 		// Price options array, not single price
573
-		if ( ! $base_price && ! empty( $download['pricing'] ) ) {
574
-			$base_price = array_shift( $download['pricing'] );
573
+		if ( ! $base_price && ! empty( $download[ 'pricing' ] ) ) {
574
+			$base_price = array_shift( $download[ 'pricing' ] );
575 575
 		}
576 576
 
577 577
 		return floatval( $base_price );
@@ -585,13 +585,13 @@  discard block
 block discarded – undo
585 585
 	public function activate_download() {
586 586
 		$data = \GV\Utils::_POST( 'data', array() );
587 587
 
588
-		if ( empty( $data['path'] ) ) {
588
+		if ( empty( $data[ 'path' ] ) ) {
589 589
 			return;
590 590
 		}
591 591
 
592
-		$result = activate_plugin( $data['path'] );
592
+		$result = activate_plugin( $data[ 'path' ] );
593 593
 
594
-		if ( is_wp_error( $result ) || ! is_plugin_active( $data['path'] ) ) {
594
+		if ( is_wp_error( $result ) || ! is_plugin_active( $data[ 'path' ] ) ) {
595 595
 			wp_send_json_error( array(
596 596
                 'error' => sprintf( __( 'Plugin activation failed: %s', 'gravityview' ), $result->get_error_message() )
597 597
             ) );
@@ -608,13 +608,13 @@  discard block
 block discarded – undo
608 608
 	public function deactivate_download() {
609 609
 		$data = \GV\Utils::_POST( 'data', array() );
610 610
 
611
-		if ( empty( $data['path'] ) ) {
611
+		if ( empty( $data[ 'path' ] ) ) {
612 612
 			return;
613 613
 		}
614 614
 
615
-		deactivate_plugins( $data['path'] );
615
+		deactivate_plugins( $data[ 'path' ] );
616 616
 
617
-		if( is_plugin_active( $data['path'] ) ) {
617
+		if ( is_plugin_active( $data[ 'path' ] ) ) {
618 618
             wp_send_json_error( array(
619 619
                 'error' => sprintf( __( 'Plugin deactivation failed.', 'gravityview' ) )
620 620
             ) );
Please login to merge, or discard this patch.
includes/extensions/edit-entry/class-edit-entry-render.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@
 block discarded – undo
282 282
 	/**
283 283
 	 * Process edit entry form save
284 284
 	 *
285
-	 * @param array $gv_data The View data.
285
+	 * @param GravityView_View_Data $gv_data The View data.
286 286
 	 */
287 287
 	private function process_save( $gv_data ) {
288 288
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -573,7 +573,8 @@  discard block
 block discarded – undo
573 573
 
574 574
 							// Only allow quantity to be set if it's allowed to be edited
575 575
 							if ( in_array( $field_id, $allowed_fields ) && $input_id == 3 ) {
576
-							} else { // otherwise set to what it previously was
576
+							} else {
577
+// otherwise set to what it previously was
577 578
 								$_POST[ $input_name ] = $entry[ $input['id'] ];
578 579
 							}
579 580
 						} else {
@@ -958,7 +959,7 @@  discard block
 block discarded – undo
958 959
 
959 960
 			$back_link = remove_query_arg( array( 'page', 'view', 'edit' ) );
960 961
 
961
-			if( ! $this->is_valid ){
962
+			if( ! $this->is_valid ) {
962 963
 
963 964
 				// Keeping this compatible with Gravity Forms.
964 965
 				$validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>";
@@ -2070,9 +2071,7 @@  discard block
 block discarded – undo
2070 2071
 		// Verify
2071 2072
 		else if( ! $this->is_edit_entry() ) {
2072 2073
 			$valid = false;
2073
-		}
2074
-
2075
-		else {
2074
+		} else {
2076 2075
 			$valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key );
2077 2076
 		}
2078 2077
 
Please login to merge, or discard this patch.
Indentation   +299 added lines, -299 removed lines patch added patch discarded remove patch
@@ -102,10 +102,10 @@  discard block
 block discarded – undo
102 102
 
103 103
 	/**
104 104
 	 * ID of the current post. May also be ID of the current View.
105
-     *
106
-     * @since 2.0.13
107 105
 	 *
108
-     * @var int
106
+	 * @since 2.0.13
107
+	 *
108
+	 * @var int
109 109
 	 */
110 110
 	public $post_id;
111 111
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	 */
190 190
 	public function prevent_maybe_process_form() {
191 191
 
192
-	    if( ! $this->is_edit_entry_submission() ) {
192
+		if( ! $this->is_edit_entry_submission() ) {
193 193
 			return;
194 194
 		}
195 195
 
@@ -228,14 +228,14 @@  discard block
 block discarded – undo
228 228
 	 * When Edit entry view is requested setup the vars
229 229
 	 */
230 230
 	private function setup_vars() {
231
-        global $post;
231
+		global $post;
232 232
 
233 233
 		$gravityview_view = GravityView_View::getInstance();
234 234
 
235 235
 
236 236
 		$entries = $gravityview_view->getEntries();
237
-	    self::$original_entry = $entries[0];
238
-	    $this->entry = $entries[0];
237
+		self::$original_entry = $entries[0];
238
+		$this->entry = $entries[0];
239 239
 
240 240
 		self::$original_form = GFAPI::get_form( $this->entry['form_id'] );
241 241
 		$this->form = $gravityview_view->getForm();
@@ -377,8 +377,8 @@  discard block
 block discarded – undo
377 377
 
378 378
 			GFFormsModel::save_lead( $form, $this->entry );
379 379
 
380
-	        // Delete the values for hidden inputs
381
-	        $this->unset_hidden_field_values();
380
+			// Delete the values for hidden inputs
381
+			$this->unset_hidden_field_values();
382 382
 
383 383
 			$this->entry['date_created'] = $date_created;
384 384
 
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
 			// Perform actions normally performed after updating a lead
392 392
 			$this->after_update();
393 393
 
394
-	        /**
394
+			/**
395 395
 			 * Must be AFTER after_update()!
396 396
 			 * @see https://github.com/gravityview/GravityView/issues/764
397 397
 			 */
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 
400 400
 			/**
401 401
 			 * @action `gravityview/edit_entry/after_update` Perform an action after the entry has been updated using Edit Entry
402
-             * @since 2.1 Added $gv_data parameter
402
+			 * @since 2.1 Added $gv_data parameter
403 403
 			 * @param array $form Gravity Forms form array
404 404
 			 * @param string $entry_id Numeric ID of the entry that was updated
405 405
 			 * @param GravityView_Edit_Entry_Render $this This object
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
 	 * @return void
424 424
 	 */
425 425
 	private function unset_hidden_field_values() {
426
-	    global $wpdb;
426
+		global $wpdb;
427 427
 
428 428
 		/**
429 429
 		 * @filter `gravityview/edit_entry/unset_hidden_field_values` Whether to delete values of fields hidden by conditional logic
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
 			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) );
448 448
 		}
449 449
 
450
-	    foreach ( $this->entry as $input_id => $field_value ) {
450
+		foreach ( $this->entry as $input_id => $field_value ) {
451 451
 
452 452
 			if ( ! is_numeric( $input_id ) ) {
453 453
 				continue;
@@ -457,8 +457,8 @@  discard block
 block discarded – undo
457 457
 				continue;
458 458
 			}
459 459
 
460
-		    // Reset fields that are or would be hidden
461
-		    if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), $this->entry ) ) {
460
+			// Reset fields that are or would be hidden
461
+			if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), $this->entry ) ) {
462 462
 
463 463
 				$empty_value = $field->get_value_save_entry(
464 464
 					is_array( $field->get_entry_inputs() ) ? array() : '',
@@ -470,16 +470,16 @@  discard block
 block discarded – undo
470 470
 					$empty_value = '';
471 471
 				}
472 472
 
473
-			    $lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id );
473
+				$lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id );
474 474
 
475
-			    GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value );
475
+				GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value );
476 476
 
477
-			    // Prevent the $_POST values of hidden fields from being used as default values when rendering the form
477
+				// Prevent the $_POST values of hidden fields from being used as default values when rendering the form
478 478
 				// after submission
479
-			    $post_input_id = 'input_' . str_replace( '.', '_', $input_id );
480
-			    $_POST[ $post_input_id ] = '';
481
-		    }
482
-	    }
479
+				$post_input_id = 'input_' . str_replace( '.', '_', $input_id );
480
+				$_POST[ $post_input_id ] = '';
481
+			}
482
+		}
483 483
 	}
484 484
 
485 485
 	/**
@@ -634,7 +634,7 @@  discard block
 block discarded – undo
634 634
 
635 635
 		$form = $this->filter_conditional_logic( $this->form );
636 636
 
637
-	    /** @type GF_Field $field */
637
+		/** @type GF_Field $field */
638 638
 		foreach( $form['fields'] as $k => &$field ) {
639 639
 
640 640
 			/**
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
 
650 650
 			if( isset( $field->inputs ) && is_array( $field->inputs ) ) {
651 651
 				foreach( $field->inputs as $key => $input ) {
652
-				    $field->inputs[ $key ][ 'id' ] = (string)$input['id'];
652
+					$field->inputs[ $key ][ 'id' ] = (string)$input['id'];
653 653
 				}
654 654
 			}
655 655
 		}
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
 
690 690
 				$inputs = $field->get_entry_inputs();
691 691
 				if ( is_array( $inputs ) ) {
692
-				    foreach ( $inputs as $input ) {
692
+					foreach ( $inputs as $input ) {
693 693
 						list( $field_id, $input_id ) = rgexplode( '.', $input['id'], 2 );
694 694
 
695 695
 						if ( 'product' === $field->type ) {
@@ -708,7 +708,7 @@  discard block
 block discarded – undo
708 708
 						}
709 709
 
710 710
 						GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input['id'] );
711
-				    }
711
+					}
712 712
 				} else {
713 713
 					// Set to what it previously was if it's not editable
714 714
 					if ( ! in_array( $field->id, $allowed_fields ) ) {
@@ -754,7 +754,7 @@  discard block
 block discarded – undo
754 754
 			$value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] );
755 755
 
756 756
 			$ary = ! empty( $value ) ? explode( '|:|', $value ) : array();
757
-	        $ary = stripslashes_deep( $ary );
757
+			$ary = stripslashes_deep( $ary );
758 758
 			$img_url = \GV\Utils::get( $ary, 0 );
759 759
 
760 760
 			$img_title       = count( $ary ) > 1 ? $ary[1] : '';
@@ -827,7 +827,7 @@  discard block
 block discarded – undo
827 827
 	private function maybe_update_post_fields( $form ) {
828 828
 
829 829
 		if( empty( $this->entry['post_id'] ) ) {
830
-	        gravityview()->log->debug( 'This entry has no post fields. Continuing...' );
830
+			gravityview()->log->debug( 'This entry has no post fields. Continuing...' );
831 831
 			return;
832 832
 		}
833 833
 
@@ -862,49 +862,49 @@  discard block
 block discarded – undo
862 862
 
863 863
 				switch( $field->type ) {
864 864
 
865
-				    case 'post_title':
866
-				        $post_title = $value;
867
-				        if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) {
868
-				            $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
869
-				        }
870
-				        $updated_post->post_title = $post_title;
871
-				        $updated_post->post_name  = $post_title;
872
-				        unset( $post_title );
873
-				        break;
874
-
875
-				    case 'post_content':
876
-				        $post_content = $value;
877
-				        if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) {
878
-				            $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
879
-				        }
880
-				        $updated_post->post_content = $post_content;
881
-				        unset( $post_content );
882
-				        break;
883
-				    case 'post_excerpt':
884
-				        $updated_post->post_excerpt = $value;
885
-				        break;
886
-				    case 'post_tags':
887
-				        wp_set_post_tags( $post_id, $value, false );
888
-				        break;
889
-				    case 'post_category':
890
-				        break;
891
-				    case 'post_custom_field':
865
+					case 'post_title':
866
+						$post_title = $value;
867
+						if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) {
868
+							$post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
869
+						}
870
+						$updated_post->post_title = $post_title;
871
+						$updated_post->post_name  = $post_title;
872
+						unset( $post_title );
873
+						break;
874
+
875
+					case 'post_content':
876
+						$post_content = $value;
877
+						if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) {
878
+							$post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
879
+						}
880
+						$updated_post->post_content = $post_content;
881
+						unset( $post_content );
882
+						break;
883
+					case 'post_excerpt':
884
+						$updated_post->post_excerpt = $value;
885
+						break;
886
+					case 'post_tags':
887
+						wp_set_post_tags( $post_id, $value, false );
888
+						break;
889
+					case 'post_category':
890
+						break;
891
+					case 'post_custom_field':
892 892
 						if ( is_array( $value ) && ( floatval( $field_id ) !== floatval( $field->id ) ) ) {
893 893
 							$value = $value[ $field_id ];
894 894
 						}
895 895
 
896
-				        if( ! empty( $field->customFieldTemplateEnabled ) ) {
897
-				            $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
898
-				        }
896
+						if( ! empty( $field->customFieldTemplateEnabled ) ) {
897
+							$value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
898
+						}
899 899
 
900 900
 						$value = $field->get_value_save_entry( $value, $form, '', $this->entry['id'], $this->entry );
901 901
 
902
-				        update_post_meta( $post_id, $field->postCustomFieldName, $value );
903
-				        break;
902
+						update_post_meta( $post_id, $field->postCustomFieldName, $value );
903
+						break;
904 904
 
905
-				    case 'post_image':
906
-				        $value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id );
907
-				        break;
905
+					case 'post_image':
906
+						$value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id );
907
+						break;
908 908
 
909 909
 				}
910 910
 
@@ -1074,14 +1074,14 @@  discard block
 block discarded – undo
1074 1074
 			?><h2 class="gv-edit-entry-title">
1075 1075
 				<span><?php
1076 1076
 
1077
-				    /**
1078
-				     * @filter `gravityview_edit_entry_title` Modify the edit entry title
1079
-				     * @param string $edit_entry_title Modify the "Edit Entry" title
1080
-				     * @param GravityView_Edit_Entry_Render $this This object
1081
-				     */
1082
-				    $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
1077
+					/**
1078
+					 * @filter `gravityview_edit_entry_title` Modify the edit entry title
1079
+					 * @param string $edit_entry_title Modify the "Edit Entry" title
1080
+					 * @param GravityView_Edit_Entry_Render $this This object
1081
+					 */
1082
+					$edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
1083 1083
 
1084
-				    echo esc_attr( $edit_entry_title );
1084
+					echo esc_attr( $edit_entry_title );
1085 1085
 			?></span>
1086 1086
 			</h2>
1087 1087
 
@@ -1136,13 +1136,13 @@  discard block
 block discarded – undo
1136 1136
 				);
1137 1137
 
1138 1138
 				/**
1139
-				* @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1140
-				* @since 1.16.3
1141
-				* @param array $labels Default button labels associative array
1142
-				* @param array $form The Gravity Forms form
1143
-				* @param array $entry The Gravity Forms entry
1144
-				* @param int $view_id The current View ID
1145
-				*/
1139
+				 * @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1140
+				 * @since 1.16.3
1141
+				 * @param array $labels Default button labels associative array
1142
+				 * @param array $form The Gravity Forms form
1143
+				 * @param array $entry The Gravity Forms entry
1144
+				 * @param int $view_id The current View ID
1145
+				 */
1146 1146
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1147 1147
 
1148 1148
 				$this->is_paged_submitted = \GV\Utils::_POST( 'save' ) === $labels['submit'];
@@ -1179,26 +1179,26 @@  discard block
 block discarded – undo
1179 1179
 
1180 1180
 				switch ( $edit_redirect ) {
1181 1181
 
1182
-                    case '0':
1183
-	                    $redirect_url = $back_link;
1184
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' );
1185
-                        break;
1186
-
1187
-                    case '1':
1188
-	                    $redirect_url = $directory_link = GravityView_API::directory_link();
1189
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' );
1190
-	                    break;
1191
-
1192
-                    case '2':
1193
-	                    $redirect_url = $edit_redirect_url;
1194
-	                    $redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' );
1195
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' );
1196
-                        break;
1197
-
1198
-                    case '':
1199
-                    default:
1200
-					    $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' );
1201
-                        break;
1182
+					case '0':
1183
+						$redirect_url = $back_link;
1184
+						$entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' );
1185
+						break;
1186
+
1187
+					case '1':
1188
+						$redirect_url = $directory_link = GravityView_API::directory_link();
1189
+						$entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' );
1190
+						break;
1191
+
1192
+					case '2':
1193
+						$redirect_url = $edit_redirect_url;
1194
+						$redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' );
1195
+						$entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' );
1196
+						break;
1197
+
1198
+					case '':
1199
+					default:
1200
+						$entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' );
1201
+						break;
1202 1202
 				}
1203 1203
 
1204 1204
 				if ( isset( $redirect_url ) ) {
@@ -1264,13 +1264,13 @@  discard block
 block discarded – undo
1264 1264
 				);
1265 1265
 
1266 1266
 				/**
1267
-				* @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1268
-				* @since 1.16.3
1269
-				* @param array $labels Default button labels associative array
1270
-				* @param array $form The Gravity Forms form
1271
-				* @param array $entry The Gravity Forms entry
1272
-				* @param int $view_id The current View ID
1273
-				*/
1267
+				 * @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1268
+				 * @since 1.16.3
1269
+				 * @param array $labels Default button labels associative array
1270
+				 * @param array $form The Gravity Forms form
1271
+				 * @param array $entry The Gravity Forms entry
1272
+				 * @param int $view_id The current View ID
1273
+				 */
1274 1274
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1275 1275
 
1276 1276
 				GFFormDisplay::$submission[ $this->form['id'] ][ 'form' ] = $this->form;
@@ -1316,7 +1316,7 @@  discard block
 block discarded – undo
1316 1316
 
1317 1317
 		ob_get_clean();
1318 1318
 
1319
-	    remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 );
1319
+		remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 );
1320 1320
 		remove_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) );
1321 1321
 		remove_filter( 'gform_next_button', array( $this, 'render_form_buttons' ) );
1322 1322
 		remove_filter( 'gform_previous_button', array( $this, 'render_form_buttons' ) );
@@ -1376,7 +1376,7 @@  discard block
 block discarded – undo
1376 1376
 
1377 1377
 		// for now we don't support Save and Continue feature.
1378 1378
 		if( ! self::$supports_save_and_continue ) {
1379
-	        unset( $form['save'] );
1379
+			unset( $form['save'] );
1380 1380
 		}
1381 1381
 
1382 1382
 		$form = $this->unselect_default_values( $form );
@@ -1403,30 +1403,30 @@  discard block
 block discarded – undo
1403 1403
 			return $field_content;
1404 1404
 		}
1405 1405
 
1406
-        $message = null;
1406
+		$message = null;
1407 1407
 
1408
-        // First, make sure they have the capability to edit the post.
1409
-        if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1408
+		// First, make sure they have the capability to edit the post.
1409
+		if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1410 1410
 
1411
-            /**
1412
-             * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1413
-             * @param string $message The existing "You don't have permission..." text
1414
-             */
1415
-            $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1411
+			/**
1412
+			 * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1413
+			 * @param string $message The existing "You don't have permission..." text
1414
+			 */
1415
+			$message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1416 1416
 
1417
-        } elseif( null === get_post( $this->entry['post_id'] ) ) {
1418
-            /**
1419
-             * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1420
-             * @param string $message The existing "This field is not editable; the post no longer exists." text
1421
-             */
1422
-            $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1423
-        }
1417
+		} elseif( null === get_post( $this->entry['post_id'] ) ) {
1418
+			/**
1419
+			 * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1420
+			 * @param string $message The existing "This field is not editable; the post no longer exists." text
1421
+			 */
1422
+			$message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1423
+		}
1424 1424
 
1425
-        if( $message ) {
1426
-            $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1427
-        }
1425
+		if( $message ) {
1426
+			$field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1427
+		}
1428 1428
 
1429
-        return $field_content;
1429
+		return $field_content;
1430 1430
 	}
1431 1431
 
1432 1432
 	/**
@@ -1454,7 +1454,7 @@  discard block
 block discarded – undo
1454 1454
 			|| ! empty( $field_content )
1455 1455
 			|| in_array( $field->type, array( 'honeypot' ) )
1456 1456
 		) {
1457
-	        return $field_content;
1457
+			return $field_content;
1458 1458
 		}
1459 1459
 
1460 1460
 		// SET SOME FIELD DEFAULTS TO PREVENT ISSUES
@@ -1462,24 +1462,24 @@  discard block
 block discarded – undo
1462 1462
 
1463 1463
 		$field_value = $this->get_field_value( $field );
1464 1464
 
1465
-	    // Prevent any PHP warnings, like undefined index
1466
-	    ob_start();
1465
+		// Prevent any PHP warnings, like undefined index
1466
+		ob_start();
1467 1467
 
1468
-	    $return = null;
1468
+		$return = null;
1469 1469
 
1470 1470
 		/** @var GravityView_Field $gv_field */
1471 1471
 		if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1472 1472
 			$return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field );
1473 1473
 		} else {
1474
-	        $return = $field->get_field_input( $this->form, $field_value, $this->entry );
1475
-	    }
1474
+			$return = $field->get_field_input( $this->form, $field_value, $this->entry );
1475
+		}
1476 1476
 
1477
-	    // If there was output, it's an error
1478
-	    $warnings = ob_get_clean();
1477
+		// If there was output, it's an error
1478
+		$warnings = ob_get_clean();
1479 1479
 
1480
-	    if( !empty( $warnings ) ) {
1481
-		    gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) );
1482
-	    }
1480
+		if( !empty( $warnings ) ) {
1481
+			gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) );
1482
+		}
1483 1483
 
1484 1484
 		return $return;
1485 1485
 	}
@@ -1514,8 +1514,8 @@  discard block
 block discarded – undo
1514 1514
 				$input_id = strval( $input['id'] );
1515 1515
 
1516 1516
 				if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) {
1517
-				    $field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1518
-				    $allow_pre_populated = false;
1517
+					$field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1518
+					$allow_pre_populated = false;
1519 1519
 				}
1520 1520
 
1521 1521
 			}
@@ -1539,7 +1539,7 @@  discard block
 block discarded – undo
1539 1539
 			if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) {
1540 1540
 				$categories = array();
1541 1541
 				foreach ( explode( ',', $field_value ) as $cat_string ) {
1542
-				    $categories[] = GFCommon::format_post_category( $cat_string, true );
1542
+					$categories[] = GFCommon::format_post_category( $cat_string, true );
1543 1543
 				}
1544 1544
 				$field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories );
1545 1545
 			}
@@ -1549,25 +1549,25 @@  discard block
 block discarded – undo
1549 1549
 		// if value is empty get the default value if defined
1550 1550
 		$field_value = $field->get_value_default_if_empty( $field_value );
1551 1551
 
1552
-	    /**
1553
-	     * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed
1554
-	     * @since 1.11
1555
-	     * @since 1.20 Added third param
1556
-	     * @param mixed $field_value field value used to populate the input
1557
-	     * @param object $field Gravity Forms field object ( Class GF_Field )
1558
-	     * @param GravityView_Edit_Entry_Render $this Current object
1559
-	     */
1560
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this );
1561
-
1562
-	    /**
1563
-	     * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type
1564
-	     * @since 1.17
1565
-	     * @since 1.20 Added third param
1566
-	     * @param mixed $field_value field value used to populate the input
1567
-	     * @param GF_Field $field Gravity Forms field object
1568
-	     * @param GravityView_Edit_Entry_Render $this Current object
1569
-	     */
1570
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1552
+		/**
1553
+		 * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed
1554
+		 * @since 1.11
1555
+		 * @since 1.20 Added third param
1556
+		 * @param mixed $field_value field value used to populate the input
1557
+		 * @param object $field Gravity Forms field object ( Class GF_Field )
1558
+		 * @param GravityView_Edit_Entry_Render $this Current object
1559
+		 */
1560
+		$field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this );
1561
+
1562
+		/**
1563
+		 * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type
1564
+		 * @since 1.17
1565
+		 * @since 1.20 Added third param
1566
+		 * @param mixed $field_value field value used to populate the input
1567
+		 * @param GF_Field $field Gravity Forms field object
1568
+		 * @param GravityView_Edit_Entry_Render $this Current object
1569
+		 */
1570
+		$field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1571 1571
 
1572 1572
 		return $field_value;
1573 1573
 	}
@@ -1594,7 +1594,7 @@  discard block
 block discarded – undo
1594 1594
 			// This is because we're doing admin form pretending to be front-end, so Gravity Forms
1595 1595
 			// expects certain field array items to be set.
1596 1596
 			foreach ( array( 'noDuplicates', 'adminOnly', 'inputType', 'isRequired', 'enablePrice', 'inputs', 'allowedExtensions' ) as $key ) {
1597
-	            $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1597
+				$field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1598 1598
 			}
1599 1599
 
1600 1600
 			switch( RGFormsModel::get_input_type( $field ) ) {
@@ -1608,61 +1608,61 @@  discard block
 block discarded – undo
1608 1608
 				 */
1609 1609
 				case 'fileupload':
1610 1610
 
1611
-				    // Set the previous value
1612
-				    $entry = $this->get_entry();
1611
+					// Set the previous value
1612
+					$entry = $this->get_entry();
1613 1613
 
1614
-				    $input_name = 'input_'.$field->id;
1615
-				    $form_id = $form['id'];
1614
+					$input_name = 'input_'.$field->id;
1615
+					$form_id = $form['id'];
1616 1616
 
1617
-				    $value = NULL;
1617
+					$value = NULL;
1618 1618
 
1619
-				    // Use the previous entry value as the default.
1620
-				    if( isset( $entry[ $field->id ] ) ) {
1621
-				        $value = $entry[ $field->id ];
1622
-				    }
1619
+					// Use the previous entry value as the default.
1620
+					if( isset( $entry[ $field->id ] ) ) {
1621
+						$value = $entry[ $field->id ];
1622
+					}
1623 1623
 
1624
-				    // If this is a single upload file
1625
-				    if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1626
-				        $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1627
-				        $value = $file_path['url'];
1624
+					// If this is a single upload file
1625
+					if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1626
+						$file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1627
+						$value = $file_path['url'];
1628 1628
 
1629
-				    } else {
1629
+					} else {
1630 1630
 
1631
-				        // Fix PHP warning on line 1498 of form_display.php for post_image fields
1632
-				        // Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1633
-				        $_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1631
+						// Fix PHP warning on line 1498 of form_display.php for post_image fields
1632
+						// Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1633
+						$_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1634 1634
 
1635
-				    }
1635
+					}
1636 1636
 
1637
-				    if ( \GV\Utils::get( $field, "multipleFiles" ) ) {
1637
+					if ( \GV\Utils::get( $field, "multipleFiles" ) ) {
1638 1638
 
1639
-				        // If there are fresh uploads, process and merge them.
1640
-				        // Otherwise, use the passed values, which should be json-encoded array of URLs
1641
-				        if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1642
-				            $value = empty( $value ) ? '[]' : $value;
1643
-				            $value = stripslashes_deep( $value );
1644
-				            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1645
-				        }
1639
+						// If there are fresh uploads, process and merge them.
1640
+						// Otherwise, use the passed values, which should be json-encoded array of URLs
1641
+						if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1642
+							$value = empty( $value ) ? '[]' : $value;
1643
+							$value = stripslashes_deep( $value );
1644
+							$value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1645
+						}
1646 1646
 
1647
-				    } else {
1647
+					} else {
1648 1648
 
1649
-				        // A file already exists when editing an entry
1650
-				        // We set this to solve issue when file upload fields are required.
1651
-				        GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value;
1649
+						// A file already exists when editing an entry
1650
+						// We set this to solve issue when file upload fields are required.
1651
+						GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value;
1652 1652
 
1653
-				    }
1653
+					}
1654 1654
 
1655
-				    $this->entry[ $input_name ] = $value;
1656
-				    $_POST[ $input_name ] = $value;
1655
+					$this->entry[ $input_name ] = $value;
1656
+					$_POST[ $input_name ] = $value;
1657 1657
 
1658
-				    break;
1658
+					break;
1659 1659
 
1660 1660
 				case 'number':
1661
-				    // Fix "undefined index" issue at line 1286 in form_display.php
1662
-				    if( !isset( $_POST['input_'.$field->id ] ) ) {
1663
-				        $_POST['input_'.$field->id ] = NULL;
1664
-				    }
1665
-				    break;
1661
+					// Fix "undefined index" issue at line 1286 in form_display.php
1662
+					if( !isset( $_POST['input_'.$field->id ] ) ) {
1663
+						$_POST['input_'.$field->id ] = NULL;
1664
+					}
1665
+					break;
1666 1666
 			}
1667 1667
 
1668 1668
 		}
@@ -1752,43 +1752,43 @@  discard block
 block discarded – undo
1752 1752
 				case 'fileupload' :
1753 1753
 				case 'post_image':
1754 1754
 
1755
-				    // in case nothing is uploaded but there are already files saved
1756
-				    if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1757
-				        $field->failed_validation = false;
1758
-				        unset( $field->validation_message );
1759
-				    }
1755
+					// in case nothing is uploaded but there are already files saved
1756
+					if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1757
+						$field->failed_validation = false;
1758
+						unset( $field->validation_message );
1759
+					}
1760 1760
 
1761
-				    // validate if multi file upload reached max number of files [maxFiles] => 2
1762
-				    if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) {
1761
+					// validate if multi file upload reached max number of files [maxFiles] => 2
1762
+					if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) {
1763 1763
 
1764
-				        $input_name = 'input_' . $field->id;
1765
-				        //uploaded
1766
-				        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1764
+						$input_name = 'input_' . $field->id;
1765
+						//uploaded
1766
+						$file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1767 1767
 
1768
-				        //existent
1769
-				        $entry = $this->get_entry();
1770
-				        $value = NULL;
1771
-				        if( isset( $entry[ $field->id ] ) ) {
1772
-				            $value = json_decode( $entry[ $field->id ], true );
1773
-				        }
1768
+						//existent
1769
+						$entry = $this->get_entry();
1770
+						$value = NULL;
1771
+						if( isset( $entry[ $field->id ] ) ) {
1772
+							$value = json_decode( $entry[ $field->id ], true );
1773
+						}
1774 1774
 
1775
-				        // count uploaded files and existent entry files
1776
-				        $count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) +
1777
-						               ( is_array( $value ) ? count( $value ) : 0 );
1775
+						// count uploaded files and existent entry files
1776
+						$count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) +
1777
+									   ( is_array( $value ) ? count( $value ) : 0 );
1778 1778
 
1779
-				        if( $count_files > $field->maxFiles ) {
1780
-				            $field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1781
-				            $field->failed_validation = 1;
1782
-				            $gv_valid = false;
1779
+						if( $count_files > $field->maxFiles ) {
1780
+							$field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1781
+							$field->failed_validation = 1;
1782
+							$gv_valid = false;
1783 1783
 
1784
-				            // in case of error make sure the newest upload files are removed from the upload input
1785
-				            GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1786
-				        }
1784
+							// in case of error make sure the newest upload files are removed from the upload input
1785
+							GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1786
+						}
1787 1787
 
1788
-				    }
1788
+					}
1789 1789
 
1790 1790
 
1791
-				    break;
1791
+					break;
1792 1792
 
1793 1793
 			}
1794 1794
 
@@ -1799,47 +1799,47 @@  discard block
 block discarded – undo
1799 1799
 
1800 1800
 				switch ( $field_type ) {
1801 1801
 
1802
-				    // Captchas don't need to be re-entered.
1803
-				    case 'captcha':
1802
+					// Captchas don't need to be re-entered.
1803
+					case 'captcha':
1804 1804
 
1805
-				        // Post Image fields aren't editable, so we un-fail them.
1806
-				    case 'post_image':
1807
-				        $field->failed_validation = false;
1808
-				        unset( $field->validation_message );
1809
-				        break;
1805
+						// Post Image fields aren't editable, so we un-fail them.
1806
+					case 'post_image':
1807
+						$field->failed_validation = false;
1808
+						unset( $field->validation_message );
1809
+						break;
1810 1810
 
1811 1811
 				}
1812 1812
 
1813 1813
 				// You can't continue inside a switch, so we do it after.
1814 1814
 				if( empty( $field->failed_validation ) ) {
1815
-				    continue;
1815
+					continue;
1816 1816
 				}
1817 1817
 
1818 1818
 				// checks if the No Duplicates option is not validating entry against itself, since
1819 1819
 				// we're editing a stored entry, it would also assume it's a duplicate.
1820 1820
 				if( !empty( $field->noDuplicates ) ) {
1821 1821
 
1822
-				    $entry = $this->get_entry();
1822
+					$entry = $this->get_entry();
1823 1823
 
1824
-				    // If the value of the entry is the same as the stored value
1825
-				    // Then we can assume it's not a duplicate, it's the same.
1826
-				    if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1827
-				        //if value submitted was not changed, then don't validate
1828
-				        $field->failed_validation = false;
1824
+					// If the value of the entry is the same as the stored value
1825
+					// Then we can assume it's not a duplicate, it's the same.
1826
+					if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1827
+						//if value submitted was not changed, then don't validate
1828
+						$field->failed_validation = false;
1829 1829
 
1830
-				        unset( $field->validation_message );
1830
+						unset( $field->validation_message );
1831 1831
 
1832
-				        gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', array( 'data' => $entry ) );
1832
+						gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', array( 'data' => $entry ) );
1833 1833
 
1834
-				        continue;
1835
-				    }
1834
+						continue;
1835
+					}
1836 1836
 				}
1837 1837
 
1838 1838
 				// if here then probably we are facing the validation 'At least one field must be filled out'
1839 1839
 				if( GFFormDisplay::is_empty( $field, $this->form_id  ) && empty( $field->isRequired ) ) {
1840
-				    unset( $field->validation_message );
1840
+					unset( $field->validation_message );
1841 1841
 					$field->failed_validation = false;
1842
-				    continue;
1842
+					continue;
1843 1843
 				}
1844 1844
 
1845 1845
 				$gv_valid = false;
@@ -1903,8 +1903,8 @@  discard block
 block discarded – undo
1903 1903
 		// Hide fields depending on admin settings
1904 1904
 		$fields = $this->filter_fields( $form['fields'], $edit_fields );
1905 1905
 
1906
-	    // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1907
-	    $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
1906
+		// If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1907
+		$fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
1908 1908
 
1909 1909
 		/**
1910 1910
 		 * @filter `gravityview/edit_entry/form_fields` Modify the fields displayed in Edit Entry form
@@ -1995,11 +1995,11 @@  discard block
 block discarded – undo
1995 1995
 		// The edit tab has been configured, so we loop through to configured settings
1996 1996
 		foreach ( $configured_fields as $configured_field ) {
1997 1997
 
1998
-	        /** @var GF_Field $field */
1999
-	        foreach ( $fields as $field ) {
1998
+			/** @var GF_Field $field */
1999
+			foreach ( $fields as $field ) {
2000 2000
 				if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
2001
-				    $edit_fields[] = $this->merge_field_properties( $field, $configured_field );
2002
-				    break;
2001
+					$edit_fields[] = $this->merge_field_properties( $field, $configured_field );
2002
+					break;
2003 2003
 				}
2004 2004
 
2005 2005
 			}
@@ -2055,28 +2055,28 @@  discard block
 block discarded – undo
2055 2055
 	 */
2056 2056
 	private function filter_admin_only_fields( $fields = array(), $edit_fields = null, $form = array(), $view_id = 0 ) {
2057 2057
 
2058
-	    /**
2058
+		/**
2059 2059
 		 * @filter `gravityview/edit_entry/use_gf_admin_only_setting` When Edit tab isn't configured, should the Gravity Forms "Admin Only" field settings be used to control field display to non-admins? Default: true
2060
-	     * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators.
2061
-	     * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions
2062
-	     * @since 1.9.1
2063
-	     * @param boolean $use_gf_adminonly_setting True: Hide field if set to Admin Only in GF and the user is not an admin. False: show field based on GV permissions, ignoring GF permissions.
2064
-	     * @param array $form GF Form array
2065
-	     * @param int $view_id View ID
2066
-	     */
2067
-	    $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
2068
-
2069
-	    if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
2060
+		 * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators.
2061
+		 * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions
2062
+		 * @since 1.9.1
2063
+		 * @param boolean $use_gf_adminonly_setting True: Hide field if set to Admin Only in GF and the user is not an admin. False: show field based on GV permissions, ignoring GF permissions.
2064
+		 * @param array $form GF Form array
2065
+		 * @param int $view_id View ID
2066
+		 */
2067
+		$use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
2068
+
2069
+		if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
2070 2070
 			foreach( $fields as $k => $field ) {
2071 2071
 				if( $field->adminOnly ) {
2072
-				    unset( $fields[ $k ] );
2072
+					unset( $fields[ $k ] );
2073 2073
 				}
2074 2074
 			}
2075 2075
 			return array_values( $fields );
2076 2076
 		}
2077 2077
 
2078
-	    foreach( $fields as &$field ) {
2079
-		    $field->adminOnly = false;
2078
+		foreach( $fields as &$field ) {
2079
+			$field->adminOnly = false;
2080 2080
 		}
2081 2081
 
2082 2082
 		return $fields;
@@ -2096,13 +2096,13 @@  discard block
 block discarded – undo
2096 2096
 	 */
2097 2097
 	private function unselect_default_values( $form ) {
2098 2098
 
2099
-	    foreach ( $form['fields'] as &$field ) {
2099
+		foreach ( $form['fields'] as &$field ) {
2100 2100
 
2101 2101
 			if ( empty( $field->choices ) ) {
2102
-                continue;
2102
+				continue;
2103 2103
 			}
2104 2104
 
2105
-            foreach ( $field->choices as &$choice ) {
2105
+			foreach ( $field->choices as &$choice ) {
2106 2106
 				if ( \GV\Utils::get( $choice, 'isSelected' ) ) {
2107 2107
 					$choice['isSelected'] = false;
2108 2108
 				}
@@ -2139,36 +2139,36 @@  discard block
 block discarded – undo
2139 2139
 
2140 2140
 			if( 'checkbox' === $field->type ) {
2141 2141
 				foreach ( $field->get_entry_inputs() as $key => $input ) {
2142
-				    $input_id = $input['id'];
2143
-				    $choice = $field->choices[ $key ];
2144
-				    $value = \GV\Utils::get( $this->entry, $input_id );
2145
-				    $match = RGFormsModel::choice_value_match( $field, $choice, $value );
2146
-				    if( $match ) {
2147
-				        $field->choices[ $key ]['isSelected'] = true;
2148
-				    }
2142
+					$input_id = $input['id'];
2143
+					$choice = $field->choices[ $key ];
2144
+					$value = \GV\Utils::get( $this->entry, $input_id );
2145
+					$match = RGFormsModel::choice_value_match( $field, $choice, $value );
2146
+					if( $match ) {
2147
+						$field->choices[ $key ]['isSelected'] = true;
2148
+					}
2149 2149
 				}
2150 2150
 			} else {
2151 2151
 
2152 2152
 				// We need to run through each field to set the default values
2153 2153
 				foreach ( $this->entry as $field_id => $field_value ) {
2154 2154
 
2155
-				    if( floatval( $field_id ) === floatval( $field->id ) ) {
2155
+					if( floatval( $field_id ) === floatval( $field->id ) ) {
2156 2156
 
2157
-				        if( 'list' === $field->type ) {
2158
-				            $list_rows = maybe_unserialize( $field_value );
2157
+						if( 'list' === $field->type ) {
2158
+							$list_rows = maybe_unserialize( $field_value );
2159 2159
 
2160
-				            $list_field_value = array();
2161
-				            foreach ( (array) $list_rows as $row ) {
2162
-				                foreach ( (array) $row as $column ) {
2163
-				                    $list_field_value[] = $column;
2164
-				                }
2165
-				            }
2160
+							$list_field_value = array();
2161
+							foreach ( (array) $list_rows as $row ) {
2162
+								foreach ( (array) $row as $column ) {
2163
+									$list_field_value[] = $column;
2164
+								}
2165
+							}
2166 2166
 
2167
-				            $field->defaultValue = serialize( $list_field_value );
2168
-				        } else {
2169
-				            $field->defaultValue = $field_value;
2170
-				        }
2171
-				    }
2167
+							$field->defaultValue = serialize( $list_field_value );
2168
+						} else {
2169
+							$field->defaultValue = $field_value;
2170
+						}
2171
+					}
2172 2172
 				}
2173 2173
 			}
2174 2174
 		}
@@ -2229,7 +2229,7 @@  discard block
 block discarded – undo
2229 2229
 			foreach ( $form['fields'] as &$field ) {
2230 2230
 				foreach ( $remove_conditions_rule as $_remove_conditions_r ) {
2231 2231
 
2232
-				    list( $rule_field_id, $rule_i ) = $_remove_conditions_r;
2232
+					list( $rule_field_id, $rule_i ) = $_remove_conditions_r;
2233 2233
 
2234 2234
 					if ( $field['id'] == $rule_field_id ) {
2235 2235
 						unset( $field->conditionalLogic['rules'][ $rule_i ] );
@@ -2280,7 +2280,7 @@  discard block
 block discarded – undo
2280 2280
 			return $has_conditional_logic;
2281 2281
 		}
2282 2282
 
2283
-	    /** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */
2283
+		/** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */
2284 2284
 		return apply_filters( 'gravityview/edit_entry/conditional_logic', $has_conditional_logic, $form );
2285 2285
 	}
2286 2286
 
@@ -2347,14 +2347,14 @@  discard block
 block discarded – undo
2347 2347
 
2348 2348
 		if( $echo && $error !== true ) {
2349 2349
 
2350
-	        $error = esc_html( $error );
2350
+			$error = esc_html( $error );
2351 2351
 
2352
-	        /**
2353
-	         * @since 1.9
2354
-	         */
2355
-	        if ( ! empty( $this->entry ) ) {
2356
-		        $error .= ' ' . gravityview_get_link( '#', _x('Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) );
2357
-	        }
2352
+			/**
2353
+			 * @since 1.9
2354
+			 */
2355
+			if ( ! empty( $this->entry ) ) {
2356
+				$error .= ' ' . gravityview_get_link( '#', _x('Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) );
2357
+			}
2358 2358
 
2359 2359
 			echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error');
2360 2360
 		}
Please login to merge, or discard this patch.
Spacing   +246 added lines, -246 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 	function load() {
136 136
 
137 137
 		/** @define "GRAVITYVIEW_DIR" "../../../" */
138
-		include_once( GRAVITYVIEW_DIR .'includes/class-admin-approve-entries.php' );
138
+		include_once( GRAVITYVIEW_DIR . 'includes/class-admin-approve-entries.php' );
139 139
 
140 140
 		// Don't display an embedded form when editing an entry
141 141
 		add_action( 'wp_head', array( $this, 'prevent_render_form' ) );
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 		add_action( 'wp', array( $this, 'prevent_maybe_process_form' ), 8 );
146 146
 		add_action( 'admin_init', array( $this, 'prevent_maybe_process_form' ), 8 );
147 147
 
148
-		add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry') );
148
+		add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry' ) );
149 149
 
150 150
 		add_action( 'gravityview_edit_entry', array( $this, 'init' ), 10, 4 );
151 151
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 		add_filter( 'gform_plupload_settings', array( $this, 'modify_fileupload_settings' ), 10, 3 );
157 157
 
158 158
 		// Add fields expected by GFFormDisplay::validate()
159
-		add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation') );
159
+		add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation' ) );
160 160
 
161 161
 		// Fix multiselect value for GF 2.2
162 162
 		add_filter( 'gravityview/edit_entry/field_value_multiselect', array( $this, 'fix_multiselect_value_serialization' ), 10, 3 );
@@ -173,8 +173,8 @@  discard block
 block discarded – undo
173 173
 	 * @return void
174 174
 	 */
175 175
 	public function prevent_render_form() {
176
-		if( $this->is_edit_entry() ) {
177
-			if( 'wp_head' === current_filter() ) {
176
+		if ( $this->is_edit_entry() ) {
177
+			if ( 'wp_head' === current_filter() ) {
178 178
 				add_filter( 'gform_shortcode_form', '__return_empty_string' );
179 179
 			} else {
180 180
 				remove_filter( 'gform_shortcode_form', '__return_empty_string' );
@@ -189,17 +189,17 @@  discard block
 block discarded – undo
189 189
 	 */
190 190
 	public function prevent_maybe_process_form() {
191 191
 
192
-	    if( ! $this->is_edit_entry_submission() ) {
192
+	    if ( ! $this->is_edit_entry_submission() ) {
193 193
 			return;
194 194
 		}
195 195
 
196 196
 		gravityview()->log->debug( 'GravityView_Edit_Entry[prevent_maybe_process_form] Removing GFForms::maybe_process_form() action.' );
197 197
 
198
-		remove_action( 'wp',  array( 'RGForms', 'maybe_process_form'), 9 );
199
-		remove_action( 'wp',  array( 'GFForms', 'maybe_process_form'), 9 );
198
+		remove_action( 'wp', array( 'RGForms', 'maybe_process_form' ), 9 );
199
+		remove_action( 'wp', array( 'GFForms', 'maybe_process_form' ), 9 );
200 200
 
201
-		remove_action( 'admin_init',  array( 'GFForms', 'maybe_process_form'), 9 );
202
-		remove_action( 'admin_init',  array( 'RGForms', 'maybe_process_form'), 9 );
201
+		remove_action( 'admin_init', array( 'GFForms', 'maybe_process_form' ), 9 );
202
+		remove_action( 'admin_init', array( 'RGForms', 'maybe_process_form' ), 9 );
203 203
 	}
204 204
 
205 205
 	/**
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 
211 211
 		$is_edit_entry =
212 212
 			( GravityView_frontend::is_single_entry() || gravityview()->request->is_entry() )
213
-			&& ( ! empty( $_GET['edit'] ) );
213
+			&& ( ! empty( $_GET[ 'edit' ] ) );
214 214
 
215 215
 		return ( $is_edit_entry || $this->is_edit_entry_submission() );
216 216
 	}
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 	 * @return boolean
222 222
 	 */
223 223
 	public function is_edit_entry_submission() {
224
-		return !empty( $_POST[ self::$nonce_field ] );
224
+		return ! empty( $_POST[ self::$nonce_field ] );
225 225
 	}
226 226
 
227 227
 	/**
@@ -234,16 +234,16 @@  discard block
 block discarded – undo
234 234
 
235 235
 
236 236
 		$entries = $gravityview_view->getEntries();
237
-	    self::$original_entry = $entries[0];
238
-	    $this->entry = $entries[0];
237
+	    self::$original_entry = $entries[ 0 ];
238
+	    $this->entry = $entries[ 0 ];
239 239
 
240
-		self::$original_form = GFAPI::get_form( $this->entry['form_id'] );
240
+		self::$original_form = GFAPI::get_form( $this->entry[ 'form_id' ] );
241 241
 		$this->form = $gravityview_view->getForm();
242
-		$this->form_id = $this->entry['form_id'];
242
+		$this->form_id = $this->entry[ 'form_id' ];
243 243
 		$this->view_id = $gravityview_view->getViewId();
244 244
 		$this->post_id = \GV\Utils::get( $post, 'ID', null );
245 245
 
246
-		self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry['id'] );
246
+		self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry[ 'id' ] );
247 247
 	}
248 248
 
249 249
 
@@ -302,9 +302,9 @@  discard block
 block discarded – undo
302 302
 	private function print_scripts() {
303 303
 		$gravityview_view = GravityView_View::getInstance();
304 304
 
305
-		wp_register_script( 'gform_gravityforms', GFCommon::get_base_url().'/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
305
+		wp_register_script( 'gform_gravityforms', GFCommon::get_base_url() . '/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
306 306
 
307
-		GFFormDisplay::enqueue_form_scripts( $gravityview_view->getForm(), false);
307
+		GFFormDisplay::enqueue_form_scripts( $gravityview_view->getForm(), false );
308 308
 
309 309
 		wp_localize_script( 'gravityview-fe-view', 'gvGlobals', array( 'cookiepath' => COOKIEPATH ) );
310 310
 
@@ -320,19 +320,19 @@  discard block
 block discarded – undo
320 320
 	 */
321 321
 	private function process_save( $gv_data ) {
322 322
 
323
-		if ( empty( $_POST ) || ! isset( $_POST['lid'] ) ) {
323
+		if ( empty( $_POST ) || ! isset( $_POST[ 'lid' ] ) ) {
324 324
 			return;
325 325
 		}
326 326
 
327 327
 		// Make sure the entry, view, and form IDs are all correct
328 328
 		$valid = $this->verify_nonce();
329 329
 
330
-		if ( !$valid ) {
330
+		if ( ! $valid ) {
331 331
 			gravityview()->log->error( 'Nonce validation failed.' );
332 332
 			return;
333 333
 		}
334 334
 
335
-		if ( $this->entry['id'] !== $_POST['lid'] ) {
335
+		if ( $this->entry[ 'id' ] !== $_POST[ 'lid' ] ) {
336 336
 			gravityview()->log->error( 'Entry ID did not match posted entry ID.' );
337 337
 			return;
338 338
 		}
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
 
344 344
 		$this->validate();
345 345
 
346
-		if( $this->is_valid ) {
346
+		if ( $this->is_valid ) {
347 347
 
348 348
 			gravityview()->log->debug( 'Submission is valid.' );
349 349
 
@@ -355,15 +355,15 @@  discard block
 block discarded – undo
355 355
 			/**
356 356
 			 * @hack to avoid the capability validation of the method save_lead for GF 1.9+
357 357
 			 */
358
-			unset( $_GET['page'] );
358
+			unset( $_GET[ 'page' ] );
359 359
 
360
-			$date_created = $this->entry['date_created'];
360
+			$date_created = $this->entry[ 'date_created' ];
361 361
 
362 362
 			/**
363 363
 			 * @hack to force Gravity Forms to use $read_value_from_post in GFFormsModel::save_lead()
364 364
 			 * @since 1.17.2
365 365
 			 */
366
-			unset( $this->entry['date_created'] );
366
+			unset( $this->entry[ 'date_created' ] );
367 367
 
368 368
 			/**
369 369
 			 * @action `gravityview/edit_entry/before_update` Perform an action before the entry has been updated using Edit Entry
@@ -373,14 +373,14 @@  discard block
 block discarded – undo
373 373
 			 * @param GravityView_Edit_Entry_Render $this This object
374 374
 			 * @param GravityView_View_Data $gv_data The View data
375 375
 			 */
376
-			do_action( 'gravityview/edit_entry/before_update', $form, $this->entry['id'], $this, $gv_data );
376
+			do_action( 'gravityview/edit_entry/before_update', $form, $this->entry[ 'id' ], $this, $gv_data );
377 377
 
378 378
 			GFFormsModel::save_lead( $form, $this->entry );
379 379
 
380 380
 	        // Delete the values for hidden inputs
381 381
 	        $this->unset_hidden_field_values();
382 382
 
383
-			$this->entry['date_created'] = $date_created;
383
+			$this->entry[ 'date_created' ] = $date_created;
384 384
 
385 385
 			// Process calculation fields
386 386
 			$this->update_calculation_fields();
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 			 * @param GravityView_Edit_Entry_Render $this This object
406 406
 			 * @param GravityView_View_Data $gv_data The View data
407 407
 			 */
408
-			do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry['id'], $this, $gv_data );
408
+			do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry[ 'id' ], $this, $gv_data );
409 409
 
410 410
 		} else {
411 411
 			gravityview()->log->error( 'Submission is NOT valid.', array( 'entry' => $this->entry ) );
@@ -441,10 +441,10 @@  discard block
 block discarded – undo
441 441
 
442 442
 		if ( version_compare( GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
443 443
 			$entry_meta_table = GFFormsModel::get_entry_meta_table_name();
444
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $this->entry['id'] ) );
444
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $this->entry[ 'id' ] ) );
445 445
 		} else {
446 446
 			$lead_detail_table = GFFormsModel::get_lead_details_table_name();
447
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) );
447
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry[ 'id' ] ) );
448 448
 		}
449 449
 
450 450
 	    foreach ( $this->entry as $input_id => $field_value ) {
@@ -462,11 +462,11 @@  discard block
 block discarded – undo
462 462
 
463 463
 				$empty_value = $field->get_value_save_entry(
464 464
 					is_array( $field->get_entry_inputs() ) ? array() : '',
465
-					$this->form, '', $this->entry['id'], $this->entry
465
+					$this->form, '', $this->entry[ 'id' ], $this->entry
466 466
 				);
467 467
 
468 468
 				if ( $field->has_calculation() ) {
469
-					$this->unset_hidden_calculations[] = $field->id; // Unset
469
+					$this->unset_hidden_calculations[ ] = $field->id; // Unset
470 470
 					$empty_value = '';
471 471
 				}
472 472
 
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
 	private function preset_approval_fields() {
496 496
 		$has_approved_field = false;
497 497
 
498
-		foreach ( self::$original_form['fields'] as $field ) {
498
+		foreach ( self::$original_form[ 'fields' ] as $field ) {
499 499
 			if ( $field->gravityview_approved ) {
500 500
 				$has_approved_field = true;
501 501
 				break;
@@ -508,7 +508,7 @@  discard block
 block discarded – undo
508 508
 
509 509
 		$is_field_hidden = true;
510 510
 
511
-		foreach ( $this->form['fields'] as $field ) {
511
+		foreach ( $this->form[ 'fields' ] as $field ) {
512 512
 			if ( $field->gravityview_approved ) {
513 513
 				$is_field_hidden = false;
514 514
 				break;
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
 
534 534
 		remove_filter( 'gravityview/approve_entries/update_unapproved_meta', array( $this, 'prevent_update_unapproved_meta' ), 9 );
535 535
 
536
-		if ( ! $value = gform_get_meta( $entry['id'], 'is_approved' ) ) {
536
+		if ( ! $value = gform_get_meta( $entry[ 'id' ], 'is_approved' ) ) {
537 537
 
538 538
 			$value = GravityView_Entry_Approval_Status::UNAPPROVED;
539 539
 
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
 		}
599 599
 
600 600
 		/** No file is being uploaded. */
601
-		if ( empty( $_FILES[ $input_name ]['name'] ) ) {
601
+		if ( empty( $_FILES[ $input_name ][ 'name' ] ) ) {
602 602
 			/** So return the original upload, with $value as backup (it can be empty during edit form rendering) */
603 603
 			return rgar( $entry, $input_id, $value );
604 604
 		}
@@ -616,11 +616,11 @@  discard block
 block discarded – undo
616 616
 	 * @return mixed
617 617
 	 */
618 618
 	public function modify_fileupload_settings( $plupload_init, $form_id, $instance ) {
619
-		if( ! $this->is_edit_entry() ) {
619
+		if ( ! $this->is_edit_entry() ) {
620 620
 			return $plupload_init;
621 621
 		}
622 622
 
623
-		$plupload_init['gf_vars']['max_files'] = 0;
623
+		$plupload_init[ 'gf_vars' ][ 'max_files' ] = 0;
624 624
 
625 625
 		return $plupload_init;
626 626
 	}
@@ -635,26 +635,26 @@  discard block
 block discarded – undo
635 635
 		$form = $this->filter_conditional_logic( $this->form );
636 636
 
637 637
 	    /** @type GF_Field $field */
638
-		foreach( $form['fields'] as $k => &$field ) {
638
+		foreach ( $form[ 'fields' ] as $k => &$field ) {
639 639
 
640 640
 			/**
641 641
 			 * Remove the fields with calculation formulas before save to avoid conflicts with GF logic
642 642
 			 * @since 1.16.3
643 643
 			 */
644
-			if( $field->has_calculation() ) {
645
-				unset( $form['fields'][ $k ] );
644
+			if ( $field->has_calculation() ) {
645
+				unset( $form[ 'fields' ][ $k ] );
646 646
 			}
647 647
 
648 648
 			$field->adminOnly = false;
649 649
 
650
-			if( isset( $field->inputs ) && is_array( $field->inputs ) ) {
651
-				foreach( $field->inputs as $key => $input ) {
652
-				    $field->inputs[ $key ][ 'id' ] = (string)$input['id'];
650
+			if ( isset( $field->inputs ) && is_array( $field->inputs ) ) {
651
+				foreach ( $field->inputs as $key => $input ) {
652
+				    $field->inputs[ $key ][ 'id' ] = (string)$input[ 'id' ];
653 653
 				}
654 654
 			}
655 655
 		}
656 656
 
657
-		$form['fields'] = array_values( $form['fields'] );
657
+		$form[ 'fields' ] = array_values( $form[ 'fields' ] );
658 658
 
659 659
 		return $form;
660 660
 	}
@@ -666,14 +666,14 @@  discard block
 block discarded – undo
666 666
 		$update = false;
667 667
 
668 668
 		// get the most up to date entry values
669
-		$entry = GFAPI::get_entry( $this->entry['id'] );
669
+		$entry = GFAPI::get_entry( $this->entry[ 'id' ] );
670 670
 
671 671
 		if ( version_compare( GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
672 672
 			$entry_meta_table = GFFormsModel::get_entry_meta_table_name();
673
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $entry['id'] ) );
673
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $entry[ 'id' ] ) );
674 674
 		} else {
675 675
 			$lead_detail_table = GFFormsModel::get_lead_details_table_name();
676
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $entry['id'] ) );
676
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $entry[ 'id' ] ) );
677 677
 		}
678 678
 
679 679
 
@@ -690,24 +690,24 @@  discard block
 block discarded – undo
690 690
 				$inputs = $field->get_entry_inputs();
691 691
 				if ( is_array( $inputs ) ) {
692 692
 				    foreach ( $inputs as $input ) {
693
-						list( $field_id, $input_id ) = rgexplode( '.', $input['id'], 2 );
693
+						list( $field_id, $input_id ) = rgexplode( '.', $input[ 'id' ], 2 );
694 694
 
695 695
 						if ( 'product' === $field->type ) {
696
-							$input_name = 'input_' . str_replace( '.', '_', $input['id'] );
696
+							$input_name = 'input_' . str_replace( '.', '_', $input[ 'id' ] );
697 697
 
698 698
 							// Only allow quantity to be set if it's allowed to be edited
699 699
 							if ( in_array( $field_id, $allowed_fields ) && $input_id == 3 ) {
700 700
 							} else { // otherwise set to what it previously was
701
-								$_POST[ $input_name ] = $entry[ $input['id'] ];
701
+								$_POST[ $input_name ] = $entry[ $input[ 'id' ] ];
702 702
 							}
703 703
 						} else {
704 704
 							// Set to what it previously was if it's not editable
705 705
 							if ( ! in_array( $field_id, $allowed_fields ) ) {
706
-								$_POST[ $input_name ] = $entry[ $input['id'] ];
706
+								$_POST[ $input_name ] = $entry[ $input[ 'id' ] ];
707 707
 							}
708 708
 						}
709 709
 
710
-						GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input['id'] );
710
+						GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input[ 'id' ] );
711 711
 				    }
712 712
 				} else {
713 713
 					// Set to what it previously was if it's not editable
@@ -747,19 +747,19 @@  discard block
 block discarded – undo
747 747
 
748 748
 		$input_name = 'input_' . $field_id;
749 749
 
750
-		if ( !empty( $_FILES[ $input_name ]['name'] ) ) {
750
+		if ( ! empty( $_FILES[ $input_name ][ 'name' ] ) ) {
751 751
 
752 752
 			// We have a new image
753 753
 
754
-			$value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] );
754
+			$value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ] );
755 755
 
756 756
 			$ary = ! empty( $value ) ? explode( '|:|', $value ) : array();
757 757
 	        $ary = stripslashes_deep( $ary );
758 758
 			$img_url = \GV\Utils::get( $ary, 0 );
759 759
 
760
-			$img_title       = count( $ary ) > 1 ? $ary[1] : '';
761
-			$img_caption     = count( $ary ) > 2 ? $ary[2] : '';
762
-			$img_description = count( $ary ) > 3 ? $ary[3] : '';
760
+			$img_title       = count( $ary ) > 1 ? $ary[ 1 ] : '';
761
+			$img_caption     = count( $ary ) > 2 ? $ary[ 2 ] : '';
762
+			$img_description = count( $ary ) > 3 ? $ary[ 3 ] : '';
763 763
 
764 764
 			$image_meta = array(
765 765
 				'post_excerpt' => $img_caption,
@@ -768,7 +768,7 @@  discard block
 block discarded – undo
768 768
 
769 769
 			//adding title only if it is not empty. It will default to the file name if it is not in the array
770 770
 			if ( ! empty( $img_title ) ) {
771
-				$image_meta['post_title'] = $img_title;
771
+				$image_meta[ 'post_title' ] = $img_title;
772 772
 			}
773 773
 
774 774
 			/**
@@ -826,15 +826,15 @@  discard block
 block discarded – undo
826 826
 	 */
827 827
 	private function maybe_update_post_fields( $form ) {
828 828
 
829
-		if( empty( $this->entry['post_id'] ) ) {
829
+		if ( empty( $this->entry[ 'post_id' ] ) ) {
830 830
 	        gravityview()->log->debug( 'This entry has no post fields. Continuing...' );
831 831
 			return;
832 832
 		}
833 833
 
834
-		$post_id = $this->entry['post_id'];
834
+		$post_id = $this->entry[ 'post_id' ];
835 835
 
836 836
 		// Security check
837
-		if( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
837
+		if ( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
838 838
 			gravityview()->log->error( 'The current user does not have the ability to edit Post #{post_id}', array( 'post_id' => $post_id ) );
839 839
 			return;
840 840
 		}
@@ -847,25 +847,25 @@  discard block
 block discarded – undo
847 847
 
848 848
 			$field = RGFormsModel::get_field( $form, $field_id );
849 849
 
850
-			if( ! $field ) {
850
+			if ( ! $field ) {
851 851
 				continue;
852 852
 			}
853 853
 
854
-			if( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
854
+			if ( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
855 855
 
856 856
 				// Get the value of the field, including $_POSTed value
857 857
 				$value = RGFormsModel::get_field_value( $field );
858 858
 
859 859
 				// Use temporary entry variable, to make values available to fill_post_template() and update_post_image()
860 860
 				$entry_tmp = $this->entry;
861
-				$entry_tmp["{$field_id}"] = $value;
861
+				$entry_tmp[ "{$field_id}" ] = $value;
862 862
 
863
-				switch( $field->type ) {
863
+				switch ( $field->type ) {
864 864
 
865 865
 				    case 'post_title':
866 866
 				        $post_title = $value;
867 867
 				        if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) {
868
-				            $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
868
+				            $post_title = $this->fill_post_template( $form[ 'postTitleTemplate' ], $form, $entry_tmp );
869 869
 				        }
870 870
 				        $updated_post->post_title = $post_title;
871 871
 				        $updated_post->post_name  = $post_title;
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 				    case 'post_content':
876 876
 				        $post_content = $value;
877 877
 				        if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) {
878
-				            $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
878
+				            $post_content = $this->fill_post_template( $form[ 'postContentTemplate' ], $form, $entry_tmp, true );
879 879
 				        }
880 880
 				        $updated_post->post_content = $post_content;
881 881
 				        unset( $post_content );
@@ -893,11 +893,11 @@  discard block
 block discarded – undo
893 893
 							$value = $value[ $field_id ];
894 894
 						}
895 895
 
896
-				        if( ! empty( $field->customFieldTemplateEnabled ) ) {
896
+				        if ( ! empty( $field->customFieldTemplateEnabled ) ) {
897 897
 				            $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
898 898
 				        }
899 899
 
900
-						$value = $field->get_value_save_entry( $value, $form, '', $this->entry['id'], $this->entry );
900
+						$value = $field->get_value_save_entry( $value, $form, '', $this->entry[ 'id' ], $this->entry );
901 901
 
902 902
 				        update_post_meta( $post_id, $field->postCustomFieldName, $value );
903 903
 				        break;
@@ -909,7 +909,7 @@  discard block
 block discarded – undo
909 909
 				}
910 910
 
911 911
 				// update entry after
912
-				$this->entry["{$field_id}"] = $value;
912
+				$this->entry[ "{$field_id}" ] = $value;
913 913
 
914 914
 				$update_entry = true;
915 915
 
@@ -918,11 +918,11 @@  discard block
 block discarded – undo
918 918
 
919 919
 		}
920 920
 
921
-		if( $update_entry ) {
921
+		if ( $update_entry ) {
922 922
 
923 923
 			$return_entry = GFAPI::update_entry( $this->entry );
924 924
 
925
-			if( is_wp_error( $return_entry ) ) {
925
+			if ( is_wp_error( $return_entry ) ) {
926 926
 				gravityview()->log->error( 'Updating the entry post fields failed', array( 'data' => array( '$this->entry' => $this->entry, '$return_entry' => $return_entry ) ) );
927 927
 			} else {
928 928
 				gravityview()->log->debug( 'Updating the entry post fields for post #{post_id} succeeded', array( 'post_id' => $post_id ) );
@@ -932,7 +932,7 @@  discard block
 block discarded – undo
932 932
 
933 933
 		$return_post = wp_update_post( $updated_post, true );
934 934
 
935
-		if( is_wp_error( $return_post ) ) {
935
+		if ( is_wp_error( $return_post ) ) {
936 936
 			$return_post->add_data( $updated_post, '$updated_post' );
937 937
 			gravityview()->log->error( 'Updating the post content failed', array( 'data' => compact( 'updated_post', 'return_post' ) ) );
938 938
 		} else {
@@ -966,7 +966,7 @@  discard block
 block discarded – undo
966 966
 		$output = GFCommon::replace_variables( $output, $form, $entry, false, false, false );
967 967
 
968 968
 		// replace conditional shortcodes
969
-		if( $do_shortcode ) {
969
+		if ( $do_shortcode ) {
970 970
 			$output = do_shortcode( $output );
971 971
 		}
972 972
 
@@ -985,19 +985,19 @@  discard block
 block discarded – undo
985 985
 	 */
986 986
 	private function after_update() {
987 987
 
988
-		do_action( 'gform_after_update_entry', self::$original_form, $this->entry['id'], self::$original_entry );
989
-		do_action( "gform_after_update_entry_{$this->form['id']}", self::$original_form, $this->entry['id'], self::$original_entry );
988
+		do_action( 'gform_after_update_entry', self::$original_form, $this->entry[ 'id' ], self::$original_entry );
989
+		do_action( "gform_after_update_entry_{$this->form[ 'id' ]}", self::$original_form, $this->entry[ 'id' ], self::$original_entry );
990 990
 
991 991
 		// Re-define the entry now that we've updated it.
992
-		$entry = RGFormsModel::get_lead( $this->entry['id'] );
992
+		$entry = RGFormsModel::get_lead( $this->entry[ 'id' ] );
993 993
 
994 994
 		$entry = GFFormsModel::set_entry_meta( $entry, self::$original_form );
995 995
 
996 996
 		if ( version_compare( GFFormsModel::get_database_version(), '2.3-dev-1', '<' ) ) {
997 997
 			// We need to clear the cache because Gravity Forms caches the field values, which
998 998
 			// we have just updated.
999
-			foreach ($this->form['fields'] as $key => $field) {
1000
-				GFFormsModel::refresh_lead_field_value( $entry['id'], $field->id );
999
+			foreach ( $this->form[ 'fields' ] as $key => $field ) {
1000
+				GFFormsModel::refresh_lead_field_value( $entry[ 'id' ], $field->id );
1001 1001
 			}
1002 1002
 		}
1003 1003
 
@@ -1007,11 +1007,11 @@  discard block
 block discarded – undo
1007 1007
 		 * @since develop
1008 1008
 		 */
1009 1009
 		if ( $allowed_feeds = $this->view->settings->get( 'edit_feeds', array() ) ) {
1010
-			$feeds = GFAPI::get_feeds( null, $entry['form_id'] );
1010
+			$feeds = GFAPI::get_feeds( null, $entry[ 'form_id' ] );
1011 1011
 			if ( ! is_wp_error( $feeds ) ) {
1012 1012
 				$registered_feeds = array();
1013 1013
 				foreach ( GFAddOn::get_registered_addons() as $registered_feed ) {
1014
-					if ( is_subclass_of( $registered_feed,  'GFFeedAddOn' ) ) {
1014
+					if ( is_subclass_of( $registered_feed, 'GFFeedAddOn' ) ) {
1015 1015
 						if ( method_exists( $registered_feed, 'get_instance' ) ) {
1016 1016
 							$registered_feed = call_user_func( array( $registered_feed, 'get_instance' ) );
1017 1017
 							$registered_feeds[ $registered_feed->get_slug() ] = $registered_feed;
@@ -1019,8 +1019,8 @@  discard block
 block discarded – undo
1019 1019
 					}
1020 1020
 				}
1021 1021
 				foreach ( $feeds as $feed ) {
1022
-					if ( in_array( $feed['id'], $allowed_feeds ) ) {
1023
-						if ( $feed_object = \GV\Utils::get( $registered_feeds, $feed['addon_slug'] ) ) {
1022
+					if ( in_array( $feed[ 'id' ], $allowed_feeds ) ) {
1023
+						if ( $feed_object = \GV\Utils::get( $registered_feeds, $feed[ 'addon_slug' ] ) ) {
1024 1024
 							$returned_entry = $feed_object->process_feed( $feed, $entry, self::$original_form );
1025 1025
 							if ( is_array( $returned_entry ) && rgar( $returned_entry, 'id' ) ) {
1026 1026
 								$entry = $returned_entry;
@@ -1048,9 +1048,9 @@  discard block
 block discarded – undo
1048 1048
 
1049 1049
 		$view = \GV\View::by_id( $this->view_id );
1050 1050
 
1051
-		if( $view->settings->get( 'edit_locking' ) ) {
1051
+		if ( $view->settings->get( 'edit_locking' ) ) {
1052 1052
 			$locking = new GravityView_Edit_Entry_Locking();
1053
-			$locking->maybe_lock_object( $this->entry['id'] );
1053
+			$locking->maybe_lock_object( $this->entry[ 'id' ] );
1054 1054
 		}
1055 1055
 
1056 1056
 		?>
@@ -1063,7 +1063,7 @@  discard block
 block discarded – undo
1063 1063
 
1064 1064
 		<div class="gv-edit-entry-wrapper"><?php
1065 1065
 
1066
-			$javascript = gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/inline-javascript.php', $this );
1066
+			$javascript = gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/inline-javascript.php', $this );
1067 1067
 
1068 1068
 			/**
1069 1069
 			 * Fixes weird wpautop() issue
@@ -1079,7 +1079,7 @@  discard block
 block discarded – undo
1079 1079
 				     * @param string $edit_entry_title Modify the "Edit Entry" title
1080 1080
 				     * @param GravityView_Edit_Entry_Render $this This object
1081 1081
 				     */
1082
-				    $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
1082
+				    $edit_entry_title = apply_filters( 'gravityview_edit_entry_title', __( 'Edit Entry', 'gravityview' ), $this );
1083 1083
 
1084 1084
 				    echo esc_attr( $edit_entry_title );
1085 1085
 			?></span>
@@ -1145,18 +1145,18 @@  discard block
 block discarded – undo
1145 1145
 				*/
1146 1146
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1147 1147
 
1148
-				$this->is_paged_submitted = \GV\Utils::_POST( 'save' ) === $labels['submit'];
1148
+				$this->is_paged_submitted = \GV\Utils::_POST( 'save' ) === $labels[ 'submit' ];
1149 1149
 			}
1150 1150
 
1151 1151
 			$back_link = remove_query_arg( array( 'page', 'view', 'edit' ) );
1152 1152
 
1153
-			if( ! $this->is_valid ){
1153
+			if ( ! $this->is_valid ) {
1154 1154
 
1155 1155
 				// Keeping this compatible with Gravity Forms.
1156
-				$validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>";
1157
-				$message = apply_filters("gform_validation_message_{$this->form['id']}", apply_filters("gform_validation_message", $validation_message, $this->form), $this->form);
1156
+				$validation_message = "<div class='validation_error'>" . __( 'There was a problem with your submission.', 'gravityview' ) . " " . __( 'Errors have been highlighted below.', 'gravityview' ) . "</div>";
1157
+				$message = apply_filters( "gform_validation_message_{$this->form[ 'id' ]}", apply_filters( "gform_validation_message", $validation_message, $this->form ), $this->form );
1158 1158
 
1159
-				echo GVCommon::generate_notice( $message , 'gv-error' );
1159
+				echo GVCommon::generate_notice( $message, 'gv-error' );
1160 1160
 
1161 1161
 			} elseif ( false === $this->is_paged_submitted ) {
1162 1162
 				// Paged form that hasn't been submitted on the last page yet
@@ -1169,7 +1169,7 @@  discard block
 block discarded – undo
1169 1169
 				 * @param int $view_id View ID
1170 1170
 				 * @param array $entry Gravity Forms entry array
1171 1171
 				 */
1172
-				$message = apply_filters( 'gravityview/edit_entry/page/success', $entry_updated_message , $this->view_id, $this->entry );
1172
+				$message = apply_filters( 'gravityview/edit_entry/page/success', $entry_updated_message, $this->view_id, $this->entry );
1173 1173
 
1174 1174
 				echo GVCommon::generate_notice( $message );
1175 1175
 			} else {
@@ -1181,23 +1181,23 @@  discard block
 block discarded – undo
1181 1181
 
1182 1182
                     case '0':
1183 1183
 	                    $redirect_url = $back_link;
1184
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' );
1184
+	                    $entry_updated_message = sprintf( esc_attr_x( 'Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview' ), '<a href="' . esc_url( $redirect_url ) . '">', '</a>' );
1185 1185
                         break;
1186 1186
 
1187 1187
                     case '1':
1188 1188
 	                    $redirect_url = $directory_link = GravityView_API::directory_link();
1189
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' );
1189
+	                    $entry_updated_message = sprintf( esc_attr_x( 'Entry Updated. %sReturning to %s%s', 'Replacement 1 is HTML. Replacement 2 is the title of the page where the user will be taken. Replacement 3 is HTML.', 'gravityview' ), '<a href="' . esc_url( $redirect_url ) . '">', esc_html( $view->post_title ), '</a>' );
1190 1190
 	                    break;
1191 1191
 
1192 1192
                     case '2':
1193 1193
 	                    $redirect_url = $edit_redirect_url;
1194 1194
 	                    $redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' );
1195
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.','gravityview'), '<a href="'. esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' );
1195
+	                    $entry_updated_message = sprintf( esc_attr_x( 'Entry Updated. %sRedirecting to %s%s', 'Replacement 1 is HTML. Replacement 2 is the URL where the user will be taken. Replacement 3 is HTML.', 'gravityview' ), '<a href="' . esc_url( $redirect_url ) . '">', esc_html( $edit_redirect_url ), '</a>' );
1196 1196
                         break;
1197 1197
 
1198 1198
                     case '':
1199 1199
                     default:
1200
-					    $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' );
1200
+					    $entry_updated_message = sprintf( esc_attr__( 'Entry Updated. %sReturn to Entry%s', 'gravityview' ), '<a href="' . esc_url( $back_link ) . '">', '</a>' );
1201 1201
                         break;
1202 1202
 				}
1203 1203
 
@@ -1213,7 +1213,7 @@  discard block
 block discarded – undo
1213 1213
 				 * @param array $entry Gravity Forms entry array
1214 1214
 				 * @param string $back_link URL to return to the original entry. @since 1.6
1215 1215
 				 */
1216
-				$message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message , $this->view_id, $this->entry, $back_link );
1216
+				$message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message, $this->view_id, $this->entry, $back_link );
1217 1217
 
1218 1218
 				echo GVCommon::generate_notice( $message );
1219 1219
 			}
@@ -1237,8 +1237,8 @@  discard block
 block discarded – undo
1237 1237
 		 */
1238 1238
 		do_action( 'gravityview/edit-entry/render/before', $this );
1239 1239
 
1240
-		add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields'), 5000, 3 );
1241
-		add_filter( 'gform_submit_button', array( $this, 'render_form_buttons') );
1240
+		add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000, 3 );
1241
+		add_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) );
1242 1242
 		add_filter( 'gform_next_button', array( $this, 'render_form_buttons' ) );
1243 1243
 		add_filter( 'gform_previous_button', array( $this, 'render_form_buttons' ) );
1244 1244
 		add_filter( 'gform_disable_view_counter', '__return_true' );
@@ -1247,14 +1247,14 @@  discard block
 block discarded – undo
1247 1247
 		add_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10, 5 );
1248 1248
 
1249 1249
 		// We need to remove the fake $_GET['page'] arg to avoid rendering form as if in admin.
1250
-		unset( $_GET['page'] );
1250
+		unset( $_GET[ 'page' ] );
1251 1251
 
1252 1252
 		$this->show_next_button = false;
1253 1253
 		$this->show_previous_button = false;
1254 1254
 
1255 1255
 		// TODO: Verify multiple-page forms
1256 1256
 		if ( GFCommon::has_pages( $this->form ) && apply_filters( 'gravityview/features/paged-edit', false ) ) {
1257
-			if ( intval( $page_number = \GV\Utils::_POST( 'gform_source_page_number_' . $this->form['id'], 0 ) ) ) {
1257
+			if ( intval( $page_number = \GV\Utils::_POST( 'gform_source_page_number_' . $this->form[ 'id' ], 0 ) ) ) {
1258 1258
 
1259 1259
 				$labels = array(
1260 1260
 					'cancel'   => __( 'Cancel', 'gravityview' ),
@@ -1273,20 +1273,20 @@  discard block
 block discarded – undo
1273 1273
 				*/
1274 1274
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1275 1275
 
1276
-				GFFormDisplay::$submission[ $this->form['id'] ][ 'form' ] = $this->form;
1277
-				GFFormDisplay::$submission[ $this->form['id'] ][ 'is_valid' ] = true;
1276
+				GFFormDisplay::$submission[ $this->form[ 'id' ] ][ 'form' ] = $this->form;
1277
+				GFFormDisplay::$submission[ $this->form[ 'id' ] ][ 'is_valid' ] = true;
1278 1278
 
1279
-				if ( \GV\Utils::_POST( 'save' ) === $labels['next'] ) {
1279
+				if ( \GV\Utils::_POST( 'save' ) === $labels[ 'next' ] ) {
1280 1280
 					$last_page = \GFFormDisplay::get_max_page_number( $this->form );
1281 1281
 
1282 1282
 					while ( ++$page_number < $last_page && RGFormsModel::is_page_hidden( $this->form, $page_number, \GV\Utils::_POST( 'gform_field_values' ) ) ) {
1283 1283
 					} // Advance to next visible page
1284
-				} elseif ( \GV\Utils::_POST( 'save' ) === $labels['previous'] ) {
1284
+				} elseif ( \GV\Utils::_POST( 'save' ) === $labels[ 'previous' ] ) {
1285 1285
 					while ( --$page_number > 1 && RGFormsModel::is_page_hidden( $this->form, $page_number, \GV\Utils::_POST( 'gform_field_values' ) ) ) {
1286 1286
 					} // Advance to next visible page
1287 1287
 				}
1288 1288
 
1289
-				GFFormDisplay::$submission[ $this->form['id'] ]['page_number'] = $page_number;
1289
+				GFFormDisplay::$submission[ $this->form[ 'id' ] ][ 'page_number' ] = $page_number;
1290 1290
 			}
1291 1291
 
1292 1292
 			if ( ( $page_number = intval( $page_number ) ) < 2 ) {
@@ -1312,7 +1312,7 @@  discard block
 block discarded – undo
1312 1312
 
1313 1313
 		ob_start(); // Prevent PHP warnings possibly caused by prefilling list fields for conditional logic
1314 1314
 
1315
-		$html = GFFormDisplay::get_form( $this->form['id'], false, false, true, $this->entry );
1315
+		$html = GFFormDisplay::get_form( $this->form[ 'id' ], false, false, true, $this->entry );
1316 1316
 
1317 1317
 		ob_get_clean();
1318 1318
 
@@ -1340,7 +1340,7 @@  discard block
 block discarded – undo
1340 1340
 	 * @return string
1341 1341
 	 */
1342 1342
 	public function render_form_buttons() {
1343
-		return gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/form-buttons.php', $this );
1343
+		return gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/form-buttons.php', $this );
1344 1344
 	}
1345 1345
 
1346 1346
 
@@ -1359,15 +1359,15 @@  discard block
 block discarded – undo
1359 1359
 	 */
1360 1360
 	public function filter_modify_form_fields( $form, $ajax = false, $field_values = '' ) {
1361 1361
 
1362
-		if( $form['id'] != $this->form_id ) {
1362
+		if ( $form[ 'id' ] != $this->form_id ) {
1363 1363
 			return $form;
1364 1364
 		}
1365 1365
 
1366 1366
 		// In case we have validated the form, use it to inject the validation results into the form render
1367
-		if( isset( $this->form_after_validation ) && $this->form_after_validation['id'] === $form['id'] ) {
1367
+		if ( isset( $this->form_after_validation ) && $this->form_after_validation[ 'id' ] === $form[ 'id' ] ) {
1368 1368
 			$form = $this->form_after_validation;
1369 1369
 		} else {
1370
-			$form['fields'] = $this->get_configured_edit_fields( $form, $this->view_id );
1370
+			$form[ 'fields' ] = $this->get_configured_edit_fields( $form, $this->view_id );
1371 1371
 		}
1372 1372
 
1373 1373
 		$form = $this->filter_conditional_logic( $form );
@@ -1375,8 +1375,8 @@  discard block
 block discarded – undo
1375 1375
 		$form = $this->prefill_conditional_logic( $form );
1376 1376
 
1377 1377
 		// for now we don't support Save and Continue feature.
1378
-		if( ! self::$supports_save_and_continue ) {
1379
-	        unset( $form['save'] );
1378
+		if ( ! self::$supports_save_and_continue ) {
1379
+	        unset( $form[ 'save' ] );
1380 1380
 		}
1381 1381
 
1382 1382
 		$form = $this->unselect_default_values( $form );
@@ -1399,31 +1399,31 @@  discard block
 block discarded – undo
1399 1399
 	 */
1400 1400
 	public function verify_user_can_edit_post( $field_content = '', $field, $value, $lead_id = 0, $form_id ) {
1401 1401
 
1402
-		if( ! GFCommon::is_post_field( $field ) ) {
1402
+		if ( ! GFCommon::is_post_field( $field ) ) {
1403 1403
 			return $field_content;
1404 1404
 		}
1405 1405
 
1406 1406
         $message = null;
1407 1407
 
1408 1408
         // First, make sure they have the capability to edit the post.
1409
-        if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1409
+        if ( false === current_user_can( 'edit_post', $this->entry[ 'post_id' ] ) ) {
1410 1410
 
1411 1411
             /**
1412 1412
              * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1413 1413
              * @param string $message The existing "You don't have permission..." text
1414 1414
              */
1415
-            $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1415
+            $message = apply_filters( 'gravityview/edit_entry/unsupported_post_field_text', __( 'You don&rsquo;t have permission to edit this post.', 'gravityview' ) );
1416 1416
 
1417
-        } elseif( null === get_post( $this->entry['post_id'] ) ) {
1417
+        } elseif ( null === get_post( $this->entry[ 'post_id' ] ) ) {
1418 1418
             /**
1419 1419
              * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1420 1420
              * @param string $message The existing "This field is not editable; the post no longer exists." text
1421 1421
              */
1422
-            $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1422
+            $message = apply_filters( 'gravityview/edit_entry/no_post_text', __( 'This field is not editable; the post no longer exists.', 'gravityview' ) );
1423 1423
         }
1424 1424
 
1425
-        if( $message ) {
1426
-            $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1425
+        if ( $message ) {
1426
+            $field_content = sprintf( '<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1427 1427
         }
1428 1428
 
1429 1429
         return $field_content;
@@ -1447,8 +1447,8 @@  discard block
 block discarded – undo
1447 1447
 
1448 1448
 		// If the form has been submitted, then we don't need to pre-fill the values,
1449 1449
 		// Except for fileupload type and when a field input is overridden- run always!!
1450
-		if(
1451
-			( $this->is_edit_entry_submission() && !in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1450
+		if (
1451
+			( $this->is_edit_entry_submission() && ! in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1452 1452
 			&& false === ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) )
1453 1453
 			&& ! GFCommon::is_product_field( $field->type )
1454 1454
 			|| ! empty( $field_content )
@@ -1468,7 +1468,7 @@  discard block
 block discarded – undo
1468 1468
 	    $return = null;
1469 1469
 
1470 1470
 		/** @var GravityView_Field $gv_field */
1471
-		if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1471
+		if ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1472 1472
 			$return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field );
1473 1473
 		} else {
1474 1474
 	        $return = $field->get_field_input( $this->form, $field_value, $this->entry );
@@ -1477,7 +1477,7 @@  discard block
 block discarded – undo
1477 1477
 	    // If there was output, it's an error
1478 1478
 	    $warnings = ob_get_clean();
1479 1479
 
1480
-	    if( !empty( $warnings ) ) {
1480
+	    if ( ! empty( $warnings ) ) {
1481 1481
 		    gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) );
1482 1482
 	    }
1483 1483
 
@@ -1502,7 +1502,7 @@  discard block
 block discarded – undo
1502 1502
 		$override_saved_value = apply_filters( 'gravityview/edit_entry/pre_populate/override', false, $field );
1503 1503
 
1504 1504
 		// We're dealing with multiple inputs (e.g. checkbox) but not time or date (as it doesn't store data in input IDs)
1505
-		if( isset( $field->inputs ) && is_array( $field->inputs ) && !in_array( $field->type, array( 'time', 'date' ) ) ) {
1505
+		if ( isset( $field->inputs ) && is_array( $field->inputs ) && ! in_array( $field->type, array( 'time', 'date' ) ) ) {
1506 1506
 
1507 1507
 			$field_value = array();
1508 1508
 
@@ -1511,10 +1511,10 @@  discard block
 block discarded – undo
1511 1511
 
1512 1512
 			foreach ( (array)$field->inputs as $input ) {
1513 1513
 
1514
-				$input_id = strval( $input['id'] );
1514
+				$input_id = strval( $input[ 'id' ] );
1515 1515
 
1516 1516
 				if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) {
1517
-				    $field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1517
+				    $field_value[ $input_id ] = 'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1518 1518
 				    $allow_pre_populated = false;
1519 1519
 				}
1520 1520
 
@@ -1522,7 +1522,7 @@  discard block
 block discarded – undo
1522 1522
 
1523 1523
 			$pre_value = $field->get_value_submission( array(), false );
1524 1524
 
1525
-			$field_value = ! $allow_pre_populated && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1525
+			$field_value = ! $allow_pre_populated && ! ( $override_saved_value && ! gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1526 1526
 
1527 1527
 		} else {
1528 1528
 
@@ -1533,13 +1533,13 @@  discard block
 block discarded – undo
1533 1533
 
1534 1534
 			// saved field entry value (if empty, fallback to the pre-populated value, if exists)
1535 1535
 			// or pre-populated value if not empty and set to override saved value
1536
-			$field_value = isset( $this->entry[ $id ] ) && ! gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value;
1536
+			$field_value = isset( $this->entry[ $id ] ) && ! gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && ! gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value;
1537 1537
 
1538 1538
 			// in case field is post_category but inputType is select, multi-select or radio, convert value into array of category IDs.
1539
-			if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) {
1539
+			if ( 'post_category' === $field->type && ! gv_empty( $field_value, false, false ) ) {
1540 1540
 				$categories = array();
1541 1541
 				foreach ( explode( ',', $field_value ) as $cat_string ) {
1542
-				    $categories[] = GFCommon::format_post_category( $cat_string, true );
1542
+				    $categories[ ] = GFCommon::format_post_category( $cat_string, true );
1543 1543
 				}
1544 1544
 				$field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories );
1545 1545
 			}
@@ -1567,7 +1567,7 @@  discard block
 block discarded – undo
1567 1567
 	     * @param GF_Field $field Gravity Forms field object
1568 1568
 	     * @param GravityView_Edit_Entry_Render $this Current object
1569 1569
 	     */
1570
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1570
+	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type, $field_value, $field, $this );
1571 1571
 
1572 1572
 		return $field_value;
1573 1573
 	}
@@ -1584,12 +1584,12 @@  discard block
 block discarded – undo
1584 1584
 	 */
1585 1585
 	public function gform_pre_validation( $form ) {
1586 1586
 
1587
-		if( ! $this->verify_nonce() ) {
1587
+		if ( ! $this->verify_nonce() ) {
1588 1588
 			return $form;
1589 1589
 		}
1590 1590
 
1591 1591
 		// Fix PHP warning regarding undefined index.
1592
-		foreach ( $form['fields'] as &$field) {
1592
+		foreach ( $form[ 'fields' ] as &$field ) {
1593 1593
 
1594 1594
 			// This is because we're doing admin form pretending to be front-end, so Gravity Forms
1595 1595
 			// expects certain field array items to be set.
@@ -1597,7 +1597,7 @@  discard block
 block discarded – undo
1597 1597
 	            $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1598 1598
 			}
1599 1599
 
1600
-			switch( RGFormsModel::get_input_type( $field ) ) {
1600
+			switch ( RGFormsModel::get_input_type( $field ) ) {
1601 1601
 
1602 1602
 				/**
1603 1603
 				 * this whole fileupload hack is because in the admin, Gravity Forms simply doesn't update any fileupload field if it's empty, but it DOES in the frontend.
@@ -1611,26 +1611,26 @@  discard block
 block discarded – undo
1611 1611
 				    // Set the previous value
1612 1612
 				    $entry = $this->get_entry();
1613 1613
 
1614
-				    $input_name = 'input_'.$field->id;
1615
-				    $form_id = $form['id'];
1614
+				    $input_name = 'input_' . $field->id;
1615
+				    $form_id = $form[ 'id' ];
1616 1616
 
1617 1617
 				    $value = NULL;
1618 1618
 
1619 1619
 				    // Use the previous entry value as the default.
1620
-				    if( isset( $entry[ $field->id ] ) ) {
1620
+				    if ( isset( $entry[ $field->id ] ) ) {
1621 1621
 				        $value = $entry[ $field->id ];
1622 1622
 				    }
1623 1623
 
1624 1624
 				    // If this is a single upload file
1625
-				    if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1626
-				        $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1627
-				        $value = $file_path['url'];
1625
+				    if ( ! empty( $_FILES[ $input_name ] ) && ! empty( $_FILES[ $input_name ][ 'name' ] ) ) {
1626
+				        $file_path = GFFormsModel::get_file_upload_path( $form[ 'id' ], $_FILES[ $input_name ][ 'name' ] );
1627
+				        $value = $file_path[ 'url' ];
1628 1628
 
1629 1629
 				    } else {
1630 1630
 
1631 1631
 				        // Fix PHP warning on line 1498 of form_display.php for post_image fields
1632 1632
 				        // Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1633
-				        $_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1633
+				        $_FILES[ $input_name ] = array( 'name' => '', 'size' => '' );
1634 1634
 
1635 1635
 				    }
1636 1636
 
@@ -1638,10 +1638,10 @@  discard block
 block discarded – undo
1638 1638
 
1639 1639
 				        // If there are fresh uploads, process and merge them.
1640 1640
 				        // Otherwise, use the passed values, which should be json-encoded array of URLs
1641
-				        if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1641
+				        if ( isset( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) {
1642 1642
 				            $value = empty( $value ) ? '[]' : $value;
1643 1643
 				            $value = stripslashes_deep( $value );
1644
-				            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1644
+				            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ], array() );
1645 1645
 				        }
1646 1646
 
1647 1647
 				    } else {
@@ -1659,8 +1659,8 @@  discard block
 block discarded – undo
1659 1659
 
1660 1660
 				case 'number':
1661 1661
 				    // Fix "undefined index" issue at line 1286 in form_display.php
1662
-				    if( !isset( $_POST['input_'.$field->id ] ) ) {
1663
-				        $_POST['input_'.$field->id ] = NULL;
1662
+				    if ( ! isset( $_POST[ 'input_' . $field->id ] ) ) {
1663
+				        $_POST[ 'input_' . $field->id ] = NULL;
1664 1664
 				    }
1665 1665
 				    break;
1666 1666
 			}
@@ -1697,7 +1697,7 @@  discard block
 block discarded – undo
1697 1697
 		 * You can enter whatever you want!
1698 1698
 		 * We try validating, and customize the results using `self::custom_validation()`
1699 1699
 		 */
1700
-		add_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10, 4);
1700
+		add_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10, 4 );
1701 1701
 
1702 1702
 		// Needed by the validate funtion
1703 1703
 		$failed_validation_page = NULL;
@@ -1705,14 +1705,14 @@  discard block
 block discarded – undo
1705 1705
 
1706 1706
 		// Prevent entry limit from running when editing an entry, also
1707 1707
 		// prevent form scheduling from preventing editing
1708
-		unset( $this->form['limitEntries'], $this->form['scheduleForm'] );
1708
+		unset( $this->form[ 'limitEntries' ], $this->form[ 'scheduleForm' ] );
1709 1709
 
1710 1710
 		// Hide fields depending on Edit Entry settings
1711
-		$this->form['fields'] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1711
+		$this->form[ 'fields' ] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1712 1712
 
1713 1713
 		$this->is_valid = GFFormDisplay::validate( $this->form, $field_values, 1, $failed_validation_page );
1714 1714
 
1715
-		remove_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10 );
1715
+		remove_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10 );
1716 1716
 	}
1717 1717
 
1718 1718
 
@@ -1740,7 +1740,7 @@  discard block
 block discarded – undo
1740 1740
 
1741 1741
 		$gv_valid = true;
1742 1742
 
1743
-		foreach ( $validation_results['form']['fields'] as $key => &$field ) {
1743
+		foreach ( $validation_results[ 'form' ][ 'fields' ] as $key => &$field ) {
1744 1744
 
1745 1745
 			$value = RGFormsModel::get_field_value( $field );
1746 1746
 			$field_type = RGFormsModel::get_input_type( $field );
@@ -1753,22 +1753,22 @@  discard block
 block discarded – undo
1753 1753
 				case 'post_image':
1754 1754
 
1755 1755
 				    // in case nothing is uploaded but there are already files saved
1756
-				    if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1756
+				    if ( ! empty( $field->failed_validation ) && ! empty( $field->isRequired ) && ! empty( $value ) ) {
1757 1757
 				        $field->failed_validation = false;
1758 1758
 				        unset( $field->validation_message );
1759 1759
 				    }
1760 1760
 
1761 1761
 				    // validate if multi file upload reached max number of files [maxFiles] => 2
1762
-				    if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) {
1762
+				    if ( \GV\Utils::get( $field, 'maxFiles' ) && \GV\Utils::get( $field, 'multipleFiles' ) ) {
1763 1763
 
1764 1764
 				        $input_name = 'input_' . $field->id;
1765 1765
 				        //uploaded
1766
-				        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1766
+				        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] : array();
1767 1767
 
1768 1768
 				        //existent
1769 1769
 				        $entry = $this->get_entry();
1770 1770
 				        $value = NULL;
1771
-				        if( isset( $entry[ $field->id ] ) ) {
1771
+				        if ( isset( $entry[ $field->id ] ) ) {
1772 1772
 				            $value = json_decode( $entry[ $field->id ], true );
1773 1773
 				        }
1774 1774
 
@@ -1776,13 +1776,13 @@  discard block
 block discarded – undo
1776 1776
 				        $count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) +
1777 1777
 						               ( is_array( $value ) ? count( $value ) : 0 );
1778 1778
 
1779
-				        if( $count_files > $field->maxFiles ) {
1779
+				        if ( $count_files > $field->maxFiles ) {
1780 1780
 				            $field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1781 1781
 				            $field->failed_validation = 1;
1782 1782
 				            $gv_valid = false;
1783 1783
 
1784 1784
 				            // in case of error make sure the newest upload files are removed from the upload input
1785
-				            GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1785
+				            GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ] = null;
1786 1786
 				        }
1787 1787
 
1788 1788
 				    }
@@ -1793,7 +1793,7 @@  discard block
 block discarded – undo
1793 1793
 			}
1794 1794
 
1795 1795
 			// This field has failed validation.
1796
-			if( !empty( $field->failed_validation ) ) {
1796
+			if ( ! empty( $field->failed_validation ) ) {
1797 1797
 
1798 1798
 				gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field is invalid.', array( 'data' => array( 'field' => $field, 'value' => $value ) ) );
1799 1799
 
@@ -1811,19 +1811,19 @@  discard block
 block discarded – undo
1811 1811
 				}
1812 1812
 
1813 1813
 				// You can't continue inside a switch, so we do it after.
1814
-				if( empty( $field->failed_validation ) ) {
1814
+				if ( empty( $field->failed_validation ) ) {
1815 1815
 				    continue;
1816 1816
 				}
1817 1817
 
1818 1818
 				// checks if the No Duplicates option is not validating entry against itself, since
1819 1819
 				// we're editing a stored entry, it would also assume it's a duplicate.
1820
-				if( !empty( $field->noDuplicates ) ) {
1820
+				if ( ! empty( $field->noDuplicates ) ) {
1821 1821
 
1822 1822
 				    $entry = $this->get_entry();
1823 1823
 
1824 1824
 				    // If the value of the entry is the same as the stored value
1825 1825
 				    // Then we can assume it's not a duplicate, it's the same.
1826
-				    if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1826
+				    if ( ! empty( $entry ) && $value == $entry[ $field->id ] ) {
1827 1827
 				        //if value submitted was not changed, then don't validate
1828 1828
 				        $field->failed_validation = false;
1829 1829
 
@@ -1836,7 +1836,7 @@  discard block
 block discarded – undo
1836 1836
 				}
1837 1837
 
1838 1838
 				// if here then probably we are facing the validation 'At least one field must be filled out'
1839
-				if( GFFormDisplay::is_empty( $field, $this->form_id  ) && empty( $field->isRequired ) ) {
1839
+				if ( GFFormDisplay::is_empty( $field, $this->form_id ) && empty( $field->isRequired ) ) {
1840 1840
 				    unset( $field->validation_message );
1841 1841
 					$field->failed_validation = false;
1842 1842
 				    continue;
@@ -1848,12 +1848,12 @@  discard block
 block discarded – undo
1848 1848
 
1849 1849
 		}
1850 1850
 
1851
-		$validation_results['is_valid'] = $gv_valid;
1851
+		$validation_results[ 'is_valid' ] = $gv_valid;
1852 1852
 
1853 1853
 		gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Validation results.', array( 'data' => $validation_results ) );
1854 1854
 
1855 1855
 		// We'll need this result when rendering the form ( on GFFormDisplay::get_form )
1856
-		$this->form_after_validation = $validation_results['form'];
1856
+		$this->form_after_validation = $validation_results[ 'form' ];
1857 1857
 
1858 1858
 		return $validation_results;
1859 1859
 	}
@@ -1866,7 +1866,7 @@  discard block
 block discarded – undo
1866 1866
 	 */
1867 1867
 	public function get_entry() {
1868 1868
 
1869
-		if( empty( $this->entry ) ) {
1869
+		if ( empty( $this->entry ) ) {
1870 1870
 			// Get the database value of the entry that's being edited
1871 1871
 			$this->entry = gravityview_get_entry( GravityView_frontend::is_single_entry() );
1872 1872
 		}
@@ -1898,10 +1898,10 @@  discard block
 block discarded – undo
1898 1898
 		}
1899 1899
 
1900 1900
 		// If edit tab not yet configured, show all fields
1901
-		$edit_fields = !empty( $properties['edit_edit-fields'] ) ? $properties['edit_edit-fields'] : NULL;
1901
+		$edit_fields = ! empty( $properties[ 'edit_edit-fields' ] ) ? $properties[ 'edit_edit-fields' ] : NULL;
1902 1902
 
1903 1903
 		// Hide fields depending on admin settings
1904
-		$fields = $this->filter_fields( $form['fields'], $edit_fields );
1904
+		$fields = $this->filter_fields( $form[ 'fields' ], $edit_fields );
1905 1905
 
1906 1906
 	    // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1907 1907
 	    $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
@@ -1934,7 +1934,7 @@  discard block
 block discarded – undo
1934 1934
 	 */
1935 1935
 	private function filter_fields( $fields, $configured_fields ) {
1936 1936
 
1937
-		if( empty( $fields ) || !is_array( $fields ) ) {
1937
+		if ( empty( $fields ) || ! is_array( $fields ) ) {
1938 1938
 			return $fields;
1939 1939
 		}
1940 1940
 
@@ -1951,12 +1951,12 @@  discard block
 block discarded – undo
1951 1951
 
1952 1952
 			// Remove the fields that have calculation properties and keep them to be used later
1953 1953
 			// @since 1.16.2
1954
-			if( $field->has_calculation() ) {
1955
-				$this->fields_with_calculation[] = $field;
1954
+			if ( $field->has_calculation() ) {
1955
+				$this->fields_with_calculation[ ] = $field;
1956 1956
 				// don't remove the calculation fields on form render.
1957 1957
 			}
1958 1958
 
1959
-			if( in_array( $field->type, $field_type_blacklist ) ) {
1959
+			if ( in_array( $field->type, $field_type_blacklist ) ) {
1960 1960
 				unset( $fields[ $key ] );
1961 1961
 			}
1962 1962
 		}
@@ -1986,7 +1986,7 @@  discard block
 block discarded – undo
1986 1986
 					continue; // Never include when no fields are configured
1987 1987
 				}
1988 1988
 
1989
-				$out_fields[] = $field;
1989
+				$out_fields[ ] = $field;
1990 1990
 			}
1991 1991
 
1992 1992
 			return array_values( $out_fields );
@@ -1997,8 +1997,8 @@  discard block
 block discarded – undo
1997 1997
 
1998 1998
 	        /** @var GF_Field $field */
1999 1999
 	        foreach ( $fields as $field ) {
2000
-				if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
2001
-				    $edit_fields[] = $this->merge_field_properties( $field, $configured_field );
2000
+				if ( intval( $configured_field[ 'id' ] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
2001
+				    $edit_fields[ ] = $this->merge_field_properties( $field, $configured_field );
2002 2002
 				    break;
2003 2003
 				}
2004 2004
 
@@ -2021,14 +2021,14 @@  discard block
 block discarded – undo
2021 2021
 
2022 2022
 		$return_field = $field;
2023 2023
 
2024
-		if( empty( $field_setting['show_label'] ) ) {
2024
+		if ( empty( $field_setting[ 'show_label' ] ) ) {
2025 2025
 			$return_field->label = '';
2026
-		} elseif ( !empty( $field_setting['custom_label'] ) ) {
2027
-			$return_field->label = $field_setting['custom_label'];
2026
+		} elseif ( ! empty( $field_setting[ 'custom_label' ] ) ) {
2027
+			$return_field->label = $field_setting[ 'custom_label' ];
2028 2028
 		}
2029 2029
 
2030
-		if( !empty( $field_setting['custom_class'] ) ) {
2031
-			$return_field->cssClass .= ' '. gravityview_sanitize_html_class( $field_setting['custom_class'] );
2030
+		if ( ! empty( $field_setting[ 'custom_class' ] ) ) {
2031
+			$return_field->cssClass .= ' ' . gravityview_sanitize_html_class( $field_setting[ 'custom_class' ] );
2032 2032
 		}
2033 2033
 
2034 2034
 		/**
@@ -2066,16 +2066,16 @@  discard block
 block discarded – undo
2066 2066
 	     */
2067 2067
 	    $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
2068 2068
 
2069
-	    if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
2070
-			foreach( $fields as $k => $field ) {
2071
-				if( $field->adminOnly ) {
2069
+	    if ( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry[ 'id' ] ) ) {
2070
+			foreach ( $fields as $k => $field ) {
2071
+				if ( $field->adminOnly ) {
2072 2072
 				    unset( $fields[ $k ] );
2073 2073
 				}
2074 2074
 			}
2075 2075
 			return array_values( $fields );
2076 2076
 		}
2077 2077
 
2078
-	    foreach( $fields as &$field ) {
2078
+	    foreach ( $fields as &$field ) {
2079 2079
 		    $field->adminOnly = false;
2080 2080
 		}
2081 2081
 
@@ -2096,7 +2096,7 @@  discard block
 block discarded – undo
2096 2096
 	 */
2097 2097
 	private function unselect_default_values( $form ) {
2098 2098
 
2099
-	    foreach ( $form['fields'] as &$field ) {
2099
+	    foreach ( $form[ 'fields' ] as &$field ) {
2100 2100
 
2101 2101
 			if ( empty( $field->choices ) ) {
2102 2102
                 continue;
@@ -2104,7 +2104,7 @@  discard block
 block discarded – undo
2104 2104
 
2105 2105
             foreach ( $field->choices as &$choice ) {
2106 2106
 				if ( \GV\Utils::get( $choice, 'isSelected' ) ) {
2107
-					$choice['isSelected'] = false;
2107
+					$choice[ 'isSelected' ] = false;
2108 2108
 				}
2109 2109
 			}
2110 2110
 		}
@@ -2129,22 +2129,22 @@  discard block
 block discarded – undo
2129 2129
 	 */
2130 2130
 	function prefill_conditional_logic( $form ) {
2131 2131
 
2132
-		if( ! GFFormDisplay::has_conditional_logic( $form ) ) {
2132
+		if ( ! GFFormDisplay::has_conditional_logic( $form ) ) {
2133 2133
 			return $form;
2134 2134
 		}
2135 2135
 
2136 2136
 		// Have Conditional Logic pre-fill fields as if the data were default values
2137 2137
 		/** @var GF_Field $field */
2138
-		foreach ( $form['fields'] as &$field ) {
2138
+		foreach ( $form[ 'fields' ] as &$field ) {
2139 2139
 
2140
-			if( 'checkbox' === $field->type ) {
2140
+			if ( 'checkbox' === $field->type ) {
2141 2141
 				foreach ( $field->get_entry_inputs() as $key => $input ) {
2142
-				    $input_id = $input['id'];
2142
+				    $input_id = $input[ 'id' ];
2143 2143
 				    $choice = $field->choices[ $key ];
2144 2144
 				    $value = \GV\Utils::get( $this->entry, $input_id );
2145 2145
 				    $match = RGFormsModel::choice_value_match( $field, $choice, $value );
2146
-				    if( $match ) {
2147
-				        $field->choices[ $key ]['isSelected'] = true;
2146
+				    if ( $match ) {
2147
+				        $field->choices[ $key ][ 'isSelected' ] = true;
2148 2148
 				    }
2149 2149
 				}
2150 2150
 			} else {
@@ -2152,15 +2152,15 @@  discard block
 block discarded – undo
2152 2152
 				// We need to run through each field to set the default values
2153 2153
 				foreach ( $this->entry as $field_id => $field_value ) {
2154 2154
 
2155
-				    if( floatval( $field_id ) === floatval( $field->id ) ) {
2155
+				    if ( floatval( $field_id ) === floatval( $field->id ) ) {
2156 2156
 
2157
-				        if( 'list' === $field->type ) {
2157
+				        if ( 'list' === $field->type ) {
2158 2158
 				            $list_rows = maybe_unserialize( $field_value );
2159 2159
 
2160 2160
 				            $list_field_value = array();
2161
-				            foreach ( (array) $list_rows as $row ) {
2162
-				                foreach ( (array) $row as $column ) {
2163
-				                    $list_field_value[] = $column;
2161
+				            foreach ( (array)$list_rows as $row ) {
2162
+				                foreach ( (array)$row as $column ) {
2163
+				                    $list_field_value[ ] = $column;
2164 2164
 				                }
2165 2165
 				            }
2166 2166
 
@@ -2193,32 +2193,32 @@  discard block
 block discarded – undo
2193 2193
 		 * @see https://github.com/gravityview/GravityView/issues/840
2194 2194
 		 * @since develop
2195 2195
 		 */
2196
-		$the_form = GFAPI::get_form( $form['id'] );
2196
+		$the_form = GFAPI::get_form( $form[ 'id' ] );
2197 2197
 		$editable_ids = array();
2198
-		foreach ( $form['fields'] as $field ) {
2199
-			$editable_ids[] = $field['id']; // wp_list_pluck is destructive in this context
2198
+		foreach ( $form[ 'fields' ] as $field ) {
2199
+			$editable_ids[ ] = $field[ 'id' ]; // wp_list_pluck is destructive in this context
2200 2200
 		}
2201 2201
 		$remove_conditions_rule = array();
2202
-		foreach ( $the_form['fields'] as $field ) {
2203
-			if ( ! empty( $field->conditionalLogic ) && ! empty( $field->conditionalLogic['rules'] ) ) {
2204
-				foreach ( $field->conditionalLogic['rules'] as $i => $rule ) {
2205
-					if ( ! in_array( $rule['fieldId'], $editable_ids ) ) {
2202
+		foreach ( $the_form[ 'fields' ] as $field ) {
2203
+			if ( ! empty( $field->conditionalLogic ) && ! empty( $field->conditionalLogic[ 'rules' ] ) ) {
2204
+				foreach ( $field->conditionalLogic[ 'rules' ] as $i => $rule ) {
2205
+					if ( ! in_array( $rule[ 'fieldId' ], $editable_ids ) ) {
2206 2206
 						/**
2207 2207
 						 * This conditional field is not editable in this View.
2208 2208
 						 * We need to remove the rule, but only if it matches.
2209 2209
 						 */
2210
-						if ( $_field = GFAPI::get_field( $the_form, $rule['fieldId'] ) ) {
2210
+						if ( $_field = GFAPI::get_field( $the_form, $rule[ 'fieldId' ] ) ) {
2211 2211
 							$value = $_field->get_value_export( $this->entry );
2212
-						} elseif ( isset( $this->entry[ $rule['fieldId'] ] ) ) {
2213
-							$value = $this->entry[ $rule['fieldId'] ];
2212
+						} elseif ( isset( $this->entry[ $rule[ 'fieldId' ] ] ) ) {
2213
+							$value = $this->entry[ $rule[ 'fieldId' ] ];
2214 2214
 						} else {
2215
-							$value = gform_get_meta( $this->entry['id'], $rule['fieldId'] );
2215
+							$value = gform_get_meta( $this->entry[ 'id' ], $rule[ 'fieldId' ] );
2216 2216
 						}
2217 2217
 
2218
-						$match = GFFormsModel::matches_operation( $value, $rule['value'], $rule['operator'] );
2218
+						$match = GFFormsModel::matches_operation( $value, $rule[ 'value' ], $rule[ 'operator' ] );
2219 2219
 
2220 2220
 						if ( $match ) {
2221
-							$remove_conditions_rule[] = array( $field['id'], $i );
2221
+							$remove_conditions_rule[ ] = array( $field[ 'id' ], $i );
2222 2222
 						}
2223 2223
 					}
2224 2224
 				}
@@ -2226,21 +2226,21 @@  discard block
 block discarded – undo
2226 2226
 		}
2227 2227
 
2228 2228
 		if ( $remove_conditions_rule ) {
2229
-			foreach ( $form['fields'] as &$field ) {
2229
+			foreach ( $form[ 'fields' ] as &$field ) {
2230 2230
 				foreach ( $remove_conditions_rule as $_remove_conditions_r ) {
2231 2231
 
2232 2232
 				    list( $rule_field_id, $rule_i ) = $_remove_conditions_r;
2233 2233
 
2234
-					if ( $field['id'] == $rule_field_id ) {
2235
-						unset( $field->conditionalLogic['rules'][ $rule_i ] );
2236
-						gravityview()->log->debug( 'Removed conditional rule #{rule} for field {field_id}', array( 'rule' => $rule_i, 'field_id' => $field['id'] ) );
2234
+					if ( $field[ 'id' ] == $rule_field_id ) {
2235
+						unset( $field->conditionalLogic[ 'rules' ][ $rule_i ] );
2236
+						gravityview()->log->debug( 'Removed conditional rule #{rule} for field {field_id}', array( 'rule' => $rule_i, 'field_id' => $field[ 'id' ] ) );
2237 2237
 					}
2238 2238
 				}
2239 2239
 			}
2240 2240
 		}
2241 2241
 
2242 2242
 		/** Normalize the indices... */
2243
-		$form['fields'] = array_values( $form['fields'] );
2243
+		$form[ 'fields' ] = array_values( $form[ 'fields' ] );
2244 2244
 
2245 2245
 		/**
2246 2246
 		 * @filter `gravityview/edit_entry/conditional_logic` Should the Edit Entry form use Gravity Forms conditional logic showing/hiding of fields?
@@ -2250,16 +2250,16 @@  discard block
 block discarded – undo
2250 2250
 		 */
2251 2251
 		$use_conditional_logic = apply_filters( 'gravityview/edit_entry/conditional_logic', true, $form );
2252 2252
 
2253
-		if( $use_conditional_logic ) {
2253
+		if ( $use_conditional_logic ) {
2254 2254
 			return $form;
2255 2255
 		}
2256 2256
 
2257
-		foreach( $form['fields'] as &$field ) {
2257
+		foreach ( $form[ 'fields' ] as &$field ) {
2258 2258
 			/* @var GF_Field $field */
2259 2259
 			$field->conditionalLogic = null;
2260 2260
 		}
2261 2261
 
2262
-		unset( $form['button']['conditionalLogic'] );
2262
+		unset( $form[ 'button' ][ 'conditionalLogic' ] );
2263 2263
 
2264 2264
 		return $form;
2265 2265
 
@@ -2276,7 +2276,7 @@  discard block
 block discarded – undo
2276 2276
 	 */
2277 2277
 	public function manage_conditional_logic( $has_conditional_logic, $form ) {
2278 2278
 
2279
-		if( ! $this->is_edit_entry() ) {
2279
+		if ( ! $this->is_edit_entry() ) {
2280 2280
 			return $has_conditional_logic;
2281 2281
 		}
2282 2282
 
@@ -2308,44 +2308,44 @@  discard block
 block discarded – undo
2308 2308
 		 *  2. There are two entries embedded using oEmbed
2309 2309
 		 *  3. One of the entries has just been saved
2310 2310
 		 */
2311
-		if( !empty( $_POST['lid'] ) && !empty( $_GET['entry'] ) && ( $_POST['lid'] !== $_GET['entry'] ) ) {
2311
+		if ( ! empty( $_POST[ 'lid' ] ) && ! empty( $_GET[ 'entry' ] ) && ( $_POST[ 'lid' ] !== $_GET[ 'entry' ] ) ) {
2312 2312
 
2313 2313
 			$error = true;
2314 2314
 
2315 2315
 		}
2316 2316
 
2317
-		if( !empty( $_GET['entry'] ) && (string)$this->entry['id'] !== $_GET['entry'] ) {
2317
+		if ( ! empty( $_GET[ 'entry' ] ) && (string)$this->entry[ 'id' ] !== $_GET[ 'entry' ] ) {
2318 2318
 
2319 2319
 			$error = true;
2320 2320
 
2321
-		} elseif( ! $this->verify_nonce() ) {
2321
+		} elseif ( ! $this->verify_nonce() ) {
2322 2322
 
2323 2323
 			/**
2324 2324
 			 * If the Entry is embedded, there may be two entries on the same page.
2325 2325
 			 * If that's the case, and one is being edited, the other should fail gracefully and not display an error.
2326 2326
 			 */
2327
-			if( GravityView_oEmbed::getInstance()->get_entry_id() ) {
2327
+			if ( GravityView_oEmbed::getInstance()->get_entry_id() ) {
2328 2328
 				$error = true;
2329 2329
 			} else {
2330
-				$error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview');
2330
+				$error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview' );
2331 2331
 			}
2332 2332
 
2333 2333
 		}
2334 2334
 
2335
-		if( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
2336
-			$error = __( 'You do not have permission to edit this entry.', 'gravityview');
2335
+		if ( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
2336
+			$error = __( 'You do not have permission to edit this entry.', 'gravityview' );
2337 2337
 		}
2338 2338
 
2339
-		if( $this->entry['status'] === 'trash' ) {
2340
-			$error = __('You cannot edit the entry; it is in the trash.', 'gravityview' );
2339
+		if ( $this->entry[ 'status' ] === 'trash' ) {
2340
+			$error = __( 'You cannot edit the entry; it is in the trash.', 'gravityview' );
2341 2341
 		}
2342 2342
 
2343 2343
 		// No errors; everything's fine here!
2344
-		if( empty( $error ) ) {
2344
+		if ( empty( $error ) ) {
2345 2345
 			return true;
2346 2346
 		}
2347 2347
 
2348
-		if( $echo && $error !== true ) {
2348
+		if ( $echo && $error !== true ) {
2349 2349
 
2350 2350
 	        $error = esc_html( $error );
2351 2351
 
@@ -2353,10 +2353,10 @@  discard block
 block discarded – undo
2353 2353
 	         * @since 1.9
2354 2354
 	         */
2355 2355
 	        if ( ! empty( $this->entry ) ) {
2356
-		        $error .= ' ' . gravityview_get_link( '#', _x('Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) );
2356
+		        $error .= ' ' . gravityview_get_link( '#', _x( 'Go back.', 'Link shown when invalid Edit Entry link is clicked', 'gravityview' ), array( 'onclick' => "window.history.go(-1); return false;" ) );
2357 2357
 	        }
2358 2358
 
2359
-			echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error');
2359
+			echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error' );
2360 2360
 		}
2361 2361
 
2362 2362
 		gravityview()->log->error( '{error}', array( 'error' => $error ) );
@@ -2376,17 +2376,17 @@  discard block
 block discarded – undo
2376 2376
 
2377 2377
 		$error = NULL;
2378 2378
 
2379
-		if( ! $this->check_user_cap_edit_field( $field ) ) {
2380
-			$error = __( 'You do not have permission to edit this field.', 'gravityview');
2379
+		if ( ! $this->check_user_cap_edit_field( $field ) ) {
2380
+			$error = __( 'You do not have permission to edit this field.', 'gravityview' );
2381 2381
 		}
2382 2382
 
2383 2383
 		// No errors; everything's fine here!
2384
-		if( empty( $error ) ) {
2384
+		if ( empty( $error ) ) {
2385 2385
 			return true;
2386 2386
 		}
2387 2387
 
2388
-		if( $echo ) {
2389
-			echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error');
2388
+		if ( $echo ) {
2389
+			echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error' );
2390 2390
 		}
2391 2391
 
2392 2392
 		gravityview()->log->error( '{error}', array( 'error' => $error ) );
@@ -2407,14 +2407,14 @@  discard block
 block discarded – undo
2407 2407
 	private function check_user_cap_edit_field( $field ) {
2408 2408
 
2409 2409
 		// If they can edit any entries (as defined in Gravity Forms), we're good.
2410
-		if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
2410
+		if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
2411 2411
 			return true;
2412 2412
 		}
2413 2413
 
2414
-		$field_cap = isset( $field['allow_edit_cap'] ) ? $field['allow_edit_cap'] : false;
2414
+		$field_cap = isset( $field[ 'allow_edit_cap' ] ) ? $field[ 'allow_edit_cap' ] : false;
2415 2415
 
2416
-		if( $field_cap ) {
2417
-			return GVCommon::has_cap( $field['allow_edit_cap'] );
2416
+		if ( $field_cap ) {
2417
+			return GVCommon::has_cap( $field[ 'allow_edit_cap' ] );
2418 2418
 		}
2419 2419
 
2420 2420
 		return false;
@@ -2428,17 +2428,17 @@  discard block
 block discarded – undo
2428 2428
 	public function verify_nonce() {
2429 2429
 
2430 2430
 		// Verify form submitted for editing single
2431
-		if( $this->is_edit_entry_submission() ) {
2431
+		if ( $this->is_edit_entry_submission() ) {
2432 2432
 			$valid = wp_verify_nonce( $_POST[ self::$nonce_field ], self::$nonce_field );
2433 2433
 		}
2434 2434
 
2435 2435
 		// Verify
2436
-		else if( ! $this->is_edit_entry() ) {
2436
+		else if ( ! $this->is_edit_entry() ) {
2437 2437
 			$valid = false;
2438 2438
 		}
2439 2439
 
2440 2440
 		else {
2441
-			$valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key );
2441
+			$valid = wp_verify_nonce( $_GET[ 'edit' ], self::$nonce_key );
2442 2442
 		}
2443 2443
 
2444 2444
 		/**
Please login to merge, or discard this patch.
includes/class-gravityview-shortcode.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
 		gravityview()->log->debug( '$passed_atts: ', array( 'data' => $passed_atts ) );
49 49
 
50 50
 		// Get details about the current View
51
-		if( !empty( $passed_atts['detail'] ) ) {
52
-			return $this->get_view_detail( $passed_atts['detail'] );
51
+		if ( ! empty( $passed_atts[ 'detail' ] ) ) {
52
+			return $this->get_view_detail( $passed_atts[ 'detail' ] );
53 53
 		}
54 54
 
55 55
 		$atts = $this->parse_and_sanitize_atts( $passed_atts );
@@ -85,16 +85,16 @@  discard block
 block discarded – undo
85 85
 		$filtered_atts = shortcode_atts( $supported_atts, $passed_atts, 'gravityview' );
86 86
 
87 87
 		// Only keep the passed attributes after making sure that they're valid pairs
88
-		$filtered_atts = array_intersect_key( (array) $passed_atts, $filtered_atts );
88
+		$filtered_atts = array_intersect_key( (array)$passed_atts, $filtered_atts );
89 89
 
90 90
 		$atts = array();
91 91
 
92
-		foreach( $filtered_atts as $key => $passed_value ) {
92
+		foreach ( $filtered_atts as $key => $passed_value ) {
93 93
 
94 94
 			// Allow using GravityView merge tags in shortcode attributes, like {get} and {created_by}
95 95
 			$passed_value = GravityView_Merge_Tags::replace_variables( $passed_value );
96 96
 
97
-			switch( $defaults[ $key ]['type'] ) {
97
+			switch ( $defaults[ $key ][ 'type' ] ) {
98 98
 
99 99
 				/**
100 100
 				 * Make sure number fields are numeric.
@@ -102,14 +102,14 @@  discard block
 block discarded – undo
102 102
 				 * @see http://php.net/manual/en/function.is-numeric.php#107326
103 103
 				 */
104 104
 				case 'number':
105
-					if( is_numeric( $passed_value ) ) {
105
+					if ( is_numeric( $passed_value ) ) {
106 106
 						$atts[ $key ] = ( $passed_value + 0 );
107 107
 					}
108 108
 					break;
109 109
 
110 110
 				/** @since 2.1 */
111 111
 				case 'operator':
112
-					if( GFFormsModel::is_valid_operator( $passed_value ) ) {
112
+					if ( GFFormsModel::is_valid_operator( $passed_value ) ) {
113 113
 						$atts[ $key ] = $passed_value;
114 114
 					}
115 115
 					break;
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
 				 */
125 125
 				case 'select':
126 126
 				case 'radio':
127
-					$options = isset( $defaults[ $key ]['choices'] ) ? $defaults[ $key ]['choices'] : $defaults[ $key ]['options'];
128
-					if( in_array( $passed_value, array_keys( $options ) ) ) {
127
+					$options = isset( $defaults[ $key ][ 'choices' ] ) ? $defaults[ $key ][ 'choices' ] : $defaults[ $key ][ 'options' ];
128
+					if ( in_array( $passed_value, array_keys( $options ) ) ) {
129 129
 						$atts[ $key ] = $passed_value;
130 130
 					}
131 131
 					break;
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 		$gravityview_view = GravityView_View::getInstance();
155 155
 		$return = '';
156 156
 
157
-		switch( $detail ) {
157
+		switch ( $detail ) {
158 158
 			case 'total_entries':
159 159
 				$return = number_format_i18n( $gravityview_view->getTotalEntries() );
160 160
 				break;
Please login to merge, or discard this patch.
includes/class-gravityview-extension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
  */
15 15
 abstract class GravityView_Extension extends \GV\Extension {
16 16
 	public function __construct() {
17
-		if( ! in_array( $this->_author, array( 'GravityView', 'Katz Web Services, Inc.', true ) ) ) {
17
+		if ( ! in_array( $this->_author, array( 'GravityView', 'Katz Web Services, Inc.', true ) ) ) {
18 18
 			gravityview()->log->warning( '\GravityView_Extension is deprecated. Inherit from \GV\Extension instead', array( 'data' => $this ) );
19 19
 		}
20 20
 		parent::__construct();
Please login to merge, or discard this patch.
includes/plugin-and-theme-hooks/class-gravityview-theme-hooks-woothemes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
 		$gv_page = gravityview()->request->is_admin( '', 'single' );
79 79
 
80 80
 		// New View or Edit View page
81
-		if( $gv_page && $pagenow === 'post-new.php' ) {
81
+		if ( $gv_page && $pagenow === 'post-new.php' ) {
82 82
 			remove_meta_box( 'woothemes-settings', 'gravityview', 'normal' );
83 83
 		}
84 84
 	}
Please login to merge, or discard this patch.
plugin-and-theme-hooks/class-gravityview-plugin-hooks-yoast-seo.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
 		parent::add_hooks();
69 69
 
70
-		if( gravityview()->request->is_admin( '', null ) ) {
70
+		if ( gravityview()->request->is_admin( '', null ) ) {
71 71
 
72 72
 				// Make Yoast metabox go down to the bottom please.
73 73
 			add_filter( 'wpseo_metabox_prio', array( $this, 'return_low' ) );
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
 	 */
93 93
 	public function disable_content_analysis( $options ) {
94 94
 
95
-		$options['keyword_analysis_active'] = false;
96
-		$options['content_analysis_active'] = false;
95
+		$options[ 'keyword_analysis_active' ] = false;
96
+		$options[ 'content_analysis_active' ] = false;
97 97
 
98 98
 		return $options;
99 99
 	}
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
 		global $pagenow;
113 113
 
114 114
 		// New View page
115
-		if( $pagenow === 'post-new.php' ) {
116
-			$options['hideeditbox-gravityview'] = true;
115
+		if ( $pagenow === 'post-new.php' ) {
116
+			$options[ 'hideeditbox-gravityview' ] = true;
117 117
 		}
118 118
 
119 119
 		return $options;
Please login to merge, or discard this patch.
future/includes/class-gv-request-admin.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 		 */
39 39
 		$is_page = false;
40 40
 
41
-		if( function_exists( '\get_current_screen' ) || function_exists( 'get_current_screen' ) ) {
41
+		if ( function_exists( '\get_current_screen' ) || function_exists( 'get_current_screen' ) ) {
42 42
 			$current_screen = \get_current_screen();
43 43
 		} else {
44 44
 			$current_screen = false;
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
 				$is_page = 'single';
52 52
 			} elseif ( $is_gv_settings = 'gravityview_page_gravityview_settings' === $current_screen->id ) {
53 53
 				$is_page = 'settings';
54
-			} elseif( $is_extensions = 'gravityview_page_gv-admin-installer' === $current_screen->id ) {
54
+			} elseif ( $is_extensions = 'gravityview_page_gv-admin-installer' === $current_screen->id ) {
55 55
 				$is_page = 'downloads';
56
-			} elseif( $is_changelog = 'gravityview_page_gv-changelog' === $current_screen->id ) {
56
+			} elseif ( $is_changelog = 'gravityview_page_gv-changelog' === $current_screen->id ) {
57 57
 				$is_page = 'changelog';
58
-			} elseif( $is_getting_started = 'gravityview_page_gv-getting-started' === $current_screen->id ) {
58
+			} elseif ( $is_getting_started = 'gravityview_page_gv-getting-started' === $current_screen->id ) {
59 59
 				$is_page = 'getting-started';
60
-			} elseif( $is_credits = 'gravityview_page_gv-credits' === $current_screen->id ) {
60
+			} elseif ( $is_credits = 'gravityview_page_gv-credits' === $current_screen->id ) {
61 61
 				$is_page = 'credits';
62 62
 			}
63 63
 		}
Please login to merge, or discard this patch.
class-gravityview-plugin-hooks-gravity-forms-directory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@
 block discarded – undo
29 29
 		$KWS_GF_Change_Lead_Creator = new KWS_GF_Change_Lead_Creator;
30 30
 
31 31
 		// Now, no validation is required in the methods; let's hook in.
32
-		remove_action('admin_init', array( $KWS_GF_Change_Lead_Creator, 'set_screen_mode' ) );
32
+		remove_action( 'admin_init', array( $KWS_GF_Change_Lead_Creator, 'set_screen_mode' ) );
33 33
 
34
-		remove_action("gform_entry_info", array( $KWS_GF_Change_Lead_Creator, 'add_select' ), 10 );
34
+		remove_action( "gform_entry_info", array( $KWS_GF_Change_Lead_Creator, 'add_select' ), 10 );
35 35
 
36
-		remove_action("gform_after_update_entry", array( $KWS_GF_Change_Lead_Creator, 'update_entry_creator' ), 10 );
36
+		remove_action( "gform_after_update_entry", array( $KWS_GF_Change_Lead_Creator, 'update_entry_creator' ), 10 );
37 37
 
38 38
 	}
39 39
 }
Please login to merge, or discard this patch.