PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.0
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.0
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/controllers/FrmEntriesController.php +191 -495 6.32.15.0 View file →
@@ -4,23 +4,16 @@
4 4 }
5 5
6 6 class FrmEntriesController {
7 7
8 - /**
9 - * @return void
10 - */
11 8 public static function menu() {
12 9 FrmAppHelper::force_capability( 'frm_view_entries' );
13 10
14 - add_submenu_page( 'formidable', 'Formidable | ' . __( 'Entries', 'formidable' ), __( 'Entries', 'formidable' ), 'frm_view_entries', 'formidable-entries', 'FrmEntriesController::route' ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
11 + add_submenu_page( 'formidable', 'Formidable | ' . __( 'Entries', 'formidable' ), __( 'Entries', 'formidable' ), 'frm_view_entries', 'formidable-entries', 'FrmEntriesController::route' );
15 12
16 - $views_installed = is_callable( 'FrmProAppHelper::views_is_installed' ) && FrmProAppHelper::views_is_installed();
17 -
18 - if ( $views_installed ) {
19 - self::maybe_redirect_to_views_index();
20 - } else {
21 - add_submenu_page( 'formidable', 'Formidable | ' . __( 'Views', 'formidable' ), __( 'Views', 'formidable' ), 'frm_view_entries', 'formidable-views', 'FrmFormsController::no_views' ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
22 - self::maybe_redirect_to_views_upsell();
13 + $views_installed = is_callable( 'FrmProAppHelper::views_is_installed' ) ? FrmProAppHelper::views_is_installed() : FrmAppHelper::pro_is_installed();
14 + if ( ! $views_installed ) {
15 + add_submenu_page( 'formidable', 'Formidable | ' . __( 'Views', 'formidable' ), __( 'Views', 'formidable' ), 'frm_view_entries', 'formidable-views', 'FrmFormsController::no_views' );
23 16 }
24 17
25 18 if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) ) {
26 19 self::load_manage_entries_hooks();
@@ -27,98 +20,24 @@
27 20 }
28 21 }
29 22
30 23 /**
31 - * This function is called when views is installed.
32 - * The Views add-on uses a different URL for the Views tab than the upsell page.
33 - * If the user is on the upsell page, instead of showing a permission error on reload,
34 - * redirect to the views index page.
35 - *
36 - * @since 6.14.1
37 - *
38 - * @return void
39 - */
40 - private static function maybe_redirect_to_views_index() {
41 - if ( ! FrmAppHelper::is_admin_page( 'formidable-views' ) ) {
42 - return;
43 - }
44 -
45 - $query_args = array(
46 - 'post_type' => 'frm_display',
47 - );
48 - $query_args = self::add_url_params_to_views_redirect_query_args( $query_args );
49 -
50 - wp_safe_redirect( add_query_arg( $query_args, admin_url( 'edit.php' ) ) );
51 - die();
52 - }
53 -
54 - /**
55 - * This function is called when views is inactive.
56 - * A user may deactivate views but then try to reload the views index.
57 - * Instead of showing a permission error, redirect to the views upsell page.
58 - *
59 - * @since 6.14.1
60 - *
61 - * @return void
62 - */
63 - private static function maybe_redirect_to_views_upsell() {
64 - global $pagenow;
65 -
66 - if ( 'edit.php' !== $pagenow || 'frm_display' !== FrmAppHelper::simple_get( 'post_type' ) ) {
67 - return;
68 - }
69 -
70 - $query_args = array(
71 - 'page' => 'formidable-views',
72 - );
73 - $query_args = self::add_url_params_to_views_redirect_query_args( $query_args );
74 -
75 - wp_safe_redirect( add_query_arg( $query_args, admin_url( 'admin.php' ) ) );
76 - die();
77 - }
78 -
79 - /**
80 - * @since 6.14.1
81 - *
82 - * @param array $query_args
83 - *
84 - * @return array
85 - */
86 - private static function add_url_params_to_views_redirect_query_args( $query_args ) {
87 - $query_args['show_nav'] = FrmAppHelper::simple_get( 'show_nav', 'absint', 0 );
88 - $form_id = FrmAppHelper::simple_get( 'form', 'absint', 0 );
89 -
90 - if ( $form_id ) {
91 - $query_args['form'] = $form_id;
92 - }
93 -
94 - return $query_args;
95 - }
96 -
97 - /**
98 24 * @since 2.05.07
99 - *
100 - * @return void
101 25 */
102 26 private static function load_manage_entries_hooks() {
103 - if ( in_array( FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ), array( 'edit', 'show', 'new', 'duplicate' ), true ) ) {
104 - add_filter( 'screen_options_show_screen', self::class . '::remove_screen_options', 10, 2 );
105 - return;
27 + if ( ! in_array( FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ), array( 'edit', 'show', 'new' ) ) ) {
28 + $menu_name = FrmAppHelper::get_menu_name();
29 + $base = self::base_column_key( $menu_name );
30 +
31 + add_filter( 'manage_' . $base . '_columns', 'FrmEntriesController::manage_columns' );
32 + add_filter( 'get_user_option_' . self::hidden_column_key( $menu_name ), 'FrmEntriesController::hidden_columns' );
33 + add_filter( 'manage_' . $base . '_sortable_columns', 'FrmEntriesController::sortable_columns' );
34 + } else {
35 + add_filter( 'screen_options_show_screen', __CLASS__ . '::remove_screen_options', 10, 2 );
106 36 }
107 -
108 - $menu_name = FrmAppHelper::get_menu_name();
109 - $base = self::base_column_key( $menu_name );
110 -
111 - add_filter( 'manage_' . $base . '_columns', 'FrmEntriesController::manage_columns' );
112 - add_filter( 'get_user_option_' . self::hidden_column_key( $menu_name ), 'FrmEntriesController::hidden_columns' );
113 - add_filter( 'manage_' . $base . '_sortable_columns', 'FrmEntriesController::sortable_columns' );
114 37 }
115 38
116 - /**
117 - * Display in Back End.
118 - *
119 - * @return mixed
120 - */
39 + /* Display in Back End */
121 40 public static function route() {
122 41 $action = FrmAppHelper::get_param( 'frm_action', '', 'get', 'sanitize_title' );
123 42 FrmAppHelper::include_svg();
124 43
@@ -128,15 +47,13 @@
128 47 return self::$action();
129 48
130 49 default:
131 50 do_action( 'frm_entry_action_route', $action );
132 -
133 51 if ( apply_filters( 'frm_entry_stop_action_route', false, $action ) ) {
134 - return null;
52 + return;
135 53 }
136 54
137 - self::display_list();
138 - return null;
55 + return self::display_list();
139 56 }
140 57 }
141 58
142 59 /**
@@ -143,30 +60,18 @@
143 60 * Prevent the "screen options" tab from showing when
144 61 * editing or creating an entry
145 62 *
146 63 * @since 3.0
147 - *
148 - * @param bool $show_screen Whether to show the screen options tab.
149 - * @param object $screen The current screen object.
150 - *
151 - * @return bool
152 64 */
153 65 public static function remove_screen_options( $show_screen, $screen ) {
154 - $menu_name = sanitize_title( FrmAppHelper::get_menu_name() );
155 - $unread_count = FrmEntriesHelper::get_visible_unread_inbox_count();
156 -
157 - if ( $screen->id === $menu_name . ( $unread_count ? '-' . $unread_count : '' ) . '_page_formidable-entries' ) {
158 - return false;
66 + $menu_name = sanitize_title( FrmAppHelper::get_menu_name() );
67 + if ( $screen->id == $menu_name . '_page_formidable-entries' ) {
68 + $show_screen = false;
159 69 }
160 70
161 71 return $show_screen;
162 72 }
163 73
164 - /**
165 - * @param array $columns
166 - *
167 - * @return array
168 - */
169 74 public static function manage_columns( $columns ) {
170 75 global $frm_vars;
171 76 $form_id = FrmForm::get_current_form_id();
172 77
@@ -175,26 +80,25 @@
175 80
176 81 if ( $form_id ) {
177 82 self::get_columns_for_form( $form_id, $columns );
178 83 } else {
179 - $columns[ $form_id . '_form_id' ] = esc_html__( 'Form', 'formidable' );
180 - $columns[ $form_id . '_name' ] = esc_html__( 'Entry Name', 'formidable' );
181 - $columns[ $form_id . '_user_id' ] = esc_html__( 'Created By', 'formidable' );
84 + $columns[ $form_id . '_form_id' ] = __( 'Form', 'formidable' );
85 + $columns[ $form_id . '_name' ] = __( 'Entry Name', 'formidable' );
86 + $columns[ $form_id . '_user_id' ] = __( 'Created By', 'formidable' );
182 87 }
183 88
184 - $columns[ $form_id . '_is_draft' ] = esc_html__( 'Entry Status', 'formidable' );
185 - $columns[ $form_id . '_created_at' ] = esc_html__( 'Entry creation date', 'formidable' );
186 - $columns[ $form_id . '_updated_at' ] = esc_html__( 'Entry update date', 'formidable' );
89 + $columns[ $form_id . '_created_at' ] = __( 'Entry creation date', 'formidable' );
90 + $columns[ $form_id . '_updated_at' ] = __( 'Entry update date', 'formidable' );
187 91 self::maybe_add_ip_col( $form_id, $columns );
188 92
189 93 $frm_vars['cols'] = $columns;
190 - $action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
191 94
192 - if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $action, array( '', 'list', 'destroy' ), true ) ) {
95 + $action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
96 + if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $action, array( '', 'list', 'destroy' ) ) ) {
193 97 add_screen_option(
194 98 'per_page',
195 99 array(
196 - 'label' => esc_html__( 'Entries', 'formidable' ),
100 + 'label' => __( 'Entries', 'formidable' ),
197 101 'default' => 20,
198 102 'option' => 'formidable_page_formidable_entries_per_page',
199 103 )
200 104 );
@@ -202,34 +106,17 @@
202 106
203 107 return $columns;
204 108 }
205 109
206 - /**
207 - * @param int|string $form_id
208 - * @param array $columns
209 - *
210 - * @return void
211 - */
212 110 private static function get_columns_for_form( $form_id, &$columns ) {
213 111 $form_cols = FrmField::get_all_for_form( $form_id, '', 'include' );
214 112
215 - /**
216 - * Allows changing fields in the Entries list table heading.
217 - *
218 - * @since 5.0.04
219 - *
220 - * @param array $fields Array of fields.
221 - * @param array $args The arguments. Contains `form_id`.
222 - */
223 - $form_cols = apply_filters( 'frm_fields_in_entries_list_table', $form_cols, compact( 'form_id' ) );
224 -
225 113 foreach ( $form_cols as $form_col ) {
226 114 if ( FrmField::is_no_save_field( $form_col->type ) ) {
227 115 continue;
228 116 }
229 117
230 - $has_child_fields = $form_col->type === 'form' && ! empty( $form_col->field_options['form_select'] );
231 -
118 + $has_child_fields = $form_col->type == 'form' && isset( $form_col->field_options['form_select'] ) && ! empty( $form_col->field_options['form_select'] );
232 119 if ( $has_child_fields ) {
233 120 self::add_subform_cols( $form_col, $form_id, $columns );
234 121 } else {
235 122 self::add_field_cols( $form_col, $form_id, $columns );
@@ -238,19 +125,12 @@
238 125 }
239 126
240 127 /**
241 128 * @since 3.01
242 - *
243 - * @param object $field The field object.
244 - * @param int|string $form_id The form ID.
245 - * @param array $columns The columns array.
246 - *
247 - * @return void
248 129 */
249 130 private static function add_subform_cols( $field, $form_id, &$columns ) {
250 131 $sub_form_cols = FrmField::get_all_for_form( $field->field_options['form_select'] );
251 -
252 - if ( ! $sub_form_cols ) {
132 + if ( empty( $sub_form_cols ) ) {
253 133 return;
254 134 }
255 135
256 136 foreach ( $sub_form_cols as $k => $sub_form_col ) {
@@ -257,9 +137,8 @@
257 137 if ( FrmField::is_no_save_field( $sub_form_col->type ) ) {
258 138 unset( $sub_form_cols[ $k ] );
259 139 continue;
260 140 }
261 -
262 141 $columns[ $form_id . '_' . $sub_form_col->field_key . '-_-' . $field->id ] = FrmAppHelper::truncate( $sub_form_col->name, 35 );
263 142 unset( $sub_form_col );
264 143 }
265 144 }
@@ -265,62 +144,24 @@
265 144 }
266 145
267 146 /**
268 147 * @since 3.01
269 - *
270 - * @param object $field The field object.
271 - * @param int|string $form_id The form ID.
272 - * @param array $columns The columns array.
273 - *
274 - * @return void
275 148 */
276 149 private static function add_field_cols( $field, $form_id, &$columns ) {
277 150 $col_id = $field->field_key;
278 -
279 - if ( (int) $field->form_id !== (int) $form_id ) {
151 + if ( $field->form_id != $form_id ) {
280 152 $col_id .= '-_-form' . $field->form_id;
281 153 }
282 154
283 - $has_separate_value = ! FrmField::is_option_empty( $field, 'separate_value' );
284 - $is_post_status = FrmField::is_option_true( $field, 'post_field' ) && $field->field_options['post_field'] === 'post_status';
285 - $include_column_for_sep_val = $has_separate_value && ! $is_post_status;
286 -
287 - if ( $include_column_for_sep_val ) {
288 - $columns[ $form_id . '_frmsep_' . $col_id ] = self::maybe_format_field_name_for_column_title( $field, $include_column_for_sep_val );
155 + $has_separate_value = ! FrmField::is_option_empty( $field, 'separate_value' );
156 + $is_post_status = FrmField::is_option_true( $field, 'post_field' ) && $field->field_options['post_field'] == 'post_status';
157 + if ( $has_separate_value && ! $is_post_status ) {
158 + $columns[ $form_id . '_frmsep_' . $col_id ] = FrmAppHelper::truncate( $field->name, 35 );
289 159 }
290 160
291 - $columns[ $form_id . '_' . $col_id ] = self::maybe_format_field_name_for_column_title( $field, $include_column_for_sep_val, false );
161 + $columns[ $form_id . '_' . $col_id ] = FrmAppHelper::truncate( $field->name, 35 );
292 162 }
293 163
294 - /**
295 - * Appends "(Value)" or "(Label)" to the field name if it's an option field that has a separate value/label.
296 - *
297 - * @since 6.25.1
298 - *
299 - * @param object $field
300 - * @param bool $include_column_for_sep_val
301 - * @param bool $is_value
302 - *
303 - * @return string
304 - */
305 - private static function maybe_format_field_name_for_column_title( $field, $include_column_for_sep_val, $is_value = true ) {
306 - $field_name = FrmAppHelper::truncate( $field->name, 35 );
307 -
308 - if ( ! $include_column_for_sep_val || ! in_array( $field->type, array( 'select', 'radio', 'checkbox', 'product', 'ranking' ), true ) ) {
309 - return $field_name;
310 - }
311 -
312 - $append_text = $is_value ? esc_html__( 'value', 'formidable' ) : esc_html__( 'label', 'formidable' );
313 -
314 - return sprintf( '%s (%s)', $field_name, $append_text );
315 - }
316 -
317 - /**
318 - * @param int|string $form_id The form ID.
319 - * @param array $columns The columns array.
320 - *
321 - * @return void
322 - */
323 164 private static function maybe_add_ip_col( $form_id, &$columns ) {
324 165 if ( FrmAppHelper::ips_saved() ) {
325 166 $columns[ $form_id . '_ip' ] = 'IP';
326 167 }
@@ -325,32 +166,21 @@
325 166 $columns[ $form_id . '_ip' ] = 'IP';
326 167 }
327 168 }
328 169
329 - /**
330 - * @param bool $check The check value.
331 - * @param int $object_id The object ID.
332 - * @param string $meta_key The meta key.
333 - * @param mixed $meta_value The meta value.
334 - * @param mixed $prev_value The previous value.
335 - *
336 - * @return bool
337 - */
338 170 public static function check_hidden_cols( $check, $object_id, $meta_key, $meta_value, $prev_value ) {
339 171 $this_page_name = self::hidden_column_key();
340 -
341 - // phpcs:ignore Universal.Operators.StrictComparisons
342 172 if ( $meta_key != $this_page_name || $meta_value == $prev_value ) {
343 173 return $check;
344 174 }
345 175
346 - if ( ! $prev_value ) {
176 + if ( empty( $prev_value ) ) {
347 177 $prev_value = get_metadata( 'user', $object_id, $meta_key, true );
348 178 }
349 179
350 180 global $frm_vars;
351 - // Add a check so we don't create a loop.
352 - $frm_vars['prev_hidden_cols'] = ! empty( $frm_vars['prev_hidden_cols'] ) ? false : $prev_value;
181 + //add a check so we don't create a loop
182 + $frm_vars['prev_hidden_cols'] = ( isset( $frm_vars['prev_hidden_cols'] ) && $frm_vars['prev_hidden_cols'] ) ? false : $prev_value;
353 183
354 184 return $check;
355 185 }
356 186
@@ -355,34 +185,23 @@
355 185 }
356 186
357 187 /**
358 188 * Add hidden columns back from other forms
359 - *
360 - * @param int $meta_id The meta ID.
361 - * @param int $object_id The object ID.
362 - * @param string $meta_key The meta key.
363 - * @param array $meta_value The meta value.
364 - *
365 - * @return void
366 189 */
367 190 public static function update_hidden_cols( $meta_id, $object_id, $meta_key, $meta_value ) {
368 191 $this_page_name = self::hidden_column_key();
369 -
370 - // phpcs:ignore Universal.Operators.StrictComparisons
371 192 if ( $meta_key != $this_page_name ) {
372 193 return;
373 194 }
374 195
375 196 global $frm_vars;
376 -
377 - if ( empty( $frm_vars['prev_hidden_cols'] ) ) {
378 - // Don't continue if there's no previous value.
379 - return;
197 + if ( ! isset( $frm_vars['prev_hidden_cols'] ) || ! $frm_vars['prev_hidden_cols'] ) {
198 + return; // Don't continue if there's no previous value.
380 199 }
381 200
382 201 foreach ( $meta_value as $mk => $mv ) {
383 202 // Remove blank values.
384 - if ( ! $mv ) {
203 + if ( empty( $mv ) ) {
385 204 unset( $meta_value[ $mk ] );
386 205 }
387 206 }
388 207
@@ -391,10 +210,9 @@
391 210 $cur_form_prefix = $cur_form_prefix[0];
392 211 $save = false;
393 212
394 213 foreach ( (array) $frm_vars['prev_hidden_cols'] as $prev_hidden ) {
395 - // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
396 - if ( ! $prev_hidden || in_array( $prev_hidden, $meta_value ) ) {
214 + if ( empty( $prev_hidden ) || in_array( $prev_hidden, $meta_value ) ) {
397 215 // Don't add blank cols or process included cols.
398 216 continue;
399 217 }
400 218
@@ -399,10 +217,9 @@
399 217 }
400 218
401 219 $form_prefix = explode( '_', $prev_hidden );
402 220 $form_prefix = $form_prefix[0];
403 -
404 - if ( $form_prefix === $cur_form_prefix ) {
221 + if ( $form_prefix == $cur_form_prefix ) {
405 222 // Don't add back columns that are meant to be hidden.
406 223 continue;
407 224 }
408 225
@@ -410,62 +227,42 @@
410 227 $save = true;
411 228 unset( $form_prefix );
412 229 }
413 230
414 - if ( ! $save ) {
415 - return;
231 + if ( $save ) {
232 + $user_id = get_current_user_id();
233 + update_user_option( $user_id, $this_page_name, $meta_value, true );
416 234 }
417 -
418 - update_user_option( get_current_user_id(), $this_page_name, $meta_value, true );
419 235 }
420 236
421 237 /**
422 238 * @since 2.05.07
423 - *
424 - * @param string $menu_name
425 - *
426 - * @return string
427 239 */
428 240 private static function hidden_column_key( $menu_name = '' ) {
429 241 $base = self::base_column_key( $menu_name );
242 +
430 243 return 'manage' . $base . 'columnshidden';
431 244 }
432 245
433 246 /**
434 247 * @since 2.05.07
435 - *
436 - * @param string $menu_name
437 - *
438 - * @return string
439 248 */
440 249 private static function base_column_key( $menu_name = '' ) {
441 - if ( ! $menu_name ) {
250 + if ( empty( $menu_name ) ) {
442 251 $menu_name = FrmAppHelper::get_menu_name();
443 252 }
444 253
445 - $unread_count = FrmEntriesHelper::get_visible_unread_inbox_count();
446 -
447 - return sanitize_title( $menu_name ) . ( $unread_count ? '-' . $unread_count : '' ) . '_page_formidable-entries';
254 + return sanitize_title( $menu_name ) . '_page_formidable-entries';
448 255 }
449 256
450 - /**
451 - * @param int $save
452 - * @param string $option
453 - * @param string $value
454 - *
455 - * @return int
456 - */
457 257 public static function save_per_page( $save, $option, $value ) {
458 - if ( $option === 'formidable_page_formidable_entries_per_page' ) {
459 - return (int) $value;
258 + if ( $option == 'formidable_page_formidable_entries_per_page' ) {
259 + $save = (int) $value;
460 260 }
461 261
462 262 return $save;
463 263 }
464 264
465 - /**
466 - * @return array
467 - */
468 265 public static function sortable_columns() {
469 266 $form_id = FrmForm::get_current_form_id();
470 267 $fields = FrmField::get_all_for_form( $form_id );
471 268
@@ -477,16 +274,11 @@
477 274 $form_id . '_item_key' => 'item_key',
478 275 $form_id . '_is_draft' => 'is_draft',
479 276 );
480 277
481 - if ( ! $form_id ) {
482 - $columns[ $form_id . '_user_id' ] = 'user_id';
483 - $columns[ $form_id . '_name' ] = 'name';
484 - $columns[ $form_id . '_form_id' ] = 'form_id';
485 - }
486 -
487 278 foreach ( $fields as $field ) {
488 - if ( self::field_supports_sorting( $field ) ) {
279 + if ( $field->type != 'checkbox' && ( ! isset( $field->field_options['post_field'] ) || $field->field_options['post_field'] == '' ) ) {
280 + // Can't sort on checkboxes because they are stored serialized, or post fields
489 281 $columns[ $form_id . '_' . $field->field_key ] = 'meta_' . $field->id;
490 282 }
491 283 }
492 284
@@ -492,44 +284,22 @@
492 284
493 285 return $columns;
494 286 }
495 287
496 - /**
497 - * Can't sort on checkboxes because they are sorted serialized.
498 - * Some post content can be sorted but not everything.
499 - *
500 - * @param stdClass $field
501 - *
502 - * @return bool
503 - */
504 - private static function field_supports_sorting( $field ) {
505 - $is_sortable = 'checkbox' !== $field->type && empty( $field->field_options['post_field'] );
506 - return apply_filters( 'frm_field_column_is_sortable', $is_sortable, $field );
507 - }
508 -
509 - /**
510 - * @param mixed $result Option value from database for hidden columns in entries table.
511 - *
512 - * @return array
513 - */
514 288 public static function hidden_columns( $result ) {
515 - global $frm_vars;
289 + $form_id = FrmForm::get_current_form_id();
516 290
517 - if ( ! is_array( $result ) ) {
518 - // Force an unexpected value to be an array.
519 - // Since $result is a filtered option and gets saved to the database, it's possible it could be a string.
520 - // Since this code expects an array it would break with a "Uncaught Error: [] operator not supported for strings" error.
521 - $result = array();
522 - }
291 + $hidden = self::user_hidden_columns_for_form( $form_id, $result );
523 292
524 - $form_id = FrmForm::get_current_form_id();
525 - $hidden = self::user_hidden_columns_for_form( $form_id, $result );
526 - $i = isset( $frm_vars['cols'] ) ? count( $frm_vars['cols'] ) : 0;
527 - $max_columns = 11;
293 + global $frm_vars;
294 + $i = isset( $frm_vars['cols'] ) ? count( $frm_vars['cols'] ) : 0;
528 295
529 - if ( $hidden ) {
530 - $result = $hidden;
531 - $i = $i - count( $result );
296 + if ( ! empty( $hidden ) ) {
297 + $result = $hidden;
298 + $i = $i - count( $result );
299 + $max_columns = 11;
300 + } else {
301 + $max_columns = 8;
532 302 }
533 303
534 304 if ( $i <= $max_columns ) {
535 305 return $result;
@@ -541,29 +311,21 @@
541 311 }
542 312
543 313 /**
544 314 * @since 2.05.07
545 - *
546 - * @param int|string $form_id
547 - * @param mixed $result
548 - *
549 - * @return array
550 315 */
551 316 private static function user_hidden_columns_for_form( $form_id, $result ) {
552 317 $hidden = array();
553 -
554 318 foreach ( (array) $result as $r ) {
555 - if ( ! $r ) {
556 - continue;
557 - }
319 + if ( ! empty( $r ) ) {
320 + list( $form_prefix, $field_key ) = explode( '_', $r );
558 321
559 - list( $form_prefix, $field_key ) = explode( '_', $r );
322 + if ( (int) $form_prefix == (int) $form_id ) {
323 + $hidden[] = $r;
324 + }
560 325
561 - if ( (int) $form_prefix === (int) $form_id ) {
562 - $hidden[] = $r;
326 + unset( $form_prefix );
563 327 }
564 -
565 - unset( $form_prefix );
566 328 }
567 329
568 330 return $hidden;
569 331 }
@@ -571,13 +333,8 @@
571 333 /**
572 334 * Remove some columns by default when there are too many
573 335 *
574 336 * @since 2.05.07
575 - *
576 - * @param array $atts
577 - * @param array $result
578 - *
579 - * @return void
580 337 */
581 338 private static function remove_excess_cols( $atts, &$result ) {
582 339 global $frm_vars;
583 340
@@ -585,18 +342,19 @@
585 342 $atts['form_id'] . '_item_key' => '',
586 343 $atts['form_id'] . '_id' => '',
587 344 );
588 345 $cols = $remove_first + array_reverse( $frm_vars['cols'], true );
589 - $i = $atts['i'];
590 346
347 + $i = $atts['i'];
348 +
591 349 foreach ( $cols as $col_key => $col ) {
592 350 if ( $i <= $atts['max_columns'] ) {
593 351 break;
594 352 }
595 353
596 - if ( ! $result || ! in_array( $col_key, $result, true ) ) {
354 + if ( empty( $result ) || ! in_array( $col_key, $result, true ) ) {
597 355 $result[] = $col_key;
598 - --$i;
356 + $i--;
599 357 }
600 358
601 359 unset( $col_key, $col );
602 360 }
@@ -601,14 +359,8 @@
601 359 unset( $col_key, $col );
602 360 }
603 361 }
604 362
605 - /**
606 - * @param string $message
607 - * @param array $errors
608 - *
609 - * @return void
610 - */
611 363 public static function display_list( $message = '', $errors = array() ) {
612 364 global $wpdb, $frm_vars;
613 365
614 366 $form = FrmForm::maybe_get_current_form();
@@ -620,60 +372,45 @@
620 372
621 373 self::get_delete_form_time( $form, $errors );
622 374 }
623 375
624 - $table_class = apply_filters( 'frm_entries_list_class', 'FrmEntriesListHelper' );
376 + $table_class = apply_filters( 'frm_entries_list_class', 'FrmEntriesListHelper' );
377 +
625 378 $wp_list_table = new $table_class( array( 'params' => $params ) );
626 - $pagenum = $wp_list_table->get_pagenum();
627 379
380 + $pagenum = $wp_list_table->get_pagenum();
381 +
628 382 $wp_list_table->prepare_items();
629 383
630 384 $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
631 -
632 385 if ( $pagenum > $total_pages && $total_pages > 0 ) {
633 386 $url = add_query_arg( 'paged', $total_pages );
634 -
635 387 if ( headers_sent() ) {
636 - FrmAppHelper::js_redirect( $url, true );
388 + echo FrmAppHelper::js_redirect( $url ); // WPCS: XSS ok.
637 389 } else {
638 - wp_safe_redirect( esc_url_raw( $url ) );
390 + wp_redirect( esc_url_raw( $url ) );
639 391 }
640 -
641 392 die();
642 393 }
643 394
644 - if ( ! $message && isset( $_GET['import-message'] ) ) {
395 + if ( empty( $message ) && isset( $_GET['import-message'] ) ) {
645 396 $message = __( 'Your import is complete', 'formidable' );
646 397 }
647 398
648 - require FrmAppHelper::plugin_path() . '/classes/views/frm-entries/list.php';
399 + require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/list.php' );
649 400 }
650 401
651 - /**
652 - * @param object $form
653 - * @param array $errors
654 - *
655 - * @return void
656 - */
657 402 private static function get_delete_form_time( $form, &$errors ) {
658 - if ( 'trash' !== $form->status ) {
659 - return;
403 + if ( 'trash' == $form->status ) {
404 + $delete_timestamp = time() - ( DAY_IN_SECONDS * EMPTY_TRASH_DAYS );
405 + $time_to_delete = FrmAppHelper::human_time_diff( $delete_timestamp, ( isset( $form->options['trash_time'] ) ? ( $form->options['trash_time'] ) : time() ) );
406 +
407 + /* translators: %1$s: Time string */
408 + $errors['trash'] = sprintf( __( 'This form is in the trash and is scheduled to be deleted permanently in %s along with any entries.', 'formidable' ), $time_to_delete );
660 409 }
661 -
662 - $delete_timestamp = time() - ( DAY_IN_SECONDS * EMPTY_TRASH_DAYS );
663 - $time_to_delete = FrmAppHelper::human_time_diff( $delete_timestamp, $form->options['trash_time'] ?? time() );
664 -
665 - /* translators: %1$s: Time string */
666 - $errors['trash'] = sprintf( __( 'This form is in the trash and is scheduled to be deleted permanently in %s along with any entries.', 'formidable' ), $time_to_delete );
667 410 }
668 411
669 - /**
670 - * Back End CRUD.
671 - *
672 - * @param int $id
673 - *
674 - * @return void
675 - */
412 + /* Back End CRUD */
676 413 public static function show( $id = 0 ) {
677 414 FrmAppHelper::permission_check( 'frm_view_entries' );
678 415
679 416 if ( ! $id ) {
@@ -684,22 +421,17 @@
684 421 }
685 422 }
686 423
687 424 $entry = FrmEntry::getOne( $id, true );
425 + if ( ! $entry ) {
426 + echo '<div id="form_show_entry_page" class="wrap">' .
427 + esc_html__( 'You are trying to view an entry that does not exist.', 'formidable' ) .
428 + '</div>';
688 429
689 - if ( ! $entry ) {
690 - FrmAppController::show_error_modal(
691 - array(
692 - 'title' => __( 'You can\'t view the entry', 'formidable' ),
693 - 'body' => __( 'You are trying to view an entry that does not exist', 'formidable' ),
694 - 'cancel_url' => admin_url( 'admin.php?page=formidable' ),
695 - )
696 - );
697 430 return;
698 431 }
699 432
700 433 $data = $entry->description;
701 -
702 434 if ( ! is_array( $data ) || ! isset( $data['referrer'] ) ) {
703 435 $data = array( 'referrer' => $data );
704 436 }
705 437
@@ -705,40 +437,23 @@
705 437
706 438 $fields = FrmField::get_all_for_form( $entry->form_id, '', 'include' );
707 439 $form = FrmForm::getOne( $entry->form_id );
708 440
709 - include FrmAppHelper::plugin_path() . '/classes/views/frm-entries/show.php';
441 + include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/show.php' );
710 442 }
711 443
712 - /**
713 - * Destroy an entry from the admin page.
714 - * This is triggered from the entries list from the "Delete" row action, and also from the "Delete Entry" trigger in the view/edit entry sidebar.
715 - *
716 - * @return void
717 - */
718 444 public static function destroy() {
719 - $permission_error = FrmAppHelper::permission_nonce_error( 'frm_delete_entries', '_wpnonce', -1 );
445 + FrmAppHelper::permission_check( 'frm_delete_entries' );
720 446
721 - if ( false !== $permission_error ) {
722 - $error_args = array(
723 - 'title' => __( 'Verification failed', 'formidable' ),
724 - 'body' => $permission_error,
725 - 'cancel_url' => admin_url( 'admin.php?page=formidable-entries' ),
726 - );
727 - FrmAppController::show_error_modal( $error_args );
728 - return;
729 - }
730 -
731 447 $params = FrmForm::get_admin_params();
732 448
733 - if ( ! empty( $params['keep_post'] ) ) {
449 + if ( isset( $params['keep_post'] ) && $params['keep_post'] ) {
734 450 self::unlink_post( $params['id'] );
735 451 }
736 452
737 453 $message = '';
738 -
739 454 if ( FrmEntry::destroy( $params['id'] ) ) {
740 - $message = __( 'Entry was successfully deleted', 'formidable' );
455 + $message = __( 'Entry was Successfully Deleted', 'formidable' );
741 456 }
742 457
743 458 self::display_list( $message );
744 459 }
@@ -743,17 +458,20 @@
743 458 self::display_list( $message );
744 459 }
745 460
746 461 /**
747 - * @param array|string $errors
748 - * @param bool $ajax
749 - *
750 - * @return void
462 + * @deprecated 4.02.04 - Moved to Pro since it was unused in Lite.
751 463 */
464 + public static function destroy_all() {
465 + _deprecated_function( __METHOD__, '4.02.04', 'FrmProEntriesController::destroy_all' );
466 + if ( is_callable( 'FrmProEntriesController::destroy_all' ) ) {
467 + FrmProEntriesController::destroy_all();
468 + }
469 + }
470 +
752 471 public static function process_entry( $errors = '', $ajax = false ) {
753 472 $form_id = FrmAppHelper::get_post_param( 'form_id', '', 'absint' );
754 -
755 - if ( FrmAppHelper::is_admin() || empty( $_POST ) || ! $form_id || ! isset( $_POST['item_key'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing
473 + if ( FrmAppHelper::is_admin() || empty( $_POST ) || empty( $form_id ) || ! isset( $_POST['item_key'] ) ) {
756 474 return;
757 475 }
758 476
759 477 global $frm_vars;
@@ -758,19 +476,12 @@
758 476
759 477 global $frm_vars;
760 478
761 479 $form = FrmForm::getOne( $form_id );
762 -
763 480 if ( ! $form ) {
764 481 return;
765 482 }
766 483
767 - $is_preview = 'frm_forms_preview' === FrmAppHelper::simple_get( 'action' );
768 -
769 - if ( $is_preview && FrmFormsHelper::should_block_preview( $form->form_key ) ) {
770 - return;
771 - }
772 -
773 484 $params = FrmForm::get_params( $form );
774 485
775 486 if ( ! isset( $frm_vars['form_params'] ) ) {
776 487 $frm_vars['form_params'] = array();
@@ -780,11 +491,10 @@
780 491 if ( isset( $frm_vars['created_entries'][ $form_id ] ) ) {
781 492 return;
782 493 }
783 494
784 - // phpcs:ignore Universal.Operators.StrictComparisons
785 495 if ( $errors == '' && ! $ajax ) {
786 - $errors = FrmEntryValidate::validate( wp_unslash( $_POST ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing
496 + $errors = FrmEntryValidate::validate( wp_unslash( $_POST ) );
787 497 }
788 498
789 499 /**
790 500 * Use this filter to add trigger actions and add errors after
@@ -795,28 +505,26 @@
795 505 $errors = apply_filters( 'frm_entries_before_create', $errors, $form );
796 506
797 507 $frm_vars['created_entries'][ $form_id ] = array( 'errors' => $errors );
798 508
799 - if ( $errors ) {
800 - return;
801 - }
509 + if ( empty( $errors ) ) {
510 + $_POST['frm_skip_cookie'] = 1;
511 + $do_success = false;
512 + if ( $params['action'] == 'create' ) {
513 + if ( apply_filters( 'frm_continue_to_create', true, $form_id ) && ! isset( $frm_vars['created_entries'][ $form_id ]['entry_id'] ) ) {
514 + $frm_vars['created_entries'][ $form_id ]['entry_id'] = FrmEntry::create( $_POST );
802 515
803 - $_POST['frm_skip_cookie'] = 1;
804 - $do_success = false;
516 + $params['id'] = $frm_vars['created_entries'][ $form_id ]['entry_id'];
517 + $do_success = true;
518 + }
519 + }
805 520
806 - if ( $params['action'] === 'create' && apply_filters( 'frm_continue_to_create', true, $form_id ) && ! isset( $frm_vars['created_entries'][ $form_id ]['entry_id'] ) ) {
807 - $frm_vars['created_entries'][ $form_id ]['entry_id'] = FrmEntry::create( $_POST ); // phpcs:ignore WordPress.Security.NonceVerification.Missing
808 -
809 - $params['id'] = $frm_vars['created_entries'][ $form_id ]['entry_id'];
810 - $do_success = true;
521 + do_action( 'frm_process_entry', $params, $errors, $form, array( 'ajax' => $ajax ) );
522 + if ( $do_success ) {
523 + FrmFormsController::maybe_trigger_redirect( $form, $params, array( 'ajax' => $ajax ) );
524 + }
525 + unset( $_POST['frm_skip_cookie'] );
811 526 }
812 -
813 - do_action( 'frm_process_entry', $params, $errors, $form, array( 'ajax' => $ajax ) );
814 -
815 - if ( $do_success ) {
816 - FrmFormsController::maybe_trigger_redirect( $form, $params, array( 'ajax' => $ajax ) );
817 - }
818 - unset( $_POST['frm_skip_cookie'] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing
819 527 }
820 528
821 529 /**
822 530 * Escape url entities before redirect
@@ -830,19 +538,11 @@
830 538 public static function prepare_redirect_url( $url ) {
831 539 return str_replace( array( ' ', '[', ']', '|', '@' ), array( '%20', '%5B', '%5D', '%7C', '%40' ), $url );
832 540 }
833 541
834 - /**
835 - * Delete entry if redirected.
836 - *
837 - * @param string $url
838 - * @param object $form
839 - * @param array $atts
840 - *
841 - * @return string
842 - */
843 542 public static function delete_entry_before_redirect( $url, $form, $atts ) {
844 543 self::_delete_entry( $atts['id'], $form );
544 +
845 545 return $url;
846 546 }
847 547
848 548 /**
@@ -848,23 +548,13 @@
848 548 /**
849 549 * Delete entry if not redirected.
850 550 *
851 551 * @param array $atts
852 - *
853 - * @return void
854 552 */
855 553 public static function delete_entry_after_save( $atts ) {
856 554 self::_delete_entry( $atts['entry_id'], $atts['form'] );
857 555 }
858 556
859 - /**
860 - * Delete entry if not redirected.
861 - *
862 - * @param int $entry_id
863 - * @param object $form
864 - *
865 - * @return void
866 - */
867 557 private static function _delete_entry( $entry_id, $form ) {
868 558 if ( ! $form ) {
869 559 return;
870 560 }
@@ -869,23 +559,16 @@
869 559 return;
870 560 }
871 561
872 562 FrmAppHelper::unserialize_or_decode( $form->options );
873 -
874 - if ( empty( $form->options['no_save'] ) ) {
875 - return;
563 + if ( isset( $form->options['no_save'] ) && $form->options['no_save'] ) {
564 + self::unlink_post( $entry_id );
565 + FrmEntry::destroy( $entry_id );
876 566 }
877 -
878 - self::unlink_post( $entry_id );
879 - FrmEntry::destroy( $entry_id );
880 567 }
881 568
882 569 /**
883 570 * Unlink entry from post
884 - *
885 - * @param int $entry_id
886 - *
887 - * @return void
888 571 */
889 572 private static function unlink_post( $entry_id ) {
890 573 global $wpdb;
891 574 $wpdb->update( $wpdb->prefix . 'frm_items', array( 'post_id' => '' ), array( 'id' => $entry_id ) );
@@ -892,68 +575,67 @@
892 575 FrmEntry::clear_cache();
893 576 }
894 577
895 578 /**
896 - * @param array $atts
579 + * @param $atts
897 580 *
898 581 * @return array|string
899 582 */
900 583 public static function show_entry_shortcode( $atts ) {
901 584 $defaults = array(
902 - 'id' => false,
903 - 'entry' => false,
904 - 'fields' => false,
905 - 'plain_text' => false,
906 - 'user_info' => false,
907 - 'include_blank' => false,
908 - 'default_email' => false,
909 - 'form_id' => false,
910 - 'format' => 'text',
911 - 'array_key' => 'key',
912 - 'direction' => 'ltr',
913 - 'font_size' => '',
914 - 'text_color' => '',
915 - 'border_width' => '',
916 - 'border_color' => '',
917 - 'bg_color' => '',
918 - 'alt_bg_color' => '',
919 - 'class' => '',
920 - 'clickable' => false,
921 - 'exclude_fields' => '',
922 - 'include_fields' => '',
923 - 'include_extras' => '',
924 - 'inline_style' => 1,
925 - 'table_style' => '',
926 - // Return embedded fields as nested array.
927 - 'child_array' => false,
928 - 'line_breaks' => true,
929 - 'array_separator' => ', ',
585 + 'id' => false,
586 + 'entry' => false,
587 + 'fields' => false,
588 + 'plain_text' => false,
589 + 'user_info' => false,
590 + 'include_blank' => false,
591 + 'default_email' => false,
592 + 'form_id' => false,
593 + 'format' => 'text',
594 + 'array_key' => 'key',
595 + 'direction' => 'ltr',
596 + 'font_size' => '',
597 + 'text_color' => '',
598 + 'border_width' => '',
599 + 'border_color' => '',
600 + 'bg_color' => '',
601 + 'alt_bg_color' => '',
602 + 'class' => '',
603 + 'clickable' => false,
604 + 'exclude_fields' => '',
605 + 'include_fields' => '',
606 + 'include_extras' => '',
607 + 'inline_style' => 1,
608 + 'child_array' => false, // return embedded fields as nested array
609 + 'line_breaks' => true,
930 610 );
931 611 $defaults = apply_filters( 'frm_show_entry_defaults', $defaults );
932 - $atts = shortcode_atts( $defaults, $atts );
933 612
613 + $atts = shortcode_atts( $defaults, $atts );
614 +
934 615 if ( $atts['default_email'] ) {
935 - $shortcode_atts = array(
616 + $shortcode_atts = array(
936 617 'format' => $atts['format'],
937 618 'plain_text' => $atts['plain_text'],
938 619 );
620 +
939 621 $entry_formatter = FrmEntryFactory::entry_shortcode_formatter_instance( $atts['form_id'], $shortcode_atts );
940 - return $entry_formatter->content();
622 + $formatted_entry = $entry_formatter->content();
623 +
624 + } else {
625 +
626 + $entry_formatter = FrmEntryFactory::entry_formatter_instance( $atts );
627 + $formatted_entry = $entry_formatter->get_formatted_entry_values();
628 +
941 629 }
942 630
943 - $entry_formatter = FrmEntryFactory::entry_formatter_instance( $atts );
944 -
945 - return $entry_formatter->get_formatted_entry_values();
631 + return $formatted_entry;
946 632 }
947 633
948 - /**
949 - * @param false|object $entry
950 - *
951 - * @return void
952 - */
953 634 public static function entry_sidebar( $entry = false ) {
954 - $data = array();
955 - $id = 0;
635 + $data = array();
636 + $id = 0;
637 +
956 638 $date_format = get_option( 'date_format' );
957 639 $time_format = get_option( 'time_format' );
958 640
959 641 if ( $entry ) {
@@ -958,22 +640,36 @@
958 640
959 641 if ( $entry ) {
960 642 $id = $entry->id;
961 643 $data = $entry->description;
962 -
963 644 if ( isset( $data['browser'] ) ) {
964 645 $browser = FrmEntriesHelper::get_browser( $data['browser'] );
965 646 }
966 - /**
967 - * Add or remove information in the entry sidebar.
968 - *
969 - * @since 5.5.2
970 - *
971 - * @param array $data
972 - * @param array{entry:\stdClass} $entry
973 - */
974 - $data = apply_filters( 'frm_sidebar_data', $data, compact( 'entry' ) );
975 647 }
976 648
977 - include FrmAppHelper::plugin_path() . '/classes/views/frm-entries/sidebar-shared.php';
649 + include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/sidebar-shared.php' );
650 + }
651 +
652 + /**
653 + * @deprecated 4.0
654 + */
655 + public static function contextual_help( $help, $screen_id, $screen ) {
656 + _deprecated_function( __METHOD__, '4.0' );
657 + return $help;
658 + }
659 +
660 + /**
661 + * @deprecated 1.07.05
662 + * @codeCoverageIgnore
663 + */
664 + public static function show_form( $id = '', $key = '', $title = false, $description = false ) {
665 + return FrmDeprecated::show_form( $id, $key, $title, $description );
666 + }
667 +
668 + /**
669 + * @deprecated 1.07.05
670 + * @codeCoverageIgnore
671 + */
672 + public static function get_form( $filename, $form, $title, $description ) {
673 + return FrmDeprecated::get_form( $filename, $form, $title, $description );
978 674 }
979 675 }