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