PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.25.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.25.1
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / helpers / FrmOnSubmitHelper.php

FrmOnSubmitHelper.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.25.1, at classes/helpers/FrmOnSubmitHelper.php

436 lines 13.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * On Submit action helper
4 *
5 * @package Formidable
6 * @since 6.0
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 die( 'You are not allowed to call this page directly.' );
11 }
12
13 class FrmOnSubmitHelper {
14
15 /**
16 * Shows message settings.
17 *
18 * @param array $args {
19 * The args.
20 *
21 * @type object $form_action Form action post data.
22 * @type FrmFormAction $action_control Form action object.
23 * @type object $form Form data.
24 * @type string $action_key Action key.
25 * @type array $values Contains `fields` (form fields) and `id` (form ID).
26 * }
27 */
28 public static function show_message_settings( $args ) {
29 $id_attr = $args['action_control']->get_field_id( 'success_msg' );
30 ?>
31 <div class="frm_form_field frm_has_shortcodes">
32 <label for="<?php echo esc_attr( $id_attr ); ?>" class="screen-reader-text">
33 <?php esc_html_e( 'Message on submit', 'formidable' ); ?>
34 </label>
35
36 <?php
37 wp_editor(
38 $args['form_action']->post_content['success_msg'],
39 $id_attr,
40 array(
41 'textarea_name' => $args['action_control']->get_field_name( 'success_msg' ),
42 'textarea_rows' => 4,
43 'editor_class' => 'frm_not_email_message',
44 )
45 );
46 ?>
47 </div>
48
49 <?php
50 $id_attr = $args['action_control']->get_field_id( 'show_form' );
51 $name_attr = $args['action_control']->get_field_name( 'show_form' );
52 ?>
53 <div class="frm_form_field">
54 <?php
55 FrmHtmlHelper::toggle(
56 $id_attr,
57 $name_attr,
58 array(
59 'div_class' => 'with_frm_style frm_toggle',
60 'checked' => ! empty( $args['form_action']->post_content['show_form'] ),
61 'echo' => true,
62 )
63 );
64 ?>
65 <label for="<?php echo esc_attr( $id_attr ); ?>">
66 <?php esc_html_e( 'Show the form with the confirmation message', 'formidable' ); ?>
67 </label>
68 </div>
69 <?php
70 }
71
72 /**
73 * Shows redirect settings.
74 *
75 * @param array $args {
76 * The args.
77 *
78 * @type object $form_action Form action post data.
79 * @type FrmFormAction $action_control Form action object.
80 * @type object $form Form data.
81 * @type string $action_key Action key.
82 * @type array $values Contains `fields` (form fields) and `id` (form ID).
83 * }
84 */
85 public static function show_redirect_settings( $args ) {
86 include FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/on_submit_redirect_settings.php';
87 }
88
89 /**
90 * Shows page settings.
91 *
92 * @param array $args {
93 * The args.
94 *
95 * @type object $form_action Form action post data.
96 * @type FrmFormAction $action_control Form action object.
97 * @type object $form Form data.
98 * @type string $action_key Action key.
99 * @type array $values Contains `fields` (form fields) and `id` (form ID).
100 * }
101 */
102 public static function show_page_settings( $args ) {
103 $name_attr = $args['action_control']->get_field_name( 'success_page_id' );
104 ?>
105 <div class="frm_form_field">
106 <div class="frm_note_style">
107 <?php esc_html_e( 'NOTE: The selected page content will be displayed, but the full page will not be loaded. Traditional URL tracking in Google Analytics and similar tools won\'t register a page load event. If precise tracking is essential, consider using the \'Redirect to URL\' option.', 'formidable' ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong ?>
108 </div>
109 <label for="<?php echo esc_attr( $name_attr ); ?>" class="screen-reader-text">
110 <?php esc_html_e( 'Select a page', 'formidable' ); ?>
111 </label>
112 <?php
113 FrmAppHelper::maybe_autocomplete_pages_options(
114 array(
115 'field_name' => $name_attr,
116 'page_id' => $args['form_action']->post_content['success_page_id'],
117 'placeholder' => __( 'Select a Page', 'formidable' ),
118 )
119 );
120 ?>
121 </div>
122 <?php
123 }
124
125 /**
126 * Gets all active On Submit form actions for form.
127 * This checks and gets data from WordPress cache group `frm_actions` first. It prevents the cache issue if form
128 * action is created during run time. If you use another cache method, please remember to delete the cache in
129 * {@see FrmFormAction::save_settings()}.
130 *
131 * @param int $form_id Form ID.
132 * @return array
133 */
134 public static function get_actions( $form_id ) {
135 $cache_key = 'frm_on_submit_actions_' . $form_id;
136 $actions = wp_cache_get( $cache_key, 'frm_actions' );
137 if ( false !== $actions ) {
138 return $actions;
139 }
140
141 $actions = FrmFormAction::get_action_for_form( $form_id, FrmOnSubmitAction::$slug, array( 'post_status' => 'publish' ) );
142 wp_cache_set( $cache_key, 'frm_actions' );
143 return $actions;
144 }
145
146 /**
147 * Gets On Submit action type (message, redirect or page).
148 *
149 * @param object $action Form action object.
150 * @return string
151 */
152 public static function get_action_type( $action ) {
153 return $action->post_content['success_action'] ?? self::get_default_action_type();
154 }
155
156 public static function get_default_action_type() {
157 return 'message';
158 }
159
160 public static function get_default_msg() {
161 $msg = FrmAppHelper::get_settings()->success_msg;
162 return $msg ? $msg : __( 'Your responses were successfully submitted. Thank you!', 'formidable' );
163 }
164
165 public static function get_default_redirect_msg() {
166 return __( 'Please wait while you are redirected.', 'formidable' );
167 }
168
169 /**
170 * Gets the default open in new tab message.
171 *
172 * @since 6.3.1
173 *
174 * @return string
175 */
176 public static function get_default_new_tab_msg() {
177 return FrmAppHelper::get_settings()->new_tab_msg;
178 }
179
180 /**
181 * Adds the first On Submit action data to the form options to be saved.
182 *
183 * @param int $form_id Form ID.
184 */
185 public static function save_on_submit_settings( $form_id ) {
186 $actions = self::get_actions( $form_id );
187 $first_create_action = null;
188 $first_edit_action = null;
189 foreach ( $actions as $action ) {
190 if ( ! $first_create_action && in_array( 'create', $action->post_content['event'], true ) ) {
191 $first_create_action = $action;
192 }
193 if ( ! $first_edit_action && in_array( 'update', $action->post_content['event'], true ) ) {
194 $first_edit_action = $action;
195 }
196 }
197
198 $form_options = array();
199 self::populate_on_submit_data( $form_options, $first_create_action );
200 if ( method_exists( 'FrmProFormActionsController', 'change_on_submit_action_ops' ) && FrmAppHelper::pro_is_connected() ) {
201 $form_editable = FrmDb::get_var( 'frm_forms', array( 'id' => $form_id ), 'editable' );
202 if ( $form_editable ) {
203 self::populate_on_submit_data( $form_options, $first_edit_action, 'update' );
204 }
205 }
206
207 if ( ! empty( $form_options ) ) {
208 $_POST['options'] += $form_options;
209 }
210 }
211
212 /**
213 * Populates the On Submit data to form options.
214 *
215 * @param array $form_options Form options.
216 * @param object $action Optional. The On Submit action object.
217 * @param string $event Form event. Default is `create`.
218 */
219 public static function populate_on_submit_data( &$form_options, $action = null, $event = 'create' ) {
220 $opt = 'update' === $event ? 'edit_' : 'success_';
221 if ( ! $action || ! is_object( $action ) ) {
222 $form_options[ $opt . 'action' ] = self::get_default_action_type();
223 $form_options[ $opt . 'msg' ] = self::get_default_msg();
224
225 return;
226 }
227
228 $form_options[ $opt . 'action' ] = $action->post_content['success_action'] ?? 'message';
229
230 switch ( $form_options[ $opt . 'action' ] ) {
231 case 'redirect':
232 $form_options[ $opt . 'url' ] = $action->post_content['success_url'] ?? '';
233 $form_options['open_in_new_tab'] = ! empty( $action->post_content['open_in_new_tab'] );
234 $form_options['redirect_delay'] = ! empty( $action->post_content['redirect_delay'] );
235 $form_options['redirect_delay_time'] = $action->post_content['redirect_delay_time'];
236 $form_options['redirect_delay_msg'] = $action->post_content['redirect_delay_msg'];
237 break;
238
239 case 'page':
240 $form_options[ $opt . 'page_id' ] = $action->post_content['success_page_id'] ?? '';
241 break;
242
243 default:
244 $form_options[ $opt . 'msg' ] = ! empty( $action->post_content['success_msg'] ) ? $action->post_content['success_msg'] : self::get_default_msg();
245 $form_options['show_form'] = ! empty( $action->post_content['show_form'] );
246 }
247 }
248
249 /**
250 * Maybe migrate submit settings from the form options to On Submit action.
251 * This is added after On Submit action is released. This might migrate the frontend editing submit settings too.
252 *
253 * @since 6.1.1
254 *
255 * @param int $form_id Form ID.
256 */
257 public static function maybe_migrate_submit_settings_to_action( $form_id ) {
258 $form = FrmDb::get_row( 'frm_forms', array( 'id' => $form_id ), 'options,editable' );
259 if ( ! $form ) {
260 return;
261 }
262
263 FrmAppHelper::unserialize_or_decode( $form->options );
264
265 if ( self::form_has_migrated( $form ) ) {
266 return;
267 }
268
269 $form->id = $form_id;
270 $action_type = FrmOnSubmitAction::$slug;
271
272 // Check if form already has form actions to avoid creating duplicates.
273 $has_actions = FrmFormAction::form_has_action_type( $form_id, $action_type );
274 if ( ! empty( $has_actions ) ) {
275 // Don't migrate again.
276 self::save_migrated_success_actions( $form );
277 return;
278 }
279
280 // Create On Submit action.
281 $base_action = array();
282
283 $base_action['post_type'] = FrmFormActionsController::$action_post_type;
284 $base_action['post_excerpt'] = $action_type;
285 $base_action['post_title'] = FrmOnSubmitAction::get_name();
286 $base_action['menu_order'] = $form_id;
287 $base_action['post_status'] = 'publish';
288 $base_action['post_content'] = array(
289 'event' => array( 'create' ),
290 );
291
292 $action_data = self::get_on_submit_action_data_from_form_options( $form->options );
293
294 // If frontend editing is enabled, migrate its settings too.
295 if ( method_exists( 'FrmProFormActionsController', 'change_on_submit_action_ops' ) && FrmAppHelper::pro_is_connected() && $form->editable ) {
296 $edit_data = self::get_on_submit_action_data_from_form_options( $form->options, 'update' );
297
298 if ( $action_data === $edit_data ) {
299 // Just create one action for both create and update if they are the same.
300 $base_action['post_content']['event'][] = 'update';
301 } else {
302 // Create a separate action for update.
303 $edit_action = $base_action;
304 $edit_action['post_content'] += $edit_data;
305 $edit_action['post_content']['event'] = array( 'update' );
306
307 $edit_action['post_content'] = FrmAppHelper::prepare_and_encode( $edit_action['post_content'] );
308 FrmDb::save_json_post( $edit_action );
309 }
310 }
311
312 $action = $base_action;
313 $action['post_content'] += $action_data;
314
315 $action['post_content'] = FrmAppHelper::prepare_and_encode( $action['post_content'] );
316 FrmDb::save_json_post( $action );
317
318 self::save_migrated_success_actions( $form );
319 }
320
321 /**
322 * Gets On Submit action data from form options to be used for the migration.
323 *
324 * @since 6.1.1
325 *
326 * @param array $form_options Form options.
327 * @param string $event Action event. Accepts `create` or `update`. Default is `create`.
328 * @return array
329 */
330 private static function get_on_submit_action_data_from_form_options( $form_options, $event = 'create' ) {
331 $opt = 'update' === $event ? 'edit_' : 'success_';
332 $data = array(
333 'success_action' => $form_options[ $opt . 'action' ] ?? self::get_default_action_type(),
334 );
335
336 switch ( $data['success_action'] ) {
337 case 'redirect':
338 $data['success_url'] = $form_options[ $opt . 'url' ] ?? '';
339 break;
340
341 case 'page':
342 $data['success_page_id'] = $form_options[ $opt . 'page_id' ] ?? '';
343 break;
344
345 default:
346 $data['success_msg'] = $form_options[ $opt . 'msg' ] ?? self::get_default_msg();
347 $data['show_form'] = ! empty( $form_options['show_form'] );
348 }
349
350 return $data;
351 }
352
353 /**
354 * Checks if On Submit settings are migrated.
355 *
356 * @since 6.1.1
357 *
358 * @param object $form Form object.
359 * @return bool
360 */
361 public static function form_has_migrated( $form ) {
362 return ! empty( $form->options['on_submit_migrated'] );
363 }
364
365 /**
366 * @since 6.1.1
367 *
368 * @param object $form Limited form object.
369 * @return void
370 */
371 private static function save_migrated_success_actions( $form ) {
372 // Options may be an empty string.
373 if ( ! is_array( $form->options ) ) {
374 $form->options = array();
375 }
376 $form->options['on_submit_migrated'] = 1;
377 FrmForm::update( $form->id, array( 'options' => $form->options ) );
378 }
379
380 /**
381 * Gets fallback action, used when no actions match.
382 *
383 * @since 6.1.1
384 *
385 * @param array|string $event Uses 'create' or 'update'.
386 *
387 * @return object
388 */
389 public static function get_fallback_action( $event = 'create' ) {
390 $action = new stdClass();
391
392 $default_msg = self::get_default_msg();
393 if ( current_user_can( 'frm_edit_forms' ) ) {
394 $default_msg .= '<br />';
395 $default_msg .= '<span style="font-weight: 600; font-style: italic;">';
396 $default_msg .= __( 'This is the fallback message. No confirmation actions match your conditional logic, or they are invalid.', 'formidable' );
397 $default_msg .= '</span>';
398 }
399
400 $action->post_content = array(
401 'event' => (array) $event,
402 'success_action' => 'message',
403 'success_msg' => $default_msg,
404 );
405
406 return $action;
407 }
408
409 /**
410 * Gets fallback action after opening the redirect URL in a new tab.
411 *
412 * @since 6.3.1
413 *
414 * @param array|string $event Uses 'create' or 'update'.
415 * @return object
416 */
417 public static function get_fallback_action_after_open_in_new_tab( $event ) {
418 $action = self::get_fallback_action( $event );
419
420 $action->post_content['success_msg'] = self::get_default_new_tab_msg();
421
422 return $action;
423 }
424
425 /**
426 * Check if the current event has been passed. If not, use create actions.
427 *
428 * @since 6.1.1
429 *
430 * @return string
431 */
432 public static function current_event( $atts ) {
433 return ! empty( $atts['action'] ) ? $atts['action'] : 'create';
434 }
435 }
436