Completed
Pull Request — master (#1387)
by Zack
22:48 queued 20:06
created
future/includes/class-gv-shortcode-gventry.php 2 patches
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -47,16 +47,16 @@  discard block
 block discarded – undo
47 47
 		 */
48 48
 		$atts = apply_filters( 'gravityview/shortcodes/gventry/atts', $atts );
49 49
 
50
-		$view = \GV\View::by_id( $atts['view_id'] );
50
+		$view = \GV\View::by_id( $atts[ 'view_id' ] );
51 51
 
52 52
 		if ( ! $view ) {
53
-			gravityview()->log->error( 'View does not exist #{view_id}', array( 'view_id' => $atts['view_id'] ) );
53
+			gravityview()->log->error( 'View does not exist #{view_id}', array( 'view_id' => $atts[ 'view_id' ] ) );
54 54
 			return apply_filters( 'gravityview/shortcodes/gventry/output', '', null, null, $atts );
55 55
 		}
56 56
 
57
-		$entry_id = ! empty( $atts['entry_id'] ) ? $atts['entry_id'] : $atts['id'];
57
+		$entry_id = ! empty( $atts[ 'entry_id' ] ) ? $atts[ 'entry_id' ] : $atts[ 'id' ];
58 58
 
59
-		switch( $entry_id ):
59
+		switch ( $entry_id ):
60 60
 			case 'last':
61 61
 				if ( class_exists( '\GF_Query' ) ) {
62 62
 					/**
@@ -65,17 +65,17 @@  discard block
 block discarded – undo
65 65
 					 * Since we're using \GF_Query shorthand initialization we have to reverse the order parameters here.
66 66
 					 */
67 67
 					add_filter( 'gravityview_get_entries', $filter = function( $parameters, $args, $form_id ) {
68
-						if ( ! empty( $parameters['sorting'] ) ) {
68
+						if ( ! empty( $parameters[ 'sorting' ] ) ) {
69 69
 							/**
70 70
 							 * Reverse existing sorts.
71 71
 							 */
72
-							$sort = &$parameters['sorting'];
73
-							$sort['direction'] = $sort['direction'] == 'RAND' ? : ( $sort['direction'] == 'ASC' ? 'DESC' : 'ASC' );
72
+							$sort = &$parameters[ 'sorting' ];
73
+							$sort[ 'direction' ] = $sort[ 'direction' ] == 'RAND' ?: ( $sort[ 'direction' ] == 'ASC' ? 'DESC' : 'ASC' );
74 74
 						} else {
75 75
 							/**
76 76
 							 * Otherwise, sort by date_created.
77 77
 							 */
78
-							$parameters['sorting'] = array(
78
+							$parameters[ 'sorting' ] = array(
79 79
 								'key' => 'id',
80 80
 								'direction' => 'ASC',
81 81
 								'is_numeric' => true
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
 					/** If a sort already exists, reverse it. */
92 92
 					if ( $sort = end( $entries->sorts ) ) {
93
-						$entries = $entries->sort( new \GV\Entry_Sort( $sort->field, $sort->direction == \GV\Entry_Sort::RAND ? : ( $sort->direction == \GV\Entry_Sort::ASC ? \GV\Entry_Sort::DESC : \GV\Entry_Sort::ASC ) ), $sort->mode );
93
+						$entries = $entries->sort( new \GV\Entry_Sort( $sort->field, $sort->direction == \GV\Entry_Sort::RAND ?: ( $sort->direction == \GV\Entry_Sort::ASC ? \GV\Entry_Sort::DESC : \GV\Entry_Sort::ASC ) ), $sort->mode );
94 94
 					} else {
95 95
 						/** Otherwise, sort by date_created */
96 96
 						$entries = $entries->sort( new \GV\Entry_Sort( \GV\Internal_Field::by_id( 'id' ), \GV\Entry_Sort::ASC ), \GV\Entry_Sort::NUMERIC );
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
 				break;
109 109
 			default:
110 110
 				if ( ! $entry = \GV\GF_Entry::by_id( $entry_id ) ) {
111
-					gravityview()->log->error( 'Entry #{entry_id} not found', array( 'view_id' => $atts['view_id'] ) );
111
+					gravityview()->log->error( 'Entry #{entry_id} not found', array( 'view_id' => $atts[ 'view_id' ] ) );
112 112
 					return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, null, $atts );
113 113
 				}
114 114
 		endswitch;
115 115
 
116
-		if ( $view->form->ID != $entry['form_id'] ) {
116
+		if ( $view->form->ID != $entry[ 'form_id' ] ) {
117 117
 			gravityview()->log->error( 'Entry does not belong to view (form mismatch)' );
118 118
 			return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts );
119 119
 		}
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 			return apply_filters( 'gravityview/shortcodes/gventry/output', get_the_password_form( $view->ID ), $view, $entry, $atts );
124 124
 		}
125 125
 
126
-		if ( ! $view->form  ) {
126
+		if ( ! $view->form ) {
127 127
 			gravityview()->log->notice( 'View #{id} has no form attached to it.', array( 'id' => $view->ID ) );
128 128
 
129 129
 			/**
@@ -146,43 +146,43 @@  discard block
 block discarded – undo
146 146
 		}
147 147
 
148 148
 		/** Unapproved entries. */
149
-		if ( $entry['status'] != 'active' ) {
149
+		if ( $entry[ 'status' ] != 'active' ) {
150 150
 			gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) );
151 151
 			return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts );
152 152
 		}
153 153
 
154
-		$is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID );
154
+		$is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID );
155 155
 
156 156
 		if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) {
157
-			if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) )  ) {
157
+			if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) {
158 158
 				gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) );
159 159
 				return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts );
160 160
 			}
161 161
 		}
162 162
 
163
-		if ( $atts['edit'] ) {
163
+		if ( $atts[ 'edit' ] ) {
164 164
 			/**
165 165
 			 * Based on code in our unit-tests.
166 166
 			 * Mocks old context, etc.
167 167
 			 */
168 168
 			$loader = \GravityView_Edit_Entry::getInstance();
169
-			$render = $loader->instances['render'];
169
+			$render = $loader->instances[ 'render' ];
170 170
 
171 171
 			add_filter( 'gravityview/is_single_entry', '__return_true' );
172 172
 
173
-			$form = \GFAPI::get_form( $entry['form_id'] );
173
+			$form = \GFAPI::get_form( $entry[ 'form_id' ] );
174 174
 
175 175
 			$data = \GravityView_View_Data::getInstance( $view );
176 176
 			$template = \GravityView_View::getInstance( array(
177 177
 				'form' => $form,
178
-				'form_id' => $form['id'],
178
+				'form_id' => $form[ 'id' ],
179 179
 				'view_id' => $view->ID,
180 180
 				'entries' => array( $entry ),
181 181
 				'atts' => \GVCommon::get_template_settings( $view->ID ),
182 182
 			) );
183 183
 
184
-			$_GET['edit'] = wp_create_nonce(
185
-				\GravityView_Edit_Entry::get_nonce_key( $view->ID, $form['id'], $entry['id'] )
184
+			$_GET[ 'edit' ] = wp_create_nonce(
185
+				\GravityView_Edit_Entry::get_nonce_key( $view->ID, $form[ 'id' ], $entry[ 'id' ] )
186 186
 			);
187 187
 
188 188
 			add_filter( 'gravityview/edit_entry/success', $callback = function( $message ) use ( $view, $entry, $atts ) {
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 				return apply_filters( 'gravityview/shortcodes/gventry/edit/success', $message, $view, $entry, $atts );
200 200
 			} );
201 201
 
202
-			ob_start() && $render->init( $data, \GV\Entry::by_id( $entry['id'] ), $view );
202
+			ob_start() && $render->init( $data, \GV\Entry::by_id( $entry[ 'id' ] ), $view );
203 203
 			$output = ob_get_clean(); // Render :)
204 204
 
205 205
 			remove_filter( 'gravityview/is_single_entry', '__return_true' );
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 			$renderer = new \GV\Entry_Renderer();
212 212
 
213 213
 			$request = new \GV\Mock_Request();
214
-			$request->returns['is_entry'] = $entry;
214
+			$request->returns[ 'is_entry' ] = $entry;
215 215
 
216 216
 			$output = $renderer->render( $entry, $view, $request );
217 217
 
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 	/**
19 19
 	 * Process and output the [gventry] shortcode.
20 20
 	 *
21
-	 * @param array $passed_atts The attributes passed.
22 21
 	 * @param string $content The content inside the shortcode.
23 22
 	 * @param string $tag The shortcode tag.
24 23
 	 *
Please login to merge, or discard this patch.
includes/class-admin-installer.php 1 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 ) {
71
+		if ( ! $downloads_data ) {
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( 'Extensions', 'Extensions are WordPress plugins that add functionality to GravityView and Gravity Forms', 'gravityview' );
100
+		$menu_text = _x( 'Extensions', '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
 	/**
@@ -162,43 +162,43 @@  discard block
 block discarded – undo
162 162
 	 * Get downloads data from transient or from API; save transient after getting data from API
163 163
 	 *
164 164
 	 * @return WP_Error|array If error, returns WP_Error. If not valid JSON, empty array. Otherwise, this structure: {
165
-     *   @type array  $info {
166
-     *       @type string $id int 17
167
-     *       @type string $slug Extension slug
168
-     *       @type string $title Extension title
169
-     *       @type string $create_date in '2018-07-19 20:03:10' format
170
-     *       @type string $modified_date
171
-     *       @type string $status
172
-     *       @type string $link URL to public plugin page
173
-     *       @type string $content
174
-     *       @type string $excerpt
175
-     *       @type string $thumbnail URL to thumbnail
176
-     *       @type array  $category Taxonomy details for the plugin's category {
177
-     *         @type int $term_id => int 30
178
-     *         @type string $name => string 'Plugins' (length=7)
179
-     *         @type string $slug => string 'plugins' (length=7)
180
-     *         @type int $term_group => int 0
181
-     *         @type int $term_taxonomy_id => int 30
182
-     *         @type string $taxonomy => string 'download_category' (length=17)
183
-     *         @type string $description => string '' (length=0)
184
-     *         @type int $parent => int 0
185
-     *         @type int $count => int 4
186
-     *         @type string $filter => string 'raw' (length=3)
187
-     *       }
188
-     *       @type array $tags {see $category above}
189
-     *       @type string $textdomain string 'gravityview' (length=11)
190
-     *   }
191
-     *   @type array $pricing array of `price_name_slugs` => '00.00' values, if price options exist
192
-     *   @type array $licensing {
193
-     *       @type bool   $enabled Is licensing enabled for the extension
194
-     *       @type string $version Version number
195
-     *       @type string $exp_unit Expiration unit ('years')
196
-     *       @type string $exp_length Expiration length ('1')
197
-     *   }
198
-     *   @type array $files Array of files. Empty if user has no access to the file. {
199
-     *       @type string $file string URL of the file download
200
-     *   }
201
-     * }
165
+	 *   @type array  $info {
166
+	 *       @type string $id int 17
167
+	 *       @type string $slug Extension slug
168
+	 *       @type string $title Extension title
169
+	 *       @type string $create_date in '2018-07-19 20:03:10' format
170
+	 *       @type string $modified_date
171
+	 *       @type string $status
172
+	 *       @type string $link URL to public plugin page
173
+	 *       @type string $content
174
+	 *       @type string $excerpt
175
+	 *       @type string $thumbnail URL to thumbnail
176
+	 *       @type array  $category Taxonomy details for the plugin's category {
177
+	 *         @type int $term_id => int 30
178
+	 *         @type string $name => string 'Plugins' (length=7)
179
+	 *         @type string $slug => string 'plugins' (length=7)
180
+	 *         @type int $term_group => int 0
181
+	 *         @type int $term_taxonomy_id => int 30
182
+	 *         @type string $taxonomy => string 'download_category' (length=17)
183
+	 *         @type string $description => string '' (length=0)
184
+	 *         @type int $parent => int 0
185
+	 *         @type int $count => int 4
186
+	 *         @type string $filter => string 'raw' (length=3)
187
+	 *       }
188
+	 *       @type array $tags {see $category above}
189
+	 *       @type string $textdomain string 'gravityview' (length=11)
190
+	 *   }
191
+	 *   @type array $pricing array of `price_name_slugs` => '00.00' values, if price options exist
192
+	 *   @type array $licensing {
193
+	 *       @type bool   $enabled Is licensing enabled for the extension
194
+	 *       @type string $version Version number
195
+	 *       @type string $exp_unit Expiration unit ('years')
196
+	 *       @type string $exp_length Expiration length ('1')
197
+	 *   }
198
+	 *   @type array $files Array of files. Empty if user has no access to the file. {
199
+	 *       @type string $file string URL of the file download
200
+	 *   }
201
+	 * }
202 202
 	 */
203 203
 	public function get_downloads_data() {
204 204
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 		) );
231 231
 
232 232
 		if ( is_wp_error( $response ) ) {
233
-		    gravityview()->log->error( "Extension data response is an error", array( 'data' => $response ) );
233
+			gravityview()->log->error( "Extension data response is an error", array( 'data' => $response ) );
234 234
 			return $response;
235 235
 		}
236 236
 
@@ -283,10 +283,10 @@  discard block
 block discarded – undo
283 283
                 <div class="gv-admin-installer-notice notice inline error">
284 284
                     <h3><?php esc_html_e( 'Extensions and plugins data cannot be loaded at the moment. Please try again later.', 'gravityview' ); ?></h3>
285 285
                     <?php
286
-                    if ( is_wp_error( $downloads_data ) ) {
287
-	                    echo wpautop( '<pre>' . esc_html( $downloads_data->get_error_message() ) . '</pre>' );
288
-                    }
289
-                    ?>
286
+					if ( is_wp_error( $downloads_data ) ) {
287
+						echo wpautop( '<pre>' . esc_html( $downloads_data->get_error_message() ) . '</pre>' );
288
+					}
289
+					?>
290 290
                 </div>
291 291
             </div>
292 292
 			<?php
@@ -342,9 +342,9 @@  discard block
 block discarded – undo
342 342
 	protected function render_download( $download, $wp_plugins ) {
343 343
 
344 344
 
345
-        $details = $this->get_download_display_details( $download, $wp_plugins );
345
+		$details = $this->get_download_display_details( $download, $wp_plugins );
346 346
 
347
-        $download_info = $details['download_info'];
347
+		$download_info = $details['download_info'];
348 348
 
349 349
 		?>
350 350
         <div class="item <?php echo esc_attr( $details['item_class'] ); ?>">
@@ -366,43 +366,43 @@  discard block
 block discarded – undo
366 366
 
367 367
                 <div class="addon-excerpt"><?php
368 368
 
369
-                    $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info['excerpt'] );
369
+					$excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info['excerpt'] );
370 370
 
371
-                    // Allow some pure HTML tags, but remove everything else from the excerpt.
372
-                    $tags = array( '<strong>', '</strong>', '<em>', '</em>', '<code>', '</code>' );
373
-                    $replacements = array( '[b]', '[/b]', '[i]', '[/i]', '[code]', '[/code]' );
371
+					// Allow some pure HTML tags, but remove everything else from the excerpt.
372
+					$tags = array( '<strong>', '</strong>', '<em>', '</em>', '<code>', '</code>' );
373
+					$replacements = array( '[b]', '[/b]', '[i]', '[/i]', '[code]', '[/code]' );
374 374
 
375
-                    $excerpt = str_replace( $tags, $replacements, $excerpt );
376
-                    $excerpt = esc_html( strip_tags( $excerpt ) );
375
+					$excerpt = str_replace( $tags, $replacements, $excerpt );
376
+					$excerpt = esc_html( strip_tags( $excerpt ) );
377 377
 					$excerpt = str_replace( $replacements, $tags, $excerpt );
378 378
 
379 379
 					echo wpautop( $excerpt );
380
-                ?></div>
380
+				?></div>
381 381
             </div>
382 382
         </div>
383 383
 		<?php
384 384
 	}
385 385
 
386 386
 	/**
387
-     * Generates details array for the download to keep the render_download() method a bit tidier
388
-     *
387
+	 * Generates details array for the download to keep the render_download() method a bit tidier
388
+	 *
389 389
 	 * @param array $download Single download, as returned by {@see get_downloads_data}
390 390
 	 * @param array $wp_plugins All active plugins, as returned by {@see get_plugins()}
391 391
 	 *
392 392
 	 * @return array {
393
-     *   @type array $download_info
394
-     *   @type string $plugin_path
395
-     *   @type string $status License status returned by Easy Digital Downloads ("active", "inactive", "expired", "revoked", etc)
396
-     *   @type string $status_label
397
-     *   @type string $button_title Title attribute to show when hovering over the download's button
398
-     *   @type string $button_class CSS class to use for the button
399
-     *   @type string $button_label Text to use for the download's anchor link
400
-     *   @type string $href URL for the download's button
401
-     *   @type bool   $spinner Whether to show the spinner icon
402
-     *   @type string $item_class CSS class for the download container
403
-     *   @type string $required_license The name of the required license for the download ("All Access" or "Core + Extensions")
404
-     *   @type bool   $is_active Is the current GravityView license (as entered in Settings) active?
405
-     * }
393
+	 *   @type array $download_info
394
+	 *   @type string $plugin_path
395
+	 *   @type string $status License status returned by Easy Digital Downloads ("active", "inactive", "expired", "revoked", etc)
396
+	 *   @type string $status_label
397
+	 *   @type string $button_title Title attribute to show when hovering over the download's button
398
+	 *   @type string $button_class CSS class to use for the button
399
+	 *   @type string $button_label Text to use for the download's anchor link
400
+	 *   @type string $href URL for the download's button
401
+	 *   @type bool   $spinner Whether to show the spinner icon
402
+	 *   @type string $item_class CSS class for the download container
403
+	 *   @type string $required_license The name of the required license for the download ("All Access" or "Core + Extensions")
404
+	 *   @type bool   $is_active Is the current GravityView license (as entered in Settings) active?
405
+	 * }
406 406
 	 */
407 407
 	private function get_download_display_details( $download, $wp_plugins ) {
408 408
 
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 			'slug' => '',
414 414
 			'excerpt' => '',
415 415
 			'link' => '',
416
-            'coming_soon' => false,
416
+			'coming_soon' => false,
417 417
 			'installer_title' => null, // May not be defined
418 418
 			'installer_excerpt' => null, // May not be defined
419 419
 		) );
@@ -456,14 +456,14 @@  discard block
 block discarded – undo
456 456
 			$href         = 'https://gravityview.co/pricing/?utm_source=admin-installer&utm_medium=admin&utm_campaign=Admin%20Notice&utm_content=' . $required_license;
457 457
 		}
458 458
 
459
-        elseif ( ! empty( $download_info['coming_soon'] ) ) {
460
-	        $spinner      = false;
461
-	        $status       = 'notinstalled';
462
-	        $status_label = __( 'Coming Soon', 'gravityview' );
463
-	        $button_label = __( 'Learn More', 'gravityview' );
464
-	        $button_class = 'button-primary button-large';
465
-	        $href         = \GV\Utils::get( $download_info, 'link', 'https://gravityview.co/extensions/' );
466
-        }
459
+		elseif ( ! empty( $download_info['coming_soon'] ) ) {
460
+			$spinner      = false;
461
+			$status       = 'notinstalled';
462
+			$status_label = __( 'Coming Soon', 'gravityview' );
463
+			$button_label = __( 'Learn More', 'gravityview' );
464
+			$button_class = 'button-primary button-large';
465
+			$href         = \GV\Utils::get( $download_info, 'link', 'https://gravityview.co/extensions/' );
466
+		}
467 467
 
468 468
 		// Access but the plugin is not installed
469 469
 		elseif ( ! $wp_plugin ) {
@@ -503,18 +503,18 @@  discard block
 block discarded – undo
503 503
 		}
504 504
 
505 505
 		return compact( 'download_info','plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' );
506
-    }
506
+	}
507 507
 
508 508
 	/**
509
-     * Returns the base price for an extension
510
-     *
509
+	 * Returns the base price for an extension
510
+	 *
511 511
 	 * @param array $download
512 512
 	 *
513 513
 	 * @return float Base price for an extension. If not for sale separately, returns 0
514 514
 	 */
515 515
 	private function get_download_base_price( $download ) {
516 516
 
517
-	    $base_price = \GV\Utils::get( $download, 'pricing/amount', 0 );
517
+		$base_price = \GV\Utils::get( $download, 'pricing/amount', 0 );
518 518
 		$base_price = \GFCommon::to_number( $base_price );
519 519
 
520 520
 		unset( $download['pricing']['amount'] );
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
 		}
526 526
 
527 527
 		return floatval( $base_price );
528
-    }
528
+	}
529 529
 
530 530
 	/**
531 531
 	 * Handle AJAX request to activate extension
@@ -543,8 +543,8 @@  discard block
 block discarded – undo
543 543
 
544 544
 		if ( is_wp_error( $result ) || ! is_plugin_active( $data['path'] ) ) {
545 545
 			wp_send_json_error( array(
546
-                'error' => sprintf( __( 'Plugin activation failed: %s', 'gravityview' ), $result->get_error_message() )
547
-            ) );
546
+				'error' => sprintf( __( 'Plugin activation failed: %s', 'gravityview' ), $result->get_error_message() )
547
+			) );
548 548
 		}
549 549
 
550 550
 		wp_send_json_success();
@@ -565,10 +565,10 @@  discard block
 block discarded – undo
565 565
 		deactivate_plugins( $data['path'] );
566 566
 
567 567
 		if( is_plugin_active( $data['path'] ) ) {
568
-            wp_send_json_error( array(
569
-                'error' => sprintf( __( 'Plugin deactivation failed.', 'gravityview' ) )
570
-            ) );
571
-        }
568
+			wp_send_json_error( array(
569
+				'error' => sprintf( __( 'Plugin deactivation failed.', 'gravityview' ) )
570
+			) );
571
+		}
572 572
 
573 573
 		wp_send_json_success();
574 574
 	}
Please login to merge, or discard this patch.
includes/class-admin-views.php 1 patch
Spacing   +184 added lines, -184 removed lines patch added patch discarded remove patch
@@ -27,32 +27,32 @@  discard block
 block discarded – undo
27 27
 		add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 );
28 28
 
29 29
 		// Tooltips
30
-		add_filter( 'gform_tooltips', array( $this, 'tooltips') );
30
+		add_filter( 'gform_tooltips', array( $this, 'tooltips' ) );
31 31
 
32 32
 		// adding styles and scripts
33
-		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 );
34
-		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') );
35
-		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') );
36
-		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') );
37
-		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') );
38
-
39
-		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 );
40
-		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 );
41
-		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers') );
42
-		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 );
43
-		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') );
44
-		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 );
33
+		add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 );
34
+		add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) );
35
+		add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) );
36
+		add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) );
37
+		add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) );
38
+
39
+		add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 );
40
+		add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 );
41
+		add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers' ) );
42
+		add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 );
43
+		add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) );
44
+		add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 );
45 45
 
46 46
 		// @todo check if this hook is needed..
47 47
 		//add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 );
48 48
 
49 49
 		// Add Connected Form column
50
-		add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) );
50
+		add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) );
51 51
 
52 52
 		add_filter( 'gform_toolbar_menu', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 );
53 53
 		add_action( 'gform_form_actions', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 );
54 54
 
55
-		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content'), 10, 2 );
55
+		add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content' ), 10, 2 );
56 56
 
57 57
 		add_action( 'restrict_manage_posts', array( $this, 'add_view_dropdown' ) );
58 58
 
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
 	 */
72 72
 	function suggest_support_articles( $localization_data = array() ) {
73 73
 
74
-	    if( ! gravityview()->request->is_view() ) {
74
+	    if ( ! gravityview()->request->is_view() ) {
75 75
 	        return $localization_data;
76 76
         }
77 77
 
78
-		$localization_data['suggest'] = array(
78
+		$localization_data[ 'suggest' ] = array(
79 79
             '57ef23539033602e61d4a560',
80 80
             '54c67bb9e4b0512429885513',
81 81
             '54c67bb9e4b0512429885512',
@@ -96,13 +96,13 @@  discard block
 block discarded – undo
96 96
 	public function filter_pre_get_posts_by_gravityview_form_id( &$query ) {
97 97
 		global $pagenow;
98 98
 
99
-		if ( !is_admin() ) {
99
+		if ( ! is_admin() ) {
100 100
 			return;
101 101
 		}
102 102
 
103
-		$form_id = isset( $_GET['gravityview_form_id'] ) ? (int) $_GET['gravityview_form_id'] : false;
103
+		$form_id = isset( $_GET[ 'gravityview_form_id' ] ) ? (int)$_GET[ 'gravityview_form_id' ] : false;
104 104
 
105
-		if( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
105
+		if ( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) {
106 106
 			return;
107 107
 		}
108 108
 
@@ -119,18 +119,18 @@  discard block
 block discarded – undo
119 119
 	function add_view_dropdown() {
120 120
 		$current_screen = get_current_screen();
121 121
 
122
-		if( 'gravityview' !== $current_screen->post_type ) {
122
+		if ( 'gravityview' !== $current_screen->post_type ) {
123 123
 			return;
124 124
 		}
125 125
 
126 126
 		$forms = gravityview_get_forms();
127 127
 		$current_form = \GV\Utils::_GET( 'gravityview_form_id' );
128 128
 		// If there are no forms to select, show no forms.
129
-		if( !empty( $forms ) ) { ?>
129
+		if ( ! empty( $forms ) ) { ?>
130 130
 			<select name="gravityview_form_id" id="gravityview_form_id">
131 131
 				<option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option>
132
-				<?php foreach( $forms as $form ) { ?>
133
-					<option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option>
132
+				<?php foreach ( $forms as $form ) { ?>
133
+					<option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option>
134 134
 				<?php } ?>
135 135
 			</select>
136 136
 		<?php }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) {
145 145
 		_deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' );
146
-		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id );
146
+		GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id );
147 147
 	}
148 148
 
149 149
 	/**
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 	public static function gform_toolbar_menu( $menu_items = array(), $id = NULL ) {
166 166
 
167 167
 		// Don't show on Trashed forms
168
-		if( 'trash' === rgget( 'filter') ) {
168
+		if ( 'trash' === rgget( 'filter' ) ) {
169 169
 			return $menu_items;
170 170
 		}
171 171
 
@@ -173,13 +173,13 @@  discard block
 block discarded – undo
173 173
 
174 174
 		$priority = 0;
175 175
 
176
-		if( 'form_list' === GFForms::get_page() ) {
176
+		if ( 'form_list' === GFForms::get_page() ) {
177 177
 			$priority = 790;
178 178
         }
179 179
 
180
-		if( empty( $connected_views ) ) {
180
+		if ( empty( $connected_views ) ) {
181 181
 
182
-		    $menu_items['gravityview'] = array(
182
+		    $menu_items[ 'gravityview' ] = array(
183 183
 				'label'          => esc_attr__( 'Create a View', 'gravityview' ),
184 184
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
185 185
 				'title'          => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -195,22 +195,22 @@  discard block
 block discarded – undo
195 195
 		$sub_menu_items = array();
196 196
 		foreach ( (array)$connected_views as $view ) {
197 197
 
198
-			if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
198
+			if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) {
199 199
 				continue;
200 200
 			}
201 201
 
202
-			$label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
202
+			$label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title;
203 203
 
204
-			$sub_menu_items[] = array(
204
+			$sub_menu_items[ ] = array(
205 205
 				'label' => esc_attr( $label ),
206
-				'url' => admin_url( 'post.php?action=edit&post='.$view->ID ),
206
+				'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ),
207 207
 			);
208 208
 		}
209 209
 
210 210
 		// If there were no items added, then let's create the parent menu
211
-		if( $sub_menu_items ) {
211
+		if ( $sub_menu_items ) {
212 212
 
213
-		    $sub_menu_items[] = array(
213
+		    $sub_menu_items[ ] = array(
214 214
 			    'label' => esc_attr__( 'Create a View', 'gravityview' ),
215 215
                 'link_class' => 'gv-create-view',
216 216
 			    'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ),
@@ -219,14 +219,14 @@  discard block
 block discarded – undo
219 219
             );
220 220
 
221 221
 			// Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown
222
-			$sub_menu_items[] = array(
222
+			$sub_menu_items[ ] = array(
223 223
 				'url' => '#',
224 224
 				'label' => '',
225 225
 				'menu_class' => 'hidden',
226 226
 				'capabilities' => '',
227 227
 			);
228 228
 
229
-			$menu_items['gravityview'] = array(
229
+			$menu_items[ 'gravityview' ] = array(
230 230
 				'label'          => __( 'Connected Views', 'gravityview' ),
231 231
 				'icon'           => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>',
232 232
 				'title'          => __( 'GravityView Views using this form as a data source', 'gravityview' ),
@@ -255,8 +255,8 @@  discard block
 block discarded – undo
255 255
 		$add = array( 'captcha', 'page' );
256 256
 
257 257
 		// Don't allowing editing the following values:
258
-		if( $context === 'edit' ) {
259
-			$add[] = 'post_id';
258
+		if ( $context === 'edit' ) {
259
+			$add[ ] = 'post_id';
260 260
 		}
261 261
 
262 262
 		$return = array_merge( $array, $add );
@@ -279,32 +279,32 @@  discard block
 block discarded – undo
279 279
 		foreach ( $default_args as $key => $arg ) {
280 280
 
281 281
 			// If an arg has `tooltip` defined, but it's false, don't display a tooltip
282
-			if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; }
282
+			if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; }
283 283
 
284 284
 			// By default, use `tooltip` if defined.
285
-			$tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip'];
285
+			$tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ];
286 286
 
287 287
 			// Otherwise, use the description as a tooltip.
288
-			if( empty( $tooltip ) && !empty( $arg['desc'] ) ) {
289
-				$tooltip = $arg['desc'];
288
+			if ( empty( $tooltip ) && ! empty( $arg[ 'desc' ] ) ) {
289
+				$tooltip = $arg[ 'desc' ];
290 290
 			}
291 291
 
292 292
 			// If there's no tooltip set, continue
293
-			if( empty( $tooltip ) ) {
293
+			if ( empty( $tooltip ) ) {
294 294
 				continue;
295 295
 			}
296 296
 
297 297
 			// Add the tooltip
298
-			$gv_tooltips[ 'gv_'.$key ] = array(
299
-				'title'	=> $arg['label'],
298
+			$gv_tooltips[ 'gv_' . $key ] = array(
299
+				'title'	=> $arg[ 'label' ],
300 300
 				'value'	=> $tooltip,
301 301
 			);
302 302
 
303 303
 		}
304 304
 
305
-		$gv_tooltips['gv_css_merge_tags'] = array(
306
-			'title' => __('CSS Merge Tags', 'gravityview'),
307
-			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' )
305
+		$gv_tooltips[ 'gv_css_merge_tags' ] = array(
306
+			'title' => __( 'CSS Merge Tags', 'gravityview' ),
307
+			'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' )
308 308
 		);
309 309
 
310 310
 		/**
@@ -322,9 +322,9 @@  discard block
 block discarded – undo
322 322
 
323 323
 		foreach ( $gv_tooltips as $key => $tooltip ) {
324 324
 
325
-			$title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>';
325
+			$title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>';
326 326
 
327
-			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) );
327
+			$tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) );
328 328
 		}
329 329
 
330 330
 		return $tooltips;
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 	 *
339 339
 	 * @return void
340 340
 	 */
341
-	public function add_custom_column_content( $column_name = NULL, $post_id )	{
341
+	public function add_custom_column_content( $column_name = NULL, $post_id ) {
342 342
 
343 343
 		$output = '';
344 344
 
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 				// Generate backup if label doesn't exist: `example_name` => `Example Name`
361 361
 				$template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) );
362 362
 
363
-				$output = $template ? $template['label'] : $template_id_pretty;
363
+				$output = $template ? $template[ 'label' ] : $template_id_pretty;
364 364
 
365 365
 				break;
366 366
 
@@ -401,44 +401,44 @@  discard block
 block discarded – undo
401 401
 	static public function get_connected_form_links( $form, $include_form_link = true ) {
402 402
 
403 403
 		// Either the form is empty or the form ID is 0, not yet set.
404
-		if( empty( $form ) ) {
404
+		if ( empty( $form ) ) {
405 405
 			return '';
406 406
 		}
407 407
 
408 408
 		// The $form is passed as the form ID
409
-		if( !is_array( $form ) ) {
409
+		if ( ! is_array( $form ) ) {
410 410
 			$form = gravityview_get_form( $form );
411 411
 		}
412 412
 
413
-		$form_id = $form['id'];
413
+		$form_id = $form[ 'id' ];
414 414
 		$links = array();
415 415
 
416
-		if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
416
+		if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) {
417 417
 			$form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;id=%d', $form_id ) );
418
-			$form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>';
419
-			$links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>';
418
+			$form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>';
419
+			$links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>';
420 420
 		} else {
421
-			$form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>';
421
+			$form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>';
422 422
 		}
423 423
 
424
-		if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
424
+		if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) {
425 425
 			$entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&amp;id=%d', $form_id ) );
426
-			$links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>';
426
+			$links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>';
427 427
 		}
428 428
 
429
-		if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
429
+		if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) {
430 430
 			$settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&amp;view=settings&amp;id=%d', $form_id ) );
431
-			$links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>';
431
+			$links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>';
432 432
 		}
433 433
 
434
-		if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) {
434
+		if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) {
435 435
 			$preview_url = site_url( sprintf( '?gf_page=preview&amp;id=%d', $form_id ) );
436
-			$links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>';
436
+			$links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>';
437 437
 		}
438 438
 
439 439
 		$output = '';
440 440
 
441
-		if( !empty( $include_form_link ) ) {
441
+		if ( ! empty( $include_form_link ) ) {
442 442
 			$output .= $form_link;
443 443
 		}
444 444
 
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
 		 */
451 451
 		$links = apply_filters( 'gravityview_connected_form_links', $links, $form );
452 452
 
453
-		$output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>';
453
+		$output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>';
454 454
 
455 455
 		return $output;
456 456
 	}
@@ -464,8 +464,8 @@  discard block
 block discarded – undo
464 464
 		// Get the date column and save it for later to add back in.
465 465
 		// This adds it after the Data Source column.
466 466
 		// This way, we don't need to do array_slice, array_merge, etc.
467
-		$date = $columns['date'];
468
-		unset( $columns['date'] );
467
+		$date = $columns[ 'date' ];
468
+		unset( $columns[ 'date' ] );
469 469
 
470 470
 		$data_source_required_caps = array(
471 471
 			'gravityforms_edit_forms',
@@ -476,14 +476,14 @@  discard block
 block discarded – undo
476 476
 			'gravityforms_preview_forms',
477 477
 		);
478 478
 
479
-		if( GVCommon::has_cap( $data_source_required_caps ) ) {
480
-			$columns['gv_connected_form'] = __( 'Data Source', 'gravityview' );
479
+		if ( GVCommon::has_cap( $data_source_required_caps ) ) {
480
+			$columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' );
481 481
 		}
482 482
 
483
-		$columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
483
+		$columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' );
484 484
 
485 485
 		// Add the date back in.
486
-		$columns['date'] = $date;
486
+		$columns[ 'date' ] = $date;
487 487
 
488 488
 		return $columns;
489 489
 	}
@@ -497,12 +497,12 @@  discard block
 block discarded – undo
497 497
 	 */
498 498
 	function save_postdata( $post_id ) {
499 499
 
500
-		if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){
500
+		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
501 501
 			return;
502 502
 		}
503 503
 
504 504
 		// validate post_type
505
-		if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) {
505
+		if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) {
506 506
 			return;
507 507
 		}
508 508
 
@@ -517,63 +517,63 @@  discard block
 block discarded – undo
517 517
 		$statii = array();
518 518
 
519 519
 		// check if this is a start fresh View
520
-		if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) {
520
+		if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) {
521 521
 
522
-			$form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : '';
522
+			$form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : '';
523 523
 			// save form id
524
-			$statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
524
+			$statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id );
525 525
 
526 526
 		}
527 527
 
528
-		if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) {
528
+		if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) {
529 529
 			gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) );
530 530
 			return;
531 531
 		}
532 532
 
533 533
 		// Was this a start fresh?
534
-		if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) {
535
-			$statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
534
+		if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) {
535
+			$statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 );
536 536
 		} else {
537
-			$statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
537
+			$statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' );
538 538
 		}
539 539
 
540 540
 		// Check if we have a template id
541
-		if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) {
541
+		if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) {
542 542
 
543
-			$template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : '';
543
+			$template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : '';
544 544
 
545 545
 			// now save template id
546
-			$statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
546
+			$statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id );
547 547
 		}
548 548
 
549 549
 
550 550
 		// save View Configuration metabox
551
-		if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) {
551
+		if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) {
552 552
 
553 553
 			// template settings
554
-			if( empty( $_POST['template_settings'] ) ) {
555
-				$_POST['template_settings'] = array();
554
+			if ( empty( $_POST[ 'template_settings' ] ) ) {
555
+				$_POST[ 'template_settings' ] = array();
556 556
 			}
557
-			$statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] );
557
+			$statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] );
558 558
 
559 559
 			// guard against unloaded View configuration page
560
-			if ( isset( $_POST['gv_fields'] ) && isset( $_POST['gv_fields_done'] ) ) {
560
+			if ( isset( $_POST[ 'gv_fields' ] ) && isset( $_POST[ 'gv_fields_done' ] ) ) {
561 561
 				$fields = array();
562 562
 
563
-				if ( ! empty( $_POST['gv_fields'] ) ) {
563
+				if ( ! empty( $_POST[ 'gv_fields' ] ) ) {
564 564
 					$fields = _gravityview_process_posted_fields();
565 565
 				}
566 566
 
567 567
 				$fields = wp_slash( $fields );
568 568
 
569
-				$statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
569
+				$statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields );
570 570
 			}
571 571
 
572 572
 			// Directory Visible Widgets
573
-			if( empty( $_POST['widgets'] ) ) {
574
-				$_POST['widgets'] = array();
573
+			if ( empty( $_POST[ 'widgets' ] ) ) {
574
+				$_POST[ 'widgets' ] = array();
575 575
 			}
576
-			$statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] );
576
+			$statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] );
577 577
 
578 578
 		} // end save view configuration
579 579
 
@@ -583,7 +583,7 @@  discard block
 block discarded – undo
583 583
 		 * @param array $statii Array of statuses of the post meta saving processes. If saving worked, each key should be mapped to a value of the post ID (`directory_widgets` => `124`). If failed (or didn't change), the value will be false.
584 584
 		 * @since 1.17.2
585 585
 		 */
586
-		do_action('gravityview_view_saved', $post_id, $statii );
586
+		do_action( 'gravityview_view_saved', $post_id, $statii );
587 587
 
588 588
 		gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) );
589 589
 	}
@@ -627,20 +627,20 @@  discard block
 block discarded – undo
627 627
 
628 628
 		$output = '';
629 629
 
630
-		if( !empty( $fields ) ) {
630
+		if ( ! empty( $fields ) ) {
631 631
 
632
-			foreach( $fields as $id => $details ) {
632
+			foreach ( $fields as $id => $details ) {
633 633
 
634
-				if( in_array( $details['type'], (array) $blacklist_field_types ) ) {
634
+				if ( in_array( $details[ 'type' ], (array)$blacklist_field_types ) ) {
635 635
 					continue;
636 636
 				}
637 637
 
638 638
 				// Edit mode only allows editing the parent fields, not single inputs.
639
-				if( $context === 'edit' && !empty( $details['parent'] ) ) {
639
+				if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) {
640 640
 					continue;
641 641
 				}
642 642
 
643
-				$output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, $settings = array(), $form );
643
+				$output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, $settings = array(), $form );
644 644
 
645 645
 			} // End foreach
646 646
 		}
@@ -648,7 +648,7 @@  discard block
 block discarded – undo
648 648
 		echo $output;
649 649
 
650 650
 		// For the EDIT view we only want to allow the form fields.
651
-		if( $context === 'edit' ) {
651
+		if ( $context === 'edit' ) {
652 652
 			return;
653 653
 		}
654 654
 
@@ -672,16 +672,16 @@  discard block
 block discarded – undo
672 672
 		$additional_fields = apply_filters( 'gravityview_additional_fields', array(
673 673
 			array(
674 674
 				'label_text' => __( '+ Add All Fields', 'gravityview' ),
675
-				'desc' => __('Add all the available fields at once.', 'gravityview'),
675
+				'desc' => __( 'Add all the available fields at once.', 'gravityview' ),
676 676
 				'field_id' => 'all-fields',
677 677
 				'label_type' => 'field',
678 678
 				'input_type' => NULL,
679 679
 				'field_options' => NULL,
680 680
 				'settings_html'	=> NULL,
681 681
 			)
682
-		));
682
+		) );
683 683
 
684
-		if( !empty( $additional_fields )) {
684
+		if ( ! empty( $additional_fields ) ) {
685 685
 			foreach ( (array)$additional_fields as $item ) {
686 686
 
687 687
 				// Prevent items from not having index set
@@ -692,16 +692,16 @@  discard block
 block discarded – undo
692 692
 					'input_type' => NULL,
693 693
 					'field_options' => NULL,
694 694
 					'settings_html'	=> NULL,
695
-				));
695
+				) );
696 696
 
697 697
 				// Backward compat.
698
-				if( !empty( $item['field_options'] ) ) {
698
+				if ( ! empty( $item[ 'field_options' ] ) ) {
699 699
 					// Use settings_html from now on.
700
-					$item['settings_html'] = $item['field_options'];
700
+					$item[ 'settings_html' ] = $item[ 'field_options' ];
701 701
 				}
702 702
 
703 703
 				// Render a label for each of them
704
-				echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form );
704
+				echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form );
705 705
 
706 706
 			}
707 707
 		}
@@ -714,54 +714,54 @@  discard block
 block discarded – undo
714 714
 	 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
715 715
 	 * @return array
716 716
 	 */
717
-	function get_entry_default_fields($form, $zone) {
717
+	function get_entry_default_fields( $form, $zone ) {
718 718
 
719 719
 		$entry_default_fields = array();
720 720
 
721
-		if( in_array( $zone, array( 'directory', 'single' ) ) ) {
721
+		if ( in_array( $zone, array( 'directory', 'single' ) ) ) {
722 722
 
723 723
 			$entry_default_fields = array(
724 724
 				'id' => array(
725
-					'label' => __('Entry ID', 'gravityview'),
725
+					'label' => __( 'Entry ID', 'gravityview' ),
726 726
 					'type' => 'id',
727
-					'desc'	=> __('The unique ID of the entry.', 'gravityview'),
727
+					'desc'	=> __( 'The unique ID of the entry.', 'gravityview' ),
728 728
 				),
729 729
 				'date_created' => array(
730
-					'label' => __('Entry Date', 'gravityview'),
731
-					'desc'	=> __('The date the entry was created.', 'gravityview'),
730
+					'label' => __( 'Entry Date', 'gravityview' ),
731
+					'desc'	=> __( 'The date the entry was created.', 'gravityview' ),
732 732
 					'type' => 'date_created',
733 733
 				),
734 734
 				'source_url' => array(
735
-					'label' => __('Source URL', 'gravityview'),
735
+					'label' => __( 'Source URL', 'gravityview' ),
736 736
 					'type' => 'source_url',
737
-					'desc'	=> __('The URL of the page where the form was submitted.', 'gravityview'),
737
+					'desc'	=> __( 'The URL of the page where the form was submitted.', 'gravityview' ),
738 738
 				),
739 739
 				'ip' => array(
740
-					'label' => __('User IP', 'gravityview'),
740
+					'label' => __( 'User IP', 'gravityview' ),
741 741
 					'type' => 'ip',
742
-					'desc'	=> __('The IP Address of the user who created the entry.', 'gravityview'),
742
+					'desc'	=> __( 'The IP Address of the user who created the entry.', 'gravityview' ),
743 743
 				),
744 744
 				'created_by' => array(
745
-					'label' => __('User', 'gravityview'),
745
+					'label' => __( 'User', 'gravityview' ),
746 746
 					'type' => 'created_by',
747
-					'desc'	=> __('Details of the logged-in user who created the entry (if any).', 'gravityview'),
747
+					'desc'	=> __( 'Details of the logged-in user who created the entry (if any).', 'gravityview' ),
748 748
 				),
749 749
 
750 750
 				/**
751 751
 				 * @since 1.7.2
752 752
 				 */
753 753
 			    'other_entries' => array(
754
-				    'label'	=> __('Other Entries', 'gravityview'),
754
+				    'label'	=> __( 'Other Entries', 'gravityview' ),
755 755
 				    'type'	=> 'other_entries',
756
-				    'desc'	=> __('Display other entries created by the entry creator.', 'gravityview'),
756
+				    'desc'	=> __( 'Display other entries created by the entry creator.', 'gravityview' ),
757 757
 			    ),
758 758
 	        );
759 759
 
760
-			if( 'single' !== $zone) {
760
+			if ( 'single' !== $zone ) {
761 761
 
762
-				$entry_default_fields['entry_link'] = array(
763
-					'label' => __('Link to Entry', 'gravityview'),
764
-					'desc'	=> __('A dedicated link to the single entry with customizable text.', 'gravityview'),
762
+				$entry_default_fields[ 'entry_link' ] = array(
763
+					'label' => __( 'Link to Entry', 'gravityview' ),
764
+					'desc'	=> __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ),
765 765
 					'type' => 'entry_link',
766 766
 				);
767 767
 			}
@@ -771,19 +771,19 @@  discard block
 block discarded – undo
771 771
 		/**
772 772
 		 * @since  1.2
773 773
 		 */
774
-		$entry_default_fields['custom']	= array(
775
-			'label'	=> __('Custom Content', 'gravityview'),
774
+		$entry_default_fields[ 'custom' ] = array(
775
+			'label'	=> __( 'Custom Content', 'gravityview' ),
776 776
 			'type'	=> 'custom',
777
-			'desc'	=> __('Insert custom text or HTML.', 'gravityview'),
777
+			'desc'	=> __( 'Insert custom text or HTML.', 'gravityview' ),
778 778
 		);
779 779
 
780 780
 		/**
781 781
 		 * @since develop
782 782
 		 */
783
-		$entry_default_fields['sequence'] = array(
784
-			'label'	=> __('Result Number', 'gravityview'),
783
+		$entry_default_fields[ 'sequence' ] = array(
784
+			'label'	=> __( 'Result Number', 'gravityview' ),
785 785
 			'type'	=> 'sequence',
786
-			'desc'	=> __('Display a sequential result number for each entry.', 'gravityview'),
786
+			'desc'	=> __( 'Display a sequential result number for each entry.', 'gravityview' ),
787 787
 		);
788 788
 
789 789
 		/**
@@ -792,7 +792,7 @@  discard block
 block discarded – undo
792 792
 		 * @param  string|array $form form_ID or form object
793 793
 		 * @param  string $zone   Either 'single', 'directory', 'header', 'footer'
794 794
 		 */
795
-		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone);
795
+		return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone );
796 796
 	}
797 797
 
798 798
 	/**
@@ -803,7 +803,7 @@  discard block
 block discarded – undo
803 803
 	 */
804 804
 	function get_available_fields( $form = '', $zone = NULL ) {
805 805
 
806
-		if( empty( $form ) ) {
806
+		if ( empty( $form ) ) {
807 807
 			gravityview()->log->error( '$form is empty' );
808 808
 			return array();
809 809
 		}
@@ -812,7 +812,7 @@  discard block
 block discarded – undo
812 812
 		$fields = gravityview_get_form_fields( $form, true );
813 813
 
814 814
 		// get meta fields ( only if form was already created )
815
-		if( !is_array( $form ) ) {
815
+		if ( ! is_array( $form ) ) {
816 816
 			$meta_fields = gravityview_get_entry_meta( $form );
817 817
 		} else {
818 818
 			$meta_fields = array();
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
 		$fields = $fields + $meta_fields + $default_fields;
826 826
 
827 827
 		// Move Custom Content to top
828
-		$fields = array( 'custom' => $fields['custom'] ) + $fields;
828
+		$fields = array( 'custom' => $fields[ 'custom' ] ) + $fields;
829 829
 
830 830
 		/**
831 831
 		 * @filter `gravityview/admin/available_fields` Modify the available fields that can be used in a View.
@@ -845,11 +845,11 @@  discard block
 block discarded – undo
845 845
 
846 846
 		$widgets = $this->get_registered_widgets();
847 847
 
848
-		if( !empty( $widgets ) ) {
848
+		if ( ! empty( $widgets ) ) {
849 849
 
850
-			foreach( $widgets as $id => $details ) {
850
+			foreach ( $widgets as $id => $details ) {
851 851
 
852
-				echo new GravityView_Admin_View_Widget( $details['label'], $id, $details );
852
+				echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details );
853 853
 
854 854
 			}
855 855
 		}
@@ -878,7 +878,7 @@  discard block
 block discarded – undo
878 878
 	function render_active_areas( $template_id, $type, $zone, $rows, $values ) {
879 879
 		global $post;
880 880
 
881
-		if( $type === 'widget' ) {
881
+		if ( $type === 'widget' ) {
882 882
 			$button_label = __( 'Add Widget', 'gravityview' );
883 883
 		} else {
884 884
 			$button_label = __( 'Add Field', 'gravityview' );
@@ -890,10 +890,10 @@  discard block
 block discarded – undo
890 890
 		$form_id = null;
891 891
 
892 892
 		// if saved values, get available fields to label everyone
893
-		if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) {
893
+		if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) {
894 894
 
895
-			if( !empty( $_POST['template_id'] ) ) {
896
-				$form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] );
895
+			if ( ! empty( $_POST[ 'template_id' ] ) ) {
896
+				$form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] );
897 897
 			} else {
898 898
 				$form_id = $form = gravityview_get_form_id( $post->ID );
899 899
 			}
@@ -911,44 +911,44 @@  discard block
 block discarded – undo
911 911
 			}
912 912
 		}
913 913
 
914
-		foreach( $rows as $row ) :
915
-			foreach( $row as $col => $areas ) :
916
-				$column = ($col == '2-2') ? '1-2' : $col; ?>
914
+		foreach ( $rows as $row ) :
915
+			foreach ( $row as $col => $areas ) :
916
+				$column = ( $col == '2-2' ) ? '1-2' : $col; ?>
917 917
 
918 918
 				<div class="gv-grid-col-<?php echo esc_attr( $column ); ?>">
919 919
 
920
-					<?php foreach( $areas as $area ) : 	?>
920
+					<?php foreach ( $areas as $area ) : 	?>
921 921
 
922
-						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
923
-							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>">
922
+						<div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>">
923
+							<div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>">
924 924
 
925 925
 								<?php // render saved fields
926 926
 
927
-								if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) {
927
+								if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) {
928 928
 
929
-									foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) {
929
+									foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) {
930 930
 
931 931
 										// Maybe has a form ID
932
-										$form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id'];
932
+										$form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ];
933 933
 
934 934
 										$input_type = NULL;
935 935
 
936 936
 										if ( $form_id ) {
937
-											$original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ;
937
+											$original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false;
938 938
                                         } else {
939
-											$original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ;
939
+											$original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false;
940 940
                                         }
941 941
 
942
-										if ( !$original_item ) {
943
-											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) );
942
+										if ( ! $original_item ) {
943
+											gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array( ' data' => array( 'available_items' => $available_items, 'field' => $field ) ) );
944 944
 
945 945
 											$original_item = $field;
946 946
 										} else {
947
-											$input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL;
947
+											$input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL;
948 948
 										}
949 949
 
950 950
 										// Field options dialog box
951
-										$field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field['id'], $original_item['label'], $zone .'_'. $area['areaid'], $input_type, $uniqid, $field, $zone, $original_item );
951
+										$field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field[ 'id' ], $original_item[ 'label' ], $zone . '_' . $area[ 'areaid' ], $input_type, $uniqid, $field, $zone, $original_item );
952 952
 
953 953
 										$item = array(
954 954
 											'input_type' => $input_type,
@@ -961,23 +961,23 @@  discard block
 block discarded – undo
961 961
 											$item = wp_parse_args( $item, $original_item );
962 962
 										}
963 963
 
964
-										switch( $type ) {
964
+										switch ( $type ) {
965 965
 											case 'widget':
966
-												echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field );
966
+												echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field );
967 967
 												break;
968 968
 											default:
969
-												echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id );
969
+												echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id );
970 970
 										}
971 971
 									}
972 972
 
973 973
 								} // End if zone is not empty ?>
974 974
 
975
-								<span class="drop-message"><?php echo sprintf(esc_attr__('"+ %s" or drag existing %ss here.', 'gravityview'), $button_label, $type ); ?></span>
975
+								<span class="drop-message"><?php echo sprintf( esc_attr__( '"+ %s" or drag existing %ss here.', 'gravityview' ), $button_label, $type ); ?></span>
976 976
 							</div>
977 977
 							<div class="gv-droppable-area-action">
978
-								<a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ '.esc_html( $button_label ); ?></a>
978
+								<a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ ' . esc_html( $button_label ); ?></a>
979 979
 
980
-								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area['title'] ); ?></strong><?php if( !empty( $area['subtitle'] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area['subtitle'] ); ?></span><?php } ?></p>
980
+								<p class="gv-droppable-area-title"><strong><?php echo esc_html( $area[ 'title' ] ); ?></strong><?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?><span class="gv-droppable-area-subtitle"> &ndash; <?php echo esc_html( $area[ 'subtitle' ] ); ?></span><?php } ?></p>
981 981
 							</div>
982 982
 						</div>
983 983
 
@@ -1005,7 +1005,7 @@  discard block
 block discarded – undo
1005 1005
 				// This is a new View, prefill the widgets
1006 1006
 				$widgets = array(
1007 1007
 					'header_top' => array(
1008
-						substr( md5( microtime( true ) ), 0, 13 ) => array (
1008
+						substr( md5( microtime( true ) ), 0, 13 ) => array(
1009 1009
 							'id' => 'search_bar',
1010 1010
 							'label' => __( 'Search Bar', 'gravityview' ),
1011 1011
 							'search_layout' => 'horizontal',
@@ -1077,7 +1077,7 @@  discard block
 block discarded – undo
1077 1077
 		// list of available fields to be shown in the popup
1078 1078
 		$forms = gravityview_get_forms( 'any' );
1079 1079
 
1080
-		$form_ids = array_map( function ($form) { return $form['id']; }, $forms);
1080
+		$form_ids = array_map( function( $form ) { return $form[ 'id' ]; }, $forms );
1081 1081
 
1082 1082
 		foreach ( $form_ids as $form_id ) {
1083 1083
 			$filter_field_id = sprintf( 'gv-field-filter-%s-%d', $context, $form_id );
@@ -1090,7 +1090,7 @@  discard block
 block discarded – undo
1090 1090
                 </div>
1091 1091
 
1092 1092
                 <div id="available-fields-<?php echo $filter_field_id; ?>" aria-live="polite" role="listbox">
1093
-                <?php do_action('gravityview_render_available_fields', $form_id, $context ); ?>
1093
+                <?php do_action( 'gravityview_render_available_fields', $form_id, $context ); ?>
1094 1094
                 </div>
1095 1095
 
1096 1096
                 <div class="gv-no-results hidden description"><?php esc_html_e( 'No fields were found matching the search.', 'gravityview' ); ?></div>
@@ -1109,7 +1109,7 @@  discard block
 block discarded – undo
1109 1109
 	 * @return string HTML of the active areas
1110 1110
 	 */
1111 1111
 	function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) {
1112
-		if( empty( $template_id ) ) {
1112
+		if ( empty( $template_id ) ) {
1113 1113
 			gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) );
1114 1114
 			return '';
1115 1115
 		}
@@ -1123,12 +1123,12 @@  discard block
 block discarded – undo
1123 1123
 		 */
1124 1124
 		$template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context );
1125 1125
 
1126
-		if( empty( $template_areas ) ) {
1126
+		if ( empty( $template_areas ) ) {
1127 1127
 
1128 1128
 			gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) );
1129 1129
 			$output = '<div>';
1130
-			$output .= '<h2 class="description" style="font-size: 16px; margin:0">'. sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>'.$template_id.'</em>' ) .'</h2>';
1131
-			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">'.esc_html__('The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview').'</p>';
1130
+			$output .= '<h2 class="description" style="font-size: 16px; margin:0">' . sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>' . $template_id . '</em>' ) . '</h2>';
1131
+			$output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">' . esc_html__( 'The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview' ) . '</p>';
1132 1132
 			$output .= '</div>';
1133 1133
 		} else {
1134 1134
 
@@ -1143,7 +1143,7 @@  discard block
 block discarded – undo
1143 1143
 
1144 1144
 		}
1145 1145
 
1146
-		if( $echo ) {
1146
+		if ( $echo ) {
1147 1147
 			echo $output;
1148 1148
 		}
1149 1149
 
@@ -1163,32 +1163,32 @@  discard block
 block discarded – undo
1163 1163
 		$is_widgets_page = ( $pagenow === 'widgets.php' );
1164 1164
 
1165 1165
 		// Add the GV font (with the Astronaut)
1166
-        wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version );
1166
+        wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), \GV\Plugin::$version );
1167 1167
 		wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version );
1168 1168
 
1169
-		wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true );
1169
+		wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), \GV\Plugin::$version, true );
1170 1170
 
1171
-		if( GFForms::get_page() === 'form_list' ) {
1171
+		if ( GFForms::get_page() === 'form_list' ) {
1172 1172
 			wp_enqueue_style( 'gravityview_views_styles' );
1173 1173
 			return;
1174 1174
         }
1175 1175
 
1176 1176
 		// Don't process any scripts below here if it's not a GravityView page.
1177
-		if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1177
+		if ( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) {
1178 1178
 		    return;
1179 1179
 		}
1180 1180
 
1181 1181
         wp_enqueue_script( 'jquery-ui-datepicker' );
1182
-        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version );
1182
+        wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), \GV\Plugin::$version );
1183 1183
 
1184
-        $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
1184
+        $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
1185 1185
 
1186 1186
         //enqueue scripts
1187 1187
         wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version );
1188 1188
 
1189
-        wp_localize_script('gravityview_views_scripts', 'gvGlobals', array(
1189
+        wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array(
1190 1190
             'cookiepath' => COOKIEPATH,
1191
-            'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ),
1191
+            'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ),
1192 1192
             'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ),
1193 1193
             'label_viewname' => __( 'Enter View name here', 'gravityview' ),
1194 1194
             'label_close' => __( 'Close', 'gravityview' ),
@@ -1200,7 +1200,7 @@  discard block
 block discarded – undo
1200 1200
             'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ),
1201 1201
             'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ),
1202 1202
             'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ),
1203
-        ));
1203
+        ) );
1204 1204
 
1205 1205
 		wp_enqueue_style( 'gravityview_views_styles' );
1206 1206
 
@@ -1227,7 +1227,7 @@  discard block
 block discarded – undo
1227 1227
 		);
1228 1228
 
1229 1229
 		if ( wp_is_mobile() ) {
1230
-		    $scripts[] = 'jquery-touch-punch';
1230
+		    $scripts[ ] = 'jquery-touch-punch';
1231 1231
 		}
1232 1232
 
1233 1233
 		wp_enqueue_script( $scripts );
Please login to merge, or discard this patch.
plugin-and-theme-hooks/class-gravityview-plugin-hooks-pageviews.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 		parent::add_hooks();
44 44
 
45
-		add_shortcode( 'gv_pageviews', array( $this, 'pageviews') );
45
+		add_shortcode( 'gv_pageviews', array( $this, 'pageviews' ) );
46 46
 
47 47
 		add_filter( 'gravityview/fields/custom/decode_shortcodes', array( $this, 'inject_entry_id' ), 10, 3 );
48 48
 
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	 * Used as sort of an action via the gravityview/fields/custom/decode_shortcodes filter.
69 69
 	 */
70 70
 	public function inject_entry_id( $r, $content, $context ) {
71
-		if ( ! empty( $context->entry['id'] ) ) {
72
-			$this->next_id = $context->entry['id'];
71
+		if ( ! empty( $context->entry[ 'id' ] ) ) {
72
+			$this->next_id = $context->entry[ 'id' ];
73 73
 		} else {
74 74
 			$this->next_id = false; // Nothing to look at, move along
75 75
 		}
@@ -97,13 +97,13 @@  discard block
 block discarded – undo
97 97
 			'id'        => $this->next_id,
98 98
 		), $atts );
99 99
 
100
-		if ( ! $this->atts['id'] ) {
100
+		if ( ! $this->atts[ 'id' ] ) {
101 101
 			return; // The ID was not set
102 102
 		}
103 103
 
104 104
 		add_filter( 'pageviews_placeholder_preload', array( $this, 'preload_callback' ) );
105 105
 
106
-		$output = Pageviews::placeholder( 'GV' . $this->atts['id'] ); // Prefix the ID to avoid collissions with default post IDs
106
+		$output = Pageviews::placeholder( 'GV' . $this->atts[ 'id' ] ); // Prefix the ID to avoid collissions with default post IDs
107 107
 
108 108
 		remove_filter( 'pageviews_placeholder_preload', array( $this, 'preload_callback' ) );
109 109
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	 * Set the preload text.
115 115
 	 */
116 116
 	public function preload_callback( $preload ) {
117
-		return $this->atts['preload'];
117
+		return $this->atts[ 'preload' ];
118 118
 	}
119 119
 
120 120
 	/**
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 	 */
123 123
 	public function increment_callback() {
124 124
 		if ( $entry = gravityview()->request->is_entry() ) {
125
-			$increment = 'GV' . $entry['id'];
125
+			$increment = 'GV' . $entry[ 'id' ];
126 126
 			?>
127 127
 				_pv_config.incr = <?php echo json_encode( $increment ); ?>;
128 128
 			<?php
Please login to merge, or discard this patch.
includes/extensions/edit-entry/partials/form-buttons.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -60,28 +60,28 @@  discard block
 block discarded – undo
60 60
 	if ( $object->show_previous_button ) {
61 61
 		$previous_tabindex = GFCommon::get_tabindex();
62 62
 		?>
63
-		<input id="gform_previous_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-previous" type="submit" <?php echo $previous_tabindex; ?> value="<?php echo esc_attr( $labels['previous'] ); ?>" name="save" />
63
+		<input id="gform_previous_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-previous" type="submit" <?php echo $previous_tabindex; ?> value="<?php echo esc_attr( $labels[ 'previous' ] ); ?>" name="save" />
64 64
 		<?php
65 65
 	}
66 66
 
67 67
 	if ( $object->show_next_button ) {
68
-		$next_tabindex    = GFCommon::get_tabindex();
68
+		$next_tabindex = GFCommon::get_tabindex();
69 69
 		?>
70
-		<input id="gform_next_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-next" type="submit" <?php echo $next_tabindex; ?> value="<?php echo esc_attr( $labels['next'] ); ?>" name="save" />
70
+		<input id="gform_next_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-next" type="submit" <?php echo $next_tabindex; ?> value="<?php echo esc_attr( $labels[ 'next' ] ); ?>" name="save" />
71 71
 		<?php
72 72
 	}
73 73
 
74 74
 	if ( $object->show_update_button ) {
75
-		$update_tabindex  = GFCommon::get_tabindex();
75
+		$update_tabindex = GFCommon::get_tabindex();
76 76
 		?>
77
-		<input id="gform_submit_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels['submit'] ); ?>" name="save" />
77
+		<input id="gform_submit_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels[ 'submit' ] ); ?>" name="save" />
78 78
 		<?php
79 79
 	}
80 80
 
81
-	$cancel_tabindex   = GFCommon::get_tabindex();
81
+	$cancel_tabindex = GFCommon::get_tabindex();
82 82
 
83 83
 	?>
84
-	<a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels['cancel'] ); ?></a>
84
+	<a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels[ 'cancel' ] ); ?></a>
85 85
 	<?php
86 86
 
87 87
 	/**
@@ -97,5 +97,5 @@  discard block
 block discarded – undo
97 97
 
98 98
 	?>
99 99
 	<input type="hidden" name="action" value="update" />
100
-	<input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry['id'] ); ?>" />
100
+	<input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry[ 'id' ] ); ?>" />
101 101
 </div>
Please login to merge, or discard this patch.
future/includes/class-gv-shortcode-gvfield.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 	/**
19 19
 	 * Process and output the [gvfield] shortcode.
20 20
 	 *
21
-	 * @param array $passed_atts The attributes passed.
22 21
 	 * @param string $content The content inside the shortcode.
23 22
 	 * @param string $tag The shortcode tag.
24 23
 	 *
Please login to merge, or discard this patch.
future/includes/class-gv-shortcode-gvlogic.php 3 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -248,6 +248,8 @@
 block discarded – undo
248 248
 
249 249
 	/**
250 250
 	 * Process the attributes passed to the shortcode. Make sure they're valid
251
+	 * @param string $content
252
+	 * @param string $tag
251 253
 	 * @return void
252 254
 	 */
253 255
 	private function parse_atts( $atts, $content, $tag ) {
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -57,13 +57,13 @@  discard block
 block discarded – undo
57 57
 		$value    = $this->get_value( $atts );
58 58
 
59 59
 		if ( false === $operator && is_null( $value ) ) {
60
-			if ( false !== $atts['if'] ) { // Only-if test
61
-				$match = $authed && ! in_array( strtolower( $atts['if'] ), array( '', '0', 'false', 'no' ) );
60
+			if ( false !== $atts[ 'if' ] ) { // Only-if test
61
+				$match = $authed && ! in_array( strtolower( $atts[ 'if' ] ), array( '', '0', 'false', 'no' ) );
62 62
 			} else {
63 63
 				$match = $authed; // Just login test
64 64
 			}
65 65
 		} else { // Regular test
66
-			$match = $authed && \GVCommon::matches_operation( $atts['if'], $value, $operator );
66
+			$match = $authed && \GVCommon::matches_operation( $atts[ 'if' ], $value, $operator );
67 67
 		}
68 68
 
69 69
 		// Output and get recursive!
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	 * @return bool Yes, or no.
82 82
 	 */
83 83
 	private function authorized( $atts ) {
84
-		if ( is_null( $needs_login  = \GV\Utils::get( $atts, 'logged_in', null ) ) ) {
84
+		if ( is_null( $needs_login = \GV\Utils::get( $atts, 'logged_in', null ) ) ) {
85 85
 			return true; // No auth requirements have been set
86 86
 		}
87 87
 		return ! $needs_login ^ is_user_logged_in(); // XNOR
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
 	 * @return string The output.
144 144
 	 */
145 145
 	private function get_output( $match, $atts, $content ) {
146
-		if ( ! $match && ! empty( $atts['else'] ) ) {
147
-			return $atts['else']; // Attributized else is easy :)
146
+		if ( ! $match && ! empty( $atts[ 'else' ] ) ) {
147
+			return $atts[ 'else' ]; // Attributized else is easy :)
148 148
 		}
149 149
 
150 150
 		$if = '';
@@ -267,18 +267,18 @@  discard block
 block discarded – undo
267 267
 		$atts = array_intersect_key( $supplied_atts, $atts );
268 268
 
269 269
 		// Strip whitespace if it's not default false
270
-		if ( isset( $atts['if'] ) && is_string( $atts['if'] ) ) {
271
-			$atts['if'] = trim( $atts['if'] );
270
+		if ( isset( $atts[ 'if' ] ) && is_string( $atts[ 'if' ] ) ) {
271
+			$atts[ 'if' ] = trim( $atts[ 'if' ] );
272 272
 		} else {
273
-			$atts['if'] = false;
273
+			$atts[ 'if' ] = false;
274 274
 		}
275 275
 
276
-		if ( isset( $atts['logged_in'] ) ) {
276
+		if ( isset( $atts[ 'logged_in' ] ) ) {
277 277
 			// Truthy
278
-			if ( in_array( strtolower( $atts['logged_in'] ), array( '0', 'false', 'no' ) ) ) {
279
-				$atts['logged_in'] = false;
278
+			if ( in_array( strtolower( $atts[ 'logged_in' ] ), array( '0', 'false', 'no' ) ) ) {
279
+				$atts[ 'logged_in' ] = false;
280 280
 			} else {
281
-				$atts['logged_in'] = true;
281
+				$atts[ 'logged_in' ] = true;
282 282
 			}
283 283
 		}
284 284
 
Please login to merge, or discard this patch.
Braces   +18 added lines, -9 removed lines patch added patch discarded remove patch
@@ -57,12 +57,14 @@  discard block
 block discarded – undo
57 57
 		$value    = $this->get_value( $atts );
58 58
 
59 59
 		if ( false === $operator && is_null( $value ) ) {
60
-			if ( false !== $atts['if'] ) { // Only-if test
60
+			if ( false !== $atts['if'] ) {
61
+// Only-if test
61 62
 				$match = $authed && ! in_array( strtolower( $atts['if'] ), array( '', '0', 'false', 'no' ) );
62 63
 			} else {
63 64
 				$match = $authed; // Just login test
64 65
 			}
65
-		} else { // Regular test
66
+		} else {
67
+// Regular test
66 68
 			$match = $authed && \GVCommon::matches_operation( $atts['if'], $value, $operator );
67 69
 		}
68 70
 
@@ -153,11 +155,14 @@  discard block
 block discarded – undo
153 155
 		$opens = 0; // inner opens
154 156
 		$found = false; // found split position
155 157
 
156
-		while ( $content ) { // scan
158
+		while ( $content ) {
159
+// scan
157 160
 			if ( ! preg_match( '#(.*?)(\[\/?(gvlogic|else).*?])(.*)#', $content, $matches ) ) {
158
-				if ( ! $found ) { // We're still iffing.
161
+				if ( ! $found ) {
162
+// We're still iffing.
159 163
 					$if .= $content;
160
-				} else { // We are elsing
164
+				} else {
165
+// We are elsing
161 166
 					$else .= $content;
162 167
 				}
163 168
 				break; // No more shortcodes
@@ -165,9 +170,11 @@  discard block
 block discarded – undo
165 170
 
166 171
 			list( $_, $before_shortcode, $shortcode, $_, $after_shortcode ) = $matches;
167 172
 
168
-			if ( ! $found ) { // We're still iffing.
173
+			if ( ! $found ) {
174
+// We're still iffing.
169 175
 				$if .= $before_shortcode;
170
-			} else { // We are elsing
176
+			} else {
177
+// We are elsing
171 178
 				$else .= $before_shortcode;
172 179
 			}
173 180
 
@@ -191,9 +198,11 @@  discard block
 block discarded – undo
191 198
 				}
192 199
 
193 200
 				// Tack on the shortcode
194
-				if ( ! $found ) { // We're still iffing.
201
+				if ( ! $found ) {
202
+// We're still iffing.
195 203
 					$if .= $shortcode;
196
-				} else { // We are elsing
204
+				} else {
205
+// We are elsing
197 206
 					$else .= $shortcode;
198 207
 				}
199 208
 			}
Please login to merge, or discard this patch.
includes/class-gvlogic-shortcode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 		return self::$instance;
18 18
 	}
19 19
 
20
-	public function shortcode( $atts, $content = '', $tag = '') {
20
+	public function shortcode( $atts, $content = '', $tag = '' ) {
21 21
 		$shortcode = new \GV\Shortcodes\gvlogic();
22 22
 		return $shortcode->callback( $atts, $content, $tag );
23 23
 	}
Please login to merge, or discard this patch.
includes/extensions/edit-entry/class-edit-entry-render.php 2 patches
Indentation   +301 added lines, -301 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
-     * 
108
-     * @var int
105
+	 *
106
+	 * @since 2.0.13
107
+	 * 
108
+	 * @var int
109 109
 	 */
110 110
 	public $post_id;
111 111
 
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 	 */
189 189
 	public function prevent_maybe_process_form() {
190 190
 
191
-	    if( ! $this->is_edit_entry_submission() ) {
191
+		if( ! $this->is_edit_entry_submission() ) {
192 192
 			return;
193 193
 		}
194 194
 
@@ -222,14 +222,14 @@  discard block
 block discarded – undo
222 222
 	 * When Edit entry view is requested setup the vars
223 223
 	 */
224 224
 	private function setup_vars() {
225
-        global $post;
225
+		global $post;
226 226
 
227 227
 		$gravityview_view = GravityView_View::getInstance();
228 228
 
229 229
 
230 230
 		$entries = $gravityview_view->getEntries();
231
-	    self::$original_entry = $entries[0];
232
-	    $this->entry = $entries[0];
231
+		self::$original_entry = $entries[0];
232
+		$this->entry = $entries[0];
233 233
 
234 234
 		self::$original_form = $gravityview_view->getForm();
235 235
 		$this->form = $gravityview_view->getForm();
@@ -371,8 +371,8 @@  discard block
 block discarded – undo
371 371
 
372 372
 			GFFormsModel::save_lead( $form, $this->entry );
373 373
 
374
-	        // Delete the values for hidden inputs
375
-	        $this->unset_hidden_field_values();
374
+			// Delete the values for hidden inputs
375
+			$this->unset_hidden_field_values();
376 376
 			
377 377
 			$this->entry['date_created'] = $date_created;
378 378
 
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 			// Perform actions normally performed after updating a lead
383 383
 			$this->after_update();
384 384
 
385
-	        /**
385
+			/**
386 386
 			 * Must be AFTER after_update()!
387 387
 			 * @see https://github.com/gravityview/GravityView/issues/764
388 388
 			 */
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 
391 391
 			/**
392 392
 			 * @action `gravityview/edit_entry/after_update` Perform an action after the entry has been updated using Edit Entry
393
-             * @since 2.1 Added $gv_data parameter
393
+			 * @since 2.1 Added $gv_data parameter
394 394
 			 * @param array $form Gravity Forms form array
395 395
 			 * @param string $entry_id Numeric ID of the entry that was updated
396 396
 			 * @param GravityView_Edit_Entry_Render $this This object
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
 	 * @return void
415 415
 	 */
416 416
 	private function unset_hidden_field_values() {
417
-	    global $wpdb;
417
+		global $wpdb;
418 418
 
419 419
 		/**
420 420
 		 * @filter `gravityview/edit_entry/unset_hidden_field_values` Whether to delete values of fields hidden by conditional logic
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
 			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) );
439 439
 		}
440 440
 
441
-	    foreach ( $this->entry as $input_id => $field_value ) {
441
+		foreach ( $this->entry as $input_id => $field_value ) {
442 442
 
443 443
 			if ( ! is_numeric( $input_id ) ) {
444 444
 				continue;
@@ -448,8 +448,8 @@  discard block
 block discarded – undo
448 448
 				continue;
449 449
 			}
450 450
 
451
-		    // Reset fields that are or would be hidden
452
-		    if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), $this->entry ) ) {
451
+			// Reset fields that are or would be hidden
452
+			if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), $this->entry ) ) {
453 453
 
454 454
 				$empty_value = $field->get_value_save_entry(
455 455
 					is_array( $field->get_entry_inputs() ) ? array() : '',
@@ -461,16 +461,16 @@  discard block
 block discarded – undo
461 461
 					$empty_value = '';
462 462
 				}
463 463
 
464
-			    $lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id );
464
+				$lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id );
465 465
 
466
-			    GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value );
466
+				GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value );
467 467
 
468
-			    // Prevent the $_POST values of hidden fields from being used as default values when rendering the form
468
+				// Prevent the $_POST values of hidden fields from being used as default values when rendering the form
469 469
 				// after submission
470
-			    $post_input_id = 'input_' . str_replace( '.', '_', $input_id );
471
-			    $_POST[ $post_input_id ] = '';
472
-		    }
473
-	    }
470
+				$post_input_id = 'input_' . str_replace( '.', '_', $input_id );
471
+				$_POST[ $post_input_id ] = '';
472
+			}
473
+		}
474 474
 	}
475 475
 
476 476
 	/**
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
 
565 565
 		$form = $this->filter_conditional_logic( $this->form );
566 566
 
567
-	    /** @var GF_Field $field */
567
+		/** @var GF_Field $field */
568 568
 		foreach( $form['fields'] as $k => &$field ) {
569 569
 
570 570
 			/**
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
 
581 581
 			if( isset( $field->inputs ) && is_array( $field->inputs ) ) {
582 582
 				foreach( $field->inputs as $key => $input ) {
583
-				    $field->inputs[ $key ][ 'id' ] = (string)$input['id'];
583
+					$field->inputs[ $key ][ 'id' ] = (string)$input['id'];
584 584
 				}
585 585
 			}
586 586
 		}
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
 
621 621
 				$inputs = $field->get_entry_inputs();
622 622
 				if ( is_array( $inputs ) ) {
623
-				    foreach ( $inputs as $input ) {
623
+					foreach ( $inputs as $input ) {
624 624
 						list( $field_id, $input_id ) = rgexplode( '.', $input['id'], 2 );
625 625
 
626 626
 						if ( 'product' === $field->type ) {
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
 						}
640 640
 
641 641
 						GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input['id'] );
642
-				    }
642
+					}
643 643
 				} else {
644 644
 					// Set to what it previously was if it's not editable
645 645
 					if ( ! in_array( $field->id, $allowed_fields ) ) {
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
 			$value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] );
686 686
 
687 687
 			$ary = ! empty( $value ) ? explode( '|:|', $value ) : array();
688
-	        $ary = stripslashes_deep( $ary );
688
+			$ary = stripslashes_deep( $ary );
689 689
 			$img_url = \GV\Utils::get( $ary, 0 );
690 690
 
691 691
 			$img_title       = count( $ary ) > 1 ? $ary[1] : '';
@@ -758,7 +758,7 @@  discard block
 block discarded – undo
758 758
 	private function maybe_update_post_fields( $form ) {
759 759
 
760 760
 		if( empty( $this->entry['post_id'] ) ) {
761
-	        gravityview()->log->debug( 'This entry has no post fields. Continuing...' );
761
+			gravityview()->log->debug( 'This entry has no post fields. Continuing...' );
762 762
 			return;
763 763
 		}
764 764
 
@@ -793,49 +793,49 @@  discard block
 block discarded – undo
793 793
 
794 794
 				switch( $field->type ) {
795 795
 
796
-				    case 'post_title':
797
-				        $post_title = $value;
798
-				        if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) {
799
-				            $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
800
-				        }
801
-				        $updated_post->post_title = $post_title;
802
-				        $updated_post->post_name  = $post_title;
803
-				        unset( $post_title );
804
-				        break;
805
-
806
-				    case 'post_content':
807
-				        $post_content = $value;
808
-				        if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) {
809
-				            $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
810
-				        }
811
-				        $updated_post->post_content = $post_content;
812
-				        unset( $post_content );
813
-				        break;
814
-				    case 'post_excerpt':
815
-				        $updated_post->post_excerpt = $value;
816
-				        break;
817
-				    case 'post_tags':
818
-				        wp_set_post_tags( $post_id, $value, false );
819
-				        break;
820
-				    case 'post_category':
821
-				        break;
822
-				    case 'post_custom_field':
796
+					case 'post_title':
797
+						$post_title = $value;
798
+						if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) {
799
+							$post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
800
+						}
801
+						$updated_post->post_title = $post_title;
802
+						$updated_post->post_name  = $post_title;
803
+						unset( $post_title );
804
+						break;
805
+
806
+					case 'post_content':
807
+						$post_content = $value;
808
+						if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) {
809
+							$post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
810
+						}
811
+						$updated_post->post_content = $post_content;
812
+						unset( $post_content );
813
+						break;
814
+					case 'post_excerpt':
815
+						$updated_post->post_excerpt = $value;
816
+						break;
817
+					case 'post_tags':
818
+						wp_set_post_tags( $post_id, $value, false );
819
+						break;
820
+					case 'post_category':
821
+						break;
822
+					case 'post_custom_field':
823 823
 						if ( is_array( $value ) && ( floatval( $field_id ) !== floatval( $field->id ) ) ) {
824 824
 							$value = $value[ $field_id ];
825 825
 						}
826 826
 
827
-				        if( ! empty( $field->customFieldTemplateEnabled ) ) {
828
-				            $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
829
-				        }
827
+						if( ! empty( $field->customFieldTemplateEnabled ) ) {
828
+							$value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
829
+						}
830 830
 
831 831
 						$value = $field->get_value_save_entry( $value, $form, '', $this->entry['id'], $this->entry );
832 832
 
833
-				        update_post_meta( $post_id, $field->postCustomFieldName, $value );
834
-				        break;
833
+						update_post_meta( $post_id, $field->postCustomFieldName, $value );
834
+						break;
835 835
 
836
-				    case 'post_image':
837
-				        $value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id );
838
-				        break;
836
+					case 'post_image':
837
+						$value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id );
838
+						break;
839 839
 
840 840
 				}
841 841
 
@@ -992,14 +992,14 @@  discard block
 block discarded – undo
992 992
 			?><h2 class="gv-edit-entry-title">
993 993
 				<span><?php
994 994
 
995
-				    /**
996
-				     * @filter `gravityview_edit_entry_title` Modify the edit entry title
997
-				     * @param string $edit_entry_title Modify the "Edit Entry" title
998
-				     * @param GravityView_Edit_Entry_Render $this This object
999
-				     */
1000
-				    $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
995
+					/**
996
+					 * @filter `gravityview_edit_entry_title` Modify the edit entry title
997
+					 * @param string $edit_entry_title Modify the "Edit Entry" title
998
+					 * @param GravityView_Edit_Entry_Render $this This object
999
+					 */
1000
+					$edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
1001 1001
 
1002
-				    echo esc_attr( $edit_entry_title );
1002
+					echo esc_attr( $edit_entry_title );
1003 1003
 			?></span>
1004 1004
 			</h2>
1005 1005
 
@@ -1054,13 +1054,13 @@  discard block
 block discarded – undo
1054 1054
 				);
1055 1055
 
1056 1056
 				/**
1057
-				* @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1058
-				* @since 1.16.3
1059
-				* @param array $labels Default button labels associative array
1060
-				* @param array $form The Gravity Forms form
1061
-				* @param array $entry The Gravity Forms entry
1062
-				* @param int $view_id The current View ID
1063
-				*/
1057
+				 * @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1058
+				 * @since 1.16.3
1059
+				 * @param array $labels Default button labels associative array
1060
+				 * @param array $form The Gravity Forms form
1061
+				 * @param array $entry The Gravity Forms entry
1062
+				 * @param int $view_id The current View ID
1063
+				 */
1064 1064
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1065 1065
 
1066 1066
 				$this->is_paged_submitted = \GV\Utils::_POST( 'save' ) === $labels['submit'];
@@ -1097,26 +1097,26 @@  discard block
 block discarded – undo
1097 1097
 
1098 1098
 				switch ( $edit_redirect ) {
1099 1099
 
1100
-                    case '0':
1101
-	                    $redirect_url = $back_link;
1102
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' );
1103
-                        break;
1104
-
1105
-                    case '1':
1106
-	                    $redirect_url = $directory_link = GravityView_API::directory_link();
1107
-	                    $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>' );
1108
-	                    break;
1109
-
1110
-                    case '2':
1111
-	                    $redirect_url = $edit_redirect_url;
1112
-	                    $redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' );
1113
-	                    $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>' );
1114
-                        break;
1115
-
1116
-                    case '':
1117
-                    default:
1118
-					    $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' );
1119
-                        break;
1100
+					case '0':
1101
+						$redirect_url = $back_link;
1102
+						$entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' );
1103
+						break;
1104
+
1105
+					case '1':
1106
+						$redirect_url = $directory_link = GravityView_API::directory_link();
1107
+						$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>' );
1108
+						break;
1109
+
1110
+					case '2':
1111
+						$redirect_url = $edit_redirect_url;
1112
+						$redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' );
1113
+						$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>' );
1114
+						break;
1115
+
1116
+					case '':
1117
+					default:
1118
+						$entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' );
1119
+						break;
1120 1120
 				}
1121 1121
 
1122 1122
 				if ( isset( $redirect_url ) ) {
@@ -1182,13 +1182,13 @@  discard block
 block discarded – undo
1182 1182
 				);
1183 1183
 
1184 1184
 				/**
1185
-				* @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1186
-				* @since 1.16.3
1187
-				* @param array $labels Default button labels associative array
1188
-				* @param array $form The Gravity Forms form
1189
-				* @param array $entry The Gravity Forms entry
1190
-				* @param int $view_id The current View ID
1191
-				*/
1185
+				 * @filter `gravityview/edit_entry/button_labels` Modify the cancel/submit buttons' labels
1186
+				 * @since 1.16.3
1187
+				 * @param array $labels Default button labels associative array
1188
+				 * @param array $form The Gravity Forms form
1189
+				 * @param array $entry The Gravity Forms entry
1190
+				 * @param int $view_id The current View ID
1191
+				 */
1192 1192
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1193 1193
 
1194 1194
 				GFFormDisplay::$submission[ $this->form['id'] ][ 'form' ] = $this->form;
@@ -1230,7 +1230,7 @@  discard block
 block discarded – undo
1230 1230
 
1231 1231
 		ob_get_clean();
1232 1232
 
1233
-	    remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 );
1233
+		remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 );
1234 1234
 		remove_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) );
1235 1235
 		remove_filter( 'gform_next_button', array( $this, 'render_form_buttons' ) );
1236 1236
 		remove_filter( 'gform_previous_button', array( $this, 'render_form_buttons' ) );
@@ -1290,7 +1290,7 @@  discard block
 block discarded – undo
1290 1290
 
1291 1291
 		// for now we don't support Save and Continue feature.
1292 1292
 		if( ! self::$supports_save_and_continue ) {
1293
-	        unset( $form['save'] );
1293
+			unset( $form['save'] );
1294 1294
 		}
1295 1295
 
1296 1296
 		$form = $this->unselect_default_values( $form );
@@ -1317,30 +1317,30 @@  discard block
 block discarded – undo
1317 1317
 			return $field_content;
1318 1318
 		}
1319 1319
 
1320
-        $message = null;
1320
+		$message = null;
1321 1321
 
1322
-        // First, make sure they have the capability to edit the post.
1323
-        if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1322
+		// First, make sure they have the capability to edit the post.
1323
+		if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1324 1324
 
1325
-            /**
1326
-             * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1327
-             * @param string $message The existing "You don't have permission..." text
1328
-             */
1329
-            $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1325
+			/**
1326
+			 * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1327
+			 * @param string $message The existing "You don't have permission..." text
1328
+			 */
1329
+			$message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1330 1330
 
1331
-        } elseif( null === get_post( $this->entry['post_id'] ) ) {
1332
-            /**
1333
-             * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1334
-             * @param string $message The existing "This field is not editable; the post no longer exists." text
1335
-             */
1336
-            $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1337
-        }
1331
+		} elseif( null === get_post( $this->entry['post_id'] ) ) {
1332
+			/**
1333
+			 * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1334
+			 * @param string $message The existing "This field is not editable; the post no longer exists." text
1335
+			 */
1336
+			$message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1337
+		}
1338 1338
 
1339
-        if( $message ) {
1340
-            $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1341
-        }
1339
+		if( $message ) {
1340
+			$field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1341
+		}
1342 1342
 
1343
-        return $field_content;
1343
+		return $field_content;
1344 1344
 	}
1345 1345
 
1346 1346
 	/**
@@ -1368,7 +1368,7 @@  discard block
 block discarded – undo
1368 1368
 			|| ! empty( $field_content )
1369 1369
 			|| in_array( $field->type, array( 'honeypot' ) )
1370 1370
 		) {
1371
-	        return $field_content;
1371
+			return $field_content;
1372 1372
 		}
1373 1373
 
1374 1374
 		// SET SOME FIELD DEFAULTS TO PREVENT ISSUES
@@ -1376,24 +1376,24 @@  discard block
 block discarded – undo
1376 1376
 
1377 1377
 		$field_value = $this->get_field_value( $field );
1378 1378
 
1379
-	    // Prevent any PHP warnings, like undefined index
1380
-	    ob_start();
1379
+		// Prevent any PHP warnings, like undefined index
1380
+		ob_start();
1381 1381
 
1382
-	    $return = null;
1382
+		$return = null;
1383 1383
 
1384 1384
 		/** @var GravityView_Field $gv_field */
1385 1385
 		if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1386 1386
 			$return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field );
1387 1387
 		} else {
1388
-	        $return = $field->get_field_input( $this->form, $field_value, $this->entry );
1389
-	    }
1388
+			$return = $field->get_field_input( $this->form, $field_value, $this->entry );
1389
+		}
1390 1390
 
1391
-	    // If there was output, it's an error
1392
-	    $warnings = ob_get_clean();
1391
+		// If there was output, it's an error
1392
+		$warnings = ob_get_clean();
1393 1393
 
1394
-	    if( !empty( $warnings ) ) {
1395
-		    gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) );
1396
-	    }
1394
+		if( !empty( $warnings ) ) {
1395
+			gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) );
1396
+		}
1397 1397
 
1398 1398
 		return $return;
1399 1399
 	}
@@ -1428,8 +1428,8 @@  discard block
 block discarded – undo
1428 1428
 				$input_id = strval( $input['id'] );
1429 1429
 
1430 1430
 				if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) {
1431
-				    $field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1432
-				    $allow_pre_populated = false;
1431
+					$field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1432
+					$allow_pre_populated = false;
1433 1433
 				}
1434 1434
 
1435 1435
 			}
@@ -1453,7 +1453,7 @@  discard block
 block discarded – undo
1453 1453
 			if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) {
1454 1454
 				$categories = array();
1455 1455
 				foreach ( explode( ',', $field_value ) as $cat_string ) {
1456
-				    $categories[] = GFCommon::format_post_category( $cat_string, true );
1456
+					$categories[] = GFCommon::format_post_category( $cat_string, true );
1457 1457
 				}
1458 1458
 				$field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories );
1459 1459
 			}
@@ -1463,25 +1463,25 @@  discard block
 block discarded – undo
1463 1463
 		// if value is empty get the default value if defined
1464 1464
 		$field_value = $field->get_value_default_if_empty( $field_value );
1465 1465
 
1466
-	    /**
1467
-	     * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed
1468
-	     * @since 1.11
1469
-	     * @since 1.20 Added third param
1470
-	     * @param mixed $field_value field value used to populate the input
1471
-	     * @param object $field Gravity Forms field object ( Class GF_Field )
1472
-	     * @param GravityView_Edit_Entry_Render $this Current object
1473
-	     */
1474
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this );
1475
-
1476
-	    /**
1477
-	     * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type
1478
-	     * @since 1.17
1479
-	     * @since 1.20 Added third param
1480
-	     * @param mixed $field_value field value used to populate the input
1481
-	     * @param GF_Field $field Gravity Forms field object
1482
-	     * @param GravityView_Edit_Entry_Render $this Current object
1483
-	     */
1484
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1466
+		/**
1467
+		 * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed
1468
+		 * @since 1.11
1469
+		 * @since 1.20 Added third param
1470
+		 * @param mixed $field_value field value used to populate the input
1471
+		 * @param object $field Gravity Forms field object ( Class GF_Field )
1472
+		 * @param GravityView_Edit_Entry_Render $this Current object
1473
+		 */
1474
+		$field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this );
1475
+
1476
+		/**
1477
+		 * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type
1478
+		 * @since 1.17
1479
+		 * @since 1.20 Added third param
1480
+		 * @param mixed $field_value field value used to populate the input
1481
+		 * @param GF_Field $field Gravity Forms field object
1482
+		 * @param GravityView_Edit_Entry_Render $this Current object
1483
+		 */
1484
+		$field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1485 1485
 
1486 1486
 		return $field_value;
1487 1487
 	}
@@ -1508,7 +1508,7 @@  discard block
 block discarded – undo
1508 1508
 			// This is because we're doing admin form pretending to be front-end, so Gravity Forms
1509 1509
 			// expects certain field array items to be set.
1510 1510
 			foreach ( array( 'noDuplicates', 'adminOnly', 'inputType', 'isRequired', 'enablePrice', 'inputs', 'allowedExtensions' ) as $key ) {
1511
-	            $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1511
+				$field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1512 1512
 			}
1513 1513
 
1514 1514
 			switch( RGFormsModel::get_input_type( $field ) ) {
@@ -1522,61 +1522,61 @@  discard block
 block discarded – undo
1522 1522
 				 */
1523 1523
 				case 'fileupload':
1524 1524
 
1525
-				    // Set the previous value
1526
-				    $entry = $this->get_entry();
1525
+					// Set the previous value
1526
+					$entry = $this->get_entry();
1527 1527
 
1528
-				    $input_name = 'input_'.$field->id;
1529
-				    $form_id = $form['id'];
1528
+					$input_name = 'input_'.$field->id;
1529
+					$form_id = $form['id'];
1530 1530
 
1531
-				    $value = NULL;
1531
+					$value = NULL;
1532 1532
 
1533
-				    // Use the previous entry value as the default.
1534
-				    if( isset( $entry[ $field->id ] ) ) {
1535
-				        $value = $entry[ $field->id ];
1536
-				    }
1533
+					// Use the previous entry value as the default.
1534
+					if( isset( $entry[ $field->id ] ) ) {
1535
+						$value = $entry[ $field->id ];
1536
+					}
1537 1537
 
1538
-				    // If this is a single upload file
1539
-				    if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1540
-				        $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1541
-				        $value = $file_path['url'];
1538
+					// If this is a single upload file
1539
+					if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1540
+						$file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1541
+						$value = $file_path['url'];
1542 1542
 
1543
-				    } else {
1543
+					} else {
1544 1544
 
1545
-				        // Fix PHP warning on line 1498 of form_display.php for post_image fields
1546
-				        // Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1547
-				        $_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1545
+						// Fix PHP warning on line 1498 of form_display.php for post_image fields
1546
+						// Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1547
+						$_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1548 1548
 
1549
-				    }
1549
+					}
1550 1550
 
1551
-				    if ( \GV\Utils::get( $field, "multipleFiles" ) ) {
1551
+					if ( \GV\Utils::get( $field, "multipleFiles" ) ) {
1552 1552
 
1553
-				        // If there are fresh uploads, process and merge them.
1554
-				        // Otherwise, use the passed values, which should be json-encoded array of URLs
1555
-				        if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1556
-				            $value = empty( $value ) ? '[]' : $value;
1557
-				            $value = stripslashes_deep( $value );
1558
-				            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1559
-				        }
1553
+						// If there are fresh uploads, process and merge them.
1554
+						// Otherwise, use the passed values, which should be json-encoded array of URLs
1555
+						if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1556
+							$value = empty( $value ) ? '[]' : $value;
1557
+							$value = stripslashes_deep( $value );
1558
+							$value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1559
+						}
1560 1560
 
1561
-				    } else {
1561
+					} else {
1562 1562
 
1563
-				        // A file already exists when editing an entry
1564
-				        // We set this to solve issue when file upload fields are required.
1565
-				        GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value;
1563
+						// A file already exists when editing an entry
1564
+						// We set this to solve issue when file upload fields are required.
1565
+						GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value;
1566 1566
 
1567
-				    }
1567
+					}
1568 1568
 
1569
-				    $this->entry[ $input_name ] = $value;
1570
-				    $_POST[ $input_name ] = $value;
1569
+					$this->entry[ $input_name ] = $value;
1570
+					$_POST[ $input_name ] = $value;
1571 1571
 
1572
-				    break;
1572
+					break;
1573 1573
 
1574 1574
 				case 'number':
1575
-				    // Fix "undefined index" issue at line 1286 in form_display.php
1576
-				    if( !isset( $_POST['input_'.$field->id ] ) ) {
1577
-				        $_POST['input_'.$field->id ] = NULL;
1578
-				    }
1579
-				    break;
1575
+					// Fix "undefined index" issue at line 1286 in form_display.php
1576
+					if( !isset( $_POST['input_'.$field->id ] ) ) {
1577
+						$_POST['input_'.$field->id ] = NULL;
1578
+					}
1579
+					break;
1580 1580
 			}
1581 1581
 
1582 1582
 		}
@@ -1661,43 +1661,43 @@  discard block
 block discarded – undo
1661 1661
 				case 'fileupload' :
1662 1662
 				case 'post_image':
1663 1663
 
1664
-				    // in case nothing is uploaded but there are already files saved
1665
-				    if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1666
-				        $field->failed_validation = false;
1667
-				        unset( $field->validation_message );
1668
-				    }
1664
+					// in case nothing is uploaded but there are already files saved
1665
+					if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1666
+						$field->failed_validation = false;
1667
+						unset( $field->validation_message );
1668
+					}
1669 1669
 
1670
-				    // validate if multi file upload reached max number of files [maxFiles] => 2
1671
-				    if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) {
1670
+					// validate if multi file upload reached max number of files [maxFiles] => 2
1671
+					if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) {
1672 1672
 
1673
-				        $input_name = 'input_' . $field->id;
1674
-				        //uploaded
1675
-				        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1673
+						$input_name = 'input_' . $field->id;
1674
+						//uploaded
1675
+						$file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1676 1676
 
1677
-				        //existent
1678
-				        $entry = $this->get_entry();
1679
-				        $value = NULL;
1680
-				        if( isset( $entry[ $field->id ] ) ) {
1681
-				            $value = json_decode( $entry[ $field->id ], true );
1682
-				        }
1677
+						//existent
1678
+						$entry = $this->get_entry();
1679
+						$value = NULL;
1680
+						if( isset( $entry[ $field->id ] ) ) {
1681
+							$value = json_decode( $entry[ $field->id ], true );
1682
+						}
1683 1683
 
1684
-				        // count uploaded files and existent entry files
1685
-				        $count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) +
1686
-						               ( is_array( $value ) ? count( $value ) : 0 );
1684
+						// count uploaded files and existent entry files
1685
+						$count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) +
1686
+									   ( is_array( $value ) ? count( $value ) : 0 );
1687 1687
 
1688
-				        if( $count_files > $field->maxFiles ) {
1689
-				            $field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1690
-				            $field->failed_validation = 1;
1691
-				            $gv_valid = false;
1688
+						if( $count_files > $field->maxFiles ) {
1689
+							$field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1690
+							$field->failed_validation = 1;
1691
+							$gv_valid = false;
1692 1692
 
1693
-				            // in case of error make sure the newest upload files are removed from the upload input
1694
-				            GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1695
-				        }
1693
+							// in case of error make sure the newest upload files are removed from the upload input
1694
+							GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1695
+						}
1696 1696
 
1697
-				    }
1697
+					}
1698 1698
 
1699 1699
 
1700
-				    break;
1700
+					break;
1701 1701
 
1702 1702
 			}
1703 1703
 
@@ -1708,47 +1708,47 @@  discard block
 block discarded – undo
1708 1708
 
1709 1709
 				switch ( $field_type ) {
1710 1710
 
1711
-				    // Captchas don't need to be re-entered.
1712
-				    case 'captcha':
1711
+					// Captchas don't need to be re-entered.
1712
+					case 'captcha':
1713 1713
 
1714
-				        // Post Image fields aren't editable, so we un-fail them.
1715
-				    case 'post_image':
1716
-				        $field->failed_validation = false;
1717
-				        unset( $field->validation_message );
1718
-				        break;
1714
+						// Post Image fields aren't editable, so we un-fail them.
1715
+					case 'post_image':
1716
+						$field->failed_validation = false;
1717
+						unset( $field->validation_message );
1718
+						break;
1719 1719
 
1720 1720
 				}
1721 1721
 
1722 1722
 				// You can't continue inside a switch, so we do it after.
1723 1723
 				if( empty( $field->failed_validation ) ) {
1724
-				    continue;
1724
+					continue;
1725 1725
 				}
1726 1726
 
1727 1727
 				// checks if the No Duplicates option is not validating entry against itself, since
1728 1728
 				// we're editing a stored entry, it would also assume it's a duplicate.
1729 1729
 				if( !empty( $field->noDuplicates ) ) {
1730 1730
 
1731
-				    $entry = $this->get_entry();
1731
+					$entry = $this->get_entry();
1732 1732
 
1733
-				    // If the value of the entry is the same as the stored value
1734
-				    // Then we can assume it's not a duplicate, it's the same.
1735
-				    if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1736
-				        //if value submitted was not changed, then don't validate
1737
-				        $field->failed_validation = false;
1733
+					// If the value of the entry is the same as the stored value
1734
+					// Then we can assume it's not a duplicate, it's the same.
1735
+					if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1736
+						//if value submitted was not changed, then don't validate
1737
+						$field->failed_validation = false;
1738 1738
 
1739
-				        unset( $field->validation_message );
1739
+						unset( $field->validation_message );
1740 1740
 
1741
-				        gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', array( 'data' => $entry ) );
1741
+						gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', array( 'data' => $entry ) );
1742 1742
 
1743
-				        continue;
1744
-				    }
1743
+						continue;
1744
+					}
1745 1745
 				}
1746 1746
 
1747 1747
 				// if here then probably we are facing the validation 'At least one field must be filled out'
1748 1748
 				if( GFFormDisplay::is_empty( $field, $this->form_id  ) && empty( $field->isRequired ) ) {
1749
-				    unset( $field->validation_message );
1750
-	                $field->validation_message = false;
1751
-				    continue;
1749
+					unset( $field->validation_message );
1750
+					$field->validation_message = false;
1751
+					continue;
1752 1752
 				}
1753 1753
 
1754 1754
 				$gv_valid = false;
@@ -1812,8 +1812,8 @@  discard block
 block discarded – undo
1812 1812
 		// Hide fields depending on admin settings
1813 1813
 		$fields = $this->filter_fields( $form['fields'], $edit_fields );
1814 1814
 
1815
-	    // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1816
-	    $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
1815
+		// If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1816
+		$fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
1817 1817
 
1818 1818
 		/**
1819 1819
 		 * @filter `gravityview/edit_entry/form_fields` Modify the fields displayed in Edit Entry form
@@ -1892,11 +1892,11 @@  discard block
 block discarded – undo
1892 1892
 		// The edit tab has been configured, so we loop through to configured settings
1893 1893
 		foreach ( $configured_fields as $configured_field ) {
1894 1894
 
1895
-	        /** @var GF_Field $field */
1896
-	        foreach ( $fields as $field ) {
1895
+			/** @var GF_Field $field */
1896
+			foreach ( $fields as $field ) {
1897 1897
 				if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
1898
-				    $edit_fields[] = $this->merge_field_properties( $field, $configured_field );
1899
-				    break;
1898
+					$edit_fields[] = $this->merge_field_properties( $field, $configured_field );
1899
+					break;
1900 1900
 				}
1901 1901
 
1902 1902
 			}
@@ -1952,28 +1952,28 @@  discard block
 block discarded – undo
1952 1952
 	 */
1953 1953
 	private function filter_admin_only_fields( $fields = array(), $edit_fields = null, $form = array(), $view_id = 0 ) {
1954 1954
 
1955
-	    /**
1955
+		/**
1956 1956
 		 * @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
1957
-	     * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators.
1958
-	     * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions
1959
-	     * @since 1.9.1
1960
-	     * @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.
1961
-	     * @param array $form GF Form array
1962
-	     * @param int $view_id View ID
1963
-	     */
1964
-	    $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
1965
-
1966
-	    if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
1957
+		 * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators.
1958
+		 * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions
1959
+		 * @since 1.9.1
1960
+		 * @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.
1961
+		 * @param array $form GF Form array
1962
+		 * @param int $view_id View ID
1963
+		 */
1964
+		$use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
1965
+
1966
+		if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
1967 1967
 			foreach( $fields as $k => $field ) {
1968 1968
 				if( $field->adminOnly ) {
1969
-				    unset( $fields[ $k ] );
1969
+					unset( $fields[ $k ] );
1970 1970
 				}
1971 1971
 			}
1972 1972
 			return array_values( $fields );
1973 1973
 		}
1974 1974
 
1975
-	    foreach( $fields as &$field ) {
1976
-		    $field->adminOnly = false;
1975
+		foreach( $fields as &$field ) {
1976
+			$field->adminOnly = false;
1977 1977
 		}
1978 1978
 
1979 1979
 		return $fields;
@@ -1993,13 +1993,13 @@  discard block
 block discarded – undo
1993 1993
 	 */
1994 1994
 	private function unselect_default_values( $form ) {
1995 1995
 
1996
-	    foreach ( $form['fields'] as &$field ) {
1996
+		foreach ( $form['fields'] as &$field ) {
1997 1997
 
1998 1998
 			if ( empty( $field->choices ) ) {
1999
-                continue;
1999
+				continue;
2000 2000
 			}
2001 2001
 
2002
-            foreach ( $field->choices as &$choice ) {
2002
+			foreach ( $field->choices as &$choice ) {
2003 2003
 				if ( \GV\Utils::get( $choice, 'isSelected' ) ) {
2004 2004
 					$choice['isSelected'] = false;
2005 2005
 				}
@@ -2036,36 +2036,36 @@  discard block
 block discarded – undo
2036 2036
 
2037 2037
 			if( 'checkbox' === $field->type ) {
2038 2038
 				foreach ( $field->get_entry_inputs() as $key => $input ) {
2039
-				    $input_id = $input['id'];
2040
-				    $choice = $field->choices[ $key ];
2041
-				    $value = \GV\Utils::get( $this->entry, $input_id );
2042
-				    $match = RGFormsModel::choice_value_match( $field, $choice, $value );
2043
-				    if( $match ) {
2044
-				        $field->choices[ $key ]['isSelected'] = true;
2045
-				    }
2039
+					$input_id = $input['id'];
2040
+					$choice = $field->choices[ $key ];
2041
+					$value = \GV\Utils::get( $this->entry, $input_id );
2042
+					$match = RGFormsModel::choice_value_match( $field, $choice, $value );
2043
+					if( $match ) {
2044
+						$field->choices[ $key ]['isSelected'] = true;
2045
+					}
2046 2046
 				}
2047 2047
 			} else {
2048 2048
 
2049 2049
 				// We need to run through each field to set the default values
2050 2050
 				foreach ( $this->entry as $field_id => $field_value ) {
2051 2051
 
2052
-				    if( floatval( $field_id ) === floatval( $field->id ) ) {
2052
+					if( floatval( $field_id ) === floatval( $field->id ) ) {
2053 2053
 
2054
-				        if( 'list' === $field->type ) {
2055
-				            $list_rows = maybe_unserialize( $field_value );
2054
+						if( 'list' === $field->type ) {
2055
+							$list_rows = maybe_unserialize( $field_value );
2056 2056
 
2057
-				            $list_field_value = array();
2058
-				            foreach ( (array) $list_rows as $row ) {
2059
-				                foreach ( (array) $row as $column ) {
2060
-				                    $list_field_value[] = $column;
2061
-				                }
2062
-				            }
2057
+							$list_field_value = array();
2058
+							foreach ( (array) $list_rows as $row ) {
2059
+								foreach ( (array) $row as $column ) {
2060
+									$list_field_value[] = $column;
2061
+								}
2062
+							}
2063 2063
 
2064
-				            $field->defaultValue = serialize( $list_field_value );
2065
-				        } else {
2066
-				            $field->defaultValue = $field_value;
2067
-				        }
2068
-				    }
2064
+							$field->defaultValue = serialize( $list_field_value );
2065
+						} else {
2066
+							$field->defaultValue = $field_value;
2067
+						}
2068
+					}
2069 2069
 				}
2070 2070
 			}
2071 2071
 		}
@@ -2126,7 +2126,7 @@  discard block
 block discarded – undo
2126 2126
 			foreach ( $form['fields'] as &$field ) {
2127 2127
 				foreach ( $remove_conditions_rule as $_remove_conditions_r ) {
2128 2128
 
2129
-				    list( $rule_field_id, $rule_i ) = $_remove_conditions_r;
2129
+					list( $rule_field_id, $rule_i ) = $_remove_conditions_r;
2130 2130
 
2131 2131
 					if ( $field['id'] == $rule_field_id ) {
2132 2132
 						unset( $field->conditionalLogic['rules'][ $rule_i ] );
@@ -2177,7 +2177,7 @@  discard block
 block discarded – undo
2177 2177
 			return $has_conditional_logic;
2178 2178
 		}
2179 2179
 
2180
-	    /** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */
2180
+		/** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */
2181 2181
 		return apply_filters( 'gravityview/edit_entry/conditional_logic', $has_conditional_logic, $form );
2182 2182
 	}
2183 2183
 
@@ -2244,14 +2244,14 @@  discard block
 block discarded – undo
2244 2244
 
2245 2245
 		if( $echo && $error !== true ) {
2246 2246
 
2247
-	        $error = esc_html( $error );
2247
+			$error = esc_html( $error );
2248 2248
 
2249
-	        /**
2250
-	         * @since 1.9
2251
-	         */
2252
-	        if ( ! empty( $this->entry ) ) {
2253
-		        $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;" ) );
2254
-	        }
2249
+			/**
2250
+			 * @since 1.9
2251
+			 */
2252
+			if ( ! empty( $this->entry ) ) {
2253
+				$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;" ) );
2254
+			}
2255 2255
 
2256 2256
 			echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error');
2257 2257
 		}
Please login to merge, or discard this patch.
Spacing   +240 added lines, -240 removed lines patch added patch discarded remove patch
@@ -135,16 +135,16 @@  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' ) );
142 142
 		add_action( 'wp_footer', array( $this, 'prevent_render_form' ) );
143 143
 
144 144
 		// Stop Gravity Forms processing what is ours!
145
-		add_filter( 'wp', array( $this, 'prevent_maybe_process_form'), 8 );
145
+		add_filter( 'wp', array( $this, 'prevent_maybe_process_form' ), 8 );
146 146
 
147
-		add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry') );
147
+		add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry' ) );
148 148
 
149 149
 		add_action( 'gravityview_edit_entry', array( $this, 'init' ), 10, 4 );
150 150
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 		add_filter( 'gform_plupload_settings', array( $this, 'modify_fileupload_settings' ), 10, 3 );
156 156
 
157 157
 		// Add fields expected by GFFormDisplay::validate()
158
-		add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation') );
158
+		add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation' ) );
159 159
 
160 160
 		// Fix multiselect value for GF 2.2
161 161
 		add_filter( 'gravityview/edit_entry/field_value_multiselect', array( $this, 'fix_multiselect_value_serialization' ), 10, 3 );
@@ -172,8 +172,8 @@  discard block
 block discarded – undo
172 172
 	 * @return void
173 173
 	 */
174 174
 	public function prevent_render_form() {
175
-		if( $this->is_edit_entry() ) {
176
-			if( 'wp_head' === current_filter() ) {
175
+		if ( $this->is_edit_entry() ) {
176
+			if ( 'wp_head' === current_filter() ) {
177 177
 				add_filter( 'gform_shortcode_form', '__return_empty_string' );
178 178
 			} else {
179 179
 				remove_filter( 'gform_shortcode_form', '__return_empty_string' );
@@ -188,14 +188,14 @@  discard block
 block discarded – undo
188 188
 	 */
189 189
 	public function prevent_maybe_process_form() {
190 190
 
191
-	    if( ! $this->is_edit_entry_submission() ) {
191
+	    if ( ! $this->is_edit_entry_submission() ) {
192 192
 			return;
193 193
 		}
194 194
 
195 195
 		gravityview()->log->debug( 'GravityView_Edit_Entry[prevent_maybe_process_form] Removing GFForms::maybe_process_form() action.' );
196 196
 
197
-		remove_action( 'wp',  array( 'RGForms', 'maybe_process_form'), 9 );
198
-		remove_action( 'wp',  array( 'GFForms', 'maybe_process_form'), 9 );
197
+		remove_action( 'wp', array( 'RGForms', 'maybe_process_form' ), 9 );
198
+		remove_action( 'wp', array( 'GFForms', 'maybe_process_form' ), 9 );
199 199
 	}
200 200
 
201 201
 	/**
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 	 */
205 205
 	public function is_edit_entry() {
206 206
 
207
-		$is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET['edit'] );
207
+		$is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET[ 'edit' ] );
208 208
 
209 209
 		return ( $is_edit_entry || $this->is_edit_entry_submission() );
210 210
 	}
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 	 * @return boolean
216 216
 	 */
217 217
 	public function is_edit_entry_submission() {
218
-		return !empty( $_POST[ self::$nonce_field ] );
218
+		return ! empty( $_POST[ self::$nonce_field ] );
219 219
 	}
220 220
 
221 221
 	/**
@@ -228,16 +228,16 @@  discard block
 block discarded – undo
228 228
 
229 229
 
230 230
 		$entries = $gravityview_view->getEntries();
231
-	    self::$original_entry = $entries[0];
232
-	    $this->entry = $entries[0];
231
+	    self::$original_entry = $entries[ 0 ];
232
+	    $this->entry = $entries[ 0 ];
233 233
 
234 234
 		self::$original_form = $gravityview_view->getForm();
235 235
 		$this->form = $gravityview_view->getForm();
236
-		$this->form_id = $this->entry['form_id'];
236
+		$this->form_id = $this->entry[ 'form_id' ];
237 237
 		$this->view_id = $gravityview_view->getViewId();
238 238
 		$this->post_id = \GV\Utils::get( $post, 'ID', null );
239 239
 
240
-		self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry['id'] );
240
+		self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry[ 'id' ] );
241 241
 	}
242 242
 
243 243
 
@@ -296,9 +296,9 @@  discard block
 block discarded – undo
296 296
 	private function print_scripts() {
297 297
 		$gravityview_view = GravityView_View::getInstance();
298 298
 
299
-		wp_register_script( 'gform_gravityforms', GFCommon::get_base_url().'/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
299
+		wp_register_script( 'gform_gravityforms', GFCommon::get_base_url() . '/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
300 300
 
301
-		GFFormDisplay::enqueue_form_scripts( $gravityview_view->getForm(), false);
301
+		GFFormDisplay::enqueue_form_scripts( $gravityview_view->getForm(), false );
302 302
 
303 303
 		wp_localize_script( 'gravityview-fe-view', 'gvGlobals', array( 'cookiepath' => COOKIEPATH ) );
304 304
 
@@ -314,19 +314,19 @@  discard block
 block discarded – undo
314 314
 	 */
315 315
 	private function process_save( $gv_data ) {
316 316
 
317
-		if ( empty( $_POST ) || ! isset( $_POST['lid'] ) ) {
317
+		if ( empty( $_POST ) || ! isset( $_POST[ 'lid' ] ) ) {
318 318
 			return;
319 319
 		}
320 320
 
321 321
 		// Make sure the entry, view, and form IDs are all correct
322 322
 		$valid = $this->verify_nonce();
323 323
 
324
-		if ( !$valid ) {
324
+		if ( ! $valid ) {
325 325
 			gravityview()->log->error( 'Nonce validation failed.' );
326 326
 			return;
327 327
 		}
328 328
 
329
-		if ( $this->entry['id'] !== $_POST['lid'] ) {
329
+		if ( $this->entry[ 'id' ] !== $_POST[ 'lid' ] ) {
330 330
 			gravityview()->log->error( 'Entry ID did not match posted entry ID.' );
331 331
 			return;
332 332
 		}
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
 
338 338
 		$this->validate();
339 339
 
340
-		if( $this->is_valid ) {
340
+		if ( $this->is_valid ) {
341 341
 
342 342
 			gravityview()->log->debug( 'Submission is valid.' );
343 343
 
@@ -349,15 +349,15 @@  discard block
 block discarded – undo
349 349
 			/**
350 350
 			 * @hack to avoid the capability validation of the method save_lead for GF 1.9+
351 351
 			 */
352
-			unset( $_GET['page'] );
352
+			unset( $_GET[ 'page' ] );
353 353
 
354
-			$date_created = $this->entry['date_created'];
354
+			$date_created = $this->entry[ 'date_created' ];
355 355
 
356 356
 			/**
357 357
 			 * @hack to force Gravity Forms to use $read_value_from_post in GFFormsModel::save_lead()
358 358
 			 * @since 1.17.2
359 359
 			 */
360
-			unset( $this->entry['date_created'] );
360
+			unset( $this->entry[ 'date_created' ] );
361 361
 
362 362
 			/**
363 363
 			 * @action `gravityview/edit_entry/before_update` Perform an action after the entry has been updated using Edit Entry
@@ -367,14 +367,14 @@  discard block
 block discarded – undo
367 367
 			 * @param GravityView_Edit_Entry_Render $this This object
368 368
 			 * @param GravityView_View_Data $gv_data The View data
369 369
 			 */
370
-			do_action( 'gravityview/edit_entry/before_update', $form, $this->entry['id'], $this, $gv_data );
370
+			do_action( 'gravityview/edit_entry/before_update', $form, $this->entry[ 'id' ], $this, $gv_data );
371 371
 
372 372
 			GFFormsModel::save_lead( $form, $this->entry );
373 373
 
374 374
 	        // Delete the values for hidden inputs
375 375
 	        $this->unset_hidden_field_values();
376 376
 			
377
-			$this->entry['date_created'] = $date_created;
377
+			$this->entry[ 'date_created' ] = $date_created;
378 378
 
379 379
 			// Process calculation fields
380 380
 			$this->update_calculation_fields();
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
 			 * @param GravityView_Edit_Entry_Render $this This object
397 397
 			 * @param GravityView_View_Data $gv_data The View data
398 398
 			 */
399
-			do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry['id'], $this, $gv_data );
399
+			do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry[ 'id' ], $this, $gv_data );
400 400
 
401 401
 		} else {
402 402
 			gravityview()->log->error( 'Submission is NOT valid.', array( 'entry' => $this->entry ) );
@@ -432,10 +432,10 @@  discard block
 block discarded – undo
432 432
 
433 433
 		if ( version_compare( GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
434 434
 			$entry_meta_table = GFFormsModel::get_entry_meta_table_name();
435
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $this->entry['id'] ) );
435
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $this->entry[ 'id' ] ) );
436 436
 		} else {
437 437
 			$lead_detail_table = GFFormsModel::get_lead_details_table_name();
438
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) );
438
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $this->entry[ 'id' ] ) );
439 439
 		}
440 440
 
441 441
 	    foreach ( $this->entry as $input_id => $field_value ) {
@@ -453,11 +453,11 @@  discard block
 block discarded – undo
453 453
 
454 454
 				$empty_value = $field->get_value_save_entry(
455 455
 					is_array( $field->get_entry_inputs() ) ? array() : '',
456
-					$this->form, '', $this->entry['id'], $this->entry
456
+					$this->form, '', $this->entry[ 'id' ], $this->entry
457 457
 				);
458 458
 
459 459
 				if ( $field->has_calculation() ) {
460
-					$this->unset_hidden_calculations[] = $field->id; // Unset
460
+					$this->unset_hidden_calculations[ ] = $field->id; // Unset
461 461
 					$empty_value = '';
462 462
 				}
463 463
 
@@ -528,7 +528,7 @@  discard block
 block discarded – undo
528 528
 		}
529 529
 
530 530
 		/** No file is being uploaded. */
531
-		if ( empty( $_FILES[ $input_name ]['name'] ) ) {
531
+		if ( empty( $_FILES[ $input_name ][ 'name' ] ) ) {
532 532
 			/** So return the original upload */
533 533
 			return $entry[ $input_id ];
534 534
 		}
@@ -546,11 +546,11 @@  discard block
 block discarded – undo
546 546
 	 * @return mixed
547 547
 	 */
548 548
 	public function modify_fileupload_settings( $plupload_init, $form_id, $instance ) {
549
-		if( ! $this->is_edit_entry() ) {
549
+		if ( ! $this->is_edit_entry() ) {
550 550
 			return $plupload_init;
551 551
 		}
552 552
 
553
-		$plupload_init['gf_vars']['max_files'] = 0;
553
+		$plupload_init[ 'gf_vars' ][ 'max_files' ] = 0;
554 554
 
555 555
 		return $plupload_init;
556 556
 	}
@@ -565,27 +565,27 @@  discard block
 block discarded – undo
565 565
 		$form = $this->filter_conditional_logic( $this->form );
566 566
 
567 567
 	    /** @var GF_Field $field */
568
-		foreach( $form['fields'] as $k => &$field ) {
568
+		foreach ( $form[ 'fields' ] as $k => &$field ) {
569 569
 
570 570
 			/**
571 571
 			 * Remove the fields with calculation formulas before save to avoid conflicts with GF logic
572 572
 			 * @since 1.16.3
573 573
 			 * @var GF_Field $field
574 574
 			 */
575
-			if( $field->has_calculation() ) {
576
-				unset( $form['fields'][ $k ] );
575
+			if ( $field->has_calculation() ) {
576
+				unset( $form[ 'fields' ][ $k ] );
577 577
 			}
578 578
 
579 579
 			$field->adminOnly = false;
580 580
 
581
-			if( isset( $field->inputs ) && is_array( $field->inputs ) ) {
582
-				foreach( $field->inputs as $key => $input ) {
583
-				    $field->inputs[ $key ][ 'id' ] = (string)$input['id'];
581
+			if ( isset( $field->inputs ) && is_array( $field->inputs ) ) {
582
+				foreach ( $field->inputs as $key => $input ) {
583
+				    $field->inputs[ $key ][ 'id' ] = (string)$input[ 'id' ];
584 584
 				}
585 585
 			}
586 586
 		}
587 587
 
588
-		$form['fields'] = array_values( $form['fields'] );
588
+		$form[ 'fields' ] = array_values( $form[ 'fields' ] );
589 589
 
590 590
 		return $form;
591 591
 	}
@@ -597,14 +597,14 @@  discard block
 block discarded – undo
597 597
 		$update = false;
598 598
 
599 599
 		// get the most up to date entry values
600
-		$entry = GFAPI::get_entry( $this->entry['id'] );
600
+		$entry = GFAPI::get_entry( $this->entry[ 'id' ] );
601 601
 
602 602
 		if ( version_compare( GravityView_GFFormsModel::get_database_version(), '2.3-dev-1', '>=' ) && method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
603 603
 			$entry_meta_table = GFFormsModel::get_entry_meta_table_name();
604
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $entry['id'] ) );
604
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $entry_meta_table WHERE entry_id=%d", $entry[ 'id' ] ) );
605 605
 		} else {
606 606
 			$lead_detail_table = GFFormsModel::get_lead_details_table_name();
607
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $entry['id'] ) );
607
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $lead_detail_table WHERE lead_id=%d", $entry[ 'id' ] ) );
608 608
 		}
609 609
 
610 610
 
@@ -621,24 +621,24 @@  discard block
 block discarded – undo
621 621
 				$inputs = $field->get_entry_inputs();
622 622
 				if ( is_array( $inputs ) ) {
623 623
 				    foreach ( $inputs as $input ) {
624
-						list( $field_id, $input_id ) = rgexplode( '.', $input['id'], 2 );
624
+						list( $field_id, $input_id ) = rgexplode( '.', $input[ 'id' ], 2 );
625 625
 
626 626
 						if ( 'product' === $field->type ) {
627
-							$input_name = 'input_' . str_replace( '.', '_', $input['id'] );
627
+							$input_name = 'input_' . str_replace( '.', '_', $input[ 'id' ] );
628 628
 
629 629
 							// Only allow quantity to be set if it's allowed to be edited
630 630
 							if ( in_array( $field_id, $allowed_fields ) && $input_id == 3 ) {
631 631
 							} else { // otherwise set to what it previously was
632
-								$_POST[ $input_name ] = $entry[ $input['id'] ];
632
+								$_POST[ $input_name ] = $entry[ $input[ 'id' ] ];
633 633
 							}
634 634
 						} else {
635 635
 							// Set to what it previously was if it's not editable
636 636
 							if ( ! in_array( $field_id, $allowed_fields ) ) {
637
-								$_POST[ $input_name ] = $entry[ $input['id'] ];
637
+								$_POST[ $input_name ] = $entry[ $input[ 'id' ] ];
638 638
 							}
639 639
 						}
640 640
 
641
-						GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input['id'] );
641
+						GFFormsModel::save_input( $form, $field, $entry, $current_fields, $input[ 'id' ] );
642 642
 				    }
643 643
 				} else {
644 644
 					// Set to what it previously was if it's not editable
@@ -678,19 +678,19 @@  discard block
 block discarded – undo
678 678
 
679 679
 		$input_name = 'input_' . $field_id;
680 680
 
681
-		if ( !empty( $_FILES[ $input_name ]['name'] ) ) {
681
+		if ( ! empty( $_FILES[ $input_name ][ 'name' ] ) ) {
682 682
 
683 683
 			// We have a new image
684 684
 
685
-			$value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] );
685
+			$value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ] );
686 686
 
687 687
 			$ary = ! empty( $value ) ? explode( '|:|', $value ) : array();
688 688
 	        $ary = stripslashes_deep( $ary );
689 689
 			$img_url = \GV\Utils::get( $ary, 0 );
690 690
 
691
-			$img_title       = count( $ary ) > 1 ? $ary[1] : '';
692
-			$img_caption     = count( $ary ) > 2 ? $ary[2] : '';
693
-			$img_description = count( $ary ) > 3 ? $ary[3] : '';
691
+			$img_title       = count( $ary ) > 1 ? $ary[ 1 ] : '';
692
+			$img_caption     = count( $ary ) > 2 ? $ary[ 2 ] : '';
693
+			$img_description = count( $ary ) > 3 ? $ary[ 3 ] : '';
694 694
 
695 695
 			$image_meta = array(
696 696
 				'post_excerpt' => $img_caption,
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
 
700 700
 			//adding title only if it is not empty. It will default to the file name if it is not in the array
701 701
 			if ( ! empty( $img_title ) ) {
702
-				$image_meta['post_title'] = $img_title;
702
+				$image_meta[ 'post_title' ] = $img_title;
703 703
 			}
704 704
 
705 705
 			/**
@@ -757,15 +757,15 @@  discard block
 block discarded – undo
757 757
 	 */
758 758
 	private function maybe_update_post_fields( $form ) {
759 759
 
760
-		if( empty( $this->entry['post_id'] ) ) {
760
+		if ( empty( $this->entry[ 'post_id' ] ) ) {
761 761
 	        gravityview()->log->debug( 'This entry has no post fields. Continuing...' );
762 762
 			return;
763 763
 		}
764 764
 
765
-		$post_id = $this->entry['post_id'];
765
+		$post_id = $this->entry[ 'post_id' ];
766 766
 
767 767
 		// Security check
768
-		if( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
768
+		if ( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
769 769
 			gravityview()->log->error( 'The current user does not have the ability to edit Post #{post_id}', array( 'post_id' => $post_id ) );
770 770
 			return;
771 771
 		}
@@ -778,25 +778,25 @@  discard block
 block discarded – undo
778 778
 
779 779
 			$field = RGFormsModel::get_field( $form, $field_id );
780 780
 
781
-			if( ! $field ) {
781
+			if ( ! $field ) {
782 782
 				continue;
783 783
 			}
784 784
 
785
-			if( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
785
+			if ( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
786 786
 
787 787
 				// Get the value of the field, including $_POSTed value
788 788
 				$value = RGFormsModel::get_field_value( $field );
789 789
 
790 790
 				// Use temporary entry variable, to make values available to fill_post_template() and update_post_image()
791 791
 				$entry_tmp = $this->entry;
792
-				$entry_tmp["{$field_id}"] = $value;
792
+				$entry_tmp[ "{$field_id}" ] = $value;
793 793
 
794
-				switch( $field->type ) {
794
+				switch ( $field->type ) {
795 795
 
796 796
 				    case 'post_title':
797 797
 				        $post_title = $value;
798 798
 				        if ( \GV\Utils::get( $form, 'postTitleTemplateEnabled' ) ) {
799
-				            $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
799
+				            $post_title = $this->fill_post_template( $form[ 'postTitleTemplate' ], $form, $entry_tmp );
800 800
 				        }
801 801
 				        $updated_post->post_title = $post_title;
802 802
 				        $updated_post->post_name  = $post_title;
@@ -806,7 +806,7 @@  discard block
 block discarded – undo
806 806
 				    case 'post_content':
807 807
 				        $post_content = $value;
808 808
 				        if ( \GV\Utils::get( $form, 'postContentTemplateEnabled' ) ) {
809
-				            $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
809
+				            $post_content = $this->fill_post_template( $form[ 'postContentTemplate' ], $form, $entry_tmp, true );
810 810
 				        }
811 811
 				        $updated_post->post_content = $post_content;
812 812
 				        unset( $post_content );
@@ -824,11 +824,11 @@  discard block
 block discarded – undo
824 824
 							$value = $value[ $field_id ];
825 825
 						}
826 826
 
827
-				        if( ! empty( $field->customFieldTemplateEnabled ) ) {
827
+				        if ( ! empty( $field->customFieldTemplateEnabled ) ) {
828 828
 				            $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
829 829
 				        }
830 830
 
831
-						$value = $field->get_value_save_entry( $value, $form, '', $this->entry['id'], $this->entry );
831
+						$value = $field->get_value_save_entry( $value, $form, '', $this->entry[ 'id' ], $this->entry );
832 832
 
833 833
 				        update_post_meta( $post_id, $field->postCustomFieldName, $value );
834 834
 				        break;
@@ -840,7 +840,7 @@  discard block
 block discarded – undo
840 840
 				}
841 841
 
842 842
 				// update entry after
843
-				$this->entry["{$field_id}"] = $value;
843
+				$this->entry[ "{$field_id}" ] = $value;
844 844
 
845 845
 				$update_entry = true;
846 846
 
@@ -849,11 +849,11 @@  discard block
 block discarded – undo
849 849
 
850 850
 		}
851 851
 
852
-		if( $update_entry ) {
852
+		if ( $update_entry ) {
853 853
 
854 854
 			$return_entry = GFAPI::update_entry( $this->entry );
855 855
 
856
-			if( is_wp_error( $return_entry ) ) {
856
+			if ( is_wp_error( $return_entry ) ) {
857 857
 				gravityview()->log->error( 'Updating the entry post fields failed', array( 'data' => array( '$this->entry' => $this->entry, '$return_entry' => $return_entry ) ) );
858 858
 			} else {
859 859
 				gravityview()->log->debug( 'Updating the entry post fields for post #{post_id} succeeded', array( 'post_id' => $post_id ) );
@@ -863,7 +863,7 @@  discard block
 block discarded – undo
863 863
 
864 864
 		$return_post = wp_update_post( $updated_post, true );
865 865
 
866
-		if( is_wp_error( $return_post ) ) {
866
+		if ( is_wp_error( $return_post ) ) {
867 867
 			$return_post->add_data( $updated_post, '$updated_post' );
868 868
 			gravityview()->log->error( 'Updating the post content failed', array( 'data' => compact( 'updated_post', 'return_post' ) ) );
869 869
 		} else {
@@ -897,7 +897,7 @@  discard block
 block discarded – undo
897 897
 		$output = GFCommon::replace_variables( $output, $form, $entry, false, false, false );
898 898
 
899 899
 		// replace conditional shortcodes
900
-		if( $do_shortcode ) {
900
+		if ( $do_shortcode ) {
901 901
 			$output = do_shortcode( $output );
902 902
 		}
903 903
 
@@ -916,19 +916,19 @@  discard block
 block discarded – undo
916 916
 	 */
917 917
 	private function after_update() {
918 918
 
919
-		do_action( 'gform_after_update_entry', self::$original_form, $this->entry['id'], self::$original_entry );
920
-		do_action( "gform_after_update_entry_{$this->form['id']}", self::$original_form, $this->entry['id'], self::$original_entry );
919
+		do_action( 'gform_after_update_entry', self::$original_form, $this->entry[ 'id' ], self::$original_entry );
920
+		do_action( "gform_after_update_entry_{$this->form[ 'id' ]}", self::$original_form, $this->entry[ 'id' ], self::$original_entry );
921 921
 
922 922
 		// Re-define the entry now that we've updated it.
923
-		$entry = RGFormsModel::get_lead( $this->entry['id'] );
923
+		$entry = RGFormsModel::get_lead( $this->entry[ 'id' ] );
924 924
 
925 925
 		$entry = GFFormsModel::set_entry_meta( $entry, self::$original_form );
926 926
 
927 927
 		if ( version_compare( GFFormsModel::get_database_version(), '2.3-dev-1', '<' ) ) {
928 928
 			// We need to clear the cache because Gravity Forms caches the field values, which
929 929
 			// we have just updated.
930
-			foreach ($this->form['fields'] as $key => $field) {
931
-				GFFormsModel::refresh_lead_field_value( $entry['id'], $field->id );
930
+			foreach ( $this->form[ 'fields' ] as $key => $field ) {
931
+				GFFormsModel::refresh_lead_field_value( $entry[ 'id' ], $field->id );
932 932
 			}
933 933
 		}
934 934
 
@@ -938,11 +938,11 @@  discard block
 block discarded – undo
938 938
 		 * @since develop
939 939
 		 */
940 940
 		if ( $allowed_feeds = $this->view->settings->get( 'edit_feeds', array() ) ) {
941
-			$feeds = GFAPI::get_feeds( null, $entry['form_id'] );
941
+			$feeds = GFAPI::get_feeds( null, $entry[ 'form_id' ] );
942 942
 			if ( ! is_wp_error( $feeds ) ) {
943 943
 				$registered_feeds = array();
944 944
 				foreach ( GFAddOn::get_registered_addons() as $registered_feed ) {
945
-					if ( is_subclass_of( $registered_feed,  'GFFeedAddOn' ) ) {
945
+					if ( is_subclass_of( $registered_feed, 'GFFeedAddOn' ) ) {
946 946
 						if ( method_exists( $registered_feed, 'get_instance' ) ) {
947 947
 							$registered_feed = call_user_func( array( $registered_feed, 'get_instance' ) );
948 948
 							$registered_feeds[ $registered_feed->get_slug() ] = $registered_feed;
@@ -950,8 +950,8 @@  discard block
 block discarded – undo
950 950
 					}
951 951
 				}
952 952
 				foreach ( $feeds as $feed ) {
953
-					if ( in_array( $feed['id'], $allowed_feeds ) ) {
954
-						if ( $feed_object = \GV\Utils::get( $registered_feeds, $feed['addon_slug'] ) ) {
953
+					if ( in_array( $feed[ 'id' ], $allowed_feeds ) ) {
954
+						if ( $feed_object = \GV\Utils::get( $registered_feeds, $feed[ 'addon_slug' ] ) ) {
955 955
 							$returned_entry = $feed_object->process_feed( $feed, $entry, self::$original_form );
956 956
 							if ( is_array( $returned_entry ) && rgar( $returned_entry, 'id' ) ) {
957 957
 								$entry = $returned_entry;
@@ -978,7 +978,7 @@  discard block
 block discarded – undo
978 978
 	public function edit_entry_form() {
979 979
 
980 980
 		$locking = new GravityView_Edit_Entry_Locking;
981
-		$locking->maybe_lock_object( $this->entry['id'] );
981
+		$locking->maybe_lock_object( $this->entry[ 'id' ] );
982 982
 
983 983
 		?>
984 984
 
@@ -988,7 +988,7 @@  discard block
 block discarded – undo
988 988
 		</script>
989 989
 
990 990
 		<div class="gv-edit-entry-wrapper"><?php
991
-			$javascript = gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/inline-javascript.php', $this );
991
+			$javascript = gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/inline-javascript.php', $this );
992 992
 
993 993
 			/**
994 994
 			 * Fixes weird wpautop() issue
@@ -1004,7 +1004,7 @@  discard block
 block discarded – undo
1004 1004
 				     * @param string $edit_entry_title Modify the "Edit Entry" title
1005 1005
 				     * @param GravityView_Edit_Entry_Render $this This object
1006 1006
 				     */
1007
-				    $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
1007
+				    $edit_entry_title = apply_filters( 'gravityview_edit_entry_title', __( 'Edit Entry', 'gravityview' ), $this );
1008 1008
 
1009 1009
 				    echo esc_attr( $edit_entry_title );
1010 1010
 			?></span>
@@ -1070,18 +1070,18 @@  discard block
 block discarded – undo
1070 1070
 				*/
1071 1071
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1072 1072
 
1073
-				$this->is_paged_submitted = \GV\Utils::_POST( 'save' ) === $labels['submit'];
1073
+				$this->is_paged_submitted = \GV\Utils::_POST( 'save' ) === $labels[ 'submit' ];
1074 1074
 			}
1075 1075
 
1076 1076
 			$back_link = remove_query_arg( array( 'page', 'view', 'edit' ) );
1077 1077
 
1078
-			if( ! $this->is_valid ){
1078
+			if ( ! $this->is_valid ) {
1079 1079
 
1080 1080
 				// Keeping this compatible with Gravity Forms.
1081
-				$validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>";
1082
-				$message = apply_filters("gform_validation_message_{$this->form['id']}", apply_filters("gform_validation_message", $validation_message, $this->form), $this->form);
1081
+				$validation_message = "<div class='validation_error'>" . __( 'There was a problem with your submission.', 'gravityview' ) . " " . __( 'Errors have been highlighted below.', 'gravityview' ) . "</div>";
1082
+				$message = apply_filters( "gform_validation_message_{$this->form[ 'id' ]}", apply_filters( "gform_validation_message", $validation_message, $this->form ), $this->form );
1083 1083
 
1084
-				echo GVCommon::generate_notice( $message , 'gv-error' );
1084
+				echo GVCommon::generate_notice( $message, 'gv-error' );
1085 1085
 
1086 1086
 			} elseif ( false === $this->is_paged_submitted ) {
1087 1087
 				// Paged form that hasn't been submitted on the last page yet
@@ -1094,7 +1094,7 @@  discard block
 block discarded – undo
1094 1094
 				 * @param int $view_id View ID
1095 1095
 				 * @param array $entry Gravity Forms entry array
1096 1096
 				 */
1097
-				$message = apply_filters( 'gravityview/edit_entry/page/success', $entry_updated_message , $this->view_id, $this->entry );
1097
+				$message = apply_filters( 'gravityview/edit_entry/page/success', $entry_updated_message, $this->view_id, $this->entry );
1098 1098
 
1099 1099
 				echo GVCommon::generate_notice( $message );
1100 1100
 			} else {
@@ -1106,23 +1106,23 @@  discard block
 block discarded – undo
1106 1106
 
1107 1107
                     case '0':
1108 1108
 	                    $redirect_url = $back_link;
1109
-	                    $entry_updated_message = sprintf( esc_attr_x('Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview'), '<a href="'. esc_url( $redirect_url ) .'">', '</a>' );
1109
+	                    $entry_updated_message = sprintf( esc_attr_x( 'Entry Updated. %sReturning to Entry%s', 'Replacements are HTML', 'gravityview' ), '<a href="' . esc_url( $redirect_url ) . '">', '</a>' );
1110 1110
                         break;
1111 1111
 
1112 1112
                     case '1':
1113 1113
 	                    $redirect_url = $directory_link = GravityView_API::directory_link();
1114
-	                    $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>' );
1114
+	                    $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>' );
1115 1115
 	                    break;
1116 1116
 
1117 1117
                     case '2':
1118 1118
 	                    $redirect_url = $edit_redirect_url;
1119 1119
 	                    $redirect_url = GFCommon::replace_variables( $redirect_url, $this->form, $this->entry, false, false, false, 'text' );
1120
-	                    $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>' );
1120
+	                    $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>' );
1121 1121
                         break;
1122 1122
 
1123 1123
                     case '':
1124 1124
                     default:
1125
-					    $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. esc_url( $back_link ) .'">', '</a>' );
1125
+					    $entry_updated_message = sprintf( esc_attr__( 'Entry Updated. %sReturn to Entry%s', 'gravityview' ), '<a href="' . esc_url( $back_link ) . '">', '</a>' );
1126 1126
                         break;
1127 1127
 				}
1128 1128
 
@@ -1138,7 +1138,7 @@  discard block
 block discarded – undo
1138 1138
 				 * @param array $entry Gravity Forms entry array
1139 1139
 				 * @param string $back_link URL to return to the original entry. @since 1.6
1140 1140
 				 */
1141
-				$message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message , $this->view_id, $this->entry, $back_link );
1141
+				$message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message, $this->view_id, $this->entry, $back_link );
1142 1142
 
1143 1143
 				echo GVCommon::generate_notice( $message );
1144 1144
 			}
@@ -1162,8 +1162,8 @@  discard block
 block discarded – undo
1162 1162
 		 */
1163 1163
 		do_action( 'gravityview/edit-entry/render/before', $this );
1164 1164
 
1165
-		add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields'), 5000, 3 );
1166
-		add_filter( 'gform_submit_button', array( $this, 'render_form_buttons') );
1165
+		add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000, 3 );
1166
+		add_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) );
1167 1167
 		add_filter( 'gform_next_button', array( $this, 'render_form_buttons' ) );
1168 1168
 		add_filter( 'gform_previous_button', array( $this, 'render_form_buttons' ) );
1169 1169
 		add_filter( 'gform_disable_view_counter', '__return_true' );
@@ -1172,14 +1172,14 @@  discard block
 block discarded – undo
1172 1172
 		add_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10, 5 );
1173 1173
 
1174 1174
 		// We need to remove the fake $_GET['page'] arg to avoid rendering form as if in admin.
1175
-		unset( $_GET['page'] );
1175
+		unset( $_GET[ 'page' ] );
1176 1176
 
1177 1177
 		$this->show_next_button = false;
1178 1178
 		$this->show_previous_button = false;
1179 1179
 
1180 1180
 		// TODO: Verify multiple-page forms
1181 1181
 		if ( GFCommon::has_pages( $this->form ) && apply_filters( 'gravityview/features/paged-edit', false ) ) {
1182
-			if ( intval( $page_number = \GV\Utils::_POST( 'gform_source_page_number_' . $this->form['id'], 0 ) ) ) {
1182
+			if ( intval( $page_number = \GV\Utils::_POST( 'gform_source_page_number_' . $this->form[ 'id' ], 0 ) ) ) {
1183 1183
 
1184 1184
 				$labels = array(
1185 1185
 					'cancel'   => __( 'Cancel', 'gravityview' ),
@@ -1198,16 +1198,16 @@  discard block
 block discarded – undo
1198 1198
 				*/
1199 1199
 				$labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $this->form, $this->entry, $this->view_id );
1200 1200
 
1201
-				GFFormDisplay::$submission[ $this->form['id'] ][ 'form' ] = $this->form;
1202
-				GFFormDisplay::$submission[ $this->form['id'] ][ 'is_valid' ] = true;
1201
+				GFFormDisplay::$submission[ $this->form[ 'id' ] ][ 'form' ] = $this->form;
1202
+				GFFormDisplay::$submission[ $this->form[ 'id' ] ][ 'is_valid' ] = true;
1203 1203
 
1204
-				if ( \GV\Utils::_POST( 'save' ) === $labels['next'] ) {
1204
+				if ( \GV\Utils::_POST( 'save' ) === $labels[ 'next' ] ) {
1205 1205
 					$page_number++;
1206
-				} elseif ( \GV\Utils::_POST( 'save' ) === $labels['previous'] ) {
1206
+				} elseif ( \GV\Utils::_POST( 'save' ) === $labels[ 'previous' ] ) {
1207 1207
 					$page_number--;
1208 1208
 				}
1209 1209
 
1210
-				GFFormDisplay::$submission[ $this->form['id'] ][ 'page_number' ] = $page_number;
1210
+				GFFormDisplay::$submission[ $this->form[ 'id' ] ][ 'page_number' ] = $page_number;
1211 1211
 			}
1212 1212
 
1213 1213
 			if ( ( $page_number = intval( $page_number ) ) < 2 ) {
@@ -1233,7 +1233,7 @@  discard block
 block discarded – undo
1233 1233
 
1234 1234
 		ob_start(); // Prevent PHP warnings possibly caused by prefilling list fields for conditional logic
1235 1235
 
1236
-		$html = GFFormDisplay::get_form( $this->form['id'], false, false, true, $this->entry );
1236
+		$html = GFFormDisplay::get_form( $this->form[ 'id' ], false, false, true, $this->entry );
1237 1237
 
1238 1238
 		ob_get_clean();
1239 1239
 
@@ -1261,7 +1261,7 @@  discard block
 block discarded – undo
1261 1261
 	 * @return string
1262 1262
 	 */
1263 1263
 	public function render_form_buttons() {
1264
-		return gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/form-buttons.php', $this );
1264
+		return gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/form-buttons.php', $this );
1265 1265
 	}
1266 1266
 
1267 1267
 
@@ -1280,15 +1280,15 @@  discard block
 block discarded – undo
1280 1280
 	 */
1281 1281
 	public function filter_modify_form_fields( $form, $ajax = false, $field_values = '' ) {
1282 1282
 
1283
-		if( $form['id'] != $this->form_id ) {
1283
+		if ( $form[ 'id' ] != $this->form_id ) {
1284 1284
 			return $form;
1285 1285
 		}
1286 1286
 
1287 1287
 		// In case we have validated the form, use it to inject the validation results into the form render
1288
-		if( isset( $this->form_after_validation ) && $this->form_after_validation['id'] === $form['id'] ) {
1288
+		if ( isset( $this->form_after_validation ) && $this->form_after_validation[ 'id' ] === $form[ 'id' ] ) {
1289 1289
 			$form = $this->form_after_validation;
1290 1290
 		} else {
1291
-			$form['fields'] = $this->get_configured_edit_fields( $form, $this->view_id );
1291
+			$form[ 'fields' ] = $this->get_configured_edit_fields( $form, $this->view_id );
1292 1292
 		}
1293 1293
 
1294 1294
 		$form = $this->filter_conditional_logic( $form );
@@ -1296,8 +1296,8 @@  discard block
 block discarded – undo
1296 1296
 		$form = $this->prefill_conditional_logic( $form );
1297 1297
 
1298 1298
 		// for now we don't support Save and Continue feature.
1299
-		if( ! self::$supports_save_and_continue ) {
1300
-	        unset( $form['save'] );
1299
+		if ( ! self::$supports_save_and_continue ) {
1300
+	        unset( $form[ 'save' ] );
1301 1301
 		}
1302 1302
 
1303 1303
 		$form = $this->unselect_default_values( $form );
@@ -1320,31 +1320,31 @@  discard block
 block discarded – undo
1320 1320
 	 */
1321 1321
 	public function verify_user_can_edit_post( $field_content = '', $field, $value, $lead_id = 0, $form_id ) {
1322 1322
 
1323
-		if( ! GFCommon::is_post_field( $field ) ) {
1323
+		if ( ! GFCommon::is_post_field( $field ) ) {
1324 1324
 			return $field_content;
1325 1325
 		}
1326 1326
 
1327 1327
         $message = null;
1328 1328
 
1329 1329
         // First, make sure they have the capability to edit the post.
1330
-        if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1330
+        if ( false === current_user_can( 'edit_post', $this->entry[ 'post_id' ] ) ) {
1331 1331
 
1332 1332
             /**
1333 1333
              * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1334 1334
              * @param string $message The existing "You don't have permission..." text
1335 1335
              */
1336
-            $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1336
+            $message = apply_filters( 'gravityview/edit_entry/unsupported_post_field_text', __( 'You don&rsquo;t have permission to edit this post.', 'gravityview' ) );
1337 1337
 
1338
-        } elseif( null === get_post( $this->entry['post_id'] ) ) {
1338
+        } elseif ( null === get_post( $this->entry[ 'post_id' ] ) ) {
1339 1339
             /**
1340 1340
              * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1341 1341
              * @param string $message The existing "This field is not editable; the post no longer exists." text
1342 1342
              */
1343
-            $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1343
+            $message = apply_filters( 'gravityview/edit_entry/no_post_text', __( 'This field is not editable; the post no longer exists.', 'gravityview' ) );
1344 1344
         }
1345 1345
 
1346
-        if( $message ) {
1347
-            $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1346
+        if ( $message ) {
1347
+            $field_content = sprintf( '<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1348 1348
         }
1349 1349
 
1350 1350
         return $field_content;
@@ -1368,8 +1368,8 @@  discard block
 block discarded – undo
1368 1368
 
1369 1369
 		// If the form has been submitted, then we don't need to pre-fill the values,
1370 1370
 		// Except for fileupload type and when a field input is overridden- run always!!
1371
-		if(
1372
-			( $this->is_edit_entry_submission() && !in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1371
+		if (
1372
+			( $this->is_edit_entry_submission() && ! in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1373 1373
 			&& false === ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) )
1374 1374
 			&& ! GFCommon::is_product_field( $field->type )
1375 1375
 			|| ! empty( $field_content )
@@ -1389,7 +1389,7 @@  discard block
 block discarded – undo
1389 1389
 	    $return = null;
1390 1390
 
1391 1391
 		/** @var GravityView_Field $gv_field */
1392
-		if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1392
+		if ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1393 1393
 			$return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field );
1394 1394
 		} else {
1395 1395
 	        $return = $field->get_field_input( $this->form, $field_value, $this->entry );
@@ -1398,7 +1398,7 @@  discard block
 block discarded – undo
1398 1398
 	    // If there was output, it's an error
1399 1399
 	    $warnings = ob_get_clean();
1400 1400
 
1401
-	    if( !empty( $warnings ) ) {
1401
+	    if ( ! empty( $warnings ) ) {
1402 1402
 		    gravityview()->log->error( '{warning}', array( 'warning' => $warnings, 'data' => $field_value ) );
1403 1403
 	    }
1404 1404
 
@@ -1423,7 +1423,7 @@  discard block
 block discarded – undo
1423 1423
 		$override_saved_value = apply_filters( 'gravityview/edit_entry/pre_populate/override', false, $field );
1424 1424
 
1425 1425
 		// We're dealing with multiple inputs (e.g. checkbox) but not time or date (as it doesn't store data in input IDs)
1426
-		if( isset( $field->inputs ) && is_array( $field->inputs ) && !in_array( $field->type, array( 'time', 'date' ) ) ) {
1426
+		if ( isset( $field->inputs ) && is_array( $field->inputs ) && ! in_array( $field->type, array( 'time', 'date' ) ) ) {
1427 1427
 
1428 1428
 			$field_value = array();
1429 1429
 
@@ -1432,10 +1432,10 @@  discard block
 block discarded – undo
1432 1432
 
1433 1433
 			foreach ( (array)$field->inputs as $input ) {
1434 1434
 
1435
-				$input_id = strval( $input['id'] );
1435
+				$input_id = strval( $input[ 'id' ] );
1436 1436
 
1437 1437
 				if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) {
1438
-				    $field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1438
+				    $field_value[ $input_id ] = 'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1439 1439
 				    $allow_pre_populated = false;
1440 1440
 				}
1441 1441
 
@@ -1443,7 +1443,7 @@  discard block
 block discarded – undo
1443 1443
 
1444 1444
 			$pre_value = $field->get_value_submission( array(), false );
1445 1445
 
1446
-			$field_value = ! $allow_pre_populated && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1446
+			$field_value = ! $allow_pre_populated && ! ( $override_saved_value && ! gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1447 1447
 
1448 1448
 		} else {
1449 1449
 
@@ -1454,13 +1454,13 @@  discard block
 block discarded – undo
1454 1454
 
1455 1455
 			// saved field entry value (if empty, fallback to the pre-populated value, if exists)
1456 1456
 			// or pre-populated value if not empty and set to override saved value
1457
-			$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;
1457
+			$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;
1458 1458
 
1459 1459
 			// in case field is post_category but inputType is select, multi-select or radio, convert value into array of category IDs.
1460
-			if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) {
1460
+			if ( 'post_category' === $field->type && ! gv_empty( $field_value, false, false ) ) {
1461 1461
 				$categories = array();
1462 1462
 				foreach ( explode( ',', $field_value ) as $cat_string ) {
1463
-				    $categories[] = GFCommon::format_post_category( $cat_string, true );
1463
+				    $categories[ ] = GFCommon::format_post_category( $cat_string, true );
1464 1464
 				}
1465 1465
 				$field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories );
1466 1466
 			}
@@ -1488,7 +1488,7 @@  discard block
 block discarded – undo
1488 1488
 	     * @param GF_Field $field Gravity Forms field object
1489 1489
 	     * @param GravityView_Edit_Entry_Render $this Current object
1490 1490
 	     */
1491
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1491
+	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type, $field_value, $field, $this );
1492 1492
 
1493 1493
 		return $field_value;
1494 1494
 	}
@@ -1505,12 +1505,12 @@  discard block
 block discarded – undo
1505 1505
 	 */
1506 1506
 	public function gform_pre_validation( $form ) {
1507 1507
 
1508
-		if( ! $this->verify_nonce() ) {
1508
+		if ( ! $this->verify_nonce() ) {
1509 1509
 			return $form;
1510 1510
 		}
1511 1511
 
1512 1512
 		// Fix PHP warning regarding undefined index.
1513
-		foreach ( $form['fields'] as &$field) {
1513
+		foreach ( $form[ 'fields' ] as &$field ) {
1514 1514
 
1515 1515
 			// This is because we're doing admin form pretending to be front-end, so Gravity Forms
1516 1516
 			// expects certain field array items to be set.
@@ -1518,7 +1518,7 @@  discard block
 block discarded – undo
1518 1518
 	            $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1519 1519
 			}
1520 1520
 
1521
-			switch( RGFormsModel::get_input_type( $field ) ) {
1521
+			switch ( RGFormsModel::get_input_type( $field ) ) {
1522 1522
 
1523 1523
 				/**
1524 1524
 				 * 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.
@@ -1532,26 +1532,26 @@  discard block
 block discarded – undo
1532 1532
 				    // Set the previous value
1533 1533
 				    $entry = $this->get_entry();
1534 1534
 
1535
-				    $input_name = 'input_'.$field->id;
1536
-				    $form_id = $form['id'];
1535
+				    $input_name = 'input_' . $field->id;
1536
+				    $form_id = $form[ 'id' ];
1537 1537
 
1538 1538
 				    $value = NULL;
1539 1539
 
1540 1540
 				    // Use the previous entry value as the default.
1541
-				    if( isset( $entry[ $field->id ] ) ) {
1541
+				    if ( isset( $entry[ $field->id ] ) ) {
1542 1542
 				        $value = $entry[ $field->id ];
1543 1543
 				    }
1544 1544
 
1545 1545
 				    // If this is a single upload file
1546
-				    if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1547
-				        $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1548
-				        $value = $file_path['url'];
1546
+				    if ( ! empty( $_FILES[ $input_name ] ) && ! empty( $_FILES[ $input_name ][ 'name' ] ) ) {
1547
+				        $file_path = GFFormsModel::get_file_upload_path( $form[ 'id' ], $_FILES[ $input_name ][ 'name' ] );
1548
+				        $value = $file_path[ 'url' ];
1549 1549
 
1550 1550
 				    } else {
1551 1551
 
1552 1552
 				        // Fix PHP warning on line 1498 of form_display.php for post_image fields
1553 1553
 				        // Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1554
-				        $_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1554
+				        $_FILES[ $input_name ] = array( 'name' => '', 'size' => '' );
1555 1555
 
1556 1556
 				    }
1557 1557
 
@@ -1559,10 +1559,10 @@  discard block
 block discarded – undo
1559 1559
 
1560 1560
 				        // If there are fresh uploads, process and merge them.
1561 1561
 				        // Otherwise, use the passed values, which should be json-encoded array of URLs
1562
-				        if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1562
+				        if ( isset( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) {
1563 1563
 				            $value = empty( $value ) ? '[]' : $value;
1564 1564
 				            $value = stripslashes_deep( $value );
1565
-				            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1565
+				            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ], array() );
1566 1566
 				        }
1567 1567
 
1568 1568
 				    } else {
@@ -1580,8 +1580,8 @@  discard block
 block discarded – undo
1580 1580
 
1581 1581
 				case 'number':
1582 1582
 				    // Fix "undefined index" issue at line 1286 in form_display.php
1583
-				    if( !isset( $_POST['input_'.$field->id ] ) ) {
1584
-				        $_POST['input_'.$field->id ] = NULL;
1583
+				    if ( ! isset( $_POST[ 'input_' . $field->id ] ) ) {
1584
+				        $_POST[ 'input_' . $field->id ] = NULL;
1585 1585
 				    }
1586 1586
 				    break;
1587 1587
 			}
@@ -1618,7 +1618,7 @@  discard block
 block discarded – undo
1618 1618
 		 * You can enter whatever you want!
1619 1619
 		 * We try validating, and customize the results using `self::custom_validation()`
1620 1620
 		 */
1621
-		add_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10, 4);
1621
+		add_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10, 4 );
1622 1622
 
1623 1623
 		// Needed by the validate funtion
1624 1624
 		$failed_validation_page = NULL;
@@ -1626,14 +1626,14 @@  discard block
 block discarded – undo
1626 1626
 
1627 1627
 		// Prevent entry limit from running when editing an entry, also
1628 1628
 		// prevent form scheduling from preventing editing
1629
-		unset( $this->form['limitEntries'], $this->form['scheduleForm'] );
1629
+		unset( $this->form[ 'limitEntries' ], $this->form[ 'scheduleForm' ] );
1630 1630
 
1631 1631
 		// Hide fields depending on Edit Entry settings
1632
-		$this->form['fields'] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1632
+		$this->form[ 'fields' ] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1633 1633
 
1634 1634
 		$this->is_valid = GFFormDisplay::validate( $this->form, $field_values, 1, $failed_validation_page );
1635 1635
 
1636
-		remove_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10 );
1636
+		remove_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10 );
1637 1637
 	}
1638 1638
 
1639 1639
 
@@ -1656,7 +1656,7 @@  discard block
 block discarded – undo
1656 1656
 
1657 1657
 		$gv_valid = true;
1658 1658
 
1659
-		foreach ( $validation_results['form']['fields'] as $key => &$field ) {
1659
+		foreach ( $validation_results[ 'form' ][ 'fields' ] as $key => &$field ) {
1660 1660
 
1661 1661
 			$value = RGFormsModel::get_field_value( $field );
1662 1662
 			$field_type = RGFormsModel::get_input_type( $field );
@@ -1669,22 +1669,22 @@  discard block
 block discarded – undo
1669 1669
 				case 'post_image':
1670 1670
 
1671 1671
 				    // in case nothing is uploaded but there are already files saved
1672
-				    if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1672
+				    if ( ! empty( $field->failed_validation ) && ! empty( $field->isRequired ) && ! empty( $value ) ) {
1673 1673
 				        $field->failed_validation = false;
1674 1674
 				        unset( $field->validation_message );
1675 1675
 				    }
1676 1676
 
1677 1677
 				    // validate if multi file upload reached max number of files [maxFiles] => 2
1678
-				    if( \GV\Utils::get( $field, 'maxFiles') && \GV\Utils::get( $field, 'multipleFiles') ) {
1678
+				    if ( \GV\Utils::get( $field, 'maxFiles' ) && \GV\Utils::get( $field, 'multipleFiles' ) ) {
1679 1679
 
1680 1680
 				        $input_name = 'input_' . $field->id;
1681 1681
 				        //uploaded
1682
-				        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1682
+				        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] : array();
1683 1683
 
1684 1684
 				        //existent
1685 1685
 				        $entry = $this->get_entry();
1686 1686
 				        $value = NULL;
1687
-				        if( isset( $entry[ $field->id ] ) ) {
1687
+				        if ( isset( $entry[ $field->id ] ) ) {
1688 1688
 				            $value = json_decode( $entry[ $field->id ], true );
1689 1689
 				        }
1690 1690
 
@@ -1692,13 +1692,13 @@  discard block
 block discarded – undo
1692 1692
 				        $count_files = ( is_array( $file_names ) ? count( $file_names ) : 0 ) +
1693 1693
 						               ( is_array( $value ) ? count( $value ) : 0 );
1694 1694
 
1695
-				        if( $count_files > $field->maxFiles ) {
1695
+				        if ( $count_files > $field->maxFiles ) {
1696 1696
 				            $field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1697 1697
 				            $field->failed_validation = 1;
1698 1698
 				            $gv_valid = false;
1699 1699
 
1700 1700
 				            // in case of error make sure the newest upload files are removed from the upload input
1701
-				            GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1701
+				            GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ] = null;
1702 1702
 				        }
1703 1703
 
1704 1704
 				    }
@@ -1709,7 +1709,7 @@  discard block
 block discarded – undo
1709 1709
 			}
1710 1710
 
1711 1711
 			// This field has failed validation.
1712
-			if( !empty( $field->failed_validation ) ) {
1712
+			if ( ! empty( $field->failed_validation ) ) {
1713 1713
 
1714 1714
 				gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Field is invalid.', array( 'data' => array( 'field' => $field, 'value' => $value ) ) );
1715 1715
 
@@ -1727,19 +1727,19 @@  discard block
 block discarded – undo
1727 1727
 				}
1728 1728
 
1729 1729
 				// You can't continue inside a switch, so we do it after.
1730
-				if( empty( $field->failed_validation ) ) {
1730
+				if ( empty( $field->failed_validation ) ) {
1731 1731
 				    continue;
1732 1732
 				}
1733 1733
 
1734 1734
 				// checks if the No Duplicates option is not validating entry against itself, since
1735 1735
 				// we're editing a stored entry, it would also assume it's a duplicate.
1736
-				if( !empty( $field->noDuplicates ) ) {
1736
+				if ( ! empty( $field->noDuplicates ) ) {
1737 1737
 
1738 1738
 				    $entry = $this->get_entry();
1739 1739
 
1740 1740
 				    // If the value of the entry is the same as the stored value
1741 1741
 				    // Then we can assume it's not a duplicate, it's the same.
1742
-				    if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1742
+				    if ( ! empty( $entry ) && $value == $entry[ $field->id ] ) {
1743 1743
 				        //if value submitted was not changed, then don't validate
1744 1744
 				        $field->failed_validation = false;
1745 1745
 
@@ -1752,7 +1752,7 @@  discard block
 block discarded – undo
1752 1752
 				}
1753 1753
 
1754 1754
 				// if here then probably we are facing the validation 'At least one field must be filled out'
1755
-				if( GFFormDisplay::is_empty( $field, $this->form_id  ) && empty( $field->isRequired ) ) {
1755
+				if ( GFFormDisplay::is_empty( $field, $this->form_id ) && empty( $field->isRequired ) ) {
1756 1756
 				    unset( $field->validation_message );
1757 1757
 	                $field->validation_message = false;
1758 1758
 				    continue;
@@ -1764,12 +1764,12 @@  discard block
 block discarded – undo
1764 1764
 
1765 1765
 		}
1766 1766
 
1767
-		$validation_results['is_valid'] = $gv_valid;
1767
+		$validation_results[ 'is_valid' ] = $gv_valid;
1768 1768
 
1769 1769
 		gravityview()->log->debug( 'GravityView_Edit_Entry[custom_validation] Validation results.', array( 'data' => $validation_results ) );
1770 1770
 
1771 1771
 		// We'll need this result when rendering the form ( on GFFormDisplay::get_form )
1772
-		$this->form_after_validation = $validation_results['form'];
1772
+		$this->form_after_validation = $validation_results[ 'form' ];
1773 1773
 
1774 1774
 		return $validation_results;
1775 1775
 	}
@@ -1782,7 +1782,7 @@  discard block
 block discarded – undo
1782 1782
 	 */
1783 1783
 	public function get_entry() {
1784 1784
 
1785
-		if( empty( $this->entry ) ) {
1785
+		if ( empty( $this->entry ) ) {
1786 1786
 			// Get the database value of the entry that's being edited
1787 1787
 			$this->entry = gravityview_get_entry( GravityView_frontend::is_single_entry() );
1788 1788
 		}
@@ -1814,10 +1814,10 @@  discard block
 block discarded – undo
1814 1814
 		}
1815 1815
 
1816 1816
 		// If edit tab not yet configured, show all fields
1817
-		$edit_fields = !empty( $properties['edit_edit-fields'] ) ? $properties['edit_edit-fields'] : NULL;
1817
+		$edit_fields = ! empty( $properties[ 'edit_edit-fields' ] ) ? $properties[ 'edit_edit-fields' ] : NULL;
1818 1818
 
1819 1819
 		// Hide fields depending on admin settings
1820
-		$fields = $this->filter_fields( $form['fields'], $edit_fields );
1820
+		$fields = $this->filter_fields( $form[ 'fields' ], $edit_fields );
1821 1821
 
1822 1822
 	    // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1823 1823
 	    $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
@@ -1850,7 +1850,7 @@  discard block
 block discarded – undo
1850 1850
 	 */
1851 1851
 	private function filter_fields( $fields, $configured_fields ) {
1852 1852
 
1853
-		if( empty( $fields ) || !is_array( $fields ) ) {
1853
+		if ( empty( $fields ) || ! is_array( $fields ) ) {
1854 1854
 			return $fields;
1855 1855
 		}
1856 1856
 
@@ -1867,12 +1867,12 @@  discard block
 block discarded – undo
1867 1867
 
1868 1868
 			// Remove the fields that have calculation properties and keep them to be used later
1869 1869
 			// @since 1.16.2
1870
-			if( $field->has_calculation() ) {
1871
-				$this->fields_with_calculation[] = $field;
1870
+			if ( $field->has_calculation() ) {
1871
+				$this->fields_with_calculation[ ] = $field;
1872 1872
 				// don't remove the calculation fields on form render.
1873 1873
 			}
1874 1874
 
1875
-			if( in_array( $field->type, $field_type_blacklist ) ) {
1875
+			if ( in_array( $field->type, $field_type_blacklist ) ) {
1876 1876
 				unset( $fields[ $key ] );
1877 1877
 			}
1878 1878
 		}
@@ -1890,7 +1890,7 @@  discard block
 block discarded – undo
1890 1890
 					continue; // Same
1891 1891
 				}
1892 1892
 
1893
-				$out_fields[] = $field;
1893
+				$out_fields[ ] = $field;
1894 1894
 			}
1895 1895
 
1896 1896
 			return array_values( $out_fields );
@@ -1901,8 +1901,8 @@  discard block
 block discarded – undo
1901 1901
 
1902 1902
 	        /** @var GF_Field $field */
1903 1903
 	        foreach ( $fields as $field ) {
1904
-				if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
1905
-				    $edit_fields[] = $this->merge_field_properties( $field, $configured_field );
1904
+				if ( intval( $configured_field[ 'id' ] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
1905
+				    $edit_fields[ ] = $this->merge_field_properties( $field, $configured_field );
1906 1906
 				    break;
1907 1907
 				}
1908 1908
 
@@ -1925,14 +1925,14 @@  discard block
 block discarded – undo
1925 1925
 
1926 1926
 		$return_field = $field;
1927 1927
 
1928
-		if( empty( $field_setting['show_label'] ) ) {
1928
+		if ( empty( $field_setting[ 'show_label' ] ) ) {
1929 1929
 			$return_field->label = '';
1930
-		} elseif ( !empty( $field_setting['custom_label'] ) ) {
1931
-			$return_field->label = $field_setting['custom_label'];
1930
+		} elseif ( ! empty( $field_setting[ 'custom_label' ] ) ) {
1931
+			$return_field->label = $field_setting[ 'custom_label' ];
1932 1932
 		}
1933 1933
 
1934
-		if( !empty( $field_setting['custom_class'] ) ) {
1935
-			$return_field->cssClass .= ' '. gravityview_sanitize_html_class( $field_setting['custom_class'] );
1934
+		if ( ! empty( $field_setting[ 'custom_class' ] ) ) {
1935
+			$return_field->cssClass .= ' ' . gravityview_sanitize_html_class( $field_setting[ 'custom_class' ] );
1936 1936
 		}
1937 1937
 
1938 1938
 		/**
@@ -1970,16 +1970,16 @@  discard block
 block discarded – undo
1970 1970
 	     */
1971 1971
 	    $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
1972 1972
 
1973
-	    if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
1974
-			foreach( $fields as $k => $field ) {
1975
-				if( $field->adminOnly ) {
1973
+	    if ( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry[ 'id' ] ) ) {
1974
+			foreach ( $fields as $k => $field ) {
1975
+				if ( $field->adminOnly ) {
1976 1976
 				    unset( $fields[ $k ] );
1977 1977
 				}
1978 1978
 			}
1979 1979
 			return array_values( $fields );
1980 1980
 		}
1981 1981
 
1982
-	    foreach( $fields as &$field ) {
1982
+	    foreach ( $fields as &$field ) {
1983 1983
 		    $field->adminOnly = false;
1984 1984
 		}
1985 1985
 
@@ -2000,7 +2000,7 @@  discard block
 block discarded – undo
2000 2000
 	 */
2001 2001
 	private function unselect_default_values( $form ) {
2002 2002
 
2003
-	    foreach ( $form['fields'] as &$field ) {
2003
+	    foreach ( $form[ 'fields' ] as &$field ) {
2004 2004
 
2005 2005
 			if ( empty( $field->choices ) ) {
2006 2006
                 continue;
@@ -2008,7 +2008,7 @@  discard block
 block discarded – undo
2008 2008
 
2009 2009
             foreach ( $field->choices as &$choice ) {
2010 2010
 				if ( \GV\Utils::get( $choice, 'isSelected' ) ) {
2011
-					$choice['isSelected'] = false;
2011
+					$choice[ 'isSelected' ] = false;
2012 2012
 				}
2013 2013
 			}
2014 2014
 		}
@@ -2033,22 +2033,22 @@  discard block
 block discarded – undo
2033 2033
 	 */
2034 2034
 	function prefill_conditional_logic( $form ) {
2035 2035
 
2036
-		if( ! GFFormDisplay::has_conditional_logic( $form ) ) {
2036
+		if ( ! GFFormDisplay::has_conditional_logic( $form ) ) {
2037 2037
 			return $form;
2038 2038
 		}
2039 2039
 
2040 2040
 		// Have Conditional Logic pre-fill fields as if the data were default values
2041 2041
 		/** @var GF_Field $field */
2042
-		foreach ( $form['fields'] as &$field ) {
2042
+		foreach ( $form[ 'fields' ] as &$field ) {
2043 2043
 
2044
-			if( 'checkbox' === $field->type ) {
2044
+			if ( 'checkbox' === $field->type ) {
2045 2045
 				foreach ( $field->get_entry_inputs() as $key => $input ) {
2046
-				    $input_id = $input['id'];
2046
+				    $input_id = $input[ 'id' ];
2047 2047
 				    $choice = $field->choices[ $key ];
2048 2048
 				    $value = \GV\Utils::get( $this->entry, $input_id );
2049 2049
 				    $match = RGFormsModel::choice_value_match( $field, $choice, $value );
2050
-				    if( $match ) {
2051
-				        $field->choices[ $key ]['isSelected'] = true;
2050
+				    if ( $match ) {
2051
+				        $field->choices[ $key ][ 'isSelected' ] = true;
2052 2052
 				    }
2053 2053
 				}
2054 2054
 			} else {
@@ -2056,15 +2056,15 @@  discard block
 block discarded – undo
2056 2056
 				// We need to run through each field to set the default values
2057 2057
 				foreach ( $this->entry as $field_id => $field_value ) {
2058 2058
 
2059
-				    if( floatval( $field_id ) === floatval( $field->id ) ) {
2059
+				    if ( floatval( $field_id ) === floatval( $field->id ) ) {
2060 2060
 
2061
-				        if( 'list' === $field->type ) {
2061
+				        if ( 'list' === $field->type ) {
2062 2062
 				            $list_rows = maybe_unserialize( $field_value );
2063 2063
 
2064 2064
 				            $list_field_value = array();
2065
-				            foreach ( (array) $list_rows as $row ) {
2066
-				                foreach ( (array) $row as $column ) {
2067
-				                    $list_field_value[] = $column;
2065
+				            foreach ( (array)$list_rows as $row ) {
2066
+				                foreach ( (array)$row as $column ) {
2067
+				                    $list_field_value[ ] = $column;
2068 2068
 				                }
2069 2069
 				            }
2070 2070
 
@@ -2097,32 +2097,32 @@  discard block
 block discarded – undo
2097 2097
 		 * @see https://github.com/gravityview/GravityView/issues/840
2098 2098
 		 * @since develop
2099 2099
 		 */
2100
-		$the_form = GFAPI::get_form( $form['id'] );
2100
+		$the_form = GFAPI::get_form( $form[ 'id' ] );
2101 2101
 		$editable_ids = array();
2102
-		foreach ( $form['fields'] as $field ) {
2103
-			$editable_ids[] = $field['id']; // wp_list_pluck is destructive in this context
2102
+		foreach ( $form[ 'fields' ] as $field ) {
2103
+			$editable_ids[ ] = $field[ 'id' ]; // wp_list_pluck is destructive in this context
2104 2104
 		}
2105 2105
 		$remove_conditions_rule = array();
2106
-		foreach ( $the_form['fields'] as $field ) {
2107
-			if ( ! empty( $field->conditionalLogic ) && ! empty( $field->conditionalLogic['rules'] ) ) {
2108
-				foreach ( $field->conditionalLogic['rules'] as $i => $rule ) {
2109
-					if ( ! in_array( $rule['fieldId'], $editable_ids ) ) {
2106
+		foreach ( $the_form[ 'fields' ] as $field ) {
2107
+			if ( ! empty( $field->conditionalLogic ) && ! empty( $field->conditionalLogic[ 'rules' ] ) ) {
2108
+				foreach ( $field->conditionalLogic[ 'rules' ] as $i => $rule ) {
2109
+					if ( ! in_array( $rule[ 'fieldId' ], $editable_ids ) ) {
2110 2110
 						/**
2111 2111
 						 * This conditional field is not editable in this View.
2112 2112
 						 * We need to remove the rule, but only if it matches.
2113 2113
 						 */
2114
-						if ( $_field = GFAPI::get_field( $the_form, $rule['fieldId'] ) ) {
2114
+						if ( $_field = GFAPI::get_field( $the_form, $rule[ 'fieldId' ] ) ) {
2115 2115
 							$value = $_field->get_value_export( $this->entry );
2116
-						} elseif ( isset( $this->entry[ $rule['fieldId'] ] ) ) {
2117
-							$value = $this->entry[ $rule['fieldId'] ];
2116
+						} elseif ( isset( $this->entry[ $rule[ 'fieldId' ] ] ) ) {
2117
+							$value = $this->entry[ $rule[ 'fieldId' ] ];
2118 2118
 						} else {
2119
-							$value = gform_get_meta( $this->entry['id'], $rule['fieldId'] );
2119
+							$value = gform_get_meta( $this->entry[ 'id' ], $rule[ 'fieldId' ] );
2120 2120
 						}
2121 2121
 
2122
-						$match = GFFormsModel::matches_operation( $value, $rule['value'], $rule['operator'] );
2122
+						$match = GFFormsModel::matches_operation( $value, $rule[ 'value' ], $rule[ 'operator' ] );
2123 2123
 						
2124 2124
 						if ( $match ) {
2125
-							$remove_conditions_rule[] = array( $field['id'], $i );
2125
+							$remove_conditions_rule[ ] = array( $field[ 'id' ], $i );
2126 2126
 						}
2127 2127
 					}
2128 2128
 				}
@@ -2130,21 +2130,21 @@  discard block
 block discarded – undo
2130 2130
 		}
2131 2131
 
2132 2132
 		if ( $remove_conditions_rule ) {
2133
-			foreach ( $form['fields'] as &$field ) {
2133
+			foreach ( $form[ 'fields' ] as &$field ) {
2134 2134
 				foreach ( $remove_conditions_rule as $_remove_conditions_r ) {
2135 2135
 
2136 2136
 				    list( $rule_field_id, $rule_i ) = $_remove_conditions_r;
2137 2137
 
2138
-					if ( $field['id'] == $rule_field_id ) {
2139
-						unset( $field->conditionalLogic['rules'][ $rule_i ] );
2140
-						gravityview()->log->debug( 'Removed conditional rule #{rule} for field {field_id}', array( 'rule' => $rule_i, 'field_id' => $field['id'] ) );
2138
+					if ( $field[ 'id' ] == $rule_field_id ) {
2139
+						unset( $field->conditionalLogic[ 'rules' ][ $rule_i ] );
2140
+						gravityview()->log->debug( 'Removed conditional rule #{rule} for field {field_id}', array( 'rule' => $rule_i, 'field_id' => $field[ 'id' ] ) );
2141 2141
 					}
2142 2142
 				}
2143 2143
 			}
2144 2144
 		}
2145 2145
 
2146 2146
 		/** Normalize the indices... */
2147
-		$form['fields'] = array_values( $form['fields'] );
2147
+		$form[ 'fields' ] = array_values( $form[ 'fields' ] );
2148 2148
 
2149 2149
 		/**
2150 2150
 		 * @filter `gravityview/edit_entry/conditional_logic` Should the Edit Entry form use Gravity Forms conditional logic showing/hiding of fields?
@@ -2154,16 +2154,16 @@  discard block
 block discarded – undo
2154 2154
 		 */
2155 2155
 		$use_conditional_logic = apply_filters( 'gravityview/edit_entry/conditional_logic', true, $form );
2156 2156
 
2157
-		if( $use_conditional_logic ) {
2157
+		if ( $use_conditional_logic ) {
2158 2158
 			return $form;
2159 2159
 		}
2160 2160
 
2161
-		foreach( $form['fields'] as &$field ) {
2161
+		foreach ( $form[ 'fields' ] as &$field ) {
2162 2162
 			/* @var GF_Field $field */
2163 2163
 			$field->conditionalLogic = null;
2164 2164
 		}
2165 2165
 
2166
-		unset( $form['button']['conditionalLogic'] );
2166
+		unset( $form[ 'button' ][ 'conditionalLogic' ] );
2167 2167
 
2168 2168
 		return $form;
2169 2169
 
@@ -2180,7 +2180,7 @@  discard block
 block discarded – undo
2180 2180
 	 */
2181 2181
 	public function manage_conditional_logic( $has_conditional_logic, $form ) {
2182 2182
 
2183
-		if( ! $this->is_edit_entry() ) {
2183
+		if ( ! $this->is_edit_entry() ) {
2184 2184
 			return $has_conditional_logic;
2185 2185
 		}
2186 2186
 
@@ -2212,44 +2212,44 @@  discard block
 block discarded – undo
2212 2212
 		 *  2. There are two entries embedded using oEmbed
2213 2213
 		 *  3. One of the entries has just been saved
2214 2214
 		 */
2215
-		if( !empty( $_POST['lid'] ) && !empty( $_GET['entry'] ) && ( $_POST['lid'] !== $_GET['entry'] ) ) {
2215
+		if ( ! empty( $_POST[ 'lid' ] ) && ! empty( $_GET[ 'entry' ] ) && ( $_POST[ 'lid' ] !== $_GET[ 'entry' ] ) ) {
2216 2216
 
2217 2217
 			$error = true;
2218 2218
 
2219 2219
 		}
2220 2220
 
2221
-		if( !empty( $_GET['entry'] ) && (string)$this->entry['id'] !== $_GET['entry'] ) {
2221
+		if ( ! empty( $_GET[ 'entry' ] ) && (string)$this->entry[ 'id' ] !== $_GET[ 'entry' ] ) {
2222 2222
 
2223 2223
 			$error = true;
2224 2224
 
2225
-		} elseif( ! $this->verify_nonce() ) {
2225
+		} elseif ( ! $this->verify_nonce() ) {
2226 2226
 
2227 2227
 			/**
2228 2228
 			 * If the Entry is embedded, there may be two entries on the same page.
2229 2229
 			 * If that's the case, and one is being edited, the other should fail gracefully and not display an error.
2230 2230
 			 */
2231
-			if( GravityView_oEmbed::getInstance()->get_entry_id() ) {
2231
+			if ( GravityView_oEmbed::getInstance()->get_entry_id() ) {
2232 2232
 				$error = true;
2233 2233
 			} else {
2234
-				$error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview');
2234
+				$error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview' );
2235 2235
 			}
2236 2236
 
2237 2237
 		}
2238 2238
 
2239
-		if( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
2240
-			$error = __( 'You do not have permission to edit this entry.', 'gravityview');
2239
+		if ( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
2240
+			$error = __( 'You do not have permission to edit this entry.', 'gravityview' );
2241 2241
 		}
2242 2242
 
2243
-		if( $this->entry['status'] === 'trash' ) {
2244
-			$error = __('You cannot edit the entry; it is in the trash.', 'gravityview' );
2243
+		if ( $this->entry[ 'status' ] === 'trash' ) {
2244
+			$error = __( 'You cannot edit the entry; it is in the trash.', 'gravityview' );
2245 2245
 		}
2246 2246
 
2247 2247
 		// No errors; everything's fine here!
2248
-		if( empty( $error ) ) {
2248
+		if ( empty( $error ) ) {
2249 2249
 			return true;
2250 2250
 		}
2251 2251
 
2252
-		if( $echo && $error !== true ) {
2252
+		if ( $echo && $error !== true ) {
2253 2253
 
2254 2254
 	        $error = esc_html( $error );
2255 2255
 
@@ -2257,10 +2257,10 @@  discard block
 block discarded – undo
2257 2257
 	         * @since 1.9
2258 2258
 	         */
2259 2259
 	        if ( ! empty( $this->entry ) ) {
2260
-		        $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;" ) );
2260
+		        $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;" ) );
2261 2261
 	        }
2262 2262
 
2263
-			echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error');
2263
+			echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error' );
2264 2264
 		}
2265 2265
 
2266 2266
 		gravityview()->log->error( '{error}', array( 'error' => $error ) );
@@ -2280,17 +2280,17 @@  discard block
 block discarded – undo
2280 2280
 
2281 2281
 		$error = NULL;
2282 2282
 
2283
-		if( ! $this->check_user_cap_edit_field( $field ) ) {
2284
-			$error = __( 'You do not have permission to edit this field.', 'gravityview');
2283
+		if ( ! $this->check_user_cap_edit_field( $field ) ) {
2284
+			$error = __( 'You do not have permission to edit this field.', 'gravityview' );
2285 2285
 		}
2286 2286
 
2287 2287
 		// No errors; everything's fine here!
2288
-		if( empty( $error ) ) {
2288
+		if ( empty( $error ) ) {
2289 2289
 			return true;
2290 2290
 		}
2291 2291
 
2292
-		if( $echo ) {
2293
-			echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error');
2292
+		if ( $echo ) {
2293
+			echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error' );
2294 2294
 		}
2295 2295
 
2296 2296
 		gravityview()->log->error( '{error}', array( 'error' => $error ) );
@@ -2311,14 +2311,14 @@  discard block
 block discarded – undo
2311 2311
 	private function check_user_cap_edit_field( $field ) {
2312 2312
 
2313 2313
 		// If they can edit any entries (as defined in Gravity Forms), we're good.
2314
-		if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
2314
+		if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
2315 2315
 			return true;
2316 2316
 		}
2317 2317
 
2318
-		$field_cap = isset( $field['allow_edit_cap'] ) ? $field['allow_edit_cap'] : false;
2318
+		$field_cap = isset( $field[ 'allow_edit_cap' ] ) ? $field[ 'allow_edit_cap' ] : false;
2319 2319
 
2320
-		if( $field_cap ) {
2321
-			return GVCommon::has_cap( $field['allow_edit_cap'] );
2320
+		if ( $field_cap ) {
2321
+			return GVCommon::has_cap( $field[ 'allow_edit_cap' ] );
2322 2322
 		}
2323 2323
 
2324 2324
 		return false;
@@ -2332,17 +2332,17 @@  discard block
 block discarded – undo
2332 2332
 	public function verify_nonce() {
2333 2333
 
2334 2334
 		// Verify form submitted for editing single
2335
-		if( $this->is_edit_entry_submission() ) {
2335
+		if ( $this->is_edit_entry_submission() ) {
2336 2336
 			$valid = wp_verify_nonce( $_POST[ self::$nonce_field ], self::$nonce_field );
2337 2337
 		}
2338 2338
 
2339 2339
 		// Verify
2340
-		else if( ! $this->is_edit_entry() ) {
2340
+		else if ( ! $this->is_edit_entry() ) {
2341 2341
 			$valid = false;
2342 2342
 		}
2343 2343
 
2344 2344
 		else {
2345
-			$valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key );
2345
+			$valid = wp_verify_nonce( $_GET[ 'edit' ], self::$nonce_key );
2346 2346
 		}
2347 2347
 
2348 2348
 		/**
Please login to merge, or discard this patch.