Completed
Push — develop ( 15baf7...d0dd6e )
by
unknown
07:42
created
includes/extensions/edit-entry/class-edit-entry-render.php 2 patches
Indentation   +1547 added lines, -1547 removed lines patch added patch discarded remove patch
@@ -10,20 +10,20 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 if ( ! defined( 'WPINC' ) ) {
13
-    die;
13
+	die;
14 14
 }
15 15
 
16 16
 class GravityView_Edit_Entry_Render {
17 17
 
18
-    /**
19
-     * @var GravityView_Edit_Entry
20
-     */
21
-    protected $loader;
18
+	/**
19
+	 * @var GravityView_Edit_Entry
20
+	 */
21
+	protected $loader;
22 22
 
23 23
 	/**
24 24
 	 * @var string String used to generate unique nonce for the entry/form/view combination. Allows access to edit page.
25 25
 	 */
26
-    static $nonce_key;
26
+	static $nonce_key;
27 27
 
28 28
 	/**
29 29
 	 * @since 1.9
@@ -37,12 +37,12 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	private static $supports_save_and_continue = false;
39 39
 
40
-    /**
41
-     * Gravity Forms entry array
42
-     *
43
-     * @var array
44
-     */
45
-    public $entry;
40
+	/**
41
+	 * Gravity Forms entry array
42
+	 *
43
+	 * @var array
44
+	 */
45
+	public $entry;
46 46
 
47 47
 	/**
48 48
 	 * Gravity Forms entry array (it won't get changed during this class lifecycle)
@@ -51,134 +51,134 @@  discard block
 block discarded – undo
51 51
 	 */
52 52
 	private static $original_entry = array();
53 53
 
54
-    /**
55
-     * Gravity Forms form array (GravityView modifies the content through this class lifecycle)
56
-     *
57
-     * @var array
58
-     */
54
+	/**
55
+	 * Gravity Forms form array (GravityView modifies the content through this class lifecycle)
56
+	 *
57
+	 * @var array
58
+	 */
59 59
 	public $form;
60 60
 
61
-    /**
62
-     * Gravity Forms form array (it won't get changed during this class lifecycle)
63
-     * @since 1.16.2.1
64
-     * @var array
65
-     */
66
-    private static $original_form;
67
-
68
-    /**
69
-     * Gravity Forms form array after the form validation process
70
-     * @since 1.13
71
-     * @var array
72
-     */
61
+	/**
62
+	 * Gravity Forms form array (it won't get changed during this class lifecycle)
63
+	 * @since 1.16.2.1
64
+	 * @var array
65
+	 */
66
+	private static $original_form;
67
+
68
+	/**
69
+	 * Gravity Forms form array after the form validation process
70
+	 * @since 1.13
71
+	 * @var array
72
+	 */
73 73
 	public $form_after_validation = null;
74 74
 
75
-    /**
76
-     * Hold an array of GF field objects that have calculation rules
77
-     * @var array
78
-     */
75
+	/**
76
+	 * Hold an array of GF field objects that have calculation rules
77
+	 * @var array
78
+	 */
79 79
 	public $fields_with_calculation = array();
80 80
 
81
-    /**
82
-     * Gravity Forms form id
83
-     *
84
-     * @var int
85
-     */
81
+	/**
82
+	 * Gravity Forms form id
83
+	 *
84
+	 * @var int
85
+	 */
86 86
 	public $form_id;
87 87
 
88
-    /**
89
-     * ID of the current view
90
-     *
91
-     * @var int
92
-     */
88
+	/**
89
+	 * ID of the current view
90
+	 *
91
+	 * @var int
92
+	 */
93 93
 	public $view_id;
94 94
 
95
-    /**
96
-     * Updated entry is valid (GF Validation object)
97
-     *
98
-     * @var array
99
-     */
95
+	/**
96
+	 * Updated entry is valid (GF Validation object)
97
+	 *
98
+	 * @var array
99
+	 */
100 100
 	public $is_valid = NULL;
101 101
 
102
-    function __construct( GravityView_Edit_Entry $loader ) {
103
-        $this->loader = $loader;
104
-    }
102
+	function __construct( GravityView_Edit_Entry $loader ) {
103
+		$this->loader = $loader;
104
+	}
105 105
 
106
-    function load() {
106
+	function load() {
107 107
 
108
-        /** @define "GRAVITYVIEW_DIR" "../../../" */
109
-        include_once( GRAVITYVIEW_DIR .'includes/class-admin-approve-entries.php' );
108
+		/** @define "GRAVITYVIEW_DIR" "../../../" */
109
+		include_once( GRAVITYVIEW_DIR .'includes/class-admin-approve-entries.php' );
110 110
 
111
-        // Don't display an embedded form when editing an entry
112
-        add_action( 'wp_head', array( $this, 'prevent_render_form' ) );
113
-        add_action( 'wp_footer', array( $this, 'prevent_render_form' ) );
111
+		// Don't display an embedded form when editing an entry
112
+		add_action( 'wp_head', array( $this, 'prevent_render_form' ) );
113
+		add_action( 'wp_footer', array( $this, 'prevent_render_form' ) );
114 114
 
115
-        // Stop Gravity Forms processing what is ours!
116
-        add_filter( 'wp', array( $this, 'prevent_maybe_process_form'), 8 );
115
+		// Stop Gravity Forms processing what is ours!
116
+		add_filter( 'wp', array( $this, 'prevent_maybe_process_form'), 8 );
117 117
 
118
-        add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry') );
118
+		add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry') );
119 119
 
120
-        add_action( 'gravityview_edit_entry', array( $this, 'init' ) );
120
+		add_action( 'gravityview_edit_entry', array( $this, 'init' ) );
121 121
 
122
-        // Disable conditional logic if needed (since 1.9)
123
-        add_filter( 'gform_has_conditional_logic', array( $this, 'manage_conditional_logic' ), 10, 2 );
122
+		// Disable conditional logic if needed (since 1.9)
123
+		add_filter( 'gform_has_conditional_logic', array( $this, 'manage_conditional_logic' ), 10, 2 );
124 124
 
125
-        // Make sure GF doesn't validate max files (since 1.9)
126
-        add_filter( 'gform_plupload_settings', array( $this, 'modify_fileupload_settings' ), 10, 3 );
125
+		// Make sure GF doesn't validate max files (since 1.9)
126
+		add_filter( 'gform_plupload_settings', array( $this, 'modify_fileupload_settings' ), 10, 3 );
127 127
 
128
-        // Add fields expected by GFFormDisplay::validate()
129
-        add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation') );
128
+		// Add fields expected by GFFormDisplay::validate()
129
+		add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation') );
130 130
 
131 131
 		// Fix multiselect value for GF 2.2
132 132
 		add_filter( 'gravityview/edit_entry/field_value_multiselect', array( $this, 'fix_multiselect_value_serialization' ), 10, 3 );
133
-    }
134
-
135
-    /**
136
-     * Don't show any forms embedded on a page when GravityView is in Edit Entry mode
137
-     *
138
-     * Adds a `__return_empty_string` filter on the Gravity Forms shortcode on the `wp_head` action
139
-     * And then removes it on the `wp_footer` action
140
-     *
141
-     * @since 1.16.1
142
-     *
143
-     * @return void
144
-     */
145
-    public function prevent_render_form() {
146
-        if( $this->is_edit_entry() ) {
147
-            if( 'wp_head' === current_filter() ) {
148
-                add_filter( 'gform_shortcode_form', '__return_empty_string' );
149
-            } else {
150
-                remove_filter( 'gform_shortcode_form', '__return_empty_string' );
151
-            }
152
-        }
153
-    }
154
-
155
-    /**
156
-     * Because we're mimicking being a front-end Gravity Forms form while using a Gravity Forms
157
-     * backend form, we need to prevent them from saving twice.
158
-     * @return void
159
-     */
160
-    public function prevent_maybe_process_form() {
161
-
162
-        if( ! empty( $_POST ) ) {
163
-	        do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[prevent_maybe_process_form] $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
164
-        }
165
-
166
-        if( $this->is_edit_entry_submission() ) {
167
-            remove_action( 'wp',  array( 'RGForms', 'maybe_process_form'), 9 );
168
-	        remove_action( 'wp',  array( 'GFForms', 'maybe_process_form'), 9 );
169
-        }
170
-    }
171
-
172
-    /**
173
-     * Is the current page an Edit Entry page?
174
-     * @return boolean
175
-     */
176
-    public function is_edit_entry() {
177
-
178
-        $is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET['edit'] );
179
-
180
-        return ( $is_edit_entry || $this->is_edit_entry_submission() );
181
-    }
133
+	}
134
+
135
+	/**
136
+	 * Don't show any forms embedded on a page when GravityView is in Edit Entry mode
137
+	 *
138
+	 * Adds a `__return_empty_string` filter on the Gravity Forms shortcode on the `wp_head` action
139
+	 * And then removes it on the `wp_footer` action
140
+	 *
141
+	 * @since 1.16.1
142
+	 *
143
+	 * @return void
144
+	 */
145
+	public function prevent_render_form() {
146
+		if( $this->is_edit_entry() ) {
147
+			if( 'wp_head' === current_filter() ) {
148
+				add_filter( 'gform_shortcode_form', '__return_empty_string' );
149
+			} else {
150
+				remove_filter( 'gform_shortcode_form', '__return_empty_string' );
151
+			}
152
+		}
153
+	}
154
+
155
+	/**
156
+	 * Because we're mimicking being a front-end Gravity Forms form while using a Gravity Forms
157
+	 * backend form, we need to prevent them from saving twice.
158
+	 * @return void
159
+	 */
160
+	public function prevent_maybe_process_form() {
161
+
162
+		if( ! empty( $_POST ) ) {
163
+			do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[prevent_maybe_process_form] $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
164
+		}
165
+
166
+		if( $this->is_edit_entry_submission() ) {
167
+			remove_action( 'wp',  array( 'RGForms', 'maybe_process_form'), 9 );
168
+			remove_action( 'wp',  array( 'GFForms', 'maybe_process_form'), 9 );
169
+		}
170
+	}
171
+
172
+	/**
173
+	 * Is the current page an Edit Entry page?
174
+	 * @return boolean
175
+	 */
176
+	public function is_edit_entry() {
177
+
178
+		$is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET['edit'] );
179
+
180
+		return ( $is_edit_entry || $this->is_edit_entry_submission() );
181
+	}
182 182
 
183 183
 	/**
184 184
 	 * Is the current page an Edit Entry page?
@@ -189,173 +189,173 @@  discard block
 block discarded – undo
189 189
 		return !empty( $_POST[ self::$nonce_field ] );
190 190
 	}
191 191
 
192
-    /**
193
-     * When Edit entry view is requested setup the vars
194
-     */
195
-    private function setup_vars() {
196
-        $gravityview_view = GravityView_View::getInstance();
192
+	/**
193
+	 * When Edit entry view is requested setup the vars
194
+	 */
195
+	private function setup_vars() {
196
+		$gravityview_view = GravityView_View::getInstance();
197 197
 
198 198
 
199
-        $entries = $gravityview_view->getEntries();
200
-	    self::$original_entry = $entries[0];
201
-	    $this->entry = $entries[0];
199
+		$entries = $gravityview_view->getEntries();
200
+		self::$original_entry = $entries[0];
201
+		$this->entry = $entries[0];
202 202
 
203
-        self::$original_form = $gravityview_view->getForm();
204
-        $this->form = $gravityview_view->getForm();
205
-        $this->form_id = $gravityview_view->getFormId();
206
-        $this->view_id = $gravityview_view->getViewId();
203
+		self::$original_form = $gravityview_view->getForm();
204
+		$this->form = $gravityview_view->getForm();
205
+		$this->form_id = $gravityview_view->getFormId();
206
+		$this->view_id = $gravityview_view->getViewId();
207 207
 
208
-        self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry['id'] );
209
-    }
208
+		self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry['id'] );
209
+	}
210 210
 
211 211
 
212
-    /**
213
-     * Load required files and trigger edit flow
214
-     *
215
-     * Run when the is_edit_entry returns true.
216
-     *
217
-     * @param GravityView_View_Data $gv_data GravityView Data object
218
-     * @return void
219
-     */
220
-    public function init( $gv_data ) {
212
+	/**
213
+	 * Load required files and trigger edit flow
214
+	 *
215
+	 * Run when the is_edit_entry returns true.
216
+	 *
217
+	 * @param GravityView_View_Data $gv_data GravityView Data object
218
+	 * @return void
219
+	 */
220
+	public function init( $gv_data ) {
221 221
 
222
-        require_once( GFCommon::get_base_path() . '/form_display.php' );
223
-        require_once( GFCommon::get_base_path() . '/entry_detail.php' );
222
+		require_once( GFCommon::get_base_path() . '/form_display.php' );
223
+		require_once( GFCommon::get_base_path() . '/entry_detail.php' );
224 224
 
225
-        $this->setup_vars();
225
+		$this->setup_vars();
226 226
 
227
-        // Multiple Views embedded, don't proceed if nonce fails
227
+		// Multiple Views embedded, don't proceed if nonce fails
228 228
 		$multiple_views = defined( 'GRAVITYVIEW_FUTURE_CORE_LOADED' ) ? gravityview()->views->count() > 1 : $gv_data->has_multiple_views();
229
-        if( $multiple_views && ! wp_verify_nonce( $_GET['edit'], self::$nonce_key ) ) {
230
-            do_action('gravityview_log_error', __METHOD__ . ': Nonce validation failed for the Edit Entry request; returning' );
231
-            return;
232
-        }
229
+		if( $multiple_views && ! wp_verify_nonce( $_GET['edit'], self::$nonce_key ) ) {
230
+			do_action('gravityview_log_error', __METHOD__ . ': Nonce validation failed for the Edit Entry request; returning' );
231
+			return;
232
+		}
233 233
 
234
-        // Sorry, you're not allowed here.
235
-        if( false === $this->user_can_edit_entry( true ) ) {
236
-            do_action('gravityview_log_error', __METHOD__ . ': User is not allowed to edit this entry; returning', $this->entry );
237
-            return;
238
-        }
234
+		// Sorry, you're not allowed here.
235
+		if( false === $this->user_can_edit_entry( true ) ) {
236
+			do_action('gravityview_log_error', __METHOD__ . ': User is not allowed to edit this entry; returning', $this->entry );
237
+			return;
238
+		}
239 239
 
240
-        $this->print_scripts();
240
+		$this->print_scripts();
241 241
 
242
-        $this->process_save();
242
+		$this->process_save();
243 243
 
244
-        $this->edit_entry_form();
244
+		$this->edit_entry_form();
245 245
 
246
-    }
246
+	}
247 247
 
248 248
 
249
-    /**
250
-     * Force Gravity Forms to output scripts as if it were in the admin
251
-     * @return void
252
-     */
253
-    private function print_scripts() {
254
-        $gravityview_view = GravityView_View::getInstance();
249
+	/**
250
+	 * Force Gravity Forms to output scripts as if it were in the admin
251
+	 * @return void
252
+	 */
253
+	private function print_scripts() {
254
+		$gravityview_view = GravityView_View::getInstance();
255 255
 
256
-        wp_register_script( 'gform_gravityforms', GFCommon::get_base_url().'/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
256
+		wp_register_script( 'gform_gravityforms', GFCommon::get_base_url().'/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
257 257
 
258
-        GFFormDisplay::enqueue_form_scripts($gravityview_view->getForm(), false);
258
+		GFFormDisplay::enqueue_form_scripts($gravityview_view->getForm(), false);
259 259
 
260
-        // Sack is required for images
261
-        wp_print_scripts( array( 'sack', 'gform_gravityforms' ) );
262
-    }
260
+		// Sack is required for images
261
+		wp_print_scripts( array( 'sack', 'gform_gravityforms' ) );
262
+	}
263 263
 
264 264
 
265
-    /**
266
-     * Process edit entry form save
267
-     */
268
-    private function process_save() {
265
+	/**
266
+	 * Process edit entry form save
267
+	 */
268
+	private function process_save() {
269 269
 
270
-        if( empty( $_POST ) || ! isset( $_POST['lid'] ) ) {
271
-            return;
272
-        }
270
+		if( empty( $_POST ) || ! isset( $_POST['lid'] ) ) {
271
+			return;
272
+		}
273 273
 
274
-        // Make sure the entry, view, and form IDs are all correct
275
-        $valid = $this->verify_nonce();
274
+		// Make sure the entry, view, and form IDs are all correct
275
+		$valid = $this->verify_nonce();
276 276
 
277
-        if( !$valid ) {
278
-            do_action('gravityview_log_error', __METHOD__ . ' Nonce validation failed.' );
279
-            return;
280
-        }
277
+		if( !$valid ) {
278
+			do_action('gravityview_log_error', __METHOD__ . ' Nonce validation failed.' );
279
+			return;
280
+		}
281 281
 
282
-        if( $this->entry['id'] !== $_POST['lid'] ) {
283
-            do_action('gravityview_log_error', __METHOD__ . ' Entry ID did not match posted entry ID.' );
284
-            return;
285
-        }
282
+		if( $this->entry['id'] !== $_POST['lid'] ) {
283
+			do_action('gravityview_log_error', __METHOD__ . ' Entry ID did not match posted entry ID.' );
284
+			return;
285
+		}
286 286
 
287
-        do_action('gravityview_log_debug', __METHOD__ . ': $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
287
+		do_action('gravityview_log_debug', __METHOD__ . ': $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
288 288
 
289
-        $this->process_save_process_files( $this->form_id );
289
+		$this->process_save_process_files( $this->form_id );
290 290
 
291
-        $this->validate();
291
+		$this->validate();
292 292
 
293
-        if( $this->is_valid ) {
293
+		if( $this->is_valid ) {
294 294
 
295
-            do_action('gravityview_log_debug', __METHOD__ . ': Submission is valid.' );
295
+			do_action('gravityview_log_debug', __METHOD__ . ': Submission is valid.' );
296 296
 
297
-            /**
298
-             * @hack This step is needed to unset the adminOnly from form fields, to add the calculation fields
299
-             */
300
-            $form = $this->form_prepare_for_save();
297
+			/**
298
+			 * @hack This step is needed to unset the adminOnly from form fields, to add the calculation fields
299
+			 */
300
+			$form = $this->form_prepare_for_save();
301 301
 
302
-            /**
303
-             * @hack to avoid the capability validation of the method save_lead for GF 1.9+
304
-             */
305
-            unset( $_GET['page'] );
302
+			/**
303
+			 * @hack to avoid the capability validation of the method save_lead for GF 1.9+
304
+			 */
305
+			unset( $_GET['page'] );
306 306
 
307
-            $date_created = $this->entry['date_created'];
307
+			$date_created = $this->entry['date_created'];
308 308
 
309
-            /**
310
-             * @hack to force Gravity Forms to use $read_value_from_post in GFFormsModel::save_lead()
311
-             * @since 1.17.2
312
-             */
313
-            unset( $this->entry['date_created'] );
309
+			/**
310
+			 * @hack to force Gravity Forms to use $read_value_from_post in GFFormsModel::save_lead()
311
+			 * @since 1.17.2
312
+			 */
313
+			unset( $this->entry['date_created'] );
314 314
 
315
-            GFFormsModel::save_lead( $form, $this->entry );
315
+			GFFormsModel::save_lead( $form, $this->entry );
316 316
 
317
-	        // Delete the values for hidden inputs
318
-	        $this->unset_hidden_field_values();
317
+			// Delete the values for hidden inputs
318
+			$this->unset_hidden_field_values();
319 319
             
320
-            $this->entry['date_created'] = $date_created;
320
+			$this->entry['date_created'] = $date_created;
321 321
 
322
-            // Process calculation fields
323
-            $this->update_calculation_fields();
322
+			// Process calculation fields
323
+			$this->update_calculation_fields();
324 324
 
325
-            // Perform actions normally performed after updating a lead
326
-            $this->after_update();
325
+			// Perform actions normally performed after updating a lead
326
+			$this->after_update();
327 327
 
328
-	        /**
329
-             * Must be AFTER after_update()!
330
-             * @see https://github.com/gravityview/GravityView/issues/764
331
-             */
332
-            $this->maybe_update_post_fields( $form );
328
+			/**
329
+			 * Must be AFTER after_update()!
330
+			 * @see https://github.com/gravityview/GravityView/issues/764
331
+			 */
332
+			$this->maybe_update_post_fields( $form );
333 333
 
334
-            /**
335
-             * @action `gravityview/edit_entry/after_update` Perform an action after the entry has been updated using Edit Entry
336
-             * @param array $form Gravity Forms form array
337
-             * @param string $entry_id Numeric ID of the entry that was updated
338
-             * @param GravityView_Edit_Entry_Render $this This object
339
-             */
340
-            do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry['id'], $this );
334
+			/**
335
+			 * @action `gravityview/edit_entry/after_update` Perform an action after the entry has been updated using Edit Entry
336
+			 * @param array $form Gravity Forms form array
337
+			 * @param string $entry_id Numeric ID of the entry that was updated
338
+			 * @param GravityView_Edit_Entry_Render $this This object
339
+			 */
340
+			do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry['id'], $this );
341 341
 
342
-        } else {
343
-            do_action('gravityview_log_error', __METHOD__ . ': Submission is NOT valid.', $this->entry );
344
-        }
342
+		} else {
343
+			do_action('gravityview_log_error', __METHOD__ . ': Submission is NOT valid.', $this->entry );
344
+		}
345 345
 
346
-    } // process_save
346
+	} // process_save
347 347
 
348 348
 	/**
349 349
 	 * Delete the value of fields hidden by conditional logic when the entry is edited
350
-     *
351
-     * @uses GFFormsModel::update_lead_field_value()
352
-     *
353
-     * @since 1.17.4
354
-     *
355
-     * @return void
350
+	 *
351
+	 * @uses GFFormsModel::update_lead_field_value()
352
+	 *
353
+	 * @since 1.17.4
354
+	 *
355
+	 * @return void
356 356
 	 */
357
-    private function unset_hidden_field_values() {
358
-	    global $wpdb;
357
+	private function unset_hidden_field_values() {
358
+		global $wpdb;
359 359
 
360 360
 		if ( method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
361 361
 			$entry_meta_table = GFFormsModel::get_entry_meta_table_name();
@@ -365,58 +365,58 @@  discard block
 block discarded – undo
365 365
 			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT id, field_number FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) );
366 366
 		}
367 367
 
368
-	    foreach ( $this->entry as $input_id => $field_value ) {
368
+		foreach ( $this->entry as $input_id => $field_value ) {
369 369
 
370
-		    $field = RGFormsModel::get_field( $this->form, $input_id );
370
+			$field = RGFormsModel::get_field( $this->form, $input_id );
371 371
 
372
-		    // Reset fields that are hidden
373
-		    // Don't pass $entry as fourth parameter; force using $_POST values to calculate conditional logic
374
-		    if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), NULL ) ) {
372
+			// Reset fields that are hidden
373
+			// Don't pass $entry as fourth parameter; force using $_POST values to calculate conditional logic
374
+			if ( GFFormsModel::is_field_hidden( $this->form, $field, array(), NULL ) ) {
375 375
 
376
-		        // List fields are stored as empty arrays when empty
377
-			    $empty_value = $this->is_field_json_encoded( $field ) ? '[]' : '';
376
+				// List fields are stored as empty arrays when empty
377
+				$empty_value = $this->is_field_json_encoded( $field ) ? '[]' : '';
378 378
 
379
-			    $lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id );
379
+				$lead_detail_id = GFFormsModel::get_lead_detail_id( $current_fields, $input_id );
380 380
 
381
-			    GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value );
381
+				GFFormsModel::update_lead_field_value( $this->form, $this->entry, $field, $lead_detail_id, $input_id, $empty_value );
382 382
 
383
-			    // Prevent the $_POST values of hidden fields from being used as default values when rendering the form
384
-                // after submission
385
-			    $post_input_id = 'input_' . str_replace( '.', '_', $input_id );
386
-			    $_POST[ $post_input_id ] = '';
387
-		    }
388
-	    }
389
-    }
383
+				// Prevent the $_POST values of hidden fields from being used as default values when rendering the form
384
+				// after submission
385
+				$post_input_id = 'input_' . str_replace( '.', '_', $input_id );
386
+				$_POST[ $post_input_id ] = '';
387
+			}
388
+		}
389
+	}
390 390
 
391
-    /**
392
-     * Have GF handle file uploads
393
-     *
394
-     * Copy of code from GFFormDisplay::process_form()
395
-     *
396
-     * @param int $form_id
397
-     */
398
-    private function process_save_process_files( $form_id ) {
391
+	/**
392
+	 * Have GF handle file uploads
393
+	 *
394
+	 * Copy of code from GFFormDisplay::process_form()
395
+	 *
396
+	 * @param int $form_id
397
+	 */
398
+	private function process_save_process_files( $form_id ) {
399 399
 
400
-        //Loading files that have been uploaded to temp folder
401
-        $files = GFCommon::json_decode( stripslashes( RGForms::post( 'gform_uploaded_files' ) ) );
402
-        if ( ! is_array( $files ) ) {
403
-            $files = array();
404
-        }
400
+		//Loading files that have been uploaded to temp folder
401
+		$files = GFCommon::json_decode( stripslashes( RGForms::post( 'gform_uploaded_files' ) ) );
402
+		if ( ! is_array( $files ) ) {
403
+			$files = array();
404
+		}
405 405
 
406 406
 		/**
407 407
 		 * Make sure the fileuploads are not overwritten if no such request was done.
408
-         * @since 1.20.1
408
+		 * @since 1.20.1
409 409
 		 */
410 410
 		add_filter( "gform_save_field_value_$form_id", array( $this, 'save_field_value' ), 99, 5 );
411 411
 
412
-        RGFormsModel::$uploaded_files[ $form_id ] = $files;
413
-    }
412
+		RGFormsModel::$uploaded_files[ $form_id ] = $files;
413
+	}
414 414
 
415 415
 	/**
416 416
 	 * Make sure the fileuploads are not overwritten if no such request was done.
417 417
 	 *
418
-     * TO ONLY BE USED INTERNALLY; DO NOT DEVELOP ON; MAY BE REMOVED AT ANY TIME.
419
-     *
418
+	 * TO ONLY BE USED INTERNALLY; DO NOT DEVELOP ON; MAY BE REMOVED AT ANY TIME.
419
+	 *
420 420
 	 * @since 1.20.1
421 421
 	 *
422 422
 	 * @param string $value Field value
@@ -451,65 +451,65 @@  discard block
 block discarded – undo
451 451
 		return $value;
452 452
 	}
453 453
 
454
-    /**
455
-     * Remove max_files validation (done on gravityforms.js) to avoid conflicts with GravityView
456
-     * Late validation done on self::custom_validation
457
-     *
458
-     * @param $plupload_init array Plupload settings
459
-     * @param $form_id
460
-     * @param $instance
461
-     * @return mixed
462
-     */
463
-    public function modify_fileupload_settings( $plupload_init, $form_id, $instance ) {
464
-        if( ! $this->is_edit_entry() ) {
465
-            return $plupload_init;
466
-        }
454
+	/**
455
+	 * Remove max_files validation (done on gravityforms.js) to avoid conflicts with GravityView
456
+	 * Late validation done on self::custom_validation
457
+	 *
458
+	 * @param $plupload_init array Plupload settings
459
+	 * @param $form_id
460
+	 * @param $instance
461
+	 * @return mixed
462
+	 */
463
+	public function modify_fileupload_settings( $plupload_init, $form_id, $instance ) {
464
+		if( ! $this->is_edit_entry() ) {
465
+			return $plupload_init;
466
+		}
467 467
 
468
-        $plupload_init['gf_vars']['max_files'] = 0;
468
+		$plupload_init['gf_vars']['max_files'] = 0;
469 469
 
470
-        return $plupload_init;
471
-    }
470
+		return $plupload_init;
471
+	}
472 472
 
473 473
 
474
-    /**
475
-     * Unset adminOnly and convert field input key to string
476
-     * @return array $form
477
-     */
478
-    private function form_prepare_for_save() {
474
+	/**
475
+	 * Unset adminOnly and convert field input key to string
476
+	 * @return array $form
477
+	 */
478
+	private function form_prepare_for_save() {
479 479
 
480
-        $form = $this->form;
480
+		$form = $this->form;
481 481
 
482
-	    /** @var GF_Field $field */
483
-        foreach( $form['fields'] as $k => &$field ) {
482
+		/** @var GF_Field $field */
483
+		foreach( $form['fields'] as $k => &$field ) {
484 484
 
485
-            /**
486
-             * Remove the fields with calculation formulas before save to avoid conflicts with GF logic
487
-             * @since 1.16.3
488
-             * @var GF_Field $field
489
-             */
490
-            if( $field->has_calculation() ) {
491
-                unset( $form['fields'][ $k ] );
492
-            }
485
+			/**
486
+			 * Remove the fields with calculation formulas before save to avoid conflicts with GF logic
487
+			 * @since 1.16.3
488
+			 * @var GF_Field $field
489
+			 */
490
+			if( $field->has_calculation() ) {
491
+				unset( $form['fields'][ $k ] );
492
+			}
493 493
 
494
-            $field->adminOnly = false;
494
+			$field->adminOnly = false;
495 495
 
496
-            if( isset( $field->inputs ) && is_array( $field->inputs ) ) {
497
-                foreach( $field->inputs as $key => $input ) {
498
-                    $field->inputs[ $key ][ 'id' ] = (string)$input['id'];
499
-                }
500
-            }
501
-        }
496
+			if( isset( $field->inputs ) && is_array( $field->inputs ) ) {
497
+				foreach( $field->inputs as $key => $input ) {
498
+					$field->inputs[ $key ][ 'id' ] = (string)$input['id'];
499
+				}
500
+			}
501
+		}
502 502
 
503
-        return $form;
504
-    }
503
+		return $form;
504
+	}
505 505
 
506
-    private function update_calculation_fields() {
506
+	private function update_calculation_fields() {
507 507
 
508
-        $form = self::$original_form;
509
-        $update = false;
508
+		$form = self::$original_form;
509
+		$update = false;
510 510
 
511
-        // get the most up to date entry values
512
-        $entry = GFAPI::get_entry( $this->entry['id'] );
511
+		// get the most up to date entry values
512
+		$entry = GFAPI::get_entry( $this->entry['id'] );
513 513
 
514 514
 		if( !empty( $this->fields_with_calculation ) ) {
515 515
 			$update = true;
@@ -545,79 +545,79 @@  discard block
 block discarded – undo
545 545
 
546 546
 		}
547 547
 
548
-        if( $update ) {
548
+		if( $update ) {
549 549
 
550
-            $return_entry = GFAPI::update_entry( $entry );
550
+			$return_entry = GFAPI::update_entry( $entry );
551 551
 
552
-            if( is_wp_error( $return_entry ) ) {
553
-                do_action( 'gravityview_log_error', 'Updating the entry calculation fields failed', $return_entry );
554
-            } else {
555
-                do_action( 'gravityview_log_debug', 'Updating the entry calculation fields succeeded' );
556
-            }
557
-        }
558
-    }
552
+			if( is_wp_error( $return_entry ) ) {
553
+				do_action( 'gravityview_log_error', 'Updating the entry calculation fields failed', $return_entry );
554
+			} else {
555
+				do_action( 'gravityview_log_debug', 'Updating the entry calculation fields succeeded' );
556
+			}
557
+		}
558
+	}
559 559
 
560
-    /**
561
-     * Handle updating the Post Image field
562
-     *
563
-     * Sets a new Featured Image if configured in Gravity Forms; otherwise uploads/updates media
564
-     *
565
-     * @since 1.17
566
-     *
567
-     * @uses GFFormsModel::media_handle_upload
568
-     * @uses set_post_thumbnail
569
-     * 
570
-     * @param array $form GF Form array
571
-     * @param GF_Field $field GF Field
572
-     * @param string $field_id Numeric ID of the field
573
-     * @param string $value
574
-     * @param array $entry GF Entry currently being edited
575
-     * @param int $post_id ID of the Post being edited
576
-     *
577
-     * @return mixed|string
578
-     */
579
-    private function update_post_image( $form, $field, $field_id, $value, $entry, $post_id ) {
560
+	/**
561
+	 * Handle updating the Post Image field
562
+	 *
563
+	 * Sets a new Featured Image if configured in Gravity Forms; otherwise uploads/updates media
564
+	 *
565
+	 * @since 1.17
566
+	 *
567
+	 * @uses GFFormsModel::media_handle_upload
568
+	 * @uses set_post_thumbnail
569
+	 * 
570
+	 * @param array $form GF Form array
571
+	 * @param GF_Field $field GF Field
572
+	 * @param string $field_id Numeric ID of the field
573
+	 * @param string $value
574
+	 * @param array $entry GF Entry currently being edited
575
+	 * @param int $post_id ID of the Post being edited
576
+	 *
577
+	 * @return mixed|string
578
+	 */
579
+	private function update_post_image( $form, $field, $field_id, $value, $entry, $post_id ) {
580 580
 
581
-        $input_name = 'input_' . $field_id;
581
+		$input_name = 'input_' . $field_id;
582 582
 
583
-        if ( !empty( $_FILES[ $input_name ]['name'] ) ) {
583
+		if ( !empty( $_FILES[ $input_name ]['name'] ) ) {
584 584
 
585
-            // We have a new image
585
+			// We have a new image
586 586
 
587
-            $value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] );
587
+			$value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] );
588 588
 
589
-            $ary = ! empty( $value ) ? explode( '|:|', $value ) : array();
590
-            $img_url = rgar( $ary, 0 );
589
+			$ary = ! empty( $value ) ? explode( '|:|', $value ) : array();
590
+			$img_url = rgar( $ary, 0 );
591 591
 
592
-            $img_title       = count( $ary ) > 1 ? $ary[1] : '';
593
-            $img_caption     = count( $ary ) > 2 ? $ary[2] : '';
594
-            $img_description = count( $ary ) > 3 ? $ary[3] : '';
592
+			$img_title       = count( $ary ) > 1 ? $ary[1] : '';
593
+			$img_caption     = count( $ary ) > 2 ? $ary[2] : '';
594
+			$img_description = count( $ary ) > 3 ? $ary[3] : '';
595 595
 
596
-            $image_meta = array(
597
-                'post_excerpt' => $img_caption,
598
-                'post_content' => $img_description,
599
-            );
596
+			$image_meta = array(
597
+				'post_excerpt' => $img_caption,
598
+				'post_content' => $img_description,
599
+			);
600 600
 
601
-            //adding title only if it is not empty. It will default to the file name if it is not in the array
602
-            if ( ! empty( $img_title ) ) {
603
-                $image_meta['post_title'] = $img_title;
604
-            }
601
+			//adding title only if it is not empty. It will default to the file name if it is not in the array
602
+			if ( ! empty( $img_title ) ) {
603
+				$image_meta['post_title'] = $img_title;
604
+			}
605 605
 
606
-            /**
607
-             * todo: As soon as \GFFormsModel::media_handle_upload becomes a public method, move this call to \GFFormsModel::media_handle_upload and remove the hack from this class.
608
-             * Note: the method became public in GF 1.9.17.7, but we don't require that version yet.
609
-             */
610
-            require_once GRAVITYVIEW_DIR . 'includes/class-gravityview-gfformsmodel.php';
611
-            $media_id = GravityView_GFFormsModel::media_handle_upload( $img_url, $post_id, $image_meta );
606
+			/**
607
+			 * todo: As soon as \GFFormsModel::media_handle_upload becomes a public method, move this call to \GFFormsModel::media_handle_upload and remove the hack from this class.
608
+			 * Note: the method became public in GF 1.9.17.7, but we don't require that version yet.
609
+			 */
610
+			require_once GRAVITYVIEW_DIR . 'includes/class-gravityview-gfformsmodel.php';
611
+			$media_id = GravityView_GFFormsModel::media_handle_upload( $img_url, $post_id, $image_meta );
612 612
 
613
-            // is this field set as featured image?
614
-            if ( $media_id && $field->postFeaturedImage ) {
615
-                set_post_thumbnail( $post_id, $media_id );
616
-            }
613
+			// is this field set as featured image?
614
+			if ( $media_id && $field->postFeaturedImage ) {
615
+				set_post_thumbnail( $post_id, $media_id );
616
+			}
617 617
 
618
-        } elseif ( !empty( $_POST[ $input_name ] ) && is_array( $value ) ) {
618
+		} elseif ( !empty( $_POST[ $input_name ] ) && is_array( $value ) ) {
619 619
 
620
-            $img_url = $_POST[ $input_name ];
620
+			$img_url = $_POST[ $input_name ];
621 621
 
622 622
 			$img_title       = rgar( $_POST, $input_name.'_1' );
623 623
 			$img_caption     = rgar( $_POST, $input_name .'_4' );
@@ -637,221 +637,221 @@  discard block
 block discarded – undo
637 637
 				// update image title, caption or description
638 638
 				wp_update_post( $image_meta );
639 639
 			}
640
-        } else {
641
-
642
-            // if we get here, image was removed or not set.
643
-            $value = '';
644
-
645
-            if ( $field->postFeaturedImage ) {
646
-                delete_post_thumbnail( $post_id );
647
-            }
648
-        }
649
-
650
-        return $value;
651
-    }
652
-
653
-    /**
654
-     * Loop through the fields being edited and if they include Post fields, update the Entry's post object
655
-     *
656
-     * @param array $form Gravity Forms form
657
-     *
658
-     * @return void
659
-     */
660
-    private function maybe_update_post_fields( $form ) {
661
-
662
-        if( empty( $this->entry['post_id'] ) ) {
663
-	        do_action( 'gravityview_log_debug', __METHOD__ . ': This entry has no post fields. Continuing...' );
664
-            return;
665
-        }
666
-
667
-        $post_id = $this->entry['post_id'];
668
-
669
-        // Security check
670
-        if( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
671
-            do_action( 'gravityview_log_error', 'The current user does not have the ability to edit Post #'.$post_id );
672
-            return;
673
-        }
674
-
675
-        $update_entry = false;
676
-
677
-        $updated_post = $original_post = get_post( $post_id );
678
-
679
-        foreach ( $this->entry as $field_id => $value ) {
680
-
681
-            $field = RGFormsModel::get_field( $form, $field_id );
682
-
683
-            if( ! $field ) {
684
-                continue;
685
-            }
686
-
687
-            if( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
688
-
689
-                // Get the value of the field, including $_POSTed value
690
-                $value = RGFormsModel::get_field_value( $field );
691
-
692
-                // Use temporary entry variable, to make values available to fill_post_template() and update_post_image()
693
-                $entry_tmp = $this->entry;
694
-                $entry_tmp["{$field_id}"] = $value;
695
-
696
-                switch( $field->type ) {
697
-
698
-                    case 'post_title':
699
-                        $post_title = $value;
700
-                        if( rgar( $form, 'postTitleTemplateEnabled' ) ) {
701
-                            $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
702
-                        }
703
-                        $updated_post->post_title = $post_title;
704
-                        $updated_post->post_name  = $post_title;
705
-                        unset( $post_title );
706
-                        break;
707
-
708
-                    case 'post_content':
709
-                        $post_content = $value;
710
-                        if( rgar( $form, 'postContentTemplateEnabled' ) ) {
711
-                            $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
712
-                        }
713
-                        $updated_post->post_content = $post_content;
714
-                        unset( $post_content );
715
-                        break;
716
-                    case 'post_excerpt':
717
-                        $updated_post->post_excerpt = $value;
718
-                        break;
719
-                    case 'post_tags':
720
-                        wp_set_post_tags( $post_id, $value, false );
721
-                        break;
722
-                    case 'post_category':
723
-                        break;
724
-                    case 'post_custom_field':
640
+		} else {
641
+
642
+			// if we get here, image was removed or not set.
643
+			$value = '';
644
+
645
+			if ( $field->postFeaturedImage ) {
646
+				delete_post_thumbnail( $post_id );
647
+			}
648
+		}
649
+
650
+		return $value;
651
+	}
652
+
653
+	/**
654
+	 * Loop through the fields being edited and if they include Post fields, update the Entry's post object
655
+	 *
656
+	 * @param array $form Gravity Forms form
657
+	 *
658
+	 * @return void
659
+	 */
660
+	private function maybe_update_post_fields( $form ) {
661
+
662
+		if( empty( $this->entry['post_id'] ) ) {
663
+			do_action( 'gravityview_log_debug', __METHOD__ . ': This entry has no post fields. Continuing...' );
664
+			return;
665
+		}
666
+
667
+		$post_id = $this->entry['post_id'];
668
+
669
+		// Security check
670
+		if( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
671
+			do_action( 'gravityview_log_error', 'The current user does not have the ability to edit Post #'.$post_id );
672
+			return;
673
+		}
674
+
675
+		$update_entry = false;
676
+
677
+		$updated_post = $original_post = get_post( $post_id );
678
+
679
+		foreach ( $this->entry as $field_id => $value ) {
680
+
681
+			$field = RGFormsModel::get_field( $form, $field_id );
682
+
683
+			if( ! $field ) {
684
+				continue;
685
+			}
686
+
687
+			if( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
688
+
689
+				// Get the value of the field, including $_POSTed value
690
+				$value = RGFormsModel::get_field_value( $field );
691
+
692
+				// Use temporary entry variable, to make values available to fill_post_template() and update_post_image()
693
+				$entry_tmp = $this->entry;
694
+				$entry_tmp["{$field_id}"] = $value;
695
+
696
+				switch( $field->type ) {
697
+
698
+					case 'post_title':
699
+						$post_title = $value;
700
+						if( rgar( $form, 'postTitleTemplateEnabled' ) ) {
701
+							$post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
702
+						}
703
+						$updated_post->post_title = $post_title;
704
+						$updated_post->post_name  = $post_title;
705
+						unset( $post_title );
706
+						break;
707
+
708
+					case 'post_content':
709
+						$post_content = $value;
710
+						if( rgar( $form, 'postContentTemplateEnabled' ) ) {
711
+							$post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
712
+						}
713
+						$updated_post->post_content = $post_content;
714
+						unset( $post_content );
715
+						break;
716
+					case 'post_excerpt':
717
+						$updated_post->post_excerpt = $value;
718
+						break;
719
+					case 'post_tags':
720
+						wp_set_post_tags( $post_id, $value, false );
721
+						break;
722
+					case 'post_category':
723
+						break;
724
+					case 'post_custom_field':
725 725
 						if ( is_array( $value ) && ( floatval( $field_id ) !== floatval( $field->id ) ) ) {
726 726
 							$value = $value[ $field_id ];
727 727
 						}
728 728
 
729
-                        if( ! empty( $field->customFieldTemplateEnabled ) ) {
730
-                            $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
731
-                        }
729
+						if( ! empty( $field->customFieldTemplateEnabled ) ) {
730
+							$value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
731
+						}
732 732
 
733
-	                    if ( $this->is_field_json_encoded( $field ) && ! is_string( $value ) ) {
734
-		                    $value = function_exists('wp_json_encode') ? wp_json_encode( $value ) : json_encode( $value );
735
-	                    }
733
+						if ( $this->is_field_json_encoded( $field ) && ! is_string( $value ) ) {
734
+							$value = function_exists('wp_json_encode') ? wp_json_encode( $value ) : json_encode( $value );
735
+						}
736 736
 
737
-                        update_post_meta( $post_id, $field->postCustomFieldName, $value );
738
-                        break;
737
+						update_post_meta( $post_id, $field->postCustomFieldName, $value );
738
+						break;
739 739
 
740
-                    case 'post_image':
741
-                        $value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id );
742
-                        break;
740
+					case 'post_image':
741
+						$value = $this->update_post_image( $form, $field, $field_id, $value, $this->entry, $post_id );
742
+						break;
743 743
 
744
-                }
744
+				}
745 745
 
746
-                // update entry after
747
-                $this->entry["{$field_id}"] = $value;
746
+				// update entry after
747
+				$this->entry["{$field_id}"] = $value;
748 748
 
749
-                $update_entry = true;
749
+				$update_entry = true;
750 750
 
751
-                unset( $entry_tmp );
752
-            }
751
+				unset( $entry_tmp );
752
+			}
753 753
 
754
-        }
754
+		}
755 755
 
756
-        if( $update_entry ) {
756
+		if( $update_entry ) {
757 757
 
758
-            $return_entry = GFAPI::update_entry( $this->entry );
758
+			$return_entry = GFAPI::update_entry( $this->entry );
759 759
 
760
-            if( is_wp_error( $return_entry ) ) {
761
-               do_action( 'gravityview_log_error', 'Updating the entry post fields failed', array( '$this->entry' => $this->entry, '$return_entry' => $return_entry ) );
762
-            } else {
763
-                do_action( 'gravityview_log_debug', 'Updating the entry post fields for post #'.$post_id.' succeeded' );
764
-            }
760
+			if( is_wp_error( $return_entry ) ) {
761
+			   do_action( 'gravityview_log_error', 'Updating the entry post fields failed', array( '$this->entry' => $this->entry, '$return_entry' => $return_entry ) );
762
+			} else {
763
+				do_action( 'gravityview_log_debug', 'Updating the entry post fields for post #'.$post_id.' succeeded' );
764
+			}
765 765
 
766
-        }
766
+		}
767 767
 
768
-        $return_post = wp_update_post( $updated_post, true );
768
+		$return_post = wp_update_post( $updated_post, true );
769 769
 
770
-        if( is_wp_error( $return_post ) ) {
771
-            $return_post->add_data( $updated_post, '$updated_post' );
772
-            do_action( 'gravityview_log_error', 'Updating the post content failed', compact( 'updated_post', 'return_post' ) );
773
-        } else {
774
-            do_action( 'gravityview_log_debug', 'Updating the post content for post #'.$post_id.' succeeded', $updated_post );
775
-        }
776
-    }
770
+		if( is_wp_error( $return_post ) ) {
771
+			$return_post->add_data( $updated_post, '$updated_post' );
772
+			do_action( 'gravityview_log_error', 'Updating the post content failed', compact( 'updated_post', 'return_post' ) );
773
+		} else {
774
+			do_action( 'gravityview_log_debug', 'Updating the post content for post #'.$post_id.' succeeded', $updated_post );
775
+		}
776
+	}
777 777
 
778 778
 	/**
779
-     * Is the field stored in a JSON-encoded manner?
780
-     *
779
+	 * Is the field stored in a JSON-encoded manner?
780
+	 *
781 781
 	 * @param GF_Field $field
782 782
 	 *
783 783
 	 * @return bool True: stored in DB json_encode()'d; False: not encoded
784 784
 	 */
785
-    private function is_field_json_encoded( $field ) {
785
+	private function is_field_json_encoded( $field ) {
786 786
 
787
-	    $json_encoded = false;
787
+		$json_encoded = false;
788 788
 
789
-        $input_type = RGFormsModel::get_input_type( $field );
789
+		$input_type = RGFormsModel::get_input_type( $field );
790 790
 
791
-	    // Only certain custom field types are supported
792
-	    switch( $input_type ) {
793
-		    case 'fileupload':
794
-		    case 'list':
795
-		    case 'multiselect':
796
-			    $json_encoded = true;
797
-			    break;
798
-	    }
791
+		// Only certain custom field types are supported
792
+		switch( $input_type ) {
793
+			case 'fileupload':
794
+			case 'list':
795
+			case 'multiselect':
796
+				$json_encoded = true;
797
+				break;
798
+		}
799 799
 
800
-	    return $json_encoded;
801
-    }
800
+		return $json_encoded;
801
+	}
802 802
 
803
-    /**
804
-     * Convert a field content template into prepared output
805
-     *
806
-     * @uses GravityView_GFFormsModel::get_post_field_images()
807
-     *
808
-     * @since 1.17
809
-     *
810
-     * @param string $template The content template for the field
811
-     * @param array $form Gravity Forms form
812
-     * @param bool $do_shortcode Whether to process shortcode inside content. In GF, only run on Custom Field and Post Content fields
813
-     *
814
-     * @return string
815
-     */
816
-    private function fill_post_template( $template, $form, $entry, $do_shortcode = false ) {
803
+	/**
804
+	 * Convert a field content template into prepared output
805
+	 *
806
+	 * @uses GravityView_GFFormsModel::get_post_field_images()
807
+	 *
808
+	 * @since 1.17
809
+	 *
810
+	 * @param string $template The content template for the field
811
+	 * @param array $form Gravity Forms form
812
+	 * @param bool $do_shortcode Whether to process shortcode inside content. In GF, only run on Custom Field and Post Content fields
813
+	 *
814
+	 * @return string
815
+	 */
816
+	private function fill_post_template( $template, $form, $entry, $do_shortcode = false ) {
817 817
 
818
-        require_once GRAVITYVIEW_DIR . 'includes/class-gravityview-gfformsmodel.php';
818
+		require_once GRAVITYVIEW_DIR . 'includes/class-gravityview-gfformsmodel.php';
819 819
 
820
-        $post_images = GravityView_GFFormsModel::get_post_field_images( $form, $entry );
820
+		$post_images = GravityView_GFFormsModel::get_post_field_images( $form, $entry );
821 821
 
822
-        //replacing post image variables
823
-        $output = GFCommon::replace_variables_post_image( $template, $post_images, $entry );
822
+		//replacing post image variables
823
+		$output = GFCommon::replace_variables_post_image( $template, $post_images, $entry );
824 824
 
825
-        //replacing all other variables
826
-        $output = GFCommon::replace_variables( $output, $form, $entry, false, false, false );
825
+		//replacing all other variables
826
+		$output = GFCommon::replace_variables( $output, $form, $entry, false, false, false );
827 827
 
828
-        // replace conditional shortcodes
829
-        if( $do_shortcode ) {
830
-            $output = do_shortcode( $output );
831
-        }
828
+		// replace conditional shortcodes
829
+		if( $do_shortcode ) {
830
+			$output = do_shortcode( $output );
831
+		}
832 832
 
833
-        return $output;
834
-    }
833
+		return $output;
834
+	}
835 835
 
836 836
 
837
-    /**
838
-     * Perform actions normally performed after updating a lead
839
-     *
840
-     * @since 1.8
841
-     *
842
-     * @see GFEntryDetail::lead_detail_page()
843
-     *
844
-     * @return void
845
-     */
846
-    private function after_update() {
837
+	/**
838
+	 * Perform actions normally performed after updating a lead
839
+	 *
840
+	 * @since 1.8
841
+	 *
842
+	 * @see GFEntryDetail::lead_detail_page()
843
+	 *
844
+	 * @return void
845
+	 */
846
+	private function after_update() {
847 847
 
848
-        do_action( 'gform_after_update_entry', $this->form, $this->entry['id'], self::$original_entry );
849
-        do_action( "gform_after_update_entry_{$this->form['id']}", $this->form, $this->entry['id'], self::$original_entry );
848
+		do_action( 'gform_after_update_entry', $this->form, $this->entry['id'], self::$original_entry );
849
+		do_action( "gform_after_update_entry_{$this->form['id']}", $this->form, $this->entry['id'], self::$original_entry );
850 850
 
851
-        // Re-define the entry now that we've updated it.
852
-        $entry = RGFormsModel::get_lead( $this->entry['id'] );
851
+		// Re-define the entry now that we've updated it.
852
+		$entry = RGFormsModel::get_lead( $this->entry['id'] );
853 853
 
854
-        $entry = GFFormsModel::set_entry_meta( $entry, $this->form );
854
+		$entry = GFFormsModel::set_entry_meta( $entry, $this->form );
855 855
 
856 856
 		if ( ! method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
857 857
 			// We need to clear the cache because Gravity Forms caches the field values, which
@@ -861,41 +861,41 @@  discard block
 block discarded – undo
861 861
 			}
862 862
 		}
863 863
 
864
-        $this->entry = $entry;
865
-    }
864
+		$this->entry = $entry;
865
+	}
866 866
 
867 867
 
868
-    /**
869
-     * Display the Edit Entry form
870
-     *
871
-     * @return void
872
-     */
873
-    public function edit_entry_form() {
868
+	/**
869
+	 * Display the Edit Entry form
870
+	 *
871
+	 * @return void
872
+	 */
873
+	public function edit_entry_form() {
874 874
 
875
-        ?>
875
+		?>
876 876
 
877 877
         <div class="gv-edit-entry-wrapper"><?php
878 878
 
879
-            $javascript = gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/inline-javascript.php', $this );
879
+			$javascript = gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/inline-javascript.php', $this );
880 880
 
881
-            /**
882
-             * Fixes weird wpautop() issue
883
-             * @see https://github.com/katzwebservices/GravityView/issues/451
884
-             */
885
-            echo gravityview_strip_whitespace( $javascript );
881
+			/**
882
+			 * Fixes weird wpautop() issue
883
+			 * @see https://github.com/katzwebservices/GravityView/issues/451
884
+			 */
885
+			echo gravityview_strip_whitespace( $javascript );
886 886
 
887
-            ?><h2 class="gv-edit-entry-title">
887
+			?><h2 class="gv-edit-entry-title">
888 888
                 <span><?php
889 889
 
890
-                    /**
891
-                     * @filter `gravityview_edit_entry_title` Modify the edit entry title
892
-                     * @param string $edit_entry_title Modify the "Edit Entry" title
893
-                     * @param GravityView_Edit_Entry_Render $this This object
894
-                     */
895
-                    $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
890
+					/**
891
+					 * @filter `gravityview_edit_entry_title` Modify the edit entry title
892
+					 * @param string $edit_entry_title Modify the "Edit Entry" title
893
+					 * @param GravityView_Edit_Entry_Render $this This object
894
+					 */
895
+					$edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
896 896
 
897
-                    echo esc_attr( $edit_entry_title );
898
-            ?></span>
897
+					echo esc_attr( $edit_entry_title );
898
+			?></span>
899 899
             </h2>
900 900
 
901 901
             <?php $this->maybe_print_message(); ?>
@@ -906,14 +906,14 @@  discard block
 block discarded – undo
906 906
 
907 907
                 <?php
908 908
 
909
-                wp_nonce_field( self::$nonce_key, self::$nonce_key );
909
+				wp_nonce_field( self::$nonce_key, self::$nonce_key );
910 910
 
911
-                wp_nonce_field( self::$nonce_field, self::$nonce_field, false );
911
+				wp_nonce_field( self::$nonce_field, self::$nonce_field, false );
912 912
 
913
-                // Print the actual form HTML
914
-                $this->render_edit_form();
913
+				// Print the actual form HTML
914
+				$this->render_edit_form();
915 915
 
916
-                ?>
916
+				?>
917 917
             </form>
918 918
 
919 919
             <script>
@@ -925,643 +925,643 @@  discard block
 block discarded – undo
925 925
         </div>
926 926
 
927 927
     <?php
928
-    }
929
-
930
-    /**
931
-     * Display success or error message if the form has been submitted
932
-     *
933
-     * @uses GVCommon::generate_notice
934
-     *
935
-     * @since 1.16.2.2
936
-     *
937
-     * @return void
938
-     */
939
-    private function maybe_print_message() {
940
-
941
-        if( rgpost('action') === 'update' ) {
942
-
943
-            $back_link = esc_url( remove_query_arg( array( 'page', 'view', 'edit' ) ) );
944
-
945
-            if( ! $this->is_valid ){
946
-
947
-                // Keeping this compatible with Gravity Forms.
948
-                $validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>";
949
-                $message = apply_filters("gform_validation_message_{$this->form['id']}", apply_filters("gform_validation_message", $validation_message, $this->form), $this->form);
950
-
951
-                echo GVCommon::generate_notice( $message , 'gv-error' );
952
-
953
-            } else {
954
-                $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. $back_link .'">', '</a>' );
955
-
956
-                /**
957
-                 * @filter `gravityview/edit_entry/success` Modify the edit entry success message (including the anchor link)
958
-                 * @since 1.5.4
959
-                 * @param string $entry_updated_message Existing message
960
-                 * @param int $view_id View ID
961
-                 * @param array $entry Gravity Forms entry array
962
-                 * @param string $back_link URL to return to the original entry. @since 1.6
963
-                 */
964
-                $message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message , $this->view_id, $this->entry, $back_link );
965
-
966
-                echo GVCommon::generate_notice( $message );
967
-            }
968
-
969
-        }
970
-    }
971
-
972
-    /**
973
-     * Display the Edit Entry form in the original Gravity Forms format
974
-     *
975
-     * @since 1.9
976
-     *
977
-     * @return void
978
-     */
979
-    private function render_edit_form() {
980
-
981
-        /**
982
-         * @action `gravityview/edit-entry/render/before` Before rendering the Edit Entry form
983
-         * @since 1.17
984
-         * @param GravityView_Edit_Entry_Render $this
985
-         */
986
-        do_action( 'gravityview/edit-entry/render/before', $this );
987
-
988
-        add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields'), 5000, 3 );
989
-        add_filter( 'gform_submit_button', array( $this, 'render_form_buttons') );
990
-        add_filter( 'gform_disable_view_counter', '__return_true' );
991
-
992
-        add_filter( 'gform_field_input', array( $this, 'verify_user_can_edit_post' ), 5, 5 );
993
-        add_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10, 5 );
994
-
995
-        // We need to remove the fake $_GET['page'] arg to avoid rendering form as if in admin.
996
-        unset( $_GET['page'] );
997
-
998
-        // TODO: Verify multiple-page forms
999
-
1000
-        ob_start(); // Prevent PHP warnings possibly caused by prefilling list fields for conditional logic
1001
-
1002
-        $html = GFFormDisplay::get_form( $this->form['id'], false, false, true, $this->entry );
1003
-
1004
-        ob_get_clean();
1005
-
1006
-	    remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 );
1007
-        remove_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) );
1008
-        remove_filter( 'gform_disable_view_counter', '__return_true' );
1009
-        remove_filter( 'gform_field_input', array( $this, 'verify_user_can_edit_post' ), 5 );
1010
-        remove_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10 );
1011
-
1012
-        echo $html;
1013
-
1014
-        /**
1015
-         * @action `gravityview/edit-entry/render/after` After rendering the Edit Entry form
1016
-         * @since 1.17
1017
-         * @param GravityView_Edit_Entry_Render $this
1018
-         */
1019
-        do_action( 'gravityview/edit-entry/render/after', $this );
1020
-    }
1021
-
1022
-    /**
1023
-     * Display the Update/Cancel/Delete buttons for the Edit Entry form
1024
-     * @since 1.8
1025
-     * @return string
1026
-     */
1027
-    public function render_form_buttons() {
1028
-        return gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/form-buttons.php', $this );
1029
-    }
1030
-
1031
-
1032
-    /**
1033
-     * Modify the form fields that are shown when using GFFormDisplay::get_form()
1034
-     *
1035
-     * By default, all fields will be shown. We only want the Edit Tab configured fields to be shown.
1036
-     *
1037
-     * @param array $form
1038
-     * @param boolean $ajax Whether in AJAX mode
1039
-     * @param array|string $field_values Passed parameters to the form
1040
-     *
1041
-     * @since 1.9
1042
-     *
1043
-     * @return array Modified form array
1044
-     */
1045
-    public function filter_modify_form_fields( $form, $ajax = false, $field_values = '' ) {
1046
-
1047
-        // In case we have validated the form, use it to inject the validation results into the form render
1048
-        if( isset( $this->form_after_validation ) ) {
1049
-            $form = $this->form_after_validation;
1050
-        } else {
1051
-            $form['fields'] = $this->get_configured_edit_fields( $form, $this->view_id );
1052
-        }
1053
-
1054
-        $form = $this->filter_conditional_logic( $form );
1055
-
1056
-        $form = $this->prefill_conditional_logic( $form );
1057
-
1058
-        // for now we don't support Save and Continue feature.
1059
-        if( ! self::$supports_save_and_continue ) {
1060
-	        unset( $form['save'] );
1061
-        }
1062
-
1063
-        return $form;
1064
-    }
1065
-
1066
-    /**
1067
-     * When displaying a field, check if it's a Post Field, and if so, make sure the post exists and current user has edit rights.
1068
-     *
1069
-     * @since 1.16.2.2
1070
-     *
1071
-     * @param string $field_content Always empty. Returning not-empty overrides the input.
1072
-     * @param GF_Field $field
1073
-     * @param string|array $value If array, it's a field with multiple inputs. If string, single input.
1074
-     * @param int $lead_id Lead ID. Always 0 for the `gform_field_input` filter.
1075
-     * @param int $form_id Form ID
1076
-     *
1077
-     * @return string If error, the error message. If no error, blank string (modify_edit_field_input() runs next)
1078
-     */
1079
-    public function verify_user_can_edit_post( $field_content = '', $field, $value, $lead_id = 0, $form_id ) {
1080
-
1081
-        if( GFCommon::is_post_field( $field ) ) {
1082
-
1083
-            $message = null;
1084
-
1085
-            // First, make sure they have the capability to edit the post.
1086
-            if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1087
-
1088
-                /**
1089
-                 * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1090
-                 * @param string $message The existing "You don't have permission..." text
1091
-                 */
1092
-                $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1093
-
1094
-            } elseif( null === get_post( $this->entry['post_id'] ) ) {
1095
-                /**
1096
-                 * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1097
-                 * @param string $message The existing "This field is not editable; the post no longer exists." text
1098
-                 */
1099
-                $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1100
-            }
1101
-
1102
-            if( $message ) {
1103
-                $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1104
-            }
1105
-        }
1106
-
1107
-        return $field_content;
1108
-    }
1109
-
1110
-    /**
1111
-     *
1112
-     * Fill-in the saved values into the form inputs
1113
-     *
1114
-     * @param string $field_content Always empty. Returning not-empty overrides the input.
1115
-     * @param GF_Field $field
1116
-     * @param string|array $value If array, it's a field with multiple inputs. If string, single input.
1117
-     * @param int $lead_id Lead ID. Always 0 for the `gform_field_input` filter.
1118
-     * @param int $form_id Form ID
1119
-     *
1120
-     * @return mixed
1121
-     */
1122
-    public function modify_edit_field_input( $field_content = '', $field, $value, $lead_id = 0, $form_id ) {
1123
-
1124
-        $gv_field = GravityView_Fields::get_associated_field( $field );
1125
-
1126
-        // If the form has been submitted, then we don't need to pre-fill the values,
1127
-        // Except for fileupload type and when a field input is overridden- run always!!
1128
-        if(
1129
-            ( $this->is_edit_entry_submission() && !in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1130
-            && false === ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) )
1131
-            && ! GFCommon::is_product_field( $field->type )
1132
-            || ! empty( $field_content )
1133
-            || in_array( $field->type, array( 'honeypot' ) )
1134
-        ) {
1135
-	        return $field_content;
1136
-        }
1137
-
1138
-        // SET SOME FIELD DEFAULTS TO PREVENT ISSUES
1139
-        $field->adminOnly = false; /** @see GFFormDisplay::get_counter_init_script() need to prevent adminOnly */
1140
-
1141
-        $field_value = $this->get_field_value( $field );
1142
-
1143
-	    // Prevent any PHP warnings, like undefined index
1144
-	    ob_start();
1145
-
1146
-	    $return = null;
1147
-
1148
-        /** @var GravityView_Field $gv_field */
1149
-        if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1150
-            $return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field );
1151
-        } else {
1152
-	        $return = $field->get_field_input( $this->form, $field_value, $this->entry );
1153
-	    }
1154
-
1155
-	    // If there was output, it's an error
1156
-	    $warnings = ob_get_clean();
1157
-
1158
-	    if( !empty( $warnings ) ) {
1159
-		    do_action( 'gravityview_log_error', __METHOD__ . $warnings, $field_value );
1160
-	    }
1161
-
1162
-        return $return;
1163
-    }
1164
-
1165
-    /**
1166
-     * Modify the value for the current field input
1167
-     *
1168
-     * @param GF_Field $field
1169
-     *
1170
-     * @return array|mixed|string
1171
-     */
1172
-    private function get_field_value( $field ) {
1173
-
1174
-        /**
1175
-         * @filter `gravityview/edit_entry/pre_populate/override` Allow the pre-populated value to override saved value in Edit Entry form. By default, pre-populate mechanism only kicks on empty fields.
1176
-         * @param boolean True: override saved values; False: don't override (default)
1177
-         * @param $field GF_Field object Gravity Forms field object
1178
-         * @since 1.13
1179
-         */
1180
-        $override_saved_value = apply_filters( 'gravityview/edit_entry/pre_populate/override', false, $field );
1181
-
1182
-        // We're dealing with multiple inputs (e.g. checkbox) but not time or date (as it doesn't store data in input IDs)
1183
-        if( isset( $field->inputs ) && is_array( $field->inputs ) && !in_array( $field->type, array( 'time', 'date' ) ) ) {
1184
-
1185
-            $field_value = array();
1186
-
1187
-            // only accept pre-populated values if the field doesn't have any choice selected.
1188
-            $allow_pre_populated = $field->allowsPrepopulate;
1189
-
1190
-            foreach ( (array)$field->inputs as $input ) {
1191
-
1192
-                $input_id = strval( $input['id'] );
1193
-                
1194
-                if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) {
1195
-                    $field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1196
-                    $allow_pre_populated = false;
1197
-                }
1198
-
1199
-            }
1200
-
1201
-            $pre_value = $field->get_value_submission( array(), false );
1202
-
1203
-            $field_value = ! $allow_pre_populated && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1204
-
1205
-        } else {
1206
-
1207
-            $id = intval( $field->id );
928
+	}
1208 929
 
1209
-            // get pre-populated value if exists
1210
-            $pre_value = $field->allowsPrepopulate ? GFFormsModel::get_parameter_value( $field->inputName, array(), $field ) : '';
1211
-
1212
-            // saved field entry value (if empty, fallback to the pre-populated value, if exists)
1213
-            // or pre-populated value if not empty and set to override saved value
1214
-            $field_value = !gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value;
930
+	/**
931
+	 * Display success or error message if the form has been submitted
932
+	 *
933
+	 * @uses GVCommon::generate_notice
934
+	 *
935
+	 * @since 1.16.2.2
936
+	 *
937
+	 * @return void
938
+	 */
939
+	private function maybe_print_message() {
1215 940
 
1216
-            // in case field is post_category but inputType is select, multi-select or radio, convert value into array of category IDs.
1217
-            if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) {
1218
-                $categories = array();
1219
-                foreach ( explode( ',', $field_value ) as $cat_string ) {
1220
-                    $categories[] = GFCommon::format_post_category( $cat_string, true );
1221
-                }
1222
-                $field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories );
1223
-            }
941
+		if( rgpost('action') === 'update' ) {
1224 942
 
1225
-        }
943
+			$back_link = esc_url( remove_query_arg( array( 'page', 'view', 'edit' ) ) );
1226 944
 
1227
-        // if value is empty get the default value if defined
1228
-        $field_value = $field->get_value_default_if_empty( $field_value );
1229
-
1230
-	    /**
1231
-	     * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed
1232
-	     * @since 1.11
1233
-	     * @since 1.20 Added third param
1234
-	     * @param mixed $field_value field value used to populate the input
1235
-	     * @param object $field Gravity Forms field object ( Class GF_Field )
1236
-	     * @param GravityView_Edit_Entry_Render $this Current object
1237
-	     */
1238
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this );
945
+			if( ! $this->is_valid ){
1239 946
 
1240
-	    /**
1241
-	     * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type
1242
-	     * @since 1.17
1243
-	     * @since 1.20 Added third param
1244
-	     * @param mixed $field_value field value used to populate the input
1245
-	     * @param GF_Field $field Gravity Forms field object
1246
-	     * @param GravityView_Edit_Entry_Render $this Current object
1247
-	     */
1248
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
947
+				// Keeping this compatible with Gravity Forms.
948
+				$validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>";
949
+				$message = apply_filters("gform_validation_message_{$this->form['id']}", apply_filters("gform_validation_message", $validation_message, $this->form), $this->form);
1249 950
 
1250
-        return $field_value;
1251
-    }
951
+				echo GVCommon::generate_notice( $message , 'gv-error' );
1252 952
 
953
+			} else {
954
+				$entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. $back_link .'">', '</a>' );
1253 955
 
1254
-    // ---- Entry validation
956
+				/**
957
+				 * @filter `gravityview/edit_entry/success` Modify the edit entry success message (including the anchor link)
958
+				 * @since 1.5.4
959
+				 * @param string $entry_updated_message Existing message
960
+				 * @param int $view_id View ID
961
+				 * @param array $entry Gravity Forms entry array
962
+				 * @param string $back_link URL to return to the original entry. @since 1.6
963
+				 */
964
+				$message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message , $this->view_id, $this->entry, $back_link );
1255 965
 
1256
-    /**
1257
-     * Add field keys that Gravity Forms expects.
1258
-     *
1259
-     * @see GFFormDisplay::validate()
1260
-     * @param  array $form GF Form
1261
-     * @return array       Modified GF Form
1262
-     */
1263
-    public function gform_pre_validation( $form ) {
966
+				echo GVCommon::generate_notice( $message );
967
+			}
1264 968
 
1265
-        if( ! $this->verify_nonce() ) {
1266
-            return $form;
1267
-        }
1268
-
1269
-        // Fix PHP warning regarding undefined index.
1270
-        foreach ( $form['fields'] as &$field) {
1271
-
1272
-            // This is because we're doing admin form pretending to be front-end, so Gravity Forms
1273
-            // expects certain field array items to be set.
1274
-            foreach ( array( 'noDuplicates', 'adminOnly', 'inputType', 'isRequired', 'enablePrice', 'inputs', 'allowedExtensions' ) as $key ) {
1275
-	            $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1276
-            }
1277
-
1278
-            switch( RGFormsModel::get_input_type( $field ) ) {
1279
-
1280
-                /**
1281
-                 * 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.
1282
-                 *
1283
-                 * What we have to do is set the value so that it doesn't get overwritten as empty on save and appears immediately in the Edit Entry screen again.
1284
-                 *
1285
-                 * @hack
1286
-                 */
1287
-                case 'fileupload':
1288
-
1289
-                    // Set the previous value
1290
-                    $entry = $this->get_entry();
1291
-
1292
-                    $input_name = 'input_'.$field->id;
1293
-                    $form_id = $form['id'];
1294
-
1295
-                    $value = NULL;
969
+		}
970
+	}
1296 971
 
1297
-                    // Use the previous entry value as the default.
1298
-                    if( isset( $entry[ $field->id ] ) ) {
1299
-                        $value = $entry[ $field->id ];
1300
-                    }
1301
-
1302
-                    // If this is a single upload file
1303
-                    if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1304
-                        $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1305
-                        $value = $file_path['url'];
1306
-
1307
-                    } else {
1308
-
1309
-                        // Fix PHP warning on line 1498 of form_display.php for post_image fields
1310
-                        // Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1311
-                        $_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1312
-
1313
-                    }
1314
-
1315
-                    if( rgar($field, "multipleFiles") ) {
1316
-
1317
-                        // If there are fresh uploads, process and merge them.
1318
-                        // Otherwise, use the passed values, which should be json-encoded array of URLs
1319
-                        if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1320
-                            $value = empty( $value ) ? '[]' : $value;
1321
-                            $value = stripslashes_deep( $value );
1322
-                            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1323
-                        }
972
+	/**
973
+	 * Display the Edit Entry form in the original Gravity Forms format
974
+	 *
975
+	 * @since 1.9
976
+	 *
977
+	 * @return void
978
+	 */
979
+	private function render_edit_form() {
1324 980
 
1325
-                    } else {
981
+		/**
982
+		 * @action `gravityview/edit-entry/render/before` Before rendering the Edit Entry form
983
+		 * @since 1.17
984
+		 * @param GravityView_Edit_Entry_Render $this
985
+		 */
986
+		do_action( 'gravityview/edit-entry/render/before', $this );
1326 987
 
1327
-                        // A file already exists when editing an entry
1328
-                        // We set this to solve issue when file upload fields are required.
1329
-                        GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value;
1330
-
1331
-                    }
1332
-
1333
-                    $this->entry[ $input_name ] = $value;
1334
-                    $_POST[ $input_name ] = $value;
988
+		add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields'), 5000, 3 );
989
+		add_filter( 'gform_submit_button', array( $this, 'render_form_buttons') );
990
+		add_filter( 'gform_disable_view_counter', '__return_true' );
1335 991
 
1336
-                    break;
992
+		add_filter( 'gform_field_input', array( $this, 'verify_user_can_edit_post' ), 5, 5 );
993
+		add_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10, 5 );
1337 994
 
1338
-                case 'number':
1339
-                    // Fix "undefined index" issue at line 1286 in form_display.php
1340
-                    if( !isset( $_POST['input_'.$field->id ] ) ) {
1341
-                        $_POST['input_'.$field->id ] = NULL;
1342
-                    }
1343
-                    break;
1344
-            }
995
+		// We need to remove the fake $_GET['page'] arg to avoid rendering form as if in admin.
996
+		unset( $_GET['page'] );
1345 997
 
1346
-        }
998
+		// TODO: Verify multiple-page forms
1347 999
 
1348
-        return $form;
1349
-    }
1000
+		ob_start(); // Prevent PHP warnings possibly caused by prefilling list fields for conditional logic
1350 1001
 
1002
+		$html = GFFormDisplay::get_form( $this->form['id'], false, false, true, $this->entry );
1351 1003
 
1352
-    /**
1353
-     * Process validation for a edit entry submission
1354
-     *
1355
-     * Sets the `is_valid` object var
1356
-     *
1357
-     * @return void
1358
-     */
1359
-    private function validate() {
1004
+		ob_get_clean();
1360 1005
 
1361
-        /**
1362
-         * If using GF User Registration Add-on, remove the validation step, otherwise generates error when updating the entry
1363
-         * GF User Registration Add-on version > 3.x has a different class name
1364
-         * @since 1.16.2
1365
-         */
1366
-        if ( class_exists( 'GF_User_Registration' ) ) {
1367
-            remove_filter( 'gform_validation', array( GF_User_Registration::get_instance(), 'validate' ) );
1368
-        } else  if ( class_exists( 'GFUser' ) ) {
1369
-            remove_filter( 'gform_validation', array( 'GFUser', 'user_registration_validation' ) );
1370
-        }
1006
+		remove_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000 );
1007
+		remove_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) );
1008
+		remove_filter( 'gform_disable_view_counter', '__return_true' );
1009
+		remove_filter( 'gform_field_input', array( $this, 'verify_user_can_edit_post' ), 5 );
1010
+		remove_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10 );
1371 1011
 
1012
+		echo $html;
1372 1013
 
1373
-        /**
1374
-         * For some crazy reason, Gravity Forms doesn't validate Edit Entry form submissions.
1375
-         * You can enter whatever you want!
1376
-         * We try validating, and customize the results using `self::custom_validation()`
1377
-         */
1378
-        add_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10, 4);
1014
+		/**
1015
+		 * @action `gravityview/edit-entry/render/after` After rendering the Edit Entry form
1016
+		 * @since 1.17
1017
+		 * @param GravityView_Edit_Entry_Render $this
1018
+		 */
1019
+		do_action( 'gravityview/edit-entry/render/after', $this );
1020
+	}
1379 1021
 
1380
-        // Needed by the validate funtion
1381
-        $failed_validation_page = NULL;
1382
-        $field_values = RGForms::post( 'gform_field_values' );
1022
+	/**
1023
+	 * Display the Update/Cancel/Delete buttons for the Edit Entry form
1024
+	 * @since 1.8
1025
+	 * @return string
1026
+	 */
1027
+	public function render_form_buttons() {
1028
+		return gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/form-buttons.php', $this );
1029
+	}
1383 1030
 
1384
-        // Prevent entry limit from running when editing an entry, also
1385
-        // prevent form scheduling from preventing editing
1386
-        unset( $this->form['limitEntries'], $this->form['scheduleForm'] );
1387 1031
 
1388
-        // Hide fields depending on Edit Entry settings
1389
-        $this->form['fields'] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1032
+	/**
1033
+	 * Modify the form fields that are shown when using GFFormDisplay::get_form()
1034
+	 *
1035
+	 * By default, all fields will be shown. We only want the Edit Tab configured fields to be shown.
1036
+	 *
1037
+	 * @param array $form
1038
+	 * @param boolean $ajax Whether in AJAX mode
1039
+	 * @param array|string $field_values Passed parameters to the form
1040
+	 *
1041
+	 * @since 1.9
1042
+	 *
1043
+	 * @return array Modified form array
1044
+	 */
1045
+	public function filter_modify_form_fields( $form, $ajax = false, $field_values = '' ) {
1390 1046
 
1391
-        $this->is_valid = GFFormDisplay::validate( $this->form, $field_values, 1, $failed_validation_page );
1047
+		// In case we have validated the form, use it to inject the validation results into the form render
1048
+		if( isset( $this->form_after_validation ) ) {
1049
+			$form = $this->form_after_validation;
1050
+		} else {
1051
+			$form['fields'] = $this->get_configured_edit_fields( $form, $this->view_id );
1052
+		}
1392 1053
 
1393
-        remove_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10 );
1394
-    }
1054
+		$form = $this->filter_conditional_logic( $form );
1395 1055
 
1056
+		$form = $this->prefill_conditional_logic( $form );
1396 1057
 
1397
-    /**
1398
-     * Make validation work for Edit Entry
1399
-     *
1400
-     * Because we're calling the GFFormDisplay::validate() in an unusual way (as a front-end
1401
-     * form pretending to be a back-end form), validate() doesn't know we _can't_ edit post
1402
-     * fields. This goes through all the fields and if they're an invalid post field, we
1403
-     * set them as valid. If there are still issues, we'll return false.
1404
-     *
1405
-     * @param  [type] $validation_results [description]
1406
-     * @return [type]                     [description]
1407
-     */
1408
-    public function custom_validation( $validation_results ) {
1058
+		// for now we don't support Save and Continue feature.
1059
+		if( ! self::$supports_save_and_continue ) {
1060
+			unset( $form['save'] );
1061
+		}
1409 1062
 
1410
-        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results: ', $validation_results );
1063
+		return $form;
1064
+	}
1411 1065
 
1412
-        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
1066
+	/**
1067
+	 * When displaying a field, check if it's a Post Field, and if so, make sure the post exists and current user has edit rights.
1068
+	 *
1069
+	 * @since 1.16.2.2
1070
+	 *
1071
+	 * @param string $field_content Always empty. Returning not-empty overrides the input.
1072
+	 * @param GF_Field $field
1073
+	 * @param string|array $value If array, it's a field with multiple inputs. If string, single input.
1074
+	 * @param int $lead_id Lead ID. Always 0 for the `gform_field_input` filter.
1075
+	 * @param int $form_id Form ID
1076
+	 *
1077
+	 * @return string If error, the error message. If no error, blank string (modify_edit_field_input() runs next)
1078
+	 */
1079
+	public function verify_user_can_edit_post( $field_content = '', $field, $value, $lead_id = 0, $form_id ) {
1413 1080
 
1414
-        $gv_valid = true;
1081
+		if( GFCommon::is_post_field( $field ) ) {
1415 1082
 
1416
-        foreach ( $validation_results['form']['fields'] as $key => &$field ) {
1083
+			$message = null;
1417 1084
 
1418
-            $value = RGFormsModel::get_field_value( $field );
1419
-            $field_type = RGFormsModel::get_input_type( $field );
1085
+			// First, make sure they have the capability to edit the post.
1086
+			if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1420 1087
 
1421
-            // Validate always
1422
-            switch ( $field_type ) {
1088
+				/**
1089
+				 * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1090
+				 * @param string $message The existing "You don't have permission..." text
1091
+				 */
1092
+				$message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1423 1093
 
1094
+			} elseif( null === get_post( $this->entry['post_id'] ) ) {
1095
+				/**
1096
+				 * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1097
+				 * @param string $message The existing "This field is not editable; the post no longer exists." text
1098
+				 */
1099
+				$message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1100
+			}
1424 1101
 
1425
-                case 'fileupload' :
1426
-                case 'post_image':
1102
+			if( $message ) {
1103
+				$field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1104
+			}
1105
+		}
1427 1106
 
1428
-                    // in case nothing is uploaded but there are already files saved
1429
-                    if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1430
-                        $field->failed_validation = false;
1431
-                        unset( $field->validation_message );
1432
-                    }
1107
+		return $field_content;
1108
+	}
1433 1109
 
1434
-                    // validate if multi file upload reached max number of files [maxFiles] => 2
1435
-                    if( rgobj( $field, 'maxFiles') && rgobj( $field, 'multipleFiles') ) {
1110
+	/**
1111
+	 *
1112
+	 * Fill-in the saved values into the form inputs
1113
+	 *
1114
+	 * @param string $field_content Always empty. Returning not-empty overrides the input.
1115
+	 * @param GF_Field $field
1116
+	 * @param string|array $value If array, it's a field with multiple inputs. If string, single input.
1117
+	 * @param int $lead_id Lead ID. Always 0 for the `gform_field_input` filter.
1118
+	 * @param int $form_id Form ID
1119
+	 *
1120
+	 * @return mixed
1121
+	 */
1122
+	public function modify_edit_field_input( $field_content = '', $field, $value, $lead_id = 0, $form_id ) {
1123
+
1124
+		$gv_field = GravityView_Fields::get_associated_field( $field );
1125
+
1126
+		// If the form has been submitted, then we don't need to pre-fill the values,
1127
+		// Except for fileupload type and when a field input is overridden- run always!!
1128
+		if(
1129
+			( $this->is_edit_entry_submission() && !in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1130
+			&& false === ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) )
1131
+			&& ! GFCommon::is_product_field( $field->type )
1132
+			|| ! empty( $field_content )
1133
+			|| in_array( $field->type, array( 'honeypot' ) )
1134
+		) {
1135
+			return $field_content;
1136
+		}
1436 1137
 
1437
-                        $input_name = 'input_' . $field->id;
1438
-                        //uploaded
1439
-                        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1138
+		// SET SOME FIELD DEFAULTS TO PREVENT ISSUES
1139
+		$field->adminOnly = false; /** @see GFFormDisplay::get_counter_init_script() need to prevent adminOnly */
1440 1140
 
1441
-                        //existent
1442
-                        $entry = $this->get_entry();
1443
-                        $value = NULL;
1444
-                        if( isset( $entry[ $field->id ] ) ) {
1445
-                            $value = json_decode( $entry[ $field->id ], true );
1446
-                        }
1141
+		$field_value = $this->get_field_value( $field );
1447 1142
 
1448
-                        // count uploaded files and existent entry files
1449
-                        $count_files = count( $file_names ) + count( $value );
1143
+		// Prevent any PHP warnings, like undefined index
1144
+		ob_start();
1450 1145
 
1451
-                        if( $count_files > $field->maxFiles ) {
1452
-                            $field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1453
-                            $field->failed_validation = 1;
1454
-                            $gv_valid = false;
1146
+		$return = null;
1455 1147
 
1456
-                            // in case of error make sure the newest upload files are removed from the upload input
1457
-                            GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1458
-                        }
1148
+		/** @var GravityView_Field $gv_field */
1149
+		if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1150
+			$return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field );
1151
+		} else {
1152
+			$return = $field->get_field_input( $this->form, $field_value, $this->entry );
1153
+		}
1459 1154
 
1460
-                    }
1155
+		// If there was output, it's an error
1156
+		$warnings = ob_get_clean();
1461 1157
 
1158
+		if( !empty( $warnings ) ) {
1159
+			do_action( 'gravityview_log_error', __METHOD__ . $warnings, $field_value );
1160
+		}
1462 1161
 
1463
-                    break;
1162
+		return $return;
1163
+	}
1464 1164
 
1465
-            }
1165
+	/**
1166
+	 * Modify the value for the current field input
1167
+	 *
1168
+	 * @param GF_Field $field
1169
+	 *
1170
+	 * @return array|mixed|string
1171
+	 */
1172
+	private function get_field_value( $field ) {
1466 1173
 
1467
-            // This field has failed validation.
1468
-            if( !empty( $field->failed_validation ) ) {
1174
+		/**
1175
+		 * @filter `gravityview/edit_entry/pre_populate/override` Allow the pre-populated value to override saved value in Edit Entry form. By default, pre-populate mechanism only kicks on empty fields.
1176
+		 * @param boolean True: override saved values; False: don't override (default)
1177
+		 * @param $field GF_Field object Gravity Forms field object
1178
+		 * @since 1.13
1179
+		 */
1180
+		$override_saved_value = apply_filters( 'gravityview/edit_entry/pre_populate/override', false, $field );
1469 1181
 
1470
-                do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Field is invalid.', array( 'field' => $field, 'value' => $value ) );
1182
+		// We're dealing with multiple inputs (e.g. checkbox) but not time or date (as it doesn't store data in input IDs)
1183
+		if( isset( $field->inputs ) && is_array( $field->inputs ) && !in_array( $field->type, array( 'time', 'date' ) ) ) {
1471 1184
 
1472
-                switch ( $field_type ) {
1185
+			$field_value = array();
1473 1186
 
1474
-                    // Captchas don't need to be re-entered.
1475
-                    case 'captcha':
1187
+			// only accept pre-populated values if the field doesn't have any choice selected.
1188
+			$allow_pre_populated = $field->allowsPrepopulate;
1476 1189
 
1477
-                        // Post Image fields aren't editable, so we un-fail them.
1478
-                    case 'post_image':
1479
-                        $field->failed_validation = false;
1480
-                        unset( $field->validation_message );
1481
-                        break;
1190
+			foreach ( (array)$field->inputs as $input ) {
1482 1191
 
1483
-                }
1192
+				$input_id = strval( $input['id'] );
1193
+                
1194
+				if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) {
1195
+					$field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1196
+					$allow_pre_populated = false;
1197
+				}
1484 1198
 
1485
-                // You can't continue inside a switch, so we do it after.
1486
-                if( empty( $field->failed_validation ) ) {
1487
-                    continue;
1488
-                }
1199
+			}
1489 1200
 
1490
-                // checks if the No Duplicates option is not validating entry against itself, since
1491
-                // we're editing a stored entry, it would also assume it's a duplicate.
1492
-                if( !empty( $field->noDuplicates ) ) {
1201
+			$pre_value = $field->get_value_submission( array(), false );
1493 1202
 
1494
-                    $entry = $this->get_entry();
1203
+			$field_value = ! $allow_pre_populated && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1495 1204
 
1496
-                    // If the value of the entry is the same as the stored value
1497
-                    // Then we can assume it's not a duplicate, it's the same.
1498
-                    if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1499
-                        //if value submitted was not changed, then don't validate
1500
-                        $field->failed_validation = false;
1205
+		} else {
1501 1206
 
1502
-                        unset( $field->validation_message );
1207
+			$id = intval( $field->id );
1503 1208
 
1504
-                        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', $entry );
1209
+			// get pre-populated value if exists
1210
+			$pre_value = $field->allowsPrepopulate ? GFFormsModel::get_parameter_value( $field->inputName, array(), $field ) : '';
1505 1211
 
1506
-                        continue;
1507
-                    }
1508
-                }
1212
+			// saved field entry value (if empty, fallback to the pre-populated value, if exists)
1213
+			// or pre-populated value if not empty and set to override saved value
1214
+			$field_value = !gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value;
1509 1215
 
1510
-                // if here then probably we are facing the validation 'At least one field must be filled out'
1511
-                if( GFFormDisplay::is_empty( $field, $this->form_id  ) && empty( $field->isRequired ) ) {
1512
-                    unset( $field->validation_message );
1513
-	                $field->validation_message = false;
1514
-                    continue;
1515
-                }
1216
+			// in case field is post_category but inputType is select, multi-select or radio, convert value into array of category IDs.
1217
+			if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) {
1218
+				$categories = array();
1219
+				foreach ( explode( ',', $field_value ) as $cat_string ) {
1220
+					$categories[] = GFCommon::format_post_category( $cat_string, true );
1221
+				}
1222
+				$field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories );
1223
+			}
1516 1224
 
1517
-                $gv_valid = false;
1225
+		}
1518 1226
 
1519
-            }
1227
+		// if value is empty get the default value if defined
1228
+		$field_value = $field->get_value_default_if_empty( $field_value );
1520 1229
 
1521
-        }
1230
+		/**
1231
+		 * @filter `gravityview/edit_entry/field_value` Change the value of an Edit Entry field, if needed
1232
+		 * @since 1.11
1233
+		 * @since 1.20 Added third param
1234
+		 * @param mixed $field_value field value used to populate the input
1235
+		 * @param object $field Gravity Forms field object ( Class GF_Field )
1236
+		 * @param GravityView_Edit_Entry_Render $this Current object
1237
+		 */
1238
+		$field_value = apply_filters( 'gravityview/edit_entry/field_value', $field_value, $field, $this );
1522 1239
 
1523
-        $validation_results['is_valid'] = $gv_valid;
1240
+		/**
1241
+		 * @filter `gravityview/edit_entry/field_value_{field_type}` Change the value of an Edit Entry field for a specific field type
1242
+		 * @since 1.17
1243
+		 * @since 1.20 Added third param
1244
+		 * @param mixed $field_value field value used to populate the input
1245
+		 * @param GF_Field $field Gravity Forms field object
1246
+		 * @param GravityView_Edit_Entry_Render $this Current object
1247
+		 */
1248
+		$field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1524 1249
 
1525
-        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results.', $validation_results );
1250
+		return $field_value;
1251
+	}
1526 1252
 
1527
-        // We'll need this result when rendering the form ( on GFFormDisplay::get_form )
1528
-        $this->form_after_validation = $validation_results['form'];
1529 1253
 
1530
-        return $validation_results;
1531
-    }
1254
+	// ---- Entry validation
1532 1255
 
1256
+	/**
1257
+	 * Add field keys that Gravity Forms expects.
1258
+	 *
1259
+	 * @see GFFormDisplay::validate()
1260
+	 * @param  array $form GF Form
1261
+	 * @return array       Modified GF Form
1262
+	 */
1263
+	public function gform_pre_validation( $form ) {
1533 1264
 
1534
-    /**
1535
-     * TODO: This seems to be hacky... we should remove it. Entry is set when updating the form using setup_vars()!
1536
-     * Get the current entry and set it if it's not yet set.
1537
-     * @return array Gravity Forms entry array
1538
-     */
1539
-    public function get_entry() {
1265
+		if( ! $this->verify_nonce() ) {
1266
+			return $form;
1267
+		}
1540 1268
 
1541
-        if( empty( $this->entry ) ) {
1542
-            // Get the database value of the entry that's being edited
1543
-            $this->entry = gravityview_get_entry( GravityView_frontend::is_single_entry() );
1544
-        }
1269
+		// Fix PHP warning regarding undefined index.
1270
+		foreach ( $form['fields'] as &$field) {
1545 1271
 
1546
-        return $this->entry;
1547
-    }
1272
+			// This is because we're doing admin form pretending to be front-end, so Gravity Forms
1273
+			// expects certain field array items to be set.
1274
+			foreach ( array( 'noDuplicates', 'adminOnly', 'inputType', 'isRequired', 'enablePrice', 'inputs', 'allowedExtensions' ) as $key ) {
1275
+				$field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1276
+			}
1277
+
1278
+			switch( RGFormsModel::get_input_type( $field ) ) {
1279
+
1280
+				/**
1281
+				 * 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.
1282
+				 *
1283
+				 * What we have to do is set the value so that it doesn't get overwritten as empty on save and appears immediately in the Edit Entry screen again.
1284
+				 *
1285
+				 * @hack
1286
+				 */
1287
+				case 'fileupload':
1288
+
1289
+					// Set the previous value
1290
+					$entry = $this->get_entry();
1291
+
1292
+					$input_name = 'input_'.$field->id;
1293
+					$form_id = $form['id'];
1294
+
1295
+					$value = NULL;
1296
+
1297
+					// Use the previous entry value as the default.
1298
+					if( isset( $entry[ $field->id ] ) ) {
1299
+						$value = $entry[ $field->id ];
1300
+					}
1301
+
1302
+					// If this is a single upload file
1303
+					if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1304
+						$file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1305
+						$value = $file_path['url'];
1306
+
1307
+					} else {
1308
+
1309
+						// Fix PHP warning on line 1498 of form_display.php for post_image fields
1310
+						// Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1311
+						$_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1312
+
1313
+					}
1314
+
1315
+					if( rgar($field, "multipleFiles") ) {
1316
+
1317
+						// If there are fresh uploads, process and merge them.
1318
+						// Otherwise, use the passed values, which should be json-encoded array of URLs
1319
+						if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1320
+							$value = empty( $value ) ? '[]' : $value;
1321
+							$value = stripslashes_deep( $value );
1322
+							$value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1323
+						}
1324
+
1325
+					} else {
1326
+
1327
+						// A file already exists when editing an entry
1328
+						// We set this to solve issue when file upload fields are required.
1329
+						GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $value;
1330
+
1331
+					}
1332
+
1333
+					$this->entry[ $input_name ] = $value;
1334
+					$_POST[ $input_name ] = $value;
1335
+
1336
+					break;
1337
+
1338
+				case 'number':
1339
+					// Fix "undefined index" issue at line 1286 in form_display.php
1340
+					if( !isset( $_POST['input_'.$field->id ] ) ) {
1341
+						$_POST['input_'.$field->id ] = NULL;
1342
+					}
1343
+					break;
1344
+			}
1345
+
1346
+		}
1347
+
1348
+		return $form;
1349
+	}
1350
+
1351
+
1352
+	/**
1353
+	 * Process validation for a edit entry submission
1354
+	 *
1355
+	 * Sets the `is_valid` object var
1356
+	 *
1357
+	 * @return void
1358
+	 */
1359
+	private function validate() {
1360
+
1361
+		/**
1362
+		 * If using GF User Registration Add-on, remove the validation step, otherwise generates error when updating the entry
1363
+		 * GF User Registration Add-on version > 3.x has a different class name
1364
+		 * @since 1.16.2
1365
+		 */
1366
+		if ( class_exists( 'GF_User_Registration' ) ) {
1367
+			remove_filter( 'gform_validation', array( GF_User_Registration::get_instance(), 'validate' ) );
1368
+		} else  if ( class_exists( 'GFUser' ) ) {
1369
+			remove_filter( 'gform_validation', array( 'GFUser', 'user_registration_validation' ) );
1370
+		}
1371
+
1372
+
1373
+		/**
1374
+		 * For some crazy reason, Gravity Forms doesn't validate Edit Entry form submissions.
1375
+		 * You can enter whatever you want!
1376
+		 * We try validating, and customize the results using `self::custom_validation()`
1377
+		 */
1378
+		add_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10, 4);
1379
+
1380
+		// Needed by the validate funtion
1381
+		$failed_validation_page = NULL;
1382
+		$field_values = RGForms::post( 'gform_field_values' );
1383
+
1384
+		// Prevent entry limit from running when editing an entry, also
1385
+		// prevent form scheduling from preventing editing
1386
+		unset( $this->form['limitEntries'], $this->form['scheduleForm'] );
1387
+
1388
+		// Hide fields depending on Edit Entry settings
1389
+		$this->form['fields'] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1390
+
1391
+		$this->is_valid = GFFormDisplay::validate( $this->form, $field_values, 1, $failed_validation_page );
1392
+
1393
+		remove_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10 );
1394
+	}
1395
+
1396
+
1397
+	/**
1398
+	 * Make validation work for Edit Entry
1399
+	 *
1400
+	 * Because we're calling the GFFormDisplay::validate() in an unusual way (as a front-end
1401
+	 * form pretending to be a back-end form), validate() doesn't know we _can't_ edit post
1402
+	 * fields. This goes through all the fields and if they're an invalid post field, we
1403
+	 * set them as valid. If there are still issues, we'll return false.
1404
+	 *
1405
+	 * @param  [type] $validation_results [description]
1406
+	 * @return [type]                     [description]
1407
+	 */
1408
+	public function custom_validation( $validation_results ) {
1409
+
1410
+		do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results: ', $validation_results );
1411
+
1412
+		do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
1413
+
1414
+		$gv_valid = true;
1415
+
1416
+		foreach ( $validation_results['form']['fields'] as $key => &$field ) {
1417
+
1418
+			$value = RGFormsModel::get_field_value( $field );
1419
+			$field_type = RGFormsModel::get_input_type( $field );
1420
+
1421
+			// Validate always
1422
+			switch ( $field_type ) {
1423
+
1424
+
1425
+				case 'fileupload' :
1426
+				case 'post_image':
1427
+
1428
+					// in case nothing is uploaded but there are already files saved
1429
+					if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1430
+						$field->failed_validation = false;
1431
+						unset( $field->validation_message );
1432
+					}
1433
+
1434
+					// validate if multi file upload reached max number of files [maxFiles] => 2
1435
+					if( rgobj( $field, 'maxFiles') && rgobj( $field, 'multipleFiles') ) {
1436
+
1437
+						$input_name = 'input_' . $field->id;
1438
+						//uploaded
1439
+						$file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1440
+
1441
+						//existent
1442
+						$entry = $this->get_entry();
1443
+						$value = NULL;
1444
+						if( isset( $entry[ $field->id ] ) ) {
1445
+							$value = json_decode( $entry[ $field->id ], true );
1446
+						}
1447
+
1448
+						// count uploaded files and existent entry files
1449
+						$count_files = count( $file_names ) + count( $value );
1450
+
1451
+						if( $count_files > $field->maxFiles ) {
1452
+							$field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1453
+							$field->failed_validation = 1;
1454
+							$gv_valid = false;
1455
+
1456
+							// in case of error make sure the newest upload files are removed from the upload input
1457
+							GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1458
+						}
1548 1459
 
1460
+					}
1461
+
1462
+
1463
+					break;
1464
+
1465
+			}
1549 1466
 
1467
+			// This field has failed validation.
1468
+			if( !empty( $field->failed_validation ) ) {
1550 1469
 
1551
-    // --- Filters
1470
+				do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Field is invalid.', array( 'field' => $field, 'value' => $value ) );
1471
+
1472
+				switch ( $field_type ) {
1473
+
1474
+					// Captchas don't need to be re-entered.
1475
+					case 'captcha':
1476
+
1477
+						// Post Image fields aren't editable, so we un-fail them.
1478
+					case 'post_image':
1479
+						$field->failed_validation = false;
1480
+						unset( $field->validation_message );
1481
+						break;
1482
+
1483
+				}
1552 1484
 
1553
-    /**
1554
-     * Get the Edit Entry fields as configured in the View
1555
-     *
1556
-     * @since 1.8
1557
-     *
1558
-     * @param int $view_id
1559
-     *
1560
-     * @return array Array of fields that are configured in the Edit tab in the Admin
1561
-     */
1562
-    private function get_configured_edit_fields( $form, $view_id ) {
1485
+				// You can't continue inside a switch, so we do it after.
1486
+				if( empty( $field->failed_validation ) ) {
1487
+					continue;
1488
+				}
1489
+
1490
+				// checks if the No Duplicates option is not validating entry against itself, since
1491
+				// we're editing a stored entry, it would also assume it's a duplicate.
1492
+				if( !empty( $field->noDuplicates ) ) {
1493
+
1494
+					$entry = $this->get_entry();
1495
+
1496
+					// If the value of the entry is the same as the stored value
1497
+					// Then we can assume it's not a duplicate, it's the same.
1498
+					if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1499
+						//if value submitted was not changed, then don't validate
1500
+						$field->failed_validation = false;
1501
+
1502
+						unset( $field->validation_message );
1503
+
1504
+						do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', $entry );
1505
+
1506
+						continue;
1507
+					}
1508
+				}
1509
+
1510
+				// if here then probably we are facing the validation 'At least one field must be filled out'
1511
+				if( GFFormDisplay::is_empty( $field, $this->form_id  ) && empty( $field->isRequired ) ) {
1512
+					unset( $field->validation_message );
1513
+					$field->validation_message = false;
1514
+					continue;
1515
+				}
1516
+
1517
+				$gv_valid = false;
1518
+
1519
+			}
1520
+
1521
+		}
1522
+
1523
+		$validation_results['is_valid'] = $gv_valid;
1524
+
1525
+		do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results.', $validation_results );
1526
+
1527
+		// We'll need this result when rendering the form ( on GFFormDisplay::get_form )
1528
+		$this->form_after_validation = $validation_results['form'];
1529
+
1530
+		return $validation_results;
1531
+	}
1532
+
1533
+
1534
+	/**
1535
+	 * TODO: This seems to be hacky... we should remove it. Entry is set when updating the form using setup_vars()!
1536
+	 * Get the current entry and set it if it's not yet set.
1537
+	 * @return array Gravity Forms entry array
1538
+	 */
1539
+	public function get_entry() {
1540
+
1541
+		if( empty( $this->entry ) ) {
1542
+			// Get the database value of the entry that's being edited
1543
+			$this->entry = gravityview_get_entry( GravityView_frontend::is_single_entry() );
1544
+		}
1563 1545
 
1564
-        // Get all fields for form
1546
+		return $this->entry;
1547
+	}
1548
+
1549
+
1550
+
1551
+	// --- Filters
1552
+
1553
+	/**
1554
+	 * Get the Edit Entry fields as configured in the View
1555
+	 *
1556
+	 * @since 1.8
1557
+	 *
1558
+	 * @param int $view_id
1559
+	 *
1560
+	 * @return array Array of fields that are configured in the Edit tab in the Admin
1561
+	 */
1562
+	private function get_configured_edit_fields( $form, $view_id ) {
1563
+
1564
+		// Get all fields for form
1565 1565
 		if ( defined( 'GRAVITYVIEW_FUTURE_CORE_LOADED' ) ) {
1566 1566
 			if ( \GV\View::exists( $view_id ) ) {
1567 1567
 				$view = \GV\View::by_id( $view_id );
@@ -1572,446 +1572,446 @@  discard block
 block discarded – undo
1572 1572
 			$properties = GravityView_View_Data::getInstance()->get_fields( $view_id );
1573 1573
 		}
1574 1574
 
1575
-        // If edit tab not yet configured, show all fields
1576
-        $edit_fields = !empty( $properties['edit_edit-fields'] ) ? $properties['edit_edit-fields'] : NULL;
1575
+		// If edit tab not yet configured, show all fields
1576
+		$edit_fields = !empty( $properties['edit_edit-fields'] ) ? $properties['edit_edit-fields'] : NULL;
1577 1577
 
1578
-        // Hide fields depending on admin settings
1579
-        $fields = $this->filter_fields( $form['fields'], $edit_fields );
1578
+		// Hide fields depending on admin settings
1579
+		$fields = $this->filter_fields( $form['fields'], $edit_fields );
1580 1580
 
1581
-	    // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1582
-	    $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
1581
+		// If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1582
+		$fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
1583 1583
 
1584
-        /**
1585
-         * @filter `gravityview/edit_entry/form_fields` Modify the fields displayed in Edit Entry form
1586
-         * @since 1.17
1587
-         * @param GF_Field[] $fields Gravity Forms form fields
1588
-         * @param array|null $edit_fields Fields for the Edit Entry tab configured in the View Configuration
1589
-         * @param array $form GF Form array (`fields` key modified to have only fields configured to show in Edit Entry)
1590
-         * @param int $view_id View ID
1591
-         */
1592
-        $fields = apply_filters( 'gravityview/edit_entry/form_fields', $fields, $edit_fields, $form, $view_id );
1584
+		/**
1585
+		 * @filter `gravityview/edit_entry/form_fields` Modify the fields displayed in Edit Entry form
1586
+		 * @since 1.17
1587
+		 * @param GF_Field[] $fields Gravity Forms form fields
1588
+		 * @param array|null $edit_fields Fields for the Edit Entry tab configured in the View Configuration
1589
+		 * @param array $form GF Form array (`fields` key modified to have only fields configured to show in Edit Entry)
1590
+		 * @param int $view_id View ID
1591
+		 */
1592
+		$fields = apply_filters( 'gravityview/edit_entry/form_fields', $fields, $edit_fields, $form, $view_id );
1593 1593
 
1594
-        return $fields;
1595
-    }
1596
-
1597
-
1598
-    /**
1599
-     * Filter area fields based on specified conditions
1600
-     *  - This filter removes the fields that have calculation configured
1601
-     *
1602
-     * @uses GravityView_Edit_Entry::user_can_edit_field() Check caps
1603
-     * @access private
1604
-     * @param GF_Field[] $fields
1605
-     * @param array $configured_fields
1606
-     * @since  1.5
1607
-     * @return array $fields
1608
-     */
1609
-    private function filter_fields( $fields, $configured_fields ) {
1610
-
1611
-        if( empty( $fields ) || !is_array( $fields ) ) {
1612
-            return $fields;
1613
-        }
1614
-
1615
-        $edit_fields = array();
1616
-
1617
-        $field_type_blacklist = $this->loader->get_field_blacklist( $this->entry );
1618
-
1619
-        // First, remove blacklist or calculation fields
1620
-        foreach ( $fields as $key => $field ) {
1621
-
1622
-            // Remove the fields that have calculation properties and keep them to be used later
1623
-            // @since 1.16.2
1624
-            if( $field->has_calculation() ) {
1625
-                $this->fields_with_calculation[] = $field;
1626
-                // don't remove the calculation fields on form render.
1627
-            }
1628
-
1629
-            if( in_array( $field->type, $field_type_blacklist ) ) {
1630
-                unset( $fields[ $key ] );
1631
-            }
1632
-        }
1633
-
1634
-        // The Edit tab has not been configured, so we return all fields by default.
1635
-        if( empty( $configured_fields ) ) {
1636
-            return $fields;
1637
-        }
1638
-
1639
-        // The edit tab has been configured, so we loop through to configured settings
1640
-        foreach ( $configured_fields as $configured_field ) {
1641
-
1642
-	        /** @var GF_Field $field */
1643
-	        foreach ( $fields as $field ) {
1644
-
1645
-                if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
1646
-                    $edit_fields[] = $this->merge_field_properties( $field, $configured_field );
1647
-                    break;
1648
-                }
1649
-
1650
-            }
1651
-
1652
-        }
1653
-
1654
-        return $edit_fields;
1655
-
1656
-    }
1657
-
1658
-    /**
1659
-     * Override GF Form field properties with the ones defined on the View
1660
-     * @param  GF_Field $field GF Form field object
1661
-     * @param  array $field_setting  GV field options
1662
-     * @since  1.5
1663
-     * @return array|GF_Field
1664
-     */
1665
-    private function merge_field_properties( $field, $field_setting ) {
1666
-
1667
-        $return_field = $field;
1668
-
1669
-        if( empty( $field_setting['show_label'] ) ) {
1670
-            $return_field->label = '';
1671
-        } elseif ( !empty( $field_setting['custom_label'] ) ) {
1672
-            $return_field->label = $field_setting['custom_label'];
1673
-        }
1674
-
1675
-        if( !empty( $field_setting['custom_class'] ) ) {
1676
-            $return_field->cssClass .= ' '. gravityview_sanitize_html_class( $field_setting['custom_class'] );
1677
-        }
1678
-
1679
-        /**
1680
-         * Normalize page numbers - avoid conflicts with page validation
1681
-         * @since 1.6
1682
-         */
1683
-        $return_field->pageNumber = 1;
1684
-
1685
-        return $return_field;
1686
-
1687
-    }
1688
-
1689
-    /**
1690
-     * Remove fields that shouldn't be visible based on the Gravity Forms adminOnly field property
1691
-     *
1692
-     * @since 1.9.1
1693
-     *
1694
-     * @param array|GF_Field[] $fields Gravity Forms form fields
1695
-     * @param array|null $edit_fields Fields for the Edit Entry tab configured in the View Configuration
1696
-     * @param array $form GF Form array
1697
-     * @param int $view_id View ID
1698
-     *
1699
-     * @return array Possibly modified form array
1700
-     */
1701
-    private function filter_admin_only_fields( $fields = array(), $edit_fields = null, $form = array(), $view_id = 0 ) {
1702
-
1703
-	    /**
1704
-         * @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
1705
-	     * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators.
1706
-	     * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions
1707
-	     * @since 1.9.1
1708
-	     * @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.
1709
-	     * @param array $form GF Form array
1710
-	     * @param int $view_id View ID
1711
-	     */
1712
-	    $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
1713
-
1714
-	    if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
1715
-            foreach( $fields as $k => $field ) {
1716
-                if( $field->adminOnly ) {
1717
-                    unset( $fields[ $k ] );
1718
-                }
1719
-            }
1720
-            return $fields;
1721
-        }
1722
-
1723
-	    foreach( $fields as &$field ) {
1724
-		    $field->adminOnly = false;
1725
-        }
1726
-
1727
-        return $fields;
1728
-    }
1729
-
1730
-    // --- Conditional Logic
1731
-
1732
-    /**
1733
-     * Conditional logic isn't designed to work with forms that already have content. When switching input values,
1734
-     * the dependent fields will be blank.
1735
-     *
1736
-     * Note: This is because GF populates a JavaScript variable with the input values. This is tough to filter at the input level;
1737
-     * via the `gform_field_value` filter; it requires lots of legwork. Doing it at the form level is easier.
1738
-     *
1739
-     * @since 1.17.4
1740
-     *
1741
-     * @param array $form Gravity Forms array object
1742
-     *
1743
-     * @return array $form, modified to fix conditional
1744
-     */
1745
-    function prefill_conditional_logic( $form ) {
1746
-
1747
-        if( ! GFFormDisplay::has_conditional_logic( $form ) ) {
1748
-            return $form;
1749
-        }
1750
-
1751
-        // Have Conditional Logic pre-fill fields as if the data were default values
1752
-        /** @var GF_Field $field */
1753
-        foreach ( $form['fields'] as &$field ) {
1754
-
1755
-            if( 'checkbox' === $field->type ) {
1756
-                foreach ( $field->get_entry_inputs() as $key => $input ) {
1757
-                    $input_id = $input['id'];
1758
-                    $choice = $field->choices[ $key ];
1759
-                    $value = rgar( $this->entry, $input_id );
1760
-                    $match = RGFormsModel::choice_value_match( $field, $choice, $value );
1761
-                    if( $match ) {
1762
-                        $field->choices[ $key ]['isSelected'] = true;
1763
-                    }
1764
-                }
1765
-            } else {
1766
-
1767
-                // We need to run through each field to set the default values
1768
-                foreach ( $this->entry as $field_id => $field_value ) {
1769
-
1770
-                    if( floatval( $field_id ) === floatval( $field->id ) ) {
1771
-
1772
-                        if( 'list' === $field->type ) {
1773
-                            $list_rows = maybe_unserialize( $field_value );
1774
-
1775
-                            $list_field_value = array();
1776
-                            foreach ( (array) $list_rows as $row ) {
1777
-                                foreach ( (array) $row as $column ) {
1778
-                                    $list_field_value[] = $column;
1779
-                                }
1780
-                            }
1781
-
1782
-                            $field->defaultValue = serialize( $list_field_value );
1783
-                        } else {
1784
-                            $field->defaultValue = $field_value;
1785
-                        }
1786
-                    }
1787
-                }
1788
-            }
1789
-        }
1790
-
1791
-        return $form;
1792
-    }
1793
-
1794
-    /**
1795
-     * Remove the conditional logic rules from the form button and the form fields, if needed.
1796
-     *
1797
-     * @todo Merge with caller method
1798
-     * @since 1.9
1799
-     *
1800
-     * @param array $form Gravity Forms form
1801
-     * @return array Modified form, if not using Conditional Logic
1802
-     */
1803
-    private function filter_conditional_logic( $form ) {
1804
-
1805
-        /**
1806
-         * @filter `gravityview/edit_entry/conditional_logic` Should the Edit Entry form use Gravity Forms conditional logic showing/hiding of fields?
1807
-         * @since 1.9
1808
-         * @param bool $use_conditional_logic True: Gravity Forms will show/hide fields just like in the original form; False: conditional logic will be disabled and fields will be shown based on configuration. Default: true
1809
-         * @param array $form Gravity Forms form
1810
-         */
1811
-        $use_conditional_logic = apply_filters( 'gravityview/edit_entry/conditional_logic', true, $form );
1812
-
1813
-        if( $use_conditional_logic ) {
1814
-            return $form;
1815
-        }
1816
-
1817
-        foreach( $form['fields'] as &$field ) {
1818
-            /* @var GF_Field $field */
1819
-            $field->conditionalLogic = null;
1820
-        }
1821
-
1822
-        unset( $form['button']['conditionalLogic'] );
1823
-
1824
-        return $form;
1825
-
1826
-    }
1827
-
1828
-    /**
1829
-     * Disable the Gravity Forms conditional logic script and features on the Edit Entry screen
1830
-     *
1831
-     * @since 1.9
1832
-     *
1833
-     * @param $has_conditional_logic
1834
-     * @param $form
1835
-     * @return mixed
1836
-     */
1837
-    public function manage_conditional_logic( $has_conditional_logic, $form ) {
1838
-
1839
-        if( ! $this->is_edit_entry() ) {
1840
-            return $has_conditional_logic;
1841
-        }
1842
-
1843
-	    /** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */
1844
-        return apply_filters( 'gravityview/edit_entry/conditional_logic', $has_conditional_logic, $form );
1845
-    }
1846
-
1847
-
1848
-    // --- User checks and nonces
1849
-
1850
-    /**
1851
-     * Check if the user can edit the entry
1852
-     *
1853
-     * - Is the nonce valid?
1854
-     * - Does the user have the right caps for the entry
1855
-     * - Is the entry in the trash?
1856
-     *
1857
-     * @todo Move to GVCommon
1858
-     *
1859
-     * @param  boolean $echo Show error messages in the form?
1860
-     * @return boolean        True: can edit form. False: nope.
1861
-     */
1862
-    private function user_can_edit_entry( $echo = false ) {
1863
-
1864
-        $error = NULL;
1865
-
1866
-        /**
1867
-         *  1. Permalinks are turned off
1868
-         *  2. There are two entries embedded using oEmbed
1869
-         *  3. One of the entries has just been saved
1870
-         */
1871
-        if( !empty( $_POST['lid'] ) && !empty( $_GET['entry'] ) && ( $_POST['lid'] !== $_GET['entry'] ) ) {
1872
-
1873
-            $error = true;
1874
-
1875
-        }
1876
-
1877
-        if( !empty( $_GET['entry'] ) && (string)$this->entry['id'] !== $_GET['entry'] ) {
1878
-
1879
-            $error = true;
1880
-
1881
-        } elseif( ! $this->verify_nonce() ) {
1882
-
1883
-            /**
1884
-             * If the Entry is embedded, there may be two entries on the same page.
1885
-             * If that's the case, and one is being edited, the other should fail gracefully and not display an error.
1886
-             */
1887
-            if( GravityView_oEmbed::getInstance()->get_entry_id() ) {
1888
-                $error = true;
1889
-            } else {
1890
-                $error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview');
1891
-            }
1892
-
1893
-        }
1894
-
1895
-        if( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
1896
-            $error = __( 'You do not have permission to edit this entry.', 'gravityview');
1897
-        }
1898
-
1899
-        if( $this->entry['status'] === 'trash' ) {
1900
-            $error = __('You cannot edit the entry; it is in the trash.', 'gravityview' );
1901
-        }
1594
+		return $fields;
1595
+	}
1902 1596
 
1903
-        // No errors; everything's fine here!
1904
-        if( empty( $error ) ) {
1905
-            return true;
1906
-        }
1907 1597
 
1908
-        if( $echo && $error !== true ) {
1598
+	/**
1599
+	 * Filter area fields based on specified conditions
1600
+	 *  - This filter removes the fields that have calculation configured
1601
+	 *
1602
+	 * @uses GravityView_Edit_Entry::user_can_edit_field() Check caps
1603
+	 * @access private
1604
+	 * @param GF_Field[] $fields
1605
+	 * @param array $configured_fields
1606
+	 * @since  1.5
1607
+	 * @return array $fields
1608
+	 */
1609
+	private function filter_fields( $fields, $configured_fields ) {
1909 1610
 
1910
-	        $error = esc_html( $error );
1611
+		if( empty( $fields ) || !is_array( $fields ) ) {
1612
+			return $fields;
1613
+		}
1911 1614
 
1912
-	        /**
1913
-	         * @since 1.9
1914
-	         */
1915
-	        if ( ! empty( $this->entry ) ) {
1916
-		        $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;" ) );
1917
-	        }
1615
+		$edit_fields = array();
1918 1616
 
1919
-            echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error');
1920
-        }
1617
+		$field_type_blacklist = $this->loader->get_field_blacklist( $this->entry );
1921 1618
 
1922
-        do_action('gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_entry]' . $error );
1619
+		// First, remove blacklist or calculation fields
1620
+		foreach ( $fields as $key => $field ) {
1923 1621
 
1924
-        return false;
1925
-    }
1926
-
1927
-
1928
-    /**
1929
-     * Check whether a field is editable by the current user, and optionally display an error message
1930
-     * @uses  GravityView_Edit_Entry->check_user_cap_edit_field() Check user capabilities
1931
-     * @param  array  $field Field or field settings array
1932
-     * @param  boolean $echo  Whether to show error message telling user they aren't allowed
1933
-     * @return boolean         True: user can edit the current field; False: nope, they can't.
1934
-     */
1935
-    private function user_can_edit_field( $field, $echo = false ) {
1622
+			// Remove the fields that have calculation properties and keep them to be used later
1623
+			// @since 1.16.2
1624
+			if( $field->has_calculation() ) {
1625
+				$this->fields_with_calculation[] = $field;
1626
+				// don't remove the calculation fields on form render.
1627
+			}
1936 1628
 
1937
-        $error = NULL;
1629
+			if( in_array( $field->type, $field_type_blacklist ) ) {
1630
+				unset( $fields[ $key ] );
1631
+			}
1632
+		}
1938 1633
 
1939
-        if( ! $this->check_user_cap_edit_field( $field ) ) {
1940
-            $error = __( 'You do not have permission to edit this field.', 'gravityview');
1941
-        }
1634
+		// The Edit tab has not been configured, so we return all fields by default.
1635
+		if( empty( $configured_fields ) ) {
1636
+			return $fields;
1637
+		}
1942 1638
 
1943
-        // No errors; everything's fine here!
1944
-        if( empty( $error ) ) {
1945
-            return true;
1946
-        }
1639
+		// The edit tab has been configured, so we loop through to configured settings
1640
+		foreach ( $configured_fields as $configured_field ) {
1947 1641
 
1948
-        if( $echo ) {
1949
-            echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error');
1950
-        }
1951
-
1952
-        do_action('gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_field]' . $error );
1642
+			/** @var GF_Field $field */
1643
+			foreach ( $fields as $field ) {
1953 1644
 
1954
-        return false;
1645
+				if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
1646
+					$edit_fields[] = $this->merge_field_properties( $field, $configured_field );
1647
+					break;
1648
+				}
1955 1649
 
1956
-    }
1650
+			}
1957 1651
 
1652
+		}
1958 1653
 
1959
-    /**
1960
-     * checks if user has permissions to edit a specific field
1961
-     *
1962
-     * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_field for maximum security!!
1963
-     *
1964
-     * @param  [type] $field [description]
1965
-     * @return bool
1966
-     */
1967
-    private function check_user_cap_edit_field( $field ) {
1654
+		return $edit_fields;
1968 1655
 
1969
-        // If they can edit any entries (as defined in Gravity Forms), we're good.
1970
-        if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
1971
-            return true;
1972
-        }
1656
+	}
1973 1657
 
1974
-        $field_cap = isset( $field['allow_edit_cap'] ) ? $field['allow_edit_cap'] : false;
1658
+	/**
1659
+	 * Override GF Form field properties with the ones defined on the View
1660
+	 * @param  GF_Field $field GF Form field object
1661
+	 * @param  array $field_setting  GV field options
1662
+	 * @since  1.5
1663
+	 * @return array|GF_Field
1664
+	 */
1665
+	private function merge_field_properties( $field, $field_setting ) {
1975 1666
 
1976
-        // If the field has custom editing capaibilities set, check those
1977
-        if( $field_cap ) {
1978
-            return GVCommon::has_cap( $field['allow_edit_cap'] );
1979
-        }
1980
-
1981
-        return false;
1982
-    }
1667
+		$return_field = $field;
1983 1668
 
1669
+		if( empty( $field_setting['show_label'] ) ) {
1670
+			$return_field->label = '';
1671
+		} elseif ( !empty( $field_setting['custom_label'] ) ) {
1672
+			$return_field->label = $field_setting['custom_label'];
1673
+		}
1984 1674
 
1985
-    /**
1986
-     * Is the current nonce valid for editing the entry?
1987
-     * @return boolean
1988
-     */
1989
-    public function verify_nonce() {
1675
+		if( !empty( $field_setting['custom_class'] ) ) {
1676
+			$return_field->cssClass .= ' '. gravityview_sanitize_html_class( $field_setting['custom_class'] );
1677
+		}
1990 1678
 
1991
-        // Verify form submitted for editing single
1992
-        if( $this->is_edit_entry_submission() ) {
1993
-            $valid = wp_verify_nonce( $_POST[ self::$nonce_field ], self::$nonce_field );
1994
-        }
1679
+		/**
1680
+		 * Normalize page numbers - avoid conflicts with page validation
1681
+		 * @since 1.6
1682
+		 */
1683
+		$return_field->pageNumber = 1;
1995 1684
 
1996
-        // Verify
1997
-        else if( ! $this->is_edit_entry() ) {
1998
-            $valid = false;
1999
-        }
1685
+		return $return_field;
2000 1686
 
2001
-        else {
2002
-            $valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key );
2003
-        }
1687
+	}
2004 1688
 
2005
-        /**
2006
-         * @filter `gravityview/edit_entry/verify_nonce` Override Edit Entry nonce validation. Return true to declare nonce valid.
2007
-         * @since 1.13
2008
-         * @param int|boolean $valid False if invalid; 1 or 2 when nonce was generated
2009
-         * @param string $nonce_field Key used when validating submissions. Default: is_gv_edit_entry
2010
-         */
2011
-        $valid = apply_filters( 'gravityview/edit_entry/verify_nonce', $valid, self::$nonce_field );
1689
+	/**
1690
+	 * Remove fields that shouldn't be visible based on the Gravity Forms adminOnly field property
1691
+	 *
1692
+	 * @since 1.9.1
1693
+	 *
1694
+	 * @param array|GF_Field[] $fields Gravity Forms form fields
1695
+	 * @param array|null $edit_fields Fields for the Edit Entry tab configured in the View Configuration
1696
+	 * @param array $form GF Form array
1697
+	 * @param int $view_id View ID
1698
+	 *
1699
+	 * @return array Possibly modified form array
1700
+	 */
1701
+	private function filter_admin_only_fields( $fields = array(), $edit_fields = null, $form = array(), $view_id = 0 ) {
1702
+
1703
+		/**
1704
+		 * @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
1705
+		 * If the Edit Entry tab is not configured, adminOnly fields will not be shown to non-administrators.
1706
+		 * If the Edit Entry tab *is* configured, adminOnly fields will be shown to non-administrators, using the configured GV permissions
1707
+		 * @since 1.9.1
1708
+		 * @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.
1709
+		 * @param array $form GF Form array
1710
+		 * @param int $view_id View ID
1711
+		 */
1712
+		$use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
1713
+
1714
+		if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
1715
+			foreach( $fields as $k => $field ) {
1716
+				if( $field->adminOnly ) {
1717
+					unset( $fields[ $k ] );
1718
+				}
1719
+			}
1720
+			return $fields;
1721
+		}
1722
+
1723
+		foreach( $fields as &$field ) {
1724
+			$field->adminOnly = false;
1725
+		}
1726
+
1727
+		return $fields;
1728
+	}
1729
+
1730
+	// --- Conditional Logic
1731
+
1732
+	/**
1733
+	 * Conditional logic isn't designed to work with forms that already have content. When switching input values,
1734
+	 * the dependent fields will be blank.
1735
+	 *
1736
+	 * Note: This is because GF populates a JavaScript variable with the input values. This is tough to filter at the input level;
1737
+	 * via the `gform_field_value` filter; it requires lots of legwork. Doing it at the form level is easier.
1738
+	 *
1739
+	 * @since 1.17.4
1740
+	 *
1741
+	 * @param array $form Gravity Forms array object
1742
+	 *
1743
+	 * @return array $form, modified to fix conditional
1744
+	 */
1745
+	function prefill_conditional_logic( $form ) {
1746
+
1747
+		if( ! GFFormDisplay::has_conditional_logic( $form ) ) {
1748
+			return $form;
1749
+		}
1750
+
1751
+		// Have Conditional Logic pre-fill fields as if the data were default values
1752
+		/** @var GF_Field $field */
1753
+		foreach ( $form['fields'] as &$field ) {
1754
+
1755
+			if( 'checkbox' === $field->type ) {
1756
+				foreach ( $field->get_entry_inputs() as $key => $input ) {
1757
+					$input_id = $input['id'];
1758
+					$choice = $field->choices[ $key ];
1759
+					$value = rgar( $this->entry, $input_id );
1760
+					$match = RGFormsModel::choice_value_match( $field, $choice, $value );
1761
+					if( $match ) {
1762
+						$field->choices[ $key ]['isSelected'] = true;
1763
+					}
1764
+				}
1765
+			} else {
1766
+
1767
+				// We need to run through each field to set the default values
1768
+				foreach ( $this->entry as $field_id => $field_value ) {
1769
+
1770
+					if( floatval( $field_id ) === floatval( $field->id ) ) {
1771
+
1772
+						if( 'list' === $field->type ) {
1773
+							$list_rows = maybe_unserialize( $field_value );
1774
+
1775
+							$list_field_value = array();
1776
+							foreach ( (array) $list_rows as $row ) {
1777
+								foreach ( (array) $row as $column ) {
1778
+									$list_field_value[] = $column;
1779
+								}
1780
+							}
1781
+
1782
+							$field->defaultValue = serialize( $list_field_value );
1783
+						} else {
1784
+							$field->defaultValue = $field_value;
1785
+						}
1786
+					}
1787
+				}
1788
+			}
1789
+		}
1790
+
1791
+		return $form;
1792
+	}
1793
+
1794
+	/**
1795
+	 * Remove the conditional logic rules from the form button and the form fields, if needed.
1796
+	 *
1797
+	 * @todo Merge with caller method
1798
+	 * @since 1.9
1799
+	 *
1800
+	 * @param array $form Gravity Forms form
1801
+	 * @return array Modified form, if not using Conditional Logic
1802
+	 */
1803
+	private function filter_conditional_logic( $form ) {
1804
+
1805
+		/**
1806
+		 * @filter `gravityview/edit_entry/conditional_logic` Should the Edit Entry form use Gravity Forms conditional logic showing/hiding of fields?
1807
+		 * @since 1.9
1808
+		 * @param bool $use_conditional_logic True: Gravity Forms will show/hide fields just like in the original form; False: conditional logic will be disabled and fields will be shown based on configuration. Default: true
1809
+		 * @param array $form Gravity Forms form
1810
+		 */
1811
+		$use_conditional_logic = apply_filters( 'gravityview/edit_entry/conditional_logic', true, $form );
1812
+
1813
+		if( $use_conditional_logic ) {
1814
+			return $form;
1815
+		}
1816
+
1817
+		foreach( $form['fields'] as &$field ) {
1818
+			/* @var GF_Field $field */
1819
+			$field->conditionalLogic = null;
1820
+		}
1821
+
1822
+		unset( $form['button']['conditionalLogic'] );
1823
+
1824
+		return $form;
1825
+
1826
+	}
1827
+
1828
+	/**
1829
+	 * Disable the Gravity Forms conditional logic script and features on the Edit Entry screen
1830
+	 *
1831
+	 * @since 1.9
1832
+	 *
1833
+	 * @param $has_conditional_logic
1834
+	 * @param $form
1835
+	 * @return mixed
1836
+	 */
1837
+	public function manage_conditional_logic( $has_conditional_logic, $form ) {
1838
+
1839
+		if( ! $this->is_edit_entry() ) {
1840
+			return $has_conditional_logic;
1841
+		}
1842
+
1843
+		/** @see GravityView_Edit_Entry_Render::filter_conditional_logic for filter documentation */
1844
+		return apply_filters( 'gravityview/edit_entry/conditional_logic', $has_conditional_logic, $form );
1845
+	}
1846
+
1847
+
1848
+	// --- User checks and nonces
1849
+
1850
+	/**
1851
+	 * Check if the user can edit the entry
1852
+	 *
1853
+	 * - Is the nonce valid?
1854
+	 * - Does the user have the right caps for the entry
1855
+	 * - Is the entry in the trash?
1856
+	 *
1857
+	 * @todo Move to GVCommon
1858
+	 *
1859
+	 * @param  boolean $echo Show error messages in the form?
1860
+	 * @return boolean        True: can edit form. False: nope.
1861
+	 */
1862
+	private function user_can_edit_entry( $echo = false ) {
2012 1863
 
2013
-        return $valid;
2014
-    }
1864
+		$error = NULL;
1865
+
1866
+		/**
1867
+		 *  1. Permalinks are turned off
1868
+		 *  2. There are two entries embedded using oEmbed
1869
+		 *  3. One of the entries has just been saved
1870
+		 */
1871
+		if( !empty( $_POST['lid'] ) && !empty( $_GET['entry'] ) && ( $_POST['lid'] !== $_GET['entry'] ) ) {
1872
+
1873
+			$error = true;
1874
+
1875
+		}
1876
+
1877
+		if( !empty( $_GET['entry'] ) && (string)$this->entry['id'] !== $_GET['entry'] ) {
1878
+
1879
+			$error = true;
1880
+
1881
+		} elseif( ! $this->verify_nonce() ) {
1882
+
1883
+			/**
1884
+			 * If the Entry is embedded, there may be two entries on the same page.
1885
+			 * If that's the case, and one is being edited, the other should fail gracefully and not display an error.
1886
+			 */
1887
+			if( GravityView_oEmbed::getInstance()->get_entry_id() ) {
1888
+				$error = true;
1889
+			} else {
1890
+				$error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview');
1891
+			}
1892
+
1893
+		}
1894
+
1895
+		if( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
1896
+			$error = __( 'You do not have permission to edit this entry.', 'gravityview');
1897
+		}
1898
+
1899
+		if( $this->entry['status'] === 'trash' ) {
1900
+			$error = __('You cannot edit the entry; it is in the trash.', 'gravityview' );
1901
+		}
1902
+
1903
+		// No errors; everything's fine here!
1904
+		if( empty( $error ) ) {
1905
+			return true;
1906
+		}
1907
+
1908
+		if( $echo && $error !== true ) {
1909
+
1910
+			$error = esc_html( $error );
1911
+
1912
+			/**
1913
+			 * @since 1.9
1914
+			 */
1915
+			if ( ! empty( $this->entry ) ) {
1916
+				$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;" ) );
1917
+			}
1918
+
1919
+			echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error');
1920
+		}
1921
+
1922
+		do_action('gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_entry]' . $error );
1923
+
1924
+		return false;
1925
+	}
1926
+
1927
+
1928
+	/**
1929
+	 * Check whether a field is editable by the current user, and optionally display an error message
1930
+	 * @uses  GravityView_Edit_Entry->check_user_cap_edit_field() Check user capabilities
1931
+	 * @param  array  $field Field or field settings array
1932
+	 * @param  boolean $echo  Whether to show error message telling user they aren't allowed
1933
+	 * @return boolean         True: user can edit the current field; False: nope, they can't.
1934
+	 */
1935
+	private function user_can_edit_field( $field, $echo = false ) {
1936
+
1937
+		$error = NULL;
1938
+
1939
+		if( ! $this->check_user_cap_edit_field( $field ) ) {
1940
+			$error = __( 'You do not have permission to edit this field.', 'gravityview');
1941
+		}
1942
+
1943
+		// No errors; everything's fine here!
1944
+		if( empty( $error ) ) {
1945
+			return true;
1946
+		}
1947
+
1948
+		if( $echo ) {
1949
+			echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error');
1950
+		}
1951
+
1952
+		do_action('gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_field]' . $error );
1953
+
1954
+		return false;
1955
+
1956
+	}
1957
+
1958
+
1959
+	/**
1960
+	 * checks if user has permissions to edit a specific field
1961
+	 *
1962
+	 * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_field for maximum security!!
1963
+	 *
1964
+	 * @param  [type] $field [description]
1965
+	 * @return bool
1966
+	 */
1967
+	private function check_user_cap_edit_field( $field ) {
1968
+
1969
+		// If they can edit any entries (as defined in Gravity Forms), we're good.
1970
+		if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
1971
+			return true;
1972
+		}
1973
+
1974
+		$field_cap = isset( $field['allow_edit_cap'] ) ? $field['allow_edit_cap'] : false;
1975
+
1976
+		// If the field has custom editing capaibilities set, check those
1977
+		if( $field_cap ) {
1978
+			return GVCommon::has_cap( $field['allow_edit_cap'] );
1979
+		}
1980
+
1981
+		return false;
1982
+	}
1983
+
1984
+
1985
+	/**
1986
+	 * Is the current nonce valid for editing the entry?
1987
+	 * @return boolean
1988
+	 */
1989
+	public function verify_nonce() {
1990
+
1991
+		// Verify form submitted for editing single
1992
+		if( $this->is_edit_entry_submission() ) {
1993
+			$valid = wp_verify_nonce( $_POST[ self::$nonce_field ], self::$nonce_field );
1994
+		}
1995
+
1996
+		// Verify
1997
+		else if( ! $this->is_edit_entry() ) {
1998
+			$valid = false;
1999
+		}
2000
+
2001
+		else {
2002
+			$valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key );
2003
+		}
2004
+
2005
+		/**
2006
+		 * @filter `gravityview/edit_entry/verify_nonce` Override Edit Entry nonce validation. Return true to declare nonce valid.
2007
+		 * @since 1.13
2008
+		 * @param int|boolean $valid False if invalid; 1 or 2 when nonce was generated
2009
+		 * @param string $nonce_field Key used when validating submissions. Default: is_gv_edit_entry
2010
+		 */
2011
+		$valid = apply_filters( 'gravityview/edit_entry/verify_nonce', $valid, self::$nonce_field );
2012
+
2013
+		return $valid;
2014
+	}
2015 2015
 
2016 2016
 
2017 2017
 	/**
Please login to merge, or discard this patch.
Spacing   +228 added lines, -228 removed lines patch added patch discarded remove patch
@@ -106,16 +106,16 @@  discard block
 block discarded – undo
106 106
     function load() {
107 107
 
108 108
         /** @define "GRAVITYVIEW_DIR" "../../../" */
109
-        include_once( GRAVITYVIEW_DIR .'includes/class-admin-approve-entries.php' );
109
+        include_once( GRAVITYVIEW_DIR . 'includes/class-admin-approve-entries.php' );
110 110
 
111 111
         // Don't display an embedded form when editing an entry
112 112
         add_action( 'wp_head', array( $this, 'prevent_render_form' ) );
113 113
         add_action( 'wp_footer', array( $this, 'prevent_render_form' ) );
114 114
 
115 115
         // Stop Gravity Forms processing what is ours!
116
-        add_filter( 'wp', array( $this, 'prevent_maybe_process_form'), 8 );
116
+        add_filter( 'wp', array( $this, 'prevent_maybe_process_form' ), 8 );
117 117
 
118
-        add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry') );
118
+        add_filter( 'gravityview_is_edit_entry', array( $this, 'is_edit_entry' ) );
119 119
 
120 120
         add_action( 'gravityview_edit_entry', array( $this, 'init' ) );
121 121
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         add_filter( 'gform_plupload_settings', array( $this, 'modify_fileupload_settings' ), 10, 3 );
127 127
 
128 128
         // Add fields expected by GFFormDisplay::validate()
129
-        add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation') );
129
+        add_filter( 'gform_pre_validation', array( $this, 'gform_pre_validation' ) );
130 130
 
131 131
 		// Fix multiselect value for GF 2.2
132 132
 		add_filter( 'gravityview/edit_entry/field_value_multiselect', array( $this, 'fix_multiselect_value_serialization' ), 10, 3 );
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
      * @return void
144 144
      */
145 145
     public function prevent_render_form() {
146
-        if( $this->is_edit_entry() ) {
147
-            if( 'wp_head' === current_filter() ) {
146
+        if ( $this->is_edit_entry() ) {
147
+            if ( 'wp_head' === current_filter() ) {
148 148
                 add_filter( 'gform_shortcode_form', '__return_empty_string' );
149 149
             } else {
150 150
                 remove_filter( 'gform_shortcode_form', '__return_empty_string' );
@@ -159,13 +159,13 @@  discard block
 block discarded – undo
159 159
      */
160 160
     public function prevent_maybe_process_form() {
161 161
 
162
-        if( ! empty( $_POST ) ) {
162
+        if ( ! empty( $_POST ) ) {
163 163
 	        do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[prevent_maybe_process_form] $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
164 164
         }
165 165
 
166
-        if( $this->is_edit_entry_submission() ) {
167
-            remove_action( 'wp',  array( 'RGForms', 'maybe_process_form'), 9 );
168
-	        remove_action( 'wp',  array( 'GFForms', 'maybe_process_form'), 9 );
166
+        if ( $this->is_edit_entry_submission() ) {
167
+            remove_action( 'wp', array( 'RGForms', 'maybe_process_form' ), 9 );
168
+	        remove_action( 'wp', array( 'GFForms', 'maybe_process_form' ), 9 );
169 169
         }
170 170
     }
171 171
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      */
176 176
     public function is_edit_entry() {
177 177
 
178
-        $is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET['edit'] );
178
+        $is_edit_entry = GravityView_frontend::is_single_entry() && ! empty( $_GET[ 'edit' ] );
179 179
 
180 180
         return ( $is_edit_entry || $this->is_edit_entry_submission() );
181 181
     }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 	 * @return boolean
187 187
 	 */
188 188
 	public function is_edit_entry_submission() {
189
-		return !empty( $_POST[ self::$nonce_field ] );
189
+		return ! empty( $_POST[ self::$nonce_field ] );
190 190
 	}
191 191
 
192 192
     /**
@@ -197,15 +197,15 @@  discard block
 block discarded – undo
197 197
 
198 198
 
199 199
         $entries = $gravityview_view->getEntries();
200
-	    self::$original_entry = $entries[0];
201
-	    $this->entry = $entries[0];
200
+	    self::$original_entry = $entries[ 0 ];
201
+	    $this->entry = $entries[ 0 ];
202 202
 
203 203
         self::$original_form = $gravityview_view->getForm();
204 204
         $this->form = $gravityview_view->getForm();
205 205
         $this->form_id = $gravityview_view->getFormId();
206 206
         $this->view_id = $gravityview_view->getViewId();
207 207
 
208
-        self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry['id'] );
208
+        self::$nonce_key = GravityView_Edit_Entry::get_nonce_key( $this->view_id, $this->form_id, $this->entry[ 'id' ] );
209 209
     }
210 210
 
211 211
 
@@ -226,14 +226,14 @@  discard block
 block discarded – undo
226 226
 
227 227
         // Multiple Views embedded, don't proceed if nonce fails
228 228
 		$multiple_views = defined( 'GRAVITYVIEW_FUTURE_CORE_LOADED' ) ? gravityview()->views->count() > 1 : $gv_data->has_multiple_views();
229
-        if( $multiple_views && ! wp_verify_nonce( $_GET['edit'], self::$nonce_key ) ) {
230
-            do_action('gravityview_log_error', __METHOD__ . ': Nonce validation failed for the Edit Entry request; returning' );
229
+        if ( $multiple_views && ! wp_verify_nonce( $_GET[ 'edit' ], self::$nonce_key ) ) {
230
+            do_action( 'gravityview_log_error', __METHOD__ . ': Nonce validation failed for the Edit Entry request; returning' );
231 231
             return;
232 232
         }
233 233
 
234 234
         // Sorry, you're not allowed here.
235
-        if( false === $this->user_can_edit_entry( true ) ) {
236
-            do_action('gravityview_log_error', __METHOD__ . ': User is not allowed to edit this entry; returning', $this->entry );
235
+        if ( false === $this->user_can_edit_entry( true ) ) {
236
+            do_action( 'gravityview_log_error', __METHOD__ . ': User is not allowed to edit this entry; returning', $this->entry );
237 237
             return;
238 238
         }
239 239
 
@@ -253,9 +253,9 @@  discard block
 block discarded – undo
253 253
     private function print_scripts() {
254 254
         $gravityview_view = GravityView_View::getInstance();
255 255
 
256
-        wp_register_script( 'gform_gravityforms', GFCommon::get_base_url().'/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
256
+        wp_register_script( 'gform_gravityforms', GFCommon::get_base_url() . '/js/gravityforms.js', array( 'jquery', 'gform_json', 'gform_placeholder', 'sack', 'plupload-all', 'gravityview-fe-view' ) );
257 257
 
258
-        GFFormDisplay::enqueue_form_scripts($gravityview_view->getForm(), false);
258
+        GFFormDisplay::enqueue_form_scripts( $gravityview_view->getForm(), false );
259 259
 
260 260
         // Sack is required for images
261 261
         wp_print_scripts( array( 'sack', 'gform_gravityforms' ) );
@@ -267,32 +267,32 @@  discard block
 block discarded – undo
267 267
      */
268 268
     private function process_save() {
269 269
 
270
-        if( empty( $_POST ) || ! isset( $_POST['lid'] ) ) {
270
+        if ( empty( $_POST ) || ! isset( $_POST[ 'lid' ] ) ) {
271 271
             return;
272 272
         }
273 273
 
274 274
         // Make sure the entry, view, and form IDs are all correct
275 275
         $valid = $this->verify_nonce();
276 276
 
277
-        if( !$valid ) {
278
-            do_action('gravityview_log_error', __METHOD__ . ' Nonce validation failed.' );
277
+        if ( ! $valid ) {
278
+            do_action( 'gravityview_log_error', __METHOD__ . ' Nonce validation failed.' );
279 279
             return;
280 280
         }
281 281
 
282
-        if( $this->entry['id'] !== $_POST['lid'] ) {
283
-            do_action('gravityview_log_error', __METHOD__ . ' Entry ID did not match posted entry ID.' );
282
+        if ( $this->entry[ 'id' ] !== $_POST[ 'lid' ] ) {
283
+            do_action( 'gravityview_log_error', __METHOD__ . ' Entry ID did not match posted entry ID.' );
284 284
             return;
285 285
         }
286 286
 
287
-        do_action('gravityview_log_debug', __METHOD__ . ': $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
287
+        do_action( 'gravityview_log_debug', __METHOD__ . ': $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
288 288
 
289 289
         $this->process_save_process_files( $this->form_id );
290 290
 
291 291
         $this->validate();
292 292
 
293
-        if( $this->is_valid ) {
293
+        if ( $this->is_valid ) {
294 294
 
295
-            do_action('gravityview_log_debug', __METHOD__ . ': Submission is valid.' );
295
+            do_action( 'gravityview_log_debug', __METHOD__ . ': Submission is valid.' );
296 296
 
297 297
             /**
298 298
              * @hack This step is needed to unset the adminOnly from form fields, to add the calculation fields
@@ -302,22 +302,22 @@  discard block
 block discarded – undo
302 302
             /**
303 303
              * @hack to avoid the capability validation of the method save_lead for GF 1.9+
304 304
              */
305
-            unset( $_GET['page'] );
305
+            unset( $_GET[ 'page' ] );
306 306
 
307
-            $date_created = $this->entry['date_created'];
307
+            $date_created = $this->entry[ 'date_created' ];
308 308
 
309 309
             /**
310 310
              * @hack to force Gravity Forms to use $read_value_from_post in GFFormsModel::save_lead()
311 311
              * @since 1.17.2
312 312
              */
313
-            unset( $this->entry['date_created'] );
313
+            unset( $this->entry[ 'date_created' ] );
314 314
 
315 315
             GFFormsModel::save_lead( $form, $this->entry );
316 316
 
317 317
 	        // Delete the values for hidden inputs
318 318
 	        $this->unset_hidden_field_values();
319 319
             
320
-            $this->entry['date_created'] = $date_created;
320
+            $this->entry[ 'date_created' ] = $date_created;
321 321
 
322 322
             // Process calculation fields
323 323
             $this->update_calculation_fields();
@@ -337,10 +337,10 @@  discard block
 block discarded – undo
337 337
              * @param string $entry_id Numeric ID of the entry that was updated
338 338
              * @param GravityView_Edit_Entry_Render $this This object
339 339
              */
340
-            do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry['id'], $this );
340
+            do_action( 'gravityview/edit_entry/after_update', $this->form, $this->entry[ 'id' ], $this );
341 341
 
342 342
         } else {
343
-            do_action('gravityview_log_error', __METHOD__ . ': Submission is NOT valid.', $this->entry );
343
+            do_action( 'gravityview_log_error', __METHOD__ . ': Submission is NOT valid.', $this->entry );
344 344
         }
345 345
 
346 346
     } // process_save
@@ -359,10 +359,10 @@  discard block
 block discarded – undo
359 359
 
360 360
 		if ( method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
361 361
 			$entry_meta_table = GFFormsModel::get_entry_meta_table_name();
362
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT meta_key, meta_value FROM $entry_meta_table WHERE entry_id=%d", $this->entry['id'] ) );
362
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT meta_key, meta_value FROM $entry_meta_table WHERE entry_id=%d", $this->entry[ 'id' ] ) );
363 363
 		} else {
364 364
 			$lead_detail_table = GFFormsModel::get_lead_details_table_name();
365
-			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT id, field_number FROM $lead_detail_table WHERE lead_id=%d", $this->entry['id'] ) );
365
+			$current_fields = $wpdb->get_results( $wpdb->prepare( "SELECT id, field_number FROM $lead_detail_table WHERE lead_id=%d", $this->entry[ 'id' ] ) );
366 366
 		}
367 367
 
368 368
 	    foreach ( $this->entry as $input_id => $field_value ) {
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
 		}
444 444
 
445 445
 		/** No file is being uploaded. */
446
-		if ( empty( $_FILES[ $input_name ]['name'] ) ) {
446
+		if ( empty( $_FILES[ $input_name ][ 'name' ] ) ) {
447 447
 			/** So return the original upload */
448 448
 			return $entry[ $input_id ];
449 449
 		}
@@ -461,11 +461,11 @@  discard block
 block discarded – undo
461 461
      * @return mixed
462 462
      */
463 463
     public function modify_fileupload_settings( $plupload_init, $form_id, $instance ) {
464
-        if( ! $this->is_edit_entry() ) {
464
+        if ( ! $this->is_edit_entry() ) {
465 465
             return $plupload_init;
466 466
         }
467 467
 
468
-        $plupload_init['gf_vars']['max_files'] = 0;
468
+        $plupload_init[ 'gf_vars' ][ 'max_files' ] = 0;
469 469
 
470 470
         return $plupload_init;
471 471
     }
@@ -480,22 +480,22 @@  discard block
 block discarded – undo
480 480
         $form = $this->form;
481 481
 
482 482
 	    /** @var GF_Field $field */
483
-        foreach( $form['fields'] as $k => &$field ) {
483
+        foreach ( $form[ 'fields' ] as $k => &$field ) {
484 484
 
485 485
             /**
486 486
              * Remove the fields with calculation formulas before save to avoid conflicts with GF logic
487 487
              * @since 1.16.3
488 488
              * @var GF_Field $field
489 489
              */
490
-            if( $field->has_calculation() ) {
491
-                unset( $form['fields'][ $k ] );
490
+            if ( $field->has_calculation() ) {
491
+                unset( $form[ 'fields' ][ $k ] );
492 492
             }
493 493
 
494 494
             $field->adminOnly = false;
495 495
 
496
-            if( isset( $field->inputs ) && is_array( $field->inputs ) ) {
497
-                foreach( $field->inputs as $key => $input ) {
498
-                    $field->inputs[ $key ][ 'id' ] = (string)$input['id'];
496
+            if ( isset( $field->inputs ) && is_array( $field->inputs ) ) {
497
+                foreach ( $field->inputs as $key => $input ) {
498
+                    $field->inputs[ $key ][ 'id' ] = (string)$input[ 'id' ];
499 499
                 }
500 500
             }
501 501
         }
@@ -509,21 +509,21 @@  discard block
 block discarded – undo
509 509
         $update = false;
510 510
 
511 511
         // get the most up to date entry values
512
-        $entry = GFAPI::get_entry( $this->entry['id'] );
512
+        $entry = GFAPI::get_entry( $this->entry[ 'id' ] );
513 513
 
514
-		if( !empty( $this->fields_with_calculation ) ) {
514
+		if ( ! empty( $this->fields_with_calculation ) ) {
515 515
 			$update = true;
516 516
 			foreach ( $this->fields_with_calculation as $calc_field ) {
517 517
 				$inputs = $calc_field->get_entry_inputs();
518 518
 				if ( is_array( $inputs ) ) {
519 519
 					foreach ( $inputs as $input ) {
520
-						$input_name = 'input_' . str_replace( '.', '_', $input['id'] );
520
+						$input_name = 'input_' . str_replace( '.', '_', $input[ 'id' ] );
521 521
 						list( $prefix, $field_id, $input_id ) = rgexplode( '_', $input_name, 3 );
522 522
 
523 523
 						switch ( $input_id ) {
524 524
 							case 1:
525 525
 								/** Never void the labels. */
526
-								$value = $entry[ $input['id'] ];
526
+								$value = $entry[ $input[ 'id' ] ];
527 527
 								break;
528 528
 							case 2:
529 529
 								/** Always recalcualte the final price. */
@@ -531,25 +531,25 @@  discard block
 block discarded – undo
531 531
 								break;
532 532
 							case 3:
533 533
 								/** Fetch the quantity form the request. */
534
-								$value = rgpost( $input_name, $entry[ $input['id'] ] );
534
+								$value = rgpost( $input_name, $entry[ $input[ 'id' ] ] );
535 535
 								break;
536 536
 						}
537 537
 
538
-						$entry[ strval( $input['id'] ) ] = RGFormsModel::prepare_value( $form, $calc_field, $value, $input_name, $entry['id'], $entry );
538
+						$entry[ strval( $input[ 'id' ] ) ] = RGFormsModel::prepare_value( $form, $calc_field, $value, $input_name, $entry[ 'id' ], $entry );
539 539
 					}
540 540
 				} else {
541
-					$input_name = 'input_' . str_replace( '.', '_', $calc_field->id);
542
-					$entry[ strval( $calc_field->id ) ] = RGFormsModel::prepare_value( $form, $calc_field, '', $input_name, $entry['id'], $entry );
541
+					$input_name = 'input_' . str_replace( '.', '_', $calc_field->id );
542
+					$entry[ strval( $calc_field->id ) ] = RGFormsModel::prepare_value( $form, $calc_field, '', $input_name, $entry[ 'id' ], $entry );
543 543
 				}
544 544
 			}
545 545
 
546 546
 		}
547 547
 
548
-        if( $update ) {
548
+        if ( $update ) {
549 549
 
550 550
             $return_entry = GFAPI::update_entry( $entry );
551 551
 
552
-            if( is_wp_error( $return_entry ) ) {
552
+            if ( is_wp_error( $return_entry ) ) {
553 553
                 do_action( 'gravityview_log_error', 'Updating the entry calculation fields failed', $return_entry );
554 554
             } else {
555 555
                 do_action( 'gravityview_log_debug', 'Updating the entry calculation fields succeeded' );
@@ -580,18 +580,18 @@  discard block
 block discarded – undo
580 580
 
581 581
         $input_name = 'input_' . $field_id;
582 582
 
583
-        if ( !empty( $_FILES[ $input_name ]['name'] ) ) {
583
+        if ( ! empty( $_FILES[ $input_name ][ 'name' ] ) ) {
584 584
 
585 585
             // We have a new image
586 586
 
587
-            $value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'] );
587
+            $value = RGFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ] );
588 588
 
589 589
             $ary = ! empty( $value ) ? explode( '|:|', $value ) : array();
590 590
             $img_url = rgar( $ary, 0 );
591 591
 
592
-            $img_title       = count( $ary ) > 1 ? $ary[1] : '';
593
-            $img_caption     = count( $ary ) > 2 ? $ary[2] : '';
594
-            $img_description = count( $ary ) > 3 ? $ary[3] : '';
592
+            $img_title       = count( $ary ) > 1 ? $ary[ 1 ] : '';
593
+            $img_caption     = count( $ary ) > 2 ? $ary[ 2 ] : '';
594
+            $img_description = count( $ary ) > 3 ? $ary[ 3 ] : '';
595 595
 
596 596
             $image_meta = array(
597 597
                 'post_excerpt' => $img_caption,
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
 
601 601
             //adding title only if it is not empty. It will default to the file name if it is not in the array
602 602
             if ( ! empty( $img_title ) ) {
603
-                $image_meta['post_title'] = $img_title;
603
+                $image_meta[ 'post_title' ] = $img_title;
604 604
             }
605 605
 
606 606
             /**
@@ -615,13 +615,13 @@  discard block
 block discarded – undo
615 615
                 set_post_thumbnail( $post_id, $media_id );
616 616
             }
617 617
 
618
-        } elseif ( !empty( $_POST[ $input_name ] ) && is_array( $value ) ) {
618
+        } elseif ( ! empty( $_POST[ $input_name ] ) && is_array( $value ) ) {
619 619
 
620 620
             $img_url = $_POST[ $input_name ];
621 621
 
622
-			$img_title       = rgar( $_POST, $input_name.'_1' );
623
-			$img_caption     = rgar( $_POST, $input_name .'_4' );
624
-			$img_description = rgar( $_POST, $input_name .'_7' );
622
+			$img_title       = rgar( $_POST, $input_name . '_1' );
623
+			$img_caption     = rgar( $_POST, $input_name . '_4' );
624
+			$img_description = rgar( $_POST, $input_name . '_7' );
625 625
 
626 626
 			$value = ! empty( $img_url ) ? $img_url . "|:|" . $img_title . "|:|" . $img_caption . "|:|" . $img_description : '';
627 627
 
@@ -659,16 +659,16 @@  discard block
 block discarded – undo
659 659
      */
660 660
     private function maybe_update_post_fields( $form ) {
661 661
 
662
-        if( empty( $this->entry['post_id'] ) ) {
662
+        if ( empty( $this->entry[ 'post_id' ] ) ) {
663 663
 	        do_action( 'gravityview_log_debug', __METHOD__ . ': This entry has no post fields. Continuing...' );
664 664
             return;
665 665
         }
666 666
 
667
-        $post_id = $this->entry['post_id'];
667
+        $post_id = $this->entry[ 'post_id' ];
668 668
 
669 669
         // Security check
670
-        if( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
671
-            do_action( 'gravityview_log_error', 'The current user does not have the ability to edit Post #'.$post_id );
670
+        if ( false === GVCommon::has_cap( 'edit_post', $post_id ) ) {
671
+            do_action( 'gravityview_log_error', 'The current user does not have the ability to edit Post #' . $post_id );
672 672
             return;
673 673
         }
674 674
 
@@ -680,25 +680,25 @@  discard block
 block discarded – undo
680 680
 
681 681
             $field = RGFormsModel::get_field( $form, $field_id );
682 682
 
683
-            if( ! $field ) {
683
+            if ( ! $field ) {
684 684
                 continue;
685 685
             }
686 686
 
687
-            if( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
687
+            if ( GFCommon::is_post_field( $field ) && 'post_category' !== $field->type ) {
688 688
 
689 689
                 // Get the value of the field, including $_POSTed value
690 690
                 $value = RGFormsModel::get_field_value( $field );
691 691
 
692 692
                 // Use temporary entry variable, to make values available to fill_post_template() and update_post_image()
693 693
                 $entry_tmp = $this->entry;
694
-                $entry_tmp["{$field_id}"] = $value;
694
+                $entry_tmp[ "{$field_id}" ] = $value;
695 695
 
696
-                switch( $field->type ) {
696
+                switch ( $field->type ) {
697 697
 
698 698
                     case 'post_title':
699 699
                         $post_title = $value;
700
-                        if( rgar( $form, 'postTitleTemplateEnabled' ) ) {
701
-                            $post_title = $this->fill_post_template( $form['postTitleTemplate'], $form, $entry_tmp );
700
+                        if ( rgar( $form, 'postTitleTemplateEnabled' ) ) {
701
+                            $post_title = $this->fill_post_template( $form[ 'postTitleTemplate' ], $form, $entry_tmp );
702 702
                         }
703 703
                         $updated_post->post_title = $post_title;
704 704
                         $updated_post->post_name  = $post_title;
@@ -707,8 +707,8 @@  discard block
 block discarded – undo
707 707
 
708 708
                     case 'post_content':
709 709
                         $post_content = $value;
710
-                        if( rgar( $form, 'postContentTemplateEnabled' ) ) {
711
-                            $post_content = $this->fill_post_template( $form['postContentTemplate'], $form, $entry_tmp, true );
710
+                        if ( rgar( $form, 'postContentTemplateEnabled' ) ) {
711
+                            $post_content = $this->fill_post_template( $form[ 'postContentTemplate' ], $form, $entry_tmp, true );
712 712
                         }
713 713
                         $updated_post->post_content = $post_content;
714 714
                         unset( $post_content );
@@ -726,12 +726,12 @@  discard block
 block discarded – undo
726 726
 							$value = $value[ $field_id ];
727 727
 						}
728 728
 
729
-                        if( ! empty( $field->customFieldTemplateEnabled ) ) {
729
+                        if ( ! empty( $field->customFieldTemplateEnabled ) ) {
730 730
                             $value = $this->fill_post_template( $field->customFieldTemplate, $form, $entry_tmp, true );
731 731
                         }
732 732
 
733 733
 	                    if ( $this->is_field_json_encoded( $field ) && ! is_string( $value ) ) {
734
-		                    $value = function_exists('wp_json_encode') ? wp_json_encode( $value ) : json_encode( $value );
734
+		                    $value = function_exists( 'wp_json_encode' ) ? wp_json_encode( $value ) : json_encode( $value );
735 735
 	                    }
736 736
 
737 737
                         update_post_meta( $post_id, $field->postCustomFieldName, $value );
@@ -744,7 +744,7 @@  discard block
 block discarded – undo
744 744
                 }
745 745
 
746 746
                 // update entry after
747
-                $this->entry["{$field_id}"] = $value;
747
+                $this->entry[ "{$field_id}" ] = $value;
748 748
 
749 749
                 $update_entry = true;
750 750
 
@@ -753,25 +753,25 @@  discard block
 block discarded – undo
753 753
 
754 754
         }
755 755
 
756
-        if( $update_entry ) {
756
+        if ( $update_entry ) {
757 757
 
758 758
             $return_entry = GFAPI::update_entry( $this->entry );
759 759
 
760
-            if( is_wp_error( $return_entry ) ) {
760
+            if ( is_wp_error( $return_entry ) ) {
761 761
                do_action( 'gravityview_log_error', 'Updating the entry post fields failed', array( '$this->entry' => $this->entry, '$return_entry' => $return_entry ) );
762 762
             } else {
763
-                do_action( 'gravityview_log_debug', 'Updating the entry post fields for post #'.$post_id.' succeeded' );
763
+                do_action( 'gravityview_log_debug', 'Updating the entry post fields for post #' . $post_id . ' succeeded' );
764 764
             }
765 765
 
766 766
         }
767 767
 
768 768
         $return_post = wp_update_post( $updated_post, true );
769 769
 
770
-        if( is_wp_error( $return_post ) ) {
770
+        if ( is_wp_error( $return_post ) ) {
771 771
             $return_post->add_data( $updated_post, '$updated_post' );
772 772
             do_action( 'gravityview_log_error', 'Updating the post content failed', compact( 'updated_post', 'return_post' ) );
773 773
         } else {
774
-            do_action( 'gravityview_log_debug', 'Updating the post content for post #'.$post_id.' succeeded', $updated_post );
774
+            do_action( 'gravityview_log_debug', 'Updating the post content for post #' . $post_id . ' succeeded', $updated_post );
775 775
         }
776 776
     }
777 777
 
@@ -789,7 +789,7 @@  discard block
 block discarded – undo
789 789
         $input_type = RGFormsModel::get_input_type( $field );
790 790
 
791 791
 	    // Only certain custom field types are supported
792
-	    switch( $input_type ) {
792
+	    switch ( $input_type ) {
793 793
 		    case 'fileupload':
794 794
 		    case 'list':
795 795
 		    case 'multiselect':
@@ -826,7 +826,7 @@  discard block
 block discarded – undo
826 826
         $output = GFCommon::replace_variables( $output, $form, $entry, false, false, false );
827 827
 
828 828
         // replace conditional shortcodes
829
-        if( $do_shortcode ) {
829
+        if ( $do_shortcode ) {
830 830
             $output = do_shortcode( $output );
831 831
         }
832 832
 
@@ -845,19 +845,19 @@  discard block
 block discarded – undo
845 845
      */
846 846
     private function after_update() {
847 847
 
848
-        do_action( 'gform_after_update_entry', $this->form, $this->entry['id'], self::$original_entry );
849
-        do_action( "gform_after_update_entry_{$this->form['id']}", $this->form, $this->entry['id'], self::$original_entry );
848
+        do_action( 'gform_after_update_entry', $this->form, $this->entry[ 'id' ], self::$original_entry );
849
+        do_action( "gform_after_update_entry_{$this->form[ 'id' ]}", $this->form, $this->entry[ 'id' ], self::$original_entry );
850 850
 
851 851
         // Re-define the entry now that we've updated it.
852
-        $entry = RGFormsModel::get_lead( $this->entry['id'] );
852
+        $entry = RGFormsModel::get_lead( $this->entry[ 'id' ] );
853 853
 
854 854
         $entry = GFFormsModel::set_entry_meta( $entry, $this->form );
855 855
 
856 856
 		if ( ! method_exists( 'GFFormsModel', 'get_entry_meta_table_name' ) ) {
857 857
 			// We need to clear the cache because Gravity Forms caches the field values, which
858 858
 			// we have just updated.
859
-			foreach ($this->form['fields'] as $key => $field) {
860
-				GFFormsModel::refresh_lead_field_value( $entry['id'], $field->id );
859
+			foreach ( $this->form[ 'fields' ] as $key => $field ) {
860
+				GFFormsModel::refresh_lead_field_value( $entry[ 'id' ], $field->id );
861 861
 			}
862 862
 		}
863 863
 
@@ -876,7 +876,7 @@  discard block
 block discarded – undo
876 876
 
877 877
         <div class="gv-edit-entry-wrapper"><?php
878 878
 
879
-            $javascript = gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/inline-javascript.php', $this );
879
+            $javascript = gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/inline-javascript.php', $this );
880 880
 
881 881
             /**
882 882
              * Fixes weird wpautop() issue
@@ -892,7 +892,7 @@  discard block
 block discarded – undo
892 892
                      * @param string $edit_entry_title Modify the "Edit Entry" title
893 893
                      * @param GravityView_Edit_Entry_Render $this This object
894 894
                      */
895
-                    $edit_entry_title = apply_filters('gravityview_edit_entry_title', __('Edit Entry', 'gravityview'), $this );
895
+                    $edit_entry_title = apply_filters( 'gravityview_edit_entry_title', __( 'Edit Entry', 'gravityview' ), $this );
896 896
 
897 897
                     echo esc_attr( $edit_entry_title );
898 898
             ?></span>
@@ -938,20 +938,20 @@  discard block
 block discarded – undo
938 938
      */
939 939
     private function maybe_print_message() {
940 940
 
941
-        if( rgpost('action') === 'update' ) {
941
+        if ( rgpost( 'action' ) === 'update' ) {
942 942
 
943 943
             $back_link = esc_url( remove_query_arg( array( 'page', 'view', 'edit' ) ) );
944 944
 
945
-            if( ! $this->is_valid ){
945
+            if ( ! $this->is_valid ) {
946 946
 
947 947
                 // Keeping this compatible with Gravity Forms.
948
-                $validation_message = "<div class='validation_error'>" . __('There was a problem with your submission.', 'gravityview') . " " . __('Errors have been highlighted below.', 'gravityview') . "</div>";
949
-                $message = apply_filters("gform_validation_message_{$this->form['id']}", apply_filters("gform_validation_message", $validation_message, $this->form), $this->form);
948
+                $validation_message = "<div class='validation_error'>" . __( 'There was a problem with your submission.', 'gravityview' ) . " " . __( 'Errors have been highlighted below.', 'gravityview' ) . "</div>";
949
+                $message = apply_filters( "gform_validation_message_{$this->form[ 'id' ]}", apply_filters( "gform_validation_message", $validation_message, $this->form ), $this->form );
950 950
 
951
-                echo GVCommon::generate_notice( $message , 'gv-error' );
951
+                echo GVCommon::generate_notice( $message, 'gv-error' );
952 952
 
953 953
             } else {
954
-                $entry_updated_message = sprintf( esc_attr__('Entry Updated. %sReturn to Entry%s', 'gravityview'), '<a href="'. $back_link .'">', '</a>' );
954
+                $entry_updated_message = sprintf( esc_attr__( 'Entry Updated. %sReturn to Entry%s', 'gravityview' ), '<a href="' . $back_link . '">', '</a>' );
955 955
 
956 956
                 /**
957 957
                  * @filter `gravityview/edit_entry/success` Modify the edit entry success message (including the anchor link)
@@ -961,7 +961,7 @@  discard block
 block discarded – undo
961 961
                  * @param array $entry Gravity Forms entry array
962 962
                  * @param string $back_link URL to return to the original entry. @since 1.6
963 963
                  */
964
-                $message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message , $this->view_id, $this->entry, $back_link );
964
+                $message = apply_filters( 'gravityview/edit_entry/success', $entry_updated_message, $this->view_id, $this->entry, $back_link );
965 965
 
966 966
                 echo GVCommon::generate_notice( $message );
967 967
             }
@@ -985,21 +985,21 @@  discard block
 block discarded – undo
985 985
          */
986 986
         do_action( 'gravityview/edit-entry/render/before', $this );
987 987
 
988
-        add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields'), 5000, 3 );
989
-        add_filter( 'gform_submit_button', array( $this, 'render_form_buttons') );
988
+        add_filter( 'gform_pre_render', array( $this, 'filter_modify_form_fields' ), 5000, 3 );
989
+        add_filter( 'gform_submit_button', array( $this, 'render_form_buttons' ) );
990 990
         add_filter( 'gform_disable_view_counter', '__return_true' );
991 991
 
992 992
         add_filter( 'gform_field_input', array( $this, 'verify_user_can_edit_post' ), 5, 5 );
993 993
         add_filter( 'gform_field_input', array( $this, 'modify_edit_field_input' ), 10, 5 );
994 994
 
995 995
         // We need to remove the fake $_GET['page'] arg to avoid rendering form as if in admin.
996
-        unset( $_GET['page'] );
996
+        unset( $_GET[ 'page' ] );
997 997
 
998 998
         // TODO: Verify multiple-page forms
999 999
 
1000 1000
         ob_start(); // Prevent PHP warnings possibly caused by prefilling list fields for conditional logic
1001 1001
 
1002
-        $html = GFFormDisplay::get_form( $this->form['id'], false, false, true, $this->entry );
1002
+        $html = GFFormDisplay::get_form( $this->form[ 'id' ], false, false, true, $this->entry );
1003 1003
 
1004 1004
         ob_get_clean();
1005 1005
 
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
      * @return string
1026 1026
      */
1027 1027
     public function render_form_buttons() {
1028
-        return gravityview_ob_include( GravityView_Edit_Entry::$file .'/partials/form-buttons.php', $this );
1028
+        return gravityview_ob_include( GravityView_Edit_Entry::$file . '/partials/form-buttons.php', $this );
1029 1029
     }
1030 1030
 
1031 1031
 
@@ -1045,10 +1045,10 @@  discard block
 block discarded – undo
1045 1045
     public function filter_modify_form_fields( $form, $ajax = false, $field_values = '' ) {
1046 1046
 
1047 1047
         // In case we have validated the form, use it to inject the validation results into the form render
1048
-        if( isset( $this->form_after_validation ) ) {
1048
+        if ( isset( $this->form_after_validation ) ) {
1049 1049
             $form = $this->form_after_validation;
1050 1050
         } else {
1051
-            $form['fields'] = $this->get_configured_edit_fields( $form, $this->view_id );
1051
+            $form[ 'fields' ] = $this->get_configured_edit_fields( $form, $this->view_id );
1052 1052
         }
1053 1053
 
1054 1054
         $form = $this->filter_conditional_logic( $form );
@@ -1056,8 +1056,8 @@  discard block
 block discarded – undo
1056 1056
         $form = $this->prefill_conditional_logic( $form );
1057 1057
 
1058 1058
         // for now we don't support Save and Continue feature.
1059
-        if( ! self::$supports_save_and_continue ) {
1060
-	        unset( $form['save'] );
1059
+        if ( ! self::$supports_save_and_continue ) {
1060
+	        unset( $form[ 'save' ] );
1061 1061
         }
1062 1062
 
1063 1063
         return $form;
@@ -1078,29 +1078,29 @@  discard block
 block discarded – undo
1078 1078
      */
1079 1079
     public function verify_user_can_edit_post( $field_content = '', $field, $value, $lead_id = 0, $form_id ) {
1080 1080
 
1081
-        if( GFCommon::is_post_field( $field ) ) {
1081
+        if ( GFCommon::is_post_field( $field ) ) {
1082 1082
 
1083 1083
             $message = null;
1084 1084
 
1085 1085
             // First, make sure they have the capability to edit the post.
1086
-            if( false === current_user_can( 'edit_post', $this->entry['post_id'] ) ) {
1086
+            if ( false === current_user_can( 'edit_post', $this->entry[ 'post_id' ] ) ) {
1087 1087
 
1088 1088
                 /**
1089 1089
                  * @filter `gravityview/edit_entry/unsupported_post_field_text` Modify the message when someone isn't able to edit a post
1090 1090
                  * @param string $message The existing "You don't have permission..." text
1091 1091
                  */
1092
-                $message = apply_filters('gravityview/edit_entry/unsupported_post_field_text', __('You don&rsquo;t have permission to edit this post.', 'gravityview') );
1092
+                $message = apply_filters( 'gravityview/edit_entry/unsupported_post_field_text', __( 'You don&rsquo;t have permission to edit this post.', 'gravityview' ) );
1093 1093
 
1094
-            } elseif( null === get_post( $this->entry['post_id'] ) ) {
1094
+            } elseif ( null === get_post( $this->entry[ 'post_id' ] ) ) {
1095 1095
                 /**
1096 1096
                  * @filter `gravityview/edit_entry/no_post_text` Modify the message when someone is editing an entry attached to a post that no longer exists
1097 1097
                  * @param string $message The existing "This field is not editable; the post no longer exists." text
1098 1098
                  */
1099
-                $message = apply_filters('gravityview/edit_entry/no_post_text', __('This field is not editable; the post no longer exists.', 'gravityview' ) );
1099
+                $message = apply_filters( 'gravityview/edit_entry/no_post_text', __( 'This field is not editable; the post no longer exists.', 'gravityview' ) );
1100 1100
             }
1101 1101
 
1102
-            if( $message ) {
1103
-                $field_content = sprintf('<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1102
+            if ( $message ) {
1103
+                $field_content = sprintf( '<div class="ginput_container ginput_container_' . $field->type . '">%s</div>', wpautop( $message ) );
1104 1104
             }
1105 1105
         }
1106 1106
 
@@ -1125,8 +1125,8 @@  discard block
 block discarded – undo
1125 1125
 
1126 1126
         // If the form has been submitted, then we don't need to pre-fill the values,
1127 1127
         // Except for fileupload type and when a field input is overridden- run always!!
1128
-        if(
1129
-            ( $this->is_edit_entry_submission() && !in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1128
+        if (
1129
+            ( $this->is_edit_entry_submission() && ! in_array( $field->type, array( 'fileupload', 'post_image' ) ) )
1130 1130
             && false === ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) )
1131 1131
             && ! GFCommon::is_product_field( $field->type )
1132 1132
             || ! empty( $field_content )
@@ -1146,7 +1146,7 @@  discard block
 block discarded – undo
1146 1146
 	    $return = null;
1147 1147
 
1148 1148
         /** @var GravityView_Field $gv_field */
1149
-        if( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1149
+        if ( $gv_field && is_callable( array( $gv_field, 'get_field_input' ) ) ) {
1150 1150
             $return = $gv_field->get_field_input( $this->form, $field_value, $this->entry, $field );
1151 1151
         } else {
1152 1152
 	        $return = $field->get_field_input( $this->form, $field_value, $this->entry );
@@ -1155,7 +1155,7 @@  discard block
 block discarded – undo
1155 1155
 	    // If there was output, it's an error
1156 1156
 	    $warnings = ob_get_clean();
1157 1157
 
1158
-	    if( !empty( $warnings ) ) {
1158
+	    if ( ! empty( $warnings ) ) {
1159 1159
 		    do_action( 'gravityview_log_error', __METHOD__ . $warnings, $field_value );
1160 1160
 	    }
1161 1161
 
@@ -1180,7 +1180,7 @@  discard block
 block discarded – undo
1180 1180
         $override_saved_value = apply_filters( 'gravityview/edit_entry/pre_populate/override', false, $field );
1181 1181
 
1182 1182
         // We're dealing with multiple inputs (e.g. checkbox) but not time or date (as it doesn't store data in input IDs)
1183
-        if( isset( $field->inputs ) && is_array( $field->inputs ) && !in_array( $field->type, array( 'time', 'date' ) ) ) {
1183
+        if ( isset( $field->inputs ) && is_array( $field->inputs ) && ! in_array( $field->type, array( 'time', 'date' ) ) ) {
1184 1184
 
1185 1185
             $field_value = array();
1186 1186
 
@@ -1189,10 +1189,10 @@  discard block
 block discarded – undo
1189 1189
 
1190 1190
             foreach ( (array)$field->inputs as $input ) {
1191 1191
 
1192
-                $input_id = strval( $input['id'] );
1192
+                $input_id = strval( $input[ 'id' ] );
1193 1193
                 
1194 1194
                 if ( isset( $this->entry[ $input_id ] ) && ! gv_empty( $this->entry[ $input_id ], false, false ) ) {
1195
-                    $field_value[ $input_id ] =  'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1195
+                    $field_value[ $input_id ] = 'post_category' === $field->type ? GFCommon::format_post_category( $this->entry[ $input_id ], true ) : $this->entry[ $input_id ];
1196 1196
                     $allow_pre_populated = false;
1197 1197
                 }
1198 1198
 
@@ -1200,7 +1200,7 @@  discard block
 block discarded – undo
1200 1200
 
1201 1201
             $pre_value = $field->get_value_submission( array(), false );
1202 1202
 
1203
-            $field_value = ! $allow_pre_populated && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1203
+            $field_value = ! $allow_pre_populated && ! ( $override_saved_value && ! gv_empty( $pre_value, false, false ) ) ? $field_value : $pre_value;
1204 1204
 
1205 1205
         } else {
1206 1206
 
@@ -1211,13 +1211,13 @@  discard block
 block discarded – undo
1211 1211
 
1212 1212
             // saved field entry value (if empty, fallback to the pre-populated value, if exists)
1213 1213
             // or pre-populated value if not empty and set to override saved value
1214
-            $field_value = !gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && !gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value;
1214
+            $field_value = ! gv_empty( $this->entry[ $id ], false, false ) && ! ( $override_saved_value && ! gv_empty( $pre_value, false, false ) ) ? $this->entry[ $id ] : $pre_value;
1215 1215
 
1216 1216
             // in case field is post_category but inputType is select, multi-select or radio, convert value into array of category IDs.
1217
-            if ( 'post_category' === $field->type && !gv_empty( $field_value, false, false ) ) {
1217
+            if ( 'post_category' === $field->type && ! gv_empty( $field_value, false, false ) ) {
1218 1218
                 $categories = array();
1219 1219
                 foreach ( explode( ',', $field_value ) as $cat_string ) {
1220
-                    $categories[] = GFCommon::format_post_category( $cat_string, true );
1220
+                    $categories[ ] = GFCommon::format_post_category( $cat_string, true );
1221 1221
                 }
1222 1222
                 $field_value = 'multiselect' === $field->get_input_type() ? $categories : implode( '', $categories );
1223 1223
             }
@@ -1245,7 +1245,7 @@  discard block
 block discarded – undo
1245 1245
 	     * @param GF_Field $field Gravity Forms field object
1246 1246
 	     * @param GravityView_Edit_Entry_Render $this Current object
1247 1247
 	     */
1248
-	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type , $field_value, $field, $this );
1248
+	    $field_value = apply_filters( 'gravityview/edit_entry/field_value_' . $field->type, $field_value, $field, $this );
1249 1249
 
1250 1250
         return $field_value;
1251 1251
     }
@@ -1262,12 +1262,12 @@  discard block
 block discarded – undo
1262 1262
      */
1263 1263
     public function gform_pre_validation( $form ) {
1264 1264
 
1265
-        if( ! $this->verify_nonce() ) {
1265
+        if ( ! $this->verify_nonce() ) {
1266 1266
             return $form;
1267 1267
         }
1268 1268
 
1269 1269
         // Fix PHP warning regarding undefined index.
1270
-        foreach ( $form['fields'] as &$field) {
1270
+        foreach ( $form[ 'fields' ] as &$field ) {
1271 1271
 
1272 1272
             // This is because we're doing admin form pretending to be front-end, so Gravity Forms
1273 1273
             // expects certain field array items to be set.
@@ -1275,7 +1275,7 @@  discard block
 block discarded – undo
1275 1275
 	            $field->{$key} = isset( $field->{$key} ) ? $field->{$key} : NULL;
1276 1276
             }
1277 1277
 
1278
-            switch( RGFormsModel::get_input_type( $field ) ) {
1278
+            switch ( RGFormsModel::get_input_type( $field ) ) {
1279 1279
 
1280 1280
                 /**
1281 1281
                  * 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.
@@ -1289,37 +1289,37 @@  discard block
 block discarded – undo
1289 1289
                     // Set the previous value
1290 1290
                     $entry = $this->get_entry();
1291 1291
 
1292
-                    $input_name = 'input_'.$field->id;
1293
-                    $form_id = $form['id'];
1292
+                    $input_name = 'input_' . $field->id;
1293
+                    $form_id = $form[ 'id' ];
1294 1294
 
1295 1295
                     $value = NULL;
1296 1296
 
1297 1297
                     // Use the previous entry value as the default.
1298
-                    if( isset( $entry[ $field->id ] ) ) {
1298
+                    if ( isset( $entry[ $field->id ] ) ) {
1299 1299
                         $value = $entry[ $field->id ];
1300 1300
                     }
1301 1301
 
1302 1302
                     // If this is a single upload file
1303
-                    if( !empty( $_FILES[ $input_name ] ) && !empty( $_FILES[ $input_name ]['name'] ) ) {
1304
-                        $file_path = GFFormsModel::get_file_upload_path( $form['id'], $_FILES[ $input_name ]['name'] );
1305
-                        $value = $file_path['url'];
1303
+                    if ( ! empty( $_FILES[ $input_name ] ) && ! empty( $_FILES[ $input_name ][ 'name' ] ) ) {
1304
+                        $file_path = GFFormsModel::get_file_upload_path( $form[ 'id' ], $_FILES[ $input_name ][ 'name' ] );
1305
+                        $value = $file_path[ 'url' ];
1306 1306
 
1307 1307
                     } else {
1308 1308
 
1309 1309
                         // Fix PHP warning on line 1498 of form_display.php for post_image fields
1310 1310
                         // Fix PHP Notice:  Undefined index:  size in form_display.php on line 1511
1311
-                        $_FILES[ $input_name ] = array('name' => '', 'size' => '' );
1311
+                        $_FILES[ $input_name ] = array( 'name' => '', 'size' => '' );
1312 1312
 
1313 1313
                     }
1314 1314
 
1315
-                    if( rgar($field, "multipleFiles") ) {
1315
+                    if ( rgar( $field, "multipleFiles" ) ) {
1316 1316
 
1317 1317
                         // If there are fresh uploads, process and merge them.
1318 1318
                         // Otherwise, use the passed values, which should be json-encoded array of URLs
1319
-                        if( isset( GFFormsModel::$uploaded_files[$form_id][$input_name] ) ) {
1319
+                        if ( isset( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) {
1320 1320
                             $value = empty( $value ) ? '[]' : $value;
1321 1321
                             $value = stripslashes_deep( $value );
1322
-                            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry['id'], array());
1322
+                            $value = GFFormsModel::prepare_value( $form, $field, $value, $input_name, $entry[ 'id' ], array() );
1323 1323
                         }
1324 1324
 
1325 1325
                     } else {
@@ -1337,8 +1337,8 @@  discard block
 block discarded – undo
1337 1337
 
1338 1338
                 case 'number':
1339 1339
                     // Fix "undefined index" issue at line 1286 in form_display.php
1340
-                    if( !isset( $_POST['input_'.$field->id ] ) ) {
1341
-                        $_POST['input_'.$field->id ] = NULL;
1340
+                    if ( ! isset( $_POST[ 'input_' . $field->id ] ) ) {
1341
+                        $_POST[ 'input_' . $field->id ] = NULL;
1342 1342
                     }
1343 1343
                     break;
1344 1344
             }
@@ -1375,7 +1375,7 @@  discard block
 block discarded – undo
1375 1375
          * You can enter whatever you want!
1376 1376
          * We try validating, and customize the results using `self::custom_validation()`
1377 1377
          */
1378
-        add_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10, 4);
1378
+        add_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10, 4 );
1379 1379
 
1380 1380
         // Needed by the validate funtion
1381 1381
         $failed_validation_page = NULL;
@@ -1383,14 +1383,14 @@  discard block
 block discarded – undo
1383 1383
 
1384 1384
         // Prevent entry limit from running when editing an entry, also
1385 1385
         // prevent form scheduling from preventing editing
1386
-        unset( $this->form['limitEntries'], $this->form['scheduleForm'] );
1386
+        unset( $this->form[ 'limitEntries' ], $this->form[ 'scheduleForm' ] );
1387 1387
 
1388 1388
         // Hide fields depending on Edit Entry settings
1389
-        $this->form['fields'] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1389
+        $this->form[ 'fields' ] = $this->get_configured_edit_fields( $this->form, $this->view_id );
1390 1390
 
1391 1391
         $this->is_valid = GFFormDisplay::validate( $this->form, $field_values, 1, $failed_validation_page );
1392 1392
 
1393
-        remove_filter( 'gform_validation_'. $this->form_id, array( $this, 'custom_validation' ), 10 );
1393
+        remove_filter( 'gform_validation_' . $this->form_id, array( $this, 'custom_validation' ), 10 );
1394 1394
     }
1395 1395
 
1396 1396
 
@@ -1407,13 +1407,13 @@  discard block
 block discarded – undo
1407 1407
      */
1408 1408
     public function custom_validation( $validation_results ) {
1409 1409
 
1410
-        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results: ', $validation_results );
1410
+        do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results: ', $validation_results );
1411 1411
 
1412
-        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
1412
+        do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] $_POSTed data (sanitized): ', esc_html( print_r( $_POST, true ) ) );
1413 1413
 
1414 1414
         $gv_valid = true;
1415 1415
 
1416
-        foreach ( $validation_results['form']['fields'] as $key => &$field ) {
1416
+        foreach ( $validation_results[ 'form' ][ 'fields' ] as $key => &$field ) {
1417 1417
 
1418 1418
             $value = RGFormsModel::get_field_value( $field );
1419 1419
             $field_type = RGFormsModel::get_input_type( $field );
@@ -1426,35 +1426,35 @@  discard block
 block discarded – undo
1426 1426
                 case 'post_image':
1427 1427
 
1428 1428
                     // in case nothing is uploaded but there are already files saved
1429
-                    if( !empty( $field->failed_validation ) && !empty( $field->isRequired ) && !empty( $value ) ) {
1429
+                    if ( ! empty( $field->failed_validation ) && ! empty( $field->isRequired ) && ! empty( $value ) ) {
1430 1430
                         $field->failed_validation = false;
1431 1431
                         unset( $field->validation_message );
1432 1432
                     }
1433 1433
 
1434 1434
                     // validate if multi file upload reached max number of files [maxFiles] => 2
1435
-                    if( rgobj( $field, 'maxFiles') && rgobj( $field, 'multipleFiles') ) {
1435
+                    if ( rgobj( $field, 'maxFiles' ) && rgobj( $field, 'multipleFiles' ) ) {
1436 1436
 
1437 1437
                         $input_name = 'input_' . $field->id;
1438 1438
                         //uploaded
1439
-                        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ][ $input_name ] : array();
1439
+                        $file_names = isset( GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] ) ? GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ][ $input_name ] : array();
1440 1440
 
1441 1441
                         //existent
1442 1442
                         $entry = $this->get_entry();
1443 1443
                         $value = NULL;
1444
-                        if( isset( $entry[ $field->id ] ) ) {
1444
+                        if ( isset( $entry[ $field->id ] ) ) {
1445 1445
                             $value = json_decode( $entry[ $field->id ], true );
1446 1446
                         }
1447 1447
 
1448 1448
                         // count uploaded files and existent entry files
1449 1449
                         $count_files = count( $file_names ) + count( $value );
1450 1450
 
1451
-                        if( $count_files > $field->maxFiles ) {
1451
+                        if ( $count_files > $field->maxFiles ) {
1452 1452
                             $field->validation_message = __( 'Maximum number of files reached', 'gravityview' );
1453 1453
                             $field->failed_validation = 1;
1454 1454
                             $gv_valid = false;
1455 1455
 
1456 1456
                             // in case of error make sure the newest upload files are removed from the upload input
1457
-                            GFFormsModel::$uploaded_files[ $validation_results['form']['id'] ] = null;
1457
+                            GFFormsModel::$uploaded_files[ $validation_results[ 'form' ][ 'id' ] ] = null;
1458 1458
                         }
1459 1459
 
1460 1460
                     }
@@ -1465,7 +1465,7 @@  discard block
 block discarded – undo
1465 1465
             }
1466 1466
 
1467 1467
             // This field has failed validation.
1468
-            if( !empty( $field->failed_validation ) ) {
1468
+            if ( ! empty( $field->failed_validation ) ) {
1469 1469
 
1470 1470
                 do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Field is invalid.', array( 'field' => $field, 'value' => $value ) );
1471 1471
 
@@ -1483,32 +1483,32 @@  discard block
 block discarded – undo
1483 1483
                 }
1484 1484
 
1485 1485
                 // You can't continue inside a switch, so we do it after.
1486
-                if( empty( $field->failed_validation ) ) {
1486
+                if ( empty( $field->failed_validation ) ) {
1487 1487
                     continue;
1488 1488
                 }
1489 1489
 
1490 1490
                 // checks if the No Duplicates option is not validating entry against itself, since
1491 1491
                 // we're editing a stored entry, it would also assume it's a duplicate.
1492
-                if( !empty( $field->noDuplicates ) ) {
1492
+                if ( ! empty( $field->noDuplicates ) ) {
1493 1493
 
1494 1494
                     $entry = $this->get_entry();
1495 1495
 
1496 1496
                     // If the value of the entry is the same as the stored value
1497 1497
                     // Then we can assume it's not a duplicate, it's the same.
1498
-                    if( !empty( $entry ) && $value == $entry[ $field->id ] ) {
1498
+                    if ( ! empty( $entry ) && $value == $entry[ $field->id ] ) {
1499 1499
                         //if value submitted was not changed, then don't validate
1500 1500
                         $field->failed_validation = false;
1501 1501
 
1502 1502
                         unset( $field->validation_message );
1503 1503
 
1504
-                        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', $entry );
1504
+                        do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Field not a duplicate; it is the same entry.', $entry );
1505 1505
 
1506 1506
                         continue;
1507 1507
                     }
1508 1508
                 }
1509 1509
 
1510 1510
                 // if here then probably we are facing the validation 'At least one field must be filled out'
1511
-                if( GFFormDisplay::is_empty( $field, $this->form_id  ) && empty( $field->isRequired ) ) {
1511
+                if ( GFFormDisplay::is_empty( $field, $this->form_id ) && empty( $field->isRequired ) ) {
1512 1512
                     unset( $field->validation_message );
1513 1513
 	                $field->validation_message = false;
1514 1514
                     continue;
@@ -1520,12 +1520,12 @@  discard block
 block discarded – undo
1520 1520
 
1521 1521
         }
1522 1522
 
1523
-        $validation_results['is_valid'] = $gv_valid;
1523
+        $validation_results[ 'is_valid' ] = $gv_valid;
1524 1524
 
1525
-        do_action('gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results.', $validation_results );
1525
+        do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[custom_validation] Validation results.', $validation_results );
1526 1526
 
1527 1527
         // We'll need this result when rendering the form ( on GFFormDisplay::get_form )
1528
-        $this->form_after_validation = $validation_results['form'];
1528
+        $this->form_after_validation = $validation_results[ 'form' ];
1529 1529
 
1530 1530
         return $validation_results;
1531 1531
     }
@@ -1538,7 +1538,7 @@  discard block
 block discarded – undo
1538 1538
      */
1539 1539
     public function get_entry() {
1540 1540
 
1541
-        if( empty( $this->entry ) ) {
1541
+        if ( empty( $this->entry ) ) {
1542 1542
             // Get the database value of the entry that's being edited
1543 1543
             $this->entry = gravityview_get_entry( GravityView_frontend::is_single_entry() );
1544 1544
         }
@@ -1573,10 +1573,10 @@  discard block
 block discarded – undo
1573 1573
 		}
1574 1574
 
1575 1575
         // If edit tab not yet configured, show all fields
1576
-        $edit_fields = !empty( $properties['edit_edit-fields'] ) ? $properties['edit_edit-fields'] : NULL;
1576
+        $edit_fields = ! empty( $properties[ 'edit_edit-fields' ] ) ? $properties[ 'edit_edit-fields' ] : NULL;
1577 1577
 
1578 1578
         // Hide fields depending on admin settings
1579
-        $fields = $this->filter_fields( $form['fields'], $edit_fields );
1579
+        $fields = $this->filter_fields( $form[ 'fields' ], $edit_fields );
1580 1580
 
1581 1581
 	    // If Edit Entry fields are configured, remove adminOnly field settings. Otherwise, don't.
1582 1582
 	    $fields = $this->filter_admin_only_fields( $fields, $edit_fields, $form, $view_id );
@@ -1608,7 +1608,7 @@  discard block
 block discarded – undo
1608 1608
      */
1609 1609
     private function filter_fields( $fields, $configured_fields ) {
1610 1610
 
1611
-        if( empty( $fields ) || !is_array( $fields ) ) {
1611
+        if ( empty( $fields ) || ! is_array( $fields ) ) {
1612 1612
             return $fields;
1613 1613
         }
1614 1614
 
@@ -1621,18 +1621,18 @@  discard block
 block discarded – undo
1621 1621
 
1622 1622
             // Remove the fields that have calculation properties and keep them to be used later
1623 1623
             // @since 1.16.2
1624
-            if( $field->has_calculation() ) {
1625
-                $this->fields_with_calculation[] = $field;
1624
+            if ( $field->has_calculation() ) {
1625
+                $this->fields_with_calculation[ ] = $field;
1626 1626
                 // don't remove the calculation fields on form render.
1627 1627
             }
1628 1628
 
1629
-            if( in_array( $field->type, $field_type_blacklist ) ) {
1629
+            if ( in_array( $field->type, $field_type_blacklist ) ) {
1630 1630
                 unset( $fields[ $key ] );
1631 1631
             }
1632 1632
         }
1633 1633
 
1634 1634
         // The Edit tab has not been configured, so we return all fields by default.
1635
-        if( empty( $configured_fields ) ) {
1635
+        if ( empty( $configured_fields ) ) {
1636 1636
             return $fields;
1637 1637
         }
1638 1638
 
@@ -1642,8 +1642,8 @@  discard block
 block discarded – undo
1642 1642
 	        /** @var GF_Field $field */
1643 1643
 	        foreach ( $fields as $field ) {
1644 1644
 
1645
-                if( intval( $configured_field['id'] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
1646
-                    $edit_fields[] = $this->merge_field_properties( $field, $configured_field );
1645
+                if ( intval( $configured_field[ 'id' ] ) === intval( $field->id ) && $this->user_can_edit_field( $configured_field, false ) ) {
1646
+                    $edit_fields[ ] = $this->merge_field_properties( $field, $configured_field );
1647 1647
                     break;
1648 1648
                 }
1649 1649
 
@@ -1666,14 +1666,14 @@  discard block
 block discarded – undo
1666 1666
 
1667 1667
         $return_field = $field;
1668 1668
 
1669
-        if( empty( $field_setting['show_label'] ) ) {
1669
+        if ( empty( $field_setting[ 'show_label' ] ) ) {
1670 1670
             $return_field->label = '';
1671
-        } elseif ( !empty( $field_setting['custom_label'] ) ) {
1672
-            $return_field->label = $field_setting['custom_label'];
1671
+        } elseif ( ! empty( $field_setting[ 'custom_label' ] ) ) {
1672
+            $return_field->label = $field_setting[ 'custom_label' ];
1673 1673
         }
1674 1674
 
1675
-        if( !empty( $field_setting['custom_class'] ) ) {
1676
-            $return_field->cssClass .= ' '. gravityview_sanitize_html_class( $field_setting['custom_class'] );
1675
+        if ( ! empty( $field_setting[ 'custom_class' ] ) ) {
1676
+            $return_field->cssClass .= ' ' . gravityview_sanitize_html_class( $field_setting[ 'custom_class' ] );
1677 1677
         }
1678 1678
 
1679 1679
         /**
@@ -1711,16 +1711,16 @@  discard block
 block discarded – undo
1711 1711
 	     */
1712 1712
 	    $use_gf_adminonly_setting = apply_filters( 'gravityview/edit_entry/use_gf_admin_only_setting', empty( $edit_fields ), $form, $view_id );
1713 1713
 
1714
-	    if( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry['id'] ) ) {
1715
-            foreach( $fields as $k => $field ) {
1716
-                if( $field->adminOnly ) {
1714
+	    if ( $use_gf_adminonly_setting && false === GVCommon::has_cap( 'gravityforms_edit_entries', $this->entry[ 'id' ] ) ) {
1715
+            foreach ( $fields as $k => $field ) {
1716
+                if ( $field->adminOnly ) {
1717 1717
                     unset( $fields[ $k ] );
1718 1718
                 }
1719 1719
             }
1720 1720
             return $fields;
1721 1721
         }
1722 1722
 
1723
-	    foreach( $fields as &$field ) {
1723
+	    foreach ( $fields as &$field ) {
1724 1724
 		    $field->adminOnly = false;
1725 1725
         }
1726 1726
 
@@ -1744,22 +1744,22 @@  discard block
 block discarded – undo
1744 1744
      */
1745 1745
     function prefill_conditional_logic( $form ) {
1746 1746
 
1747
-        if( ! GFFormDisplay::has_conditional_logic( $form ) ) {
1747
+        if ( ! GFFormDisplay::has_conditional_logic( $form ) ) {
1748 1748
             return $form;
1749 1749
         }
1750 1750
 
1751 1751
         // Have Conditional Logic pre-fill fields as if the data were default values
1752 1752
         /** @var GF_Field $field */
1753
-        foreach ( $form['fields'] as &$field ) {
1753
+        foreach ( $form[ 'fields' ] as &$field ) {
1754 1754
 
1755
-            if( 'checkbox' === $field->type ) {
1755
+            if ( 'checkbox' === $field->type ) {
1756 1756
                 foreach ( $field->get_entry_inputs() as $key => $input ) {
1757
-                    $input_id = $input['id'];
1757
+                    $input_id = $input[ 'id' ];
1758 1758
                     $choice = $field->choices[ $key ];
1759 1759
                     $value = rgar( $this->entry, $input_id );
1760 1760
                     $match = RGFormsModel::choice_value_match( $field, $choice, $value );
1761
-                    if( $match ) {
1762
-                        $field->choices[ $key ]['isSelected'] = true;
1761
+                    if ( $match ) {
1762
+                        $field->choices[ $key ][ 'isSelected' ] = true;
1763 1763
                     }
1764 1764
                 }
1765 1765
             } else {
@@ -1767,15 +1767,15 @@  discard block
 block discarded – undo
1767 1767
                 // We need to run through each field to set the default values
1768 1768
                 foreach ( $this->entry as $field_id => $field_value ) {
1769 1769
 
1770
-                    if( floatval( $field_id ) === floatval( $field->id ) ) {
1770
+                    if ( floatval( $field_id ) === floatval( $field->id ) ) {
1771 1771
 
1772
-                        if( 'list' === $field->type ) {
1772
+                        if ( 'list' === $field->type ) {
1773 1773
                             $list_rows = maybe_unserialize( $field_value );
1774 1774
 
1775 1775
                             $list_field_value = array();
1776
-                            foreach ( (array) $list_rows as $row ) {
1777
-                                foreach ( (array) $row as $column ) {
1778
-                                    $list_field_value[] = $column;
1776
+                            foreach ( (array)$list_rows as $row ) {
1777
+                                foreach ( (array)$row as $column ) {
1778
+                                    $list_field_value[ ] = $column;
1779 1779
                                 }
1780 1780
                             }
1781 1781
 
@@ -1810,16 +1810,16 @@  discard block
 block discarded – undo
1810 1810
          */
1811 1811
         $use_conditional_logic = apply_filters( 'gravityview/edit_entry/conditional_logic', true, $form );
1812 1812
 
1813
-        if( $use_conditional_logic ) {
1813
+        if ( $use_conditional_logic ) {
1814 1814
             return $form;
1815 1815
         }
1816 1816
 
1817
-        foreach( $form['fields'] as &$field ) {
1817
+        foreach ( $form[ 'fields' ] as &$field ) {
1818 1818
             /* @var GF_Field $field */
1819 1819
             $field->conditionalLogic = null;
1820 1820
         }
1821 1821
 
1822
-        unset( $form['button']['conditionalLogic'] );
1822
+        unset( $form[ 'button' ][ 'conditionalLogic' ] );
1823 1823
 
1824 1824
         return $form;
1825 1825
 
@@ -1836,7 +1836,7 @@  discard block
 block discarded – undo
1836 1836
      */
1837 1837
     public function manage_conditional_logic( $has_conditional_logic, $form ) {
1838 1838
 
1839
-        if( ! $this->is_edit_entry() ) {
1839
+        if ( ! $this->is_edit_entry() ) {
1840 1840
             return $has_conditional_logic;
1841 1841
         }
1842 1842
 
@@ -1868,44 +1868,44 @@  discard block
 block discarded – undo
1868 1868
          *  2. There are two entries embedded using oEmbed
1869 1869
          *  3. One of the entries has just been saved
1870 1870
          */
1871
-        if( !empty( $_POST['lid'] ) && !empty( $_GET['entry'] ) && ( $_POST['lid'] !== $_GET['entry'] ) ) {
1871
+        if ( ! empty( $_POST[ 'lid' ] ) && ! empty( $_GET[ 'entry' ] ) && ( $_POST[ 'lid' ] !== $_GET[ 'entry' ] ) ) {
1872 1872
 
1873 1873
             $error = true;
1874 1874
 
1875 1875
         }
1876 1876
 
1877
-        if( !empty( $_GET['entry'] ) && (string)$this->entry['id'] !== $_GET['entry'] ) {
1877
+        if ( ! empty( $_GET[ 'entry' ] ) && (string)$this->entry[ 'id' ] !== $_GET[ 'entry' ] ) {
1878 1878
 
1879 1879
             $error = true;
1880 1880
 
1881
-        } elseif( ! $this->verify_nonce() ) {
1881
+        } elseif ( ! $this->verify_nonce() ) {
1882 1882
 
1883 1883
             /**
1884 1884
              * If the Entry is embedded, there may be two entries on the same page.
1885 1885
              * If that's the case, and one is being edited, the other should fail gracefully and not display an error.
1886 1886
              */
1887
-            if( GravityView_oEmbed::getInstance()->get_entry_id() ) {
1887
+            if ( GravityView_oEmbed::getInstance()->get_entry_id() ) {
1888 1888
                 $error = true;
1889 1889
             } else {
1890
-                $error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview');
1890
+                $error = __( 'The link to edit this entry is not valid; it may have expired.', 'gravityview' );
1891 1891
             }
1892 1892
 
1893 1893
         }
1894 1894
 
1895
-        if( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
1896
-            $error = __( 'You do not have permission to edit this entry.', 'gravityview');
1895
+        if ( ! GravityView_Edit_Entry::check_user_cap_edit_entry( $this->entry ) ) {
1896
+            $error = __( 'You do not have permission to edit this entry.', 'gravityview' );
1897 1897
         }
1898 1898
 
1899
-        if( $this->entry['status'] === 'trash' ) {
1900
-            $error = __('You cannot edit the entry; it is in the trash.', 'gravityview' );
1899
+        if ( $this->entry[ 'status' ] === 'trash' ) {
1900
+            $error = __( 'You cannot edit the entry; it is in the trash.', 'gravityview' );
1901 1901
         }
1902 1902
 
1903 1903
         // No errors; everything's fine here!
1904
-        if( empty( $error ) ) {
1904
+        if ( empty( $error ) ) {
1905 1905
             return true;
1906 1906
         }
1907 1907
 
1908
-        if( $echo && $error !== true ) {
1908
+        if ( $echo && $error !== true ) {
1909 1909
 
1910 1910
 	        $error = esc_html( $error );
1911 1911
 
@@ -1913,13 +1913,13 @@  discard block
 block discarded – undo
1913 1913
 	         * @since 1.9
1914 1914
 	         */
1915 1915
 	        if ( ! empty( $this->entry ) ) {
1916
-		        $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;" ) );
1916
+		        $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;" ) );
1917 1917
 	        }
1918 1918
 
1919
-            echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error');
1919
+            echo GVCommon::generate_notice( wpautop( $error ), 'gv-error error' );
1920 1920
         }
1921 1921
 
1922
-        do_action('gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_entry]' . $error );
1922
+        do_action( 'gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_entry]' . $error );
1923 1923
 
1924 1924
         return false;
1925 1925
     }
@@ -1936,20 +1936,20 @@  discard block
 block discarded – undo
1936 1936
 
1937 1937
         $error = NULL;
1938 1938
 
1939
-        if( ! $this->check_user_cap_edit_field( $field ) ) {
1940
-            $error = __( 'You do not have permission to edit this field.', 'gravityview');
1939
+        if ( ! $this->check_user_cap_edit_field( $field ) ) {
1940
+            $error = __( 'You do not have permission to edit this field.', 'gravityview' );
1941 1941
         }
1942 1942
 
1943 1943
         // No errors; everything's fine here!
1944
-        if( empty( $error ) ) {
1944
+        if ( empty( $error ) ) {
1945 1945
             return true;
1946 1946
         }
1947 1947
 
1948
-        if( $echo ) {
1949
-            echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error');
1948
+        if ( $echo ) {
1949
+            echo GVCommon::generate_notice( wpautop( esc_html( $error ) ), 'gv-error error' );
1950 1950
         }
1951 1951
 
1952
-        do_action('gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_field]' . $error );
1952
+        do_action( 'gravityview_log_error', 'GravityView_Edit_Entry[user_can_edit_field]' . $error );
1953 1953
 
1954 1954
         return false;
1955 1955
 
@@ -1967,15 +1967,15 @@  discard block
 block discarded – undo
1967 1967
     private function check_user_cap_edit_field( $field ) {
1968 1968
 
1969 1969
         // If they can edit any entries (as defined in Gravity Forms), we're good.
1970
-        if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
1970
+        if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ) ) ) {
1971 1971
             return true;
1972 1972
         }
1973 1973
 
1974
-        $field_cap = isset( $field['allow_edit_cap'] ) ? $field['allow_edit_cap'] : false;
1974
+        $field_cap = isset( $field[ 'allow_edit_cap' ] ) ? $field[ 'allow_edit_cap' ] : false;
1975 1975
 
1976 1976
         // If the field has custom editing capaibilities set, check those
1977
-        if( $field_cap ) {
1978
-            return GVCommon::has_cap( $field['allow_edit_cap'] );
1977
+        if ( $field_cap ) {
1978
+            return GVCommon::has_cap( $field[ 'allow_edit_cap' ] );
1979 1979
         }
1980 1980
 
1981 1981
         return false;
@@ -1989,17 +1989,17 @@  discard block
 block discarded – undo
1989 1989
     public function verify_nonce() {
1990 1990
 
1991 1991
         // Verify form submitted for editing single
1992
-        if( $this->is_edit_entry_submission() ) {
1992
+        if ( $this->is_edit_entry_submission() ) {
1993 1993
             $valid = wp_verify_nonce( $_POST[ self::$nonce_field ], self::$nonce_field );
1994 1994
         }
1995 1995
 
1996 1996
         // Verify
1997
-        else if( ! $this->is_edit_entry() ) {
1997
+        else if ( ! $this->is_edit_entry() ) {
1998 1998
             $valid = false;
1999 1999
         }
2000 2000
 
2001 2001
         else {
2002
-            $valid = wp_verify_nonce( $_GET['edit'], self::$nonce_key );
2002
+            $valid = wp_verify_nonce( $_GET[ 'edit' ], self::$nonce_key );
2003 2003
         }
2004 2004
 
2005 2005
         /**
Please login to merge, or discard this patch.