Completed
Push — master ( 5c192f...f1c383 )
by Stephanie
03:49
created

FrmFormsController::preview()   B

Complexity

Conditions 5
Paths 8

Size

Total Lines 31
Code Lines 20

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 31
rs 8.439
cc 5
eloc 20
nc 8
nop 0
1
<?php
2
3
class FrmFormsController {
4
5
    public static function menu() {
6
		$menu_label = __( 'Forms', 'formidable' );
7
		if ( ! FrmAppHelper::pro_is_installed() ) {
8
			$menu_label .= ' (Lite)';
9
		}
10
		add_submenu_page('formidable', 'Formidable | ' . $menu_label, $menu_label, 'frm_view_forms', 'formidable', 'FrmFormsController::route' );
11
12
		self::maybe_load_listing_hooks();
13
    }
14
15
	public static function maybe_load_listing_hooks() {
16
		$action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
17
		if ( ! empty( $action ) && ! in_array( $action, array( 'list', 'trash', 'untrash' ) ) ) {
18
			return;
19
		}
20
21
		add_filter('get_user_option_managetoplevel_page_formidablecolumnshidden', 'FrmFormsController::hidden_columns' );
22
23
		add_filter('manage_toplevel_page_formidable_columns', 'FrmFormsController::get_columns', 0 );
24
		add_filter('manage_toplevel_page_formidable_sortable_columns', 'FrmFormsController::get_sortable_columns' );
25
	}
26
27
    public static function head() {
28
        wp_enqueue_script('formidable-editinplace');
29
30
        if ( wp_is_mobile() ) {
31
    		wp_enqueue_script( 'jquery-touch-punch' );
32
    	}
33
    }
34
35
    public static function register_widgets() {
36
        require_once(FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php');
37
        register_widget('FrmShowForm');
38
    }
39
40
    public static function list_form() {
41
        FrmAppHelper::permission_check('frm_view_forms');
42
43
		$params = FrmForm::list_page_params();
44
        $errors = self::process_bulk_form_actions( array());
45
        $errors = apply_filters('frm_admin_list_form_action', $errors);
46
47
		return self::display_forms_list( $params, '', $errors );
48
    }
49
50
	public static function new_form( $values = array() ) {
51
        FrmAppHelper::permission_check('frm_edit_forms');
52
53
        global $frm_vars;
54
55
        $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
56
		$action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[ $action ];
57
58
		if ( $action == 'create' ) {
59
            return self::create($values);
60
		} else if ( $action == 'new' ) {
61
			$frm_field_selection = FrmField::field_selection();
62
            $values = FrmFormsHelper::setup_new_vars($values);
63
            $id = FrmForm::create( $values );
64
            $form = FrmForm::getOne($id);
65
66
            // add default email notification
67
            $action_control = FrmFormActionsController::get_form_actions( 'email' );
68
            $action_control->create($form->id);
69
70
			$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
71
72
            $values['id'] = $id;
73
			require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
74
        }
75
    }
76
77
	public static function create( $values = array() ) {
78
        FrmAppHelper::permission_check('frm_edit_forms');
79
80
        global $frm_vars;
81
        if ( empty( $values ) ) {
82
            $values = $_POST;
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
introduced by
Detected usage of a non-sanitized input variable: $_POST
Loading history...
83
        }
84
85
        //Set radio button and checkbox meta equal to "other" value
86
        if ( FrmAppHelper::pro_is_installed() ) {
87
            $values = FrmProEntry::mod_other_vals( $values, 'back' );
88
        }
89
90
		$id = isset($values['id']) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
91
92
        if ( ! current_user_can( 'frm_edit_forms' ) || ( $_POST && ( ! isset( $values['frm_save_form'] ) || ! wp_verify_nonce( $values['frm_save_form'], 'frm_save_form_nonce' ) ) ) ) {
93
            $frm_settings = FrmAppHelper::get_settings();
94
            $errors = array( 'form' => $frm_settings->admin_permission );
95
        } else {
96
            $errors = FrmForm::validate($values);
97
        }
98
99
        if ( count($errors) > 0 ) {
100
            $hide_preview = true;
101
			$frm_field_selection = FrmField::field_selection();
102
            $form = FrmForm::getOne( $id );
103
            $fields = FrmField::get_all_for_form($id);
104
105
            $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
106
			$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
107
108
			require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
109
        } else {
110
            FrmForm::update( $id, $values, true );
111
			$url = admin_url( 'admin.php?page=formidable&frm_action=settings&id=' . $id );
112
			die( FrmAppHelper::js_redirect( $url ) );
113
        }
114
    }
115
116
    public static function edit( $values = false ) {
117
        FrmAppHelper::permission_check('frm_edit_forms');
118
119
		$id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
120
        return self::get_edit_vars($id);
121
    }
122
123
    public static function settings( $id = false, $message = '' ) {
124
        FrmAppHelper::permission_check('frm_edit_forms');
125
126
        if ( ! $id || ! is_numeric($id) ) {
127
			$id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
128
        }
129
		return self::get_settings_vars( $id, array(), $message );
130
    }
131
132
    public static function update_settings() {
133
        FrmAppHelper::permission_check('frm_edit_forms');
134
135
		$id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
136
137
        $errors = FrmForm::validate($_POST);
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
138
        if ( count($errors) > 0 ) {
139
            return self::get_settings_vars($id, $errors);
140
        }
141
142
        do_action('frm_before_update_form_settings', $id);
143
144
		FrmForm::update( $id, $_POST );
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
145
146
        $message = __( 'Settings Successfully Updated', 'formidable' );
147
		return self::get_settings_vars( $id, array(), $message );
148
    }
149
150
	public static function edit_key() {
151
		$values = self::edit_in_place_value( 'form_key' );
152
		echo wp_kses( stripslashes( FrmForm::getKeyById( $values['form_id'] ) ), array() );
153
		wp_die();
154
	}
155
156
	public static function edit_description() {
157
		$values = self::edit_in_place_value( 'description' );
158
		echo wp_kses_post( FrmAppHelper::use_wpautop( stripslashes( $values['description'] ) ) );
159
		wp_die();
160
	}
161
162
	private static function edit_in_place_value( $field ) {
163
		check_ajax_referer( 'frm_ajax', 'nonce' );
164
		FrmAppHelper::permission_check('frm_edit_forms', 'hide');
165
166
		$form_id = FrmAppHelper::get_post_param( 'form_id', '', 'absint' );
167
		$value = FrmAppHelper::get_post_param( 'update_value', '', 'wp_filter_post_kses' );
168
169
		$values = array( $field => trim( $value ) );
170
		FrmForm::update( $form_id, $values );
171
		$values['form_id'] = $form_id;
172
173
		return $values;
174
	}
175
176
	public static function update( $values = array() ) {
177
		if ( empty( $values ) ) {
178
            $values = $_POST;
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
introduced by
Detected usage of a non-sanitized input variable: $_POST
Loading history...
179
        }
180
181
        //Set radio button and checkbox meta equal to "other" value
182
        if ( FrmAppHelper::pro_is_installed() ) {
183
            $values = FrmProEntry::mod_other_vals( $values, 'back' );
184
        }
185
186
        $errors = FrmForm::validate( $values );
187
        $permission_error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'frm_save_form', 'frm_save_form_nonce' );
188
        if ( $permission_error !== false ) {
189
            $errors['form'] = $permission_error;
190
        }
191
192
		$id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
193
194
		if ( count( $errors ) > 0 ) {
195
            return self::get_edit_vars( $id, $errors );
196
		} else {
197
            FrmForm::update( $id, $values );
198
            $message = __( 'Form was Successfully Updated', 'formidable' );
199
            if ( defined( 'DOING_AJAX' ) ) {
200
				wp_die( $message );
201
            }
202
			return self::get_edit_vars( $id, array(), $message );
203
        }
204
    }
205
206
    public static function bulk_create_template( $ids ) {
207
        FrmAppHelper::permission_check( 'frm_edit_forms' );
208
209
        foreach ( $ids as $id ) {
210
            FrmForm::duplicate( $id, true, true );
211
        }
212
213
        return __( 'Form template was Successfully Created', 'formidable' );
214
    }
215
216
	/**
217
	 * Redirect to the url for creating from a template
218
	 * Also delete the current form
219
	 * @since 2.0
220
	 */
221
	public static function _create_from_template() {
222
		FrmAppHelper::permission_check('frm_edit_forms');
223
		check_ajax_referer( 'frm_ajax', 'nonce' );
224
225
		$current_form = FrmAppHelper::get_param( 'this_form', '', 'get', 'absint' );
226
		$template_id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
227
228
		if ( $current_form ) {
229
			FrmForm::destroy( $current_form );
230
		}
231
232
		echo esc_url_raw( admin_url( 'admin.php?page=formidable&action=duplicate&id=' . $template_id ) );
233
		wp_die();
234
	}
235
236
    public static function duplicate() {
237
        FrmAppHelper::permission_check('frm_edit_forms');
238
239
		$params = FrmForm::list_page_params();
240
        $form = FrmForm::duplicate( $params['id'], $params['template'], true );
241
        $message = ($params['template']) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' );
242
        if ( $form ) {
243
			return self::get_edit_vars( $form, array(), $message, true );
244
        } else {
245
            return self::display_forms_list($params, __( 'There was a problem creating the new template.', 'formidable' ));
246
        }
247
    }
248
249
    public static function page_preview() {
250
		$params = FrmForm::list_page_params();
251
        if ( ! $params['form'] ) {
252
            return;
253
        }
254
255
        $form = FrmForm::getOne( $params['form'] );
256
        if ( ! $form ) {
257
            return;
258
        }
259
        return self::show_form( $form->id, '', true, true );
260
    }
261
262
    public static function preview() {
263
        do_action( 'frm_wp' );
264
265
        global $frm_vars;
266
        $frm_vars['preview'] = true;
267
268
        if ( ! defined( 'ABSPATH' ) && ! defined( 'XMLRPC_REQUEST' ) ) {
269
            global $wp;
270
            $root = dirname( dirname( dirname( dirname( __FILE__ ) ) ) );
271
			include_once( $root . '/wp-config.php' );
272
            $wp->init();
273
            $wp->register_globals();
274
        }
275
276
		self::register_pro_scripts();
277
278
		header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );
279
280
		$key = FrmAppHelper::simple_get( 'form', 'sanitize_title' );
281
		if ( $key == '' ) {
282
			$key = FrmAppHelper::get_post_param( 'form', '', 'sanitize_title' );
283
		}
284
285
		$form = FrmForm::getAll( array( 'form_key' => $key ), '', 1 );
286
		if ( empty( $form ) ) {
287
			$form = FrmForm::getAll( array(), '', 1 );
288
        }
289
290
		require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/direct.php' );
291
        wp_die();
292
    }
293
294
	public static function register_pro_scripts() {
295
		if ( FrmAppHelper::pro_is_installed() ) {
296
			wp_register_script( 'jquery-frm-rating', FrmAppHelper::plugin_url() . '/pro/js/jquery.rating.min.js', array( 'jquery' ), '4.11', true );
297
			wp_register_script( 'jquery-maskedinput', FrmAppHelper::plugin_url() . '/pro/js/jquery.maskedinput.min.js', array( 'jquery' ), '1.4', true );
298
			wp_register_script( 'jquery-chosen', FrmAppHelper::plugin_url() . '/pro/js/chosen.jquery.min.js', array( 'jquery' ), '1.5.1', true );
299
		}
300
	}
301
302
    public static function untrash() {
303
		self::change_form_status( 'untrash' );
304
    }
305
306
	public static function bulk_untrash( $ids ) {
307
        FrmAppHelper::permission_check('frm_edit_forms');
308
309
        $count = FrmForm::set_status( $ids, 'published' );
310
311
        $message = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 );
312
        return $message;
313
    }
314
315
    public static function trash() {
316
		self::change_form_status( 'trash' );
317
    }
318
319
	/**
320
	 * @param string $status
321
	 *
322
	 * @return int The number of forms changed
323
	 */
324
	public static function change_form_status( $status ) {
325
		$available_status = array(
326
			'untrash' => array( 'permission' => 'frm_edit_forms', 'new_status' => 'published' ),
327
			'trash'   => array( 'permission' => 'frm_delete_forms', 'new_status' => 'trash' ),
328
		);
329
330
		if ( ! isset( $available_status[ $status ] ) ) {
331
			return;
332
		}
333
334
		FrmAppHelper::permission_check( $available_status[ $status ]['permission'] );
335
336
		$params = FrmForm::list_page_params();
337
338
		//check nonce url
339
		check_admin_referer( $status . '_form_' . $params['id'] );
340
341
		$count = 0;
342
		if ( FrmForm::set_status( $params['id'], $available_status[ $status ]['new_status'] ) ) {
343
			$count++;
344
		}
345
346
		$available_status['untrash']['message'] = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), $count );
347
		$available_status['trash']['message'] = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=untrash&form_type=' . ( isset( $_REQUEST['form_type'] ) ? sanitize_title( $_REQUEST['form_type'] ) : '' ) . '&id=' . $params['id'], 'untrash_form_' . $params['id'] ) ) . '">', '</a>' );
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
348
349
		$message = $available_status[ $status ]['message'];
350
351
		self::display_forms_list( $params, $message );
352
	}
353
354
	public static function bulk_trash( $ids ) {
355
        FrmAppHelper::permission_check('frm_delete_forms');
356
357
        $count = 0;
358
        foreach ( $ids as $id ) {
359
            if ( FrmForm::trash( $id ) ) {
360
                $count++;
361
            }
362
        }
363
364
        $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
introduced by
Detected usage of a non-sanitized input variable: $_REQUEST
Loading history...
365
		$message = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type=' . $current_page . '&item-action[]=' . implode( 'item-action[]=', $ids ), 'bulk-toplevel_page_formidable' ) ) . '">', '</a>' );
366
367
        return $message;
368
    }
369
370
    public static function destroy() {
371
        FrmAppHelper::permission_check('frm_delete_forms');
372
373
		$params = FrmForm::list_page_params();
374
375
        //check nonce url
376
        check_admin_referer('destroy_form_' . $params['id']);
377
378
        $count = 0;
379
        if ( FrmForm::destroy( $params['id'] ) ) {
380
            $count++;
381
        }
382
383
        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
384
385
		self::display_forms_list( $params, $message );
386
    }
387
388
	public static function bulk_destroy( $ids ) {
389
        FrmAppHelper::permission_check('frm_delete_forms');
390
391
        $count = 0;
392
        foreach ( $ids as $id ) {
393
            $d = FrmForm::destroy( $id );
394
            if ( $d ) {
395
                $count++;
396
            }
397
        }
398
399
        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
400
401
        return $message;
402
    }
403
404
    private static function delete_all() {
405
        //check nonce url
406
        $permission_error = FrmAppHelper::permission_nonce_error('frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable');
407
        if ( $permission_error !== false ) {
408
			self::display_forms_list( array(), '', array( $permission_error ) );
409
            return;
410
        }
411
412
		$count = FrmForm::scheduled_delete( time() );
413
        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
414
415
		self::display_forms_list( array(), $message );
416
    }
417
418
	public static function scheduled_delete( $delete_timestamp = '' ) {
419
		_deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::scheduled_delete' );
420
		return FrmForm::scheduled_delete( $delete_timestamp );
421
	}
422
423
	/**
424
	* Inserts Formidable button
425
	* Hook exists since 2.5.0
426
	*
427
	* @since 2.0.15
428
	*/
429
	public static function insert_form_button() {
430
		if ( current_user_can('frm_view_forms') ) {
431
			$menu_name = FrmAppHelper::get_menu_name();
432
			$content = '<a href="#TB_inline?width=50&height=50&inlineId=frm_insert_form" class="thickbox button add_media frm_insert_form" title="' . esc_attr__( 'Add forms and content', 'formidable' ) . '">
433
				<span class="frm-buttons-icon wp-media-buttons-icon"></span> ' .
434
				$menu_name . '</a>';
435
			echo wp_kses_post( $content );
436
		}
437
	}
438
439
    public static function insert_form_popup() {
440
		$page = basename( FrmAppHelper::get_server_value( 'PHP_SELF' ) );
441
		if ( ! in_array( $page, array( 'post.php', 'page.php', 'page-new.php', 'post-new.php' ) ) ) {
442
            return;
443
        }
444
445
        FrmAppHelper::load_admin_wide_js();
446
447
        $shortcodes = array(
448
			'formidable' => array( 'name' => __( 'Form', 'formidable' ), 'label' => __( 'Insert a Form', 'formidable' ) ),
449
        );
450
451
        $shortcodes = apply_filters('frm_popup_shortcodes', $shortcodes);
452
453
		include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/insert_form_popup.php' );
454
    }
455
456
    public static function get_shortcode_opts() {
457
		FrmAppHelper::permission_check('frm_view_forms');
458
        check_ajax_referer( 'frm_ajax', 'nonce' );
459
460
		$shortcode = FrmAppHelper::get_post_param( 'shortcode', '', 'sanitize_text_field' );
461
        if ( empty($shortcode) ) {
462
            wp_die();
463
        }
464
465
		echo '<div id="sc-opts-' . esc_attr( $shortcode ) . '" class="frm_shortcode_option">';
466
		echo '<input type="radio" name="frmsc" value="' . esc_attr( $shortcode ) . '" id="sc-' . esc_attr( $shortcode ) . '" class="frm_hidden" />';
467
468
        $form_id = '';
469
        $opts = array();
470
		switch ( $shortcode ) {
471
            case 'formidable':
472
                $opts = array(
473
					'form_id'       => 'id',
474
                    //'key' => ',
475
					'title'         => array( 'val' => 1, 'label' => __( 'Display form title', 'formidable' ) ),
476
					'description'   => array( 'val' => 1, 'label' => __( 'Display form description', 'formidable' ) ),
477
					'minimize'      => array( 'val' => 1, 'label' => __( 'Minimize form HTML', 'formidable' ) ),
478
                );
479
            break;
480
        }
481
        $opts = apply_filters('frm_sc_popup_opts', $opts, $shortcode);
482
483
		if ( isset( $opts['form_id'] ) && is_string( $opts['form_id'] ) ) {
484
			// allow other shortcodes to use the required form id option
485
			$form_id = $opts['form_id'];
486
			unset( $opts['form_id'] );
487
		}
488
489
		include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/shortcode_opts.php' );
490
491
        echo '</div>';
492
493
        wp_die();
494
    }
495
496
	public static function display_forms_list( $params = array(), $message = '', $errors = array(), $deprecated_errors = array() ) {
497
        FrmAppHelper::permission_check( 'frm_view_forms' );
498
		if ( ! empty( $deprecated_errors ) ) {
499
			$errors = $deprecated_errors;
500
			_deprecated_argument( 'errors', '2.0.8' );
501
		}
502
503
        global $wpdb, $frm_vars;
504
505
		if ( empty( $params ) ) {
506
			$params = FrmForm::list_page_params();
507
        }
508
509
        $wp_list_table = new FrmFormsListHelper( compact( 'params' ) );
510
511
        $pagenum = $wp_list_table->get_pagenum();
512
513
        $wp_list_table->prepare_items();
514
515
        $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
516
        if ( $pagenum > $total_pages && $total_pages > 0 ) {
517
			wp_redirect( esc_url_raw( add_query_arg( 'paged', $total_pages ) ) );
518
            die();
519
        }
520
521
		require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/list.php' );
522
    }
523
524
	public static function get_columns( $columns ) {
525
	    $columns['cb'] = '<input type="checkbox" />';
526
	    $columns['id'] = 'ID';
527
528
        $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : 'published';
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
introduced by
Detected usage of a non-sanitized input variable: $_REQUEST
Loading history...
529
530
        if ( 'template' == $type ) {
531
            $columns['name']        = __( 'Template Name', 'formidable' );
532
            $columns['type']        = __( 'Type', 'formidable' );
533
            $columns['form_key']    = __( 'Key', 'formidable' );
534
        } else {
535
            $columns['name']        = __( 'Form Title', 'formidable' );
536
            $columns['entries']     = __( 'Entries', 'formidable' );
537
            $columns['form_key']    = __( 'Key', 'formidable' );
538
            $columns['shortcode']   = __( 'Shortcodes', 'formidable' );
539
        }
540
541
        $columns['created_at'] = __( 'Date', 'formidable' );
542
543
		add_screen_option( 'per_page', array( 'label' => __( 'Forms', 'formidable' ), 'default' => 20, 'option' => 'formidable_page_formidable_per_page' ) );
544
545
        return $columns;
546
	}
547
548
	public static function get_sortable_columns() {
549
		return array(
550
			'id'            => 'id',
551
			'name'          => 'name',
552
			'description'   => 'description',
553
			'form_key'      => 'form_key',
554
			'created_at'    => 'created_at',
555
		);
556
	}
557
558
	public static function hidden_columns( $result ) {
559
        $return = false;
560
        foreach ( (array) $result as $r ) {
561
            if ( ! empty( $r ) ) {
562
                $return = true;
563
                break;
564
            }
565
        }
566
567
        if ( $return ) {
568
            return $result;
569
		}
570
571
        $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
introduced by
Detected usage of a non-sanitized input variable: $_REQUEST
Loading history...
572
573
        $result[] = 'created_at';
574
        if ( $type == 'template' ) {
575
            $result[] = 'id';
576
            $result[] = 'form_key';
577
        }
578
579
        return $result;
580
    }
581
582
	public static function save_per_page( $save, $option, $value ) {
583
        if ( $option == 'formidable_page_formidable_per_page' ) {
584
            $save = (int) $value;
585
        }
586
        return $save;
587
    }
588
589
	private static function get_edit_vars( $id, $errors = array(), $message = '', $create_link = false ) {
590
        global $frm_vars;
591
592
        $form = FrmForm::getOne( $id );
593
        if ( ! $form ) {
594
            wp_die( __( 'You are trying to edit a form that does not exist.', 'formidable' ) );
595
        }
596
597
        if ( $form->parent_form_id ) {
598
			wp_die( sprintf( __( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form->parent_form_id ) ) . '">', '</a>' ));
599
        }
600
601
		$frm_field_selection = FrmField::field_selection();
602
        $fields = FrmField::get_all_for_form($form->id);
603
604
        // Automatically add end section fields if they don't exist (2.0 migration)
605
        $reset_fields = false;
606
        FrmFormsHelper::auto_add_end_section_fields( $form, $fields, $reset_fields );
607
608
        if ( $reset_fields ) {
609
            $fields = FrmField::get_all_for_form( $form->id, '', 'exclude' );
610
        }
611
612
        unset($end_section_values, $last_order, $open, $reset_fields);
613
614
        $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
615
616
        $edit_message = __( 'Form was Successfully Updated', 'formidable' );
617
        if ( $form->is_template && $message == $edit_message ) {
618
            $message = __( 'Template was Successfully Updated', 'formidable' );
619
        }
620
621
		$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
622
623
        if ( $form->default_template ) {
624
            wp_die(__( 'That template cannot be edited', 'formidable' ));
625
        } else if ( defined('DOING_AJAX') ) {
626
            wp_die();
627
        } else if ( $create_link ) {
628
			require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
629
        } else {
630
			require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/edit.php' );
631
        }
632
    }
633
634
	public static function get_settings_vars( $id, $errors = array(), $message = '' ) {
635
		FrmAppHelper::permission_check( 'frm_edit_forms' );
636
637
        global $frm_vars;
638
639
        $form = FrmForm::getOne( $id );
640
641
        $fields = FrmField::get_all_for_form($id);
642
        $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
643
644
        if ( isset($values['default_template']) && $values['default_template'] ) {
645
            wp_die(__( 'That template cannot be edited', 'formidable' ));
646
        }
647
648
        $action_controls = FrmFormActionsController::get_form_actions();
649
650
        $sections = apply_filters('frm_add_form_settings_section', array(), $values);
651
        $pro_feature = FrmAppHelper::pro_is_installed() ? '' : ' class="pro_feature"';
652
653
        $styles = apply_filters('frm_get_style_opts', array());
654
655
		require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/settings.php' );
656
    }
657
658
    public static function mb_tags_box( $form_id, $class = '' ) {
659
        $fields = FrmField::get_all_for_form($form_id, '', 'include');
660
        $linked_forms = array();
661
        $col = 'one';
662
        $settings_tab = FrmAppHelper::is_admin_page('formidable' ) ? true : false;
663
664
		$cond_shortcodes = apply_filters( 'frm_conditional_shortcodes', array() );
665
		$adv_shortcodes = self::get_advanced_shortcodes();
666
		$user_fields = apply_filters( 'frm_user_shortcodes', array() );
667
		$entry_shortcodes = self::get_shortcode_helpers( $settings_tab );
668
669
		include( FrmAppHelper::plugin_path() . '/classes/views/shared/mb_adv_info.php' );
670
    }
671
672
	/**
673
	 * Get an array of the options to display in the advanced tab
674
	 * of the customization panel
675
	 * @since 2.0.6
676
	 */
677
	private static function get_advanced_shortcodes() {
678
		$adv_shortcodes = array(
679
			'sep=", "'       => array(
680
				'label' => __( 'Separator', 'formidable' ),
681
				'title' => __( 'Use a different separator for checkbox fields', 'formidable' ),
682
			),
683
			'format="d-m-Y"' => __( 'Date Format', 'formidable' ),
684
			'show="field_label"' => __( 'Field Label', 'formidable' ),
685
			'wpautop=0'      => array(
686
				'label' => __( 'No Auto P', 'formidable' ),
687
				'title' => __( 'Do not automatically add any paragraphs or line breaks', 'formidable' ),
688
			),
689
		);
690
		$adv_shortcodes = apply_filters( 'frm_advanced_shortcodes', $adv_shortcodes );
691
		// __( 'Leave blank instead of defaulting to User Login', 'formidable' ) : blank=1
692
693
		return $adv_shortcodes;
694
	}
695
696
	/**
697
	 * Get an array of the helper shortcodes to display in the customization panel
698
	 * @since 2.0.6
699
	 */
700
	private static function get_shortcode_helpers( $settings_tab ) {
701
		$entry_shortcodes = array(
702
			'id'        => __( 'Entry ID', 'formidable' ),
703
			'key'       => __( 'Entry Key', 'formidable' ),
704
			'post_id'   => __( 'Post ID', 'formidable' ),
705
			'ip'        => __( 'User IP', 'formidable' ),
706
			'created-at' => __( 'Entry created', 'formidable' ),
707
			'updated-at' => __( 'Entry updated', 'formidable' ),
708
			''          => '',
709
			'siteurl'   => __( 'Site URL', 'formidable' ),
710
			'sitename'  => __( 'Site Name', 'formidable' ),
711
        );
712
713
		if ( ! FrmAppHelper::pro_is_installed() ) {
714
			unset( $entry_shortcodes['post_id'] );
715
		}
716
717
		if ( $settings_tab ) {
718
			$entry_shortcodes['default-message'] = __( 'Default Msg', 'formidable' );
719
			$entry_shortcodes['default-html'] = __( 'Default HTML', 'formidable' );
720
			$entry_shortcodes['default-plain'] = __( 'Default Plain', 'formidable' );
721
		} else {
722
			$entry_shortcodes['detaillink'] = __( 'Detail Link', 'formidable' );
723
			$entry_shortcodes['editlink location="front" label="Edit" page_id=x'] = __( 'Edit Entry Link', 'formidable' );
724
			$entry_shortcodes['evenodd'] = __( 'Even/Odd', 'formidable' );
725
			$entry_shortcodes['entry_count'] = __( 'Entry Count', 'formidable' );
726
		}
727
728
		/**
729
		 * Use this hook to add or remove buttons in the helpers section
730
		 * in the customization panel
731
		 * @since 2.0.6
732
		 */
733
		$entry_shortcodes = apply_filters( 'frm_helper_shortcodes', $entry_shortcodes, $settings_tab );
734
735
		return $entry_shortcodes;
736
	}
737
738
    // Insert the form class setting into the form
739
	public static function form_classes( $form ) {
740
        if ( isset($form->options['form_class']) ) {
741
			echo esc_attr( sanitize_text_field( $form->options['form_class'] ) );
742
        }
743
    }
744
745
    public static function get_email_html() {
746
		FrmAppHelper::permission_check('frm_view_forms');
747
        check_ajax_referer( 'frm_ajax', 'nonce' );
748
		echo FrmEntryFormat::show_entry( array(
0 ignored issues
show
introduced by
Expected a sanitizing function (see Codex for 'Data Validation'), but instead saw 'FrmEntryFormat'
Loading history...
749
			'form_id'       => FrmAppHelper::get_post_param( 'form_id', '', 'absint' ),
750
	        'default_email' => true,
751
			'plain_text'    => FrmAppHelper::get_post_param( 'plain_text', '', 'absint' ),
752
	    ) );
753
	    wp_die();
754
	}
755
756
    public static function filter_content( $content, $form, $entry = false ) {
757
		self::get_entry_by_param( $entry );
758
        if ( ! $entry ) {
759
            return $content;
760
        }
761
762
        if ( is_object( $form ) ) {
763
            $form = $form->id;
764
        }
765
766
        $shortcodes = FrmFieldsHelper::get_shortcodes( $content, $form );
767
        $content = apply_filters( 'frm_replace_content_shortcodes', $content, $entry, $shortcodes );
768
769
        return $content;
770
    }
771
772
	private static function get_entry_by_param( &$entry ) {
773
		if ( ! $entry || ! is_object( $entry ) ) {
774
			if ( ! $entry || ! is_numeric( $entry ) ) {
775
				$entry = FrmAppHelper::get_post_param( 'id', false, 'sanitize_title' );
776
			}
777
778
			FrmEntry::maybe_get_entry( $entry );
779
		}
780
	}
781
782
    public static function replace_content_shortcodes( $content, $entry, $shortcodes ) {
783
        return FrmFieldsHelper::replace_content_shortcodes( $content, $entry, $shortcodes );
784
    }
785
786
    public static function process_bulk_form_actions( $errors ) {
787
        if ( ! $_REQUEST ) {
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
788
            return $errors;
789
        }
790
791
		$bulkaction = FrmAppHelper::get_param( 'action', '', 'get', 'sanitize_text_field' );
792
        if ( $bulkaction == -1 ) {
793
			$bulkaction = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' );
794
        }
795
796
        if ( ! empty( $bulkaction ) && strpos( $bulkaction, 'bulk_' ) === 0 ) {
797
            FrmAppHelper::remove_get_action();
798
799
            $bulkaction = str_replace( 'bulk_', '', $bulkaction );
800
        }
801
802
        $ids = FrmAppHelper::get_param( 'item-action', '' );
803
        if ( empty( $ids ) ) {
804
            $errors[] = __( 'No forms were specified', 'formidable' );
805
            return $errors;
806
        }
807
808
        $permission_error = FrmAppHelper::permission_nonce_error( '', '_wpnonce', 'bulk-toplevel_page_formidable' );
809
        if ( $permission_error !== false ) {
810
            $errors[] = $permission_error;
811
            return $errors;
812
        }
813
814
        if ( ! is_array( $ids ) ) {
815
            $ids = explode( ',', $ids );
816
        }
817
818
        switch ( $bulkaction ) {
819
            case 'delete':
820
                $message = self::bulk_destroy( $ids );
821
            break;
822
            case 'trash':
823
                $message = self::bulk_trash( $ids );
824
            break;
825
            case 'untrash':
826
                $message = self::bulk_untrash( $ids );
827
            break;
828
            case 'create_template':
829
                $message = self::bulk_create_template( $ids );
830
            break;
831
        }
832
833
        if ( isset( $message ) && ! empty( $message ) ) {
834
			echo '<div id="message" class="updated frm_msg_padding">' . FrmAppHelper::kses( $message ) . '</div>';
0 ignored issues
show
introduced by
Expected a sanitizing function (see Codex for 'Data Validation'), but instead saw 'FrmAppHelper'
Loading history...
835
        }
836
837
        return $errors;
838
    }
839
840
    public static function add_default_templates( $path, $default = true, $template = true ) {
841
        _deprecated_function( __FUNCTION__, '1.07.05', 'FrmXMLController::add_default_templates()' );
842
843
        $path = untrailingslashit(trim($path));
844
		$templates = glob( $path . '/*.php' );
845
846
		for ( $i = count( $templates ) - 1; $i >= 0; $i-- ) {
847
			$filename = str_replace( '.php', '', str_replace( $path . '/', '', $templates[ $i ] ) );
848
			$template_query = array( 'form_key' => $filename );
849
            if ( $template ) {
850
                $template_query['is_template'] = 1;
851
            }
852
            if ( $default ) {
853
                $template_query['default_template'] = 1;
854
            }
855
			$form = FrmForm::getAll( $template_query, '', 1 );
856
857
            $values = FrmFormsHelper::setup_new_vars();
858
            $values['form_key'] = $filename;
859
            $values['is_template'] = $template;
860
            $values['status'] = 'published';
861
            if ( $default ) {
862
                $values['default_template'] = 1;
863
            }
864
865
            include( $templates[ $i ] );
866
867
            //get updated form
868
            if ( isset($form) && ! empty($form) ) {
869
                $old_id = $form->id;
870
                $form = FrmForm::getOne($form->id);
871
            } else {
872
                $old_id = false;
873
				$form = FrmForm::getAll( $template_query, '', 1 );
874
            }
875
876
            if ( $form ) {
877
				do_action( 'frm_after_duplicate_form', $form->id, (array) $form, array( 'old_id' => $old_id ) );
878
            }
879
        }
880
    }
881
882
    public static function route() {
883
        $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
884
        $vars = array();
885
		if ( isset( $_POST['frm_compact_fields'] ) ) {
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
886
			FrmAppHelper::permission_check( 'frm_edit_forms' );
887
888
            $json_vars = htmlspecialchars_decode(nl2br(stripslashes(str_replace('&quot;', '\\\"', $_POST['frm_compact_fields'] ))));
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
introduced by
Detected usage of a non-sanitized input variable: $_POST
Loading history...
889
            $json_vars = json_decode($json_vars, true);
890
            if ( empty($json_vars) ) {
891
                // json decoding failed so we should return an error message
892
				$action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
893
                if ( 'edit' == $action ) {
894
                    $action = 'update';
895
                }
896
897
                add_filter('frm_validate_form', 'FrmFormsController::json_error');
898
            } else {
899
                $vars = FrmAppHelper::json_to_array($json_vars);
900
                $action = $vars[ $action ];
901
				unset( $_REQUEST['frm_compact_fields'], $_POST['frm_compact_fields'] );
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
902
				$_REQUEST = array_merge( $_REQUEST, $vars );
0 ignored issues
show
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
903
				$_POST = array_merge( $_POST, $_REQUEST );
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
introduced by
Detected access of super global var $_REQUEST, probably need manual inspection.
Loading history...
904
            }
905
        } else {
906
			$action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
907
    		if ( isset( $_REQUEST['delete_all'] ) ) {
908
                // override the action for this page
909
    			$action = 'delete_all';
910
            }
911
        }
912
913
		add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' );
914
        FrmAppHelper::trigger_hook_load( 'form' );
915
916
        switch ( $action ) {
917
            case 'new':
918
                return self::new_form($vars);
919
            case 'create':
920
            case 'edit':
921
            case 'update':
922
            case 'duplicate':
923
            case 'trash':
924
            case 'untrash':
925
            case 'destroy':
926
            case 'delete_all':
927
            case 'settings':
928
            case 'update_settings':
929
				return self::$action( $vars );
930
            default:
931
				do_action( 'frm_form_action_' . $action );
932
				if ( apply_filters( 'frm_form_stop_action_' . $action, false ) ) {
933
                    return;
934
                }
935
936
				$action = FrmAppHelper::get_param( 'action', '', 'get', 'sanitize_text_field' );
937
                if ( $action == -1 ) {
938
					$action = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' );
939
                }
940
941
                if ( strpos($action, 'bulk_') === 0 ) {
942
                    FrmAppHelper::remove_get_action();
943
                    return self::list_form();
944
                }
945
946
                return self::display_forms_list();
947
        }
948
    }
949
950
    public static function json_error( $errors ) {
951
        $errors['json'] = __( 'Abnormal HTML characters prevented your form from saving correctly', 'formidable' );
952
        return $errors;
953
    }
954
955
956
    /* FRONT-END FORMS */
957
    public static function admin_bar_css() {
958
		if ( is_admin() || ! current_user_can( 'frm_edit_forms' ) ) {
959
            return;
960
        }
961
962
		add_action( 'wp_before_admin_bar_render', 'FrmFormsController::admin_bar_configure' );
963
		FrmAppHelper::load_font_style();
964
	}
965
966
	public static function admin_bar_configure() {
967
        global $frm_vars;
968
        if ( empty($frm_vars['forms_loaded']) ) {
969
            return;
970
        }
971
972
        $actions = array();
973
        foreach ( $frm_vars['forms_loaded'] as $form ) {
974
            if ( is_object($form) ) {
975
                $actions[ $form->id ] = $form->name;
976
            }
977
            unset($form);
978
        }
979
980
        if ( empty($actions) ) {
981
            return;
982
        }
983
984
        asort($actions);
985
986
        global $wp_admin_bar;
987
988
        if ( count($actions) == 1 ) {
989
            $wp_admin_bar->add_menu( array(
990
                'title' => 'Edit Form',
991
				'href'  => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . current( array_keys( $actions ) ) ),
992
                'id'    => 'frm-forms',
993
            ) );
994
        } else {
995
            $wp_admin_bar->add_menu( array(
996
        		'id'    => 'frm-forms',
997
        		'title' => '<span class="ab-icon"></span><span class="ab-label">' . __( 'Edit Forms', 'formidable' ) . '</span>',
998
				'href'  => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . current( array_keys( $actions ) ) ),
0 ignored issues
show
introduced by
Expected a sanitizing function (see Codex for 'Data Validation'), but instead saw 'current'
Loading history...
999
        		'meta'  => array(
1000
					'title' => __( 'Edit Forms', 'formidable' ),
1001
        		),
1002
        	) );
1003
1004
        	foreach ( $actions as $form_id => $name ) {
1005
1006
        		$wp_admin_bar->add_menu( array(
1007
        			'parent'    => 'frm-forms',
1008
					'id'        => 'edit_form_' . $form_id,
1009
        			'title'     => empty($name) ? __( '(no title)') : $name,
1010
					'href'      => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ),
0 ignored issues
show
introduced by
Expected next thing to be a escaping function, not '$form_id'
Loading history...
1011
        		) );
1012
        	}
1013
        }
1014
    }
1015
1016
    //formidable shortcode
1017
	public static function get_form_shortcode( $atts ) {
1018
        global $frm_vars;
1019
        if ( isset($frm_vars['skip_shortcode']) && $frm_vars['skip_shortcode'] ) {
1020
            $sc = '[formidable';
1021
			if ( ! empty( $atts ) ) {
1022
				foreach ( $atts as $k => $v ) {
1023
					$sc .= ' ' . $k . '="' . esc_attr( $v ) . '"';
1024
				}
1025
			}
1026
			return $sc . ']';
1027
        }
1028
1029
        $shortcode_atts = shortcode_atts( array(
1030
            'id' => '', 'key' => '', 'title' => false, 'description' => false,
1031
            'readonly' => false, 'entry_id' => false, 'fields' => array(),
1032
            'exclude_fields' => array(), 'minimize' => false,
1033
        ), $atts);
1034
        do_action('formidable_shortcode_atts', $shortcode_atts, $atts);
1035
1036
        return self::show_form(
1037
            $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'],
1038
            $shortcode_atts['description'], $atts
1039
        );
1040
    }
1041
1042
    public static function show_form( $id = '', $key = '', $title = false, $description = false, $atts = array() ) {
1043
        if ( empty( $id ) ) {
1044
            $id = $key;
1045
        }
1046
1047
        // no form id or key set
1048
        if ( empty( $id ) ) {
1049
            return __( 'Please select a valid form', 'formidable' );
1050
        }
1051
1052
        $form = FrmForm::getOne( $id );
1053
        if ( ! $form || $form->parent_form_id || $form->status == 'trash' ) {
1054
            return __( 'Please select a valid form', 'formidable' );
1055
        }
1056
1057
		add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' );
1058
        FrmAppHelper::trigger_hook_load( 'form', $form );
1059
1060
        $form = apply_filters( 'frm_pre_display_form', $form );
1061
1062
        $frm_settings = FrmAppHelper::get_settings();
1063
1064
		if ( self::is_viewable_draft_form( $form ) ) {
1065
			// don't show a draft form on a page
1066
			$form = __( 'Please select a valid form', 'formidable' );
1067
		} else if ( self::user_should_login( $form ) ) {
1068
			$form = do_shortcode( $frm_settings->login_msg );
1069
		} else if ( self::user_has_permission_to_view( $form ) ) {
1070
			$form = do_shortcode( $frm_settings->login_msg );
1071
		} else {
1072
			$form = self::get_form( $form, $title, $description, $atts );
1073
1074
			/**
1075
			 * Use this shortcode to check for external shortcodes that may span
1076
			 * across multiple fields in the customizable HTML
1077
			 * @since 2.0.8
1078
			 */
1079
			$form = apply_filters( 'frm_filter_final_form', $form );
1080
		}
1081
1082
		return $form;
1083
    }
1084
1085
	private static function is_viewable_draft_form( $form ) {
1086
		global $post;
1087
		$frm_settings = FrmAppHelper::get_settings();
1088
		return $form->status == 'draft' && current_user_can( 'frm_edit_forms' ) && ( ! $post || $post->ID != $frm_settings->preview_page_id ) && ! FrmAppHelper::is_preview_page();
1089
	}
1090
1091
	private static function user_should_login( $form ) {
1092
		return $form->logged_in && ! is_user_logged_in();
1093
	}
1094
1095
	private static function user_has_permission_to_view( $form ) {
1096
		return $form->logged_in && get_current_user_id() && isset( $form->options['logged_in_role'] ) && $form->options['logged_in_role'] != '' && ! FrmAppHelper::user_has_permission( $form->options['logged_in_role'] );
1097
	}
1098
1099
    public static function get_form( $form, $title, $description, $atts = array() ) {
1100
        ob_start();
1101
1102
        self::get_form_contents( $form, $title, $description, $atts );
1103
		self::enqueue_scripts( FrmForm::get_params( $form ) );
1104
1105
        $contents = ob_get_contents();
1106
        ob_end_clean();
1107
1108
		self::maybe_minimize_form( $atts, $contents );
1109
1110
        return $contents;
1111
    }
1112
1113
	public static function enqueue_scripts( $params ) {
1114
		do_action( 'frm_enqueue_form_scripts', $params );
1115
	}
1116
1117
	public static function get_form_contents( $form, $title, $description, $atts ) {
1118
        global $frm_vars;
1119
1120
        $frm_settings = FrmAppHelper::get_settings();
1121
1122
        $submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value;
1123
1124
        $user_ID = get_current_user_id();
1125
		$params = FrmForm::get_params( $form );
1126
        $message = $errors = '';
1127
1128
        if ( $params['posted_form_id'] == $form->id && $_POST ) {
1129
            $errors = isset( $frm_vars['created_entries'][ $form->id ] ) ? $frm_vars['created_entries'][ $form->id ]['errors'] : array();
1130
        }
1131
1132
		$include_form_tag = apply_filters( 'frm_include_form_tag', true, $form );
1133
        $fields = FrmFieldsHelper::get_form_fields( $form->id, ( isset( $errors ) && ! empty( $errors ) ) );
1134
1135
        if ( $params['action'] != 'create' || $params['posted_form_id'] != $form->id || ! $_POST ) {
0 ignored issues
show
introduced by
Detected access of super global var $_POST, probably need manual inspection.
Loading history...
1136
            do_action('frm_display_form_action', $params, $fields, $form, $title, $description);
1137
            if ( apply_filters('frm_continue_to_new', true, $form->id, $params['action']) ) {
1138
                $values = FrmEntriesHelper::setup_new_vars($fields, $form);
1139
				include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' );
1140
            }
1141
            return;
1142
        }
1143
1144
        if ( ! empty($errors) ) {
1145
            $values = $fields ? FrmEntriesHelper::setup_new_vars($fields, $form) : array();
1146
			include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' );
1147
            return;
1148
        }
1149
1150
        do_action('frm_validate_form_creation', $params, $fields, $form, $title, $description);
1151
        if ( ! apply_filters('frm_continue_to_create', true, $form->id) ) {
1152
            return;
1153
        }
1154
1155
        $values = FrmEntriesHelper::setup_new_vars($fields, $form, true);
1156
        $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][ $form->id ] ) ) ? $frm_vars['created_entries'][ $form->id ]['entry_id'] : 0;
1157
        $conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options, 'create');
1158
1159
        if ( $created && is_numeric($created) && $conf_method != 'message' ) {
1160
            do_action('frm_success_action', $conf_method, $form, $form->options, $created);
1161
			do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) );
1162
            return;
1163
        }
1164
1165
        if ( $created && is_numeric($created) ) {
1166
            $message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg;
1167
            $class = 'frm_message';
1168
        } else {
1169
            $message = $frm_settings->failed_msg;
1170
            $class = 'frm_error_style';
1171
        }
1172
1173
		$message = FrmFormsHelper::get_success_message( array(
1174
			'message' => $message, 'form' => $form,
1175
			'entry_id' => $created, 'class' => $class,
1176
		) );
1177
        $message = apply_filters('frm_main_feedback', $message, $form, $created);
1178
1179
        if ( ! isset($form->options['show_form']) || $form->options['show_form'] ) {
1180
			require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' );
1181
        } else {
1182
            global $frm_vars;
1183
			self::maybe_load_css( $form, $values['custom_style'], $frm_vars['load_css'] );
1184
1185
			$include_extra_container = 'frm_forms' . FrmFormsHelper::get_form_style_class( $values );
1186
			include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/errors.php' );
1187
        }
1188
1189
		do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) );
1190
    }
1191
1192
	public static function front_head() {
1193
		$version = FrmAppHelper::plugin_version();
1194
		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
1195
		wp_register_script( 'formidable', FrmAppHelper::plugin_url() . "/js/formidable{$suffix}.js", array( 'jquery' ), $version, true );
1196
		wp_register_script( 'jquery-placeholder', FrmAppHelper::plugin_url() . '/js/jquery/jquery.placeholder.js', array( 'jquery' ), '2.0.7', true );
1197
		add_filter( 'script_loader_tag', 'FrmFormsController::defer_script_loading', 10, 2 );
1198
1199
		if ( FrmAppHelper::is_admin() ) {
1200
			// don't load this in back-end
1201
			return;
1202
		}
1203
1204
		FrmAppHelper::localize_script( 'front' );
1205
		FrmStylesController::enqueue_css( 'register' );
1206
	}
1207
1208
	public static function maybe_load_css( $form, $this_load, $global_load ) {
1209
		$load_css = FrmForm::is_form_loaded( $form, $this_load, $global_load );
1210
1211
		if ( $load_css ) {
1212
			global $frm_vars;
1213
			self::footer_js( 'header' );
1214
			$frm_vars['css_loaded'] = true;
1215
		}
1216
	}
1217
1218
	public static function defer_script_loading( $tag, $handle ) {
1219
	    if ( 'recaptcha-api' == $handle && ! strpos( $tag, 'defer' ) ) {
1220
	        $tag = str_replace( ' src', ' defer="defer" async="async" src', $tag );
1221
		}
1222
	    return $tag;
1223
	}
1224
1225
	public static function footer_js( $location = 'footer' ) {
1226
		global $frm_vars;
1227
1228
		FrmStylesController::enqueue_css();
1229
1230
		if ( ! FrmAppHelper::is_admin() && $location != 'header' && ! empty( $frm_vars['forms_loaded'] ) ) {
1231
			//load formidable js
1232
			wp_enqueue_script( 'formidable' );
1233
		}
1234
	}
1235
1236
	/**
1237
	 * @since 2.0.8
1238
	 */
1239
	private static function maybe_minimize_form( $atts, &$content ) {
1240
		// check if minimizing is turned on
1241
		if ( self::is_minification_on( $atts ) ) {
1242
			$content = str_replace( array( "\r\n", "\r", "\n", "\t", '    ' ), '', $content );
1243
		}
1244
	}
1245
1246
	/**
1247
	 * @since 2.0.8
1248
	 * @return boolean
1249
	 */
1250
	private static function is_minification_on( $atts ) {
1251
		return isset( $atts['minimize'] ) && ! empty( $atts['minimize'] );
1252
	}
1253
}
1254