PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.16
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.16
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/controllers/FrmFormActionsController.php +51 -235 6.286.16 View file →
@@ -3,12 +3,8 @@
3 3 die( 'You are not allowed to call this page directly.' );
4 4 }
5 5
6 6 class FrmFormActionsController {
7 -
8 - /**
9 - * @var string
10 - */
11 7 public static $action_post_type = 'frm_form_actions';
12 8
13 9 /**
14 10 * @var array|null
@@ -67,9 +63,8 @@
67 63 'constantcontact' => 'FrmDefConstContactAction',
68 64 'getresponse' => 'FrmDefGetResponseAction',
69 65 'hubspot' => 'FrmDefHubspotAction',
70 66 'zapier' => 'FrmDefZapierAction',
71 - 'n8n' => 'FrmDefN8NAction',
72 67 'twilio' => 'FrmDefTwilioAction',
73 68 'highrise' => 'FrmDefHighriseAction',
74 69 'mailpoet' => 'FrmDefMailpoetAction',
75 70 'aweber' => 'FrmDefAweberAction',
@@ -77,9 +72,8 @@
77 72 'googlespreadsheet' => 'FrmDefGoogleSpreadsheetAction',
78 73 );
79 74
80 75 $action_classes = apply_filters( 'frm_registered_form_actions', $action_classes );
81 - $action_classes = self::maybe_unset_highrise( $action_classes );
82 76
83 77 include_once FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/email_action.php';
84 78 include_once FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/default_actions.php';
85 79
@@ -88,31 +82,16 @@
88 82 }
89 83 }
90 84
91 85 /**
92 - * Remove the Highrise action if it is not registered.
93 - *
94 - * @since 6.23
95 - *
96 - * @param array $action_classes
97 - *
98 - * @return array
99 - */
100 - private static function maybe_unset_highrise( $action_classes ) {
101 - if ( 'FrmDefHighriseAction' === ( $action_classes['highrise'] ?? '' ) ) {
102 - unset( $action_classes['highrise'] );
103 - }
104 - return $action_classes;
105 - }
106 -
107 - /**
108 86 * @since 4.0
109 87 *
110 88 * @param array $values
111 89 */
112 90 public static function email_settings( $values ) {
113 - $form = FrmForm::getOne( $values['id'] );
114 - $groups = self::form_action_groups();
91 + $form = FrmForm::getOne( $values['id'] );
92 + $groups = self::form_action_groups();
93 +
115 94 $action_controls = self::get_form_actions();
116 95 self::maybe_add_action_to_group( $action_controls, $groups );
117 96
118 97 $allowed = self::active_actions( $action_controls );
@@ -123,17 +102,11 @@
123 102 /**
124 103 * Add unknown actions to a group.
125 104 *
126 105 * @since 4.0
127 - *
128 - * @param array $action_controls
129 - * @param array $groups
130 - *
131 - * @return void
132 106 */
133 107 private static function maybe_add_action_to_group( $action_controls, &$groups ) {
134 108 $grouped = array();
135 -
136 109 foreach ( $groups as $group ) {
137 110 if ( isset( $group['actions'] ) ) {
138 111 $grouped = array_merge( $grouped, $group['actions'] );
139 112 }
@@ -139,14 +112,13 @@
139 112 }
140 113 }
141 114
142 115 foreach ( $action_controls as $action ) {
143 - if ( isset( $groups[ $action->id_base ] ) || in_array( $action->id_base, $grouped, true ) ) {
116 + if ( isset( $groups[ $action->id_base ] ) || in_array( $action->id_base, $grouped ) ) {
144 117 continue;
145 118 }
146 119
147 120 $this_group = $action->action_options['group'];
148 -
149 121 if ( ! isset( $groups[ $this_group ] ) ) {
150 122 $this_group = 'misc';
151 123 }
152 124
@@ -167,9 +139,9 @@
167 139 public static function form_action_groups() {
168 140 $groups = array(
169 141 'misc' => array(
170 142 'name' => '',
171 - 'icon' => 'frmfont frm_shuffle_icon',
143 + 'icon' => 'frm_icon_font frm_shuffle_icon',
172 144 'actions' => array(
173 145 'email',
174 146 'wppost',
175 147 'register',
@@ -179,9 +151,9 @@
179 151 ),
180 152 ),
181 153 'payment' => array(
182 154 'name' => __( 'eCommerce', 'formidable' ),
183 - 'icon' => 'frmfont frm_credit_card_alt_icon',
155 + 'icon' => 'frm_icon_font frm_credit_card_alt_icon',
184 156 'actions' => array(
185 157 'paypal',
186 158 'payment',
187 159 ),
@@ -187,9 +159,9 @@
187 159 ),
188 160 ),
189 161 'marketing' => array(
190 162 'name' => __( 'Email Marketing', 'formidable' ),
191 - 'icon' => 'frmfont frm_mail_bulk_icon',
163 + 'icon' => 'frm_icon_font frm_mail_bulk_icon',
192 164 'actions' => array(
193 165 'mailchimp',
194 166 'activecampaign',
195 167 'constantcontact',
@@ -195,15 +167,18 @@
195 167 'constantcontact',
196 168 'getresponse',
197 169 'aweber',
198 170 'mailpoet',
199 - 'convertkit',
200 171 ),
201 172 ),
202 173 'crm' => array(
203 174 'name' => __( 'CRM', 'formidable' ),
204 - 'icon' => 'frmfont frm_address_card_icon',
205 - 'actions' => self::get_crm_actions(),
175 + 'icon' => 'frm_icon_font frm_address_card_icon',
176 + 'actions' => array(
177 + 'salesforce',
178 + 'hubspot',
179 + 'highrise',
180 + ),
206 181 ),
207 182 );
208 183
209 184 return apply_filters( 'frm_action_groups', $groups );
@@ -209,47 +184,21 @@
209 184 return apply_filters( 'frm_action_groups', $groups );
210 185 }
211 186
212 187 /**
213 - * Get the actions to include in the CRM section.
214 - *
215 - * @since 6.23
216 - *
217 - * @return array
218 - */
219 - private static function get_crm_actions() {
220 - $crm_actions = array(
221 - 'salesforce',
222 - 'hubspot',
223 - );
224 -
225 - // Only include Highrise when the add-on is active.
226 - // This is because Highrise is deprecated. We don't want to show it in Lite.
227 - if ( class_exists( 'FrmHrsSettings' ) ) {
228 - $crm_actions[] = 'highrise';
229 - }
230 -
231 - return $crm_actions;
232 - }
233 -
234 - /**
235 188 * Get the number of currently active form actions.
236 189 *
237 190 * @since 4.0
238 191 *
239 - * @param array $action_controls
240 - *
241 192 * @return array
242 193 */
243 194 private static function active_actions( $action_controls ) {
244 195 $allowed = array();
245 -
246 196 foreach ( $action_controls as $action_control ) {
247 - if ( ! empty( $action_control->action_options['active'] ) ) {
197 + if ( isset( $action_control->action_options['active'] ) && $action_control->action_options['active'] ) {
248 198 $allowed[] = $action_control->id_base;
249 199 }
250 200 }
251 -
252 201 return $allowed;
253 202 }
254 203
255 204 /**
@@ -255,15 +204,15 @@
255 204 /**
256 205 * For each add-on, add an li, class, and javascript function. If active, add an additional class.
257 206 *
258 207 * @since 4.0
259 - *
260 208 * @param object $action_control
261 209 * @param array $allowed
262 210 */
263 211 public static function show_action_icon_link( $action_control, $allowed ) {
264 - $data = array();
265 - $classes = ' frm_' . $action_control->id_base . '_action frm_single_action';
212 + $data = array();
213 + $classes = ' frm_' . $action_control->id_base . '_action frm_single_action';
214 +
266 215 $group_class = ' frm-group-' . $action_control->action_options['group'];
267 216
268 217 /* translators: %s: Name of form action */
269 218 $upgrade_label = sprintf( esc_html__( '%s form actions', 'formidable' ), $action_control->action_options['tooltip'] );
@@ -269,16 +218,15 @@
269 218 $upgrade_label = sprintf( esc_html__( '%s form actions', 'formidable' ), $action_control->action_options['tooltip'] );
270 219
271 220 $default_shown = array( 'wppost', 'register', 'payment', 'quiz', 'hubspot' );
272 221 $default_shown = array_values( array_diff( $default_shown, $allowed ) );
273 - $default_position = array_search( $action_control->id_base, $default_shown, true );
222 + $default_position = array_search( $action_control->id_base, $default_shown );
274 223 $allowed_count = count( $allowed );
275 224
276 - if ( ! empty( $action_control->action_options['active'] ) ) {
225 + if ( isset( $action_control->action_options['active'] ) && $action_control->action_options['active'] ) {
277 226 $classes .= ' frm_active_action';
278 227 } else {
279 228 $classes .= ' frm_inactive_action';
280 -
281 229 if ( $default_position !== false && ( $allowed_count + $default_position ) < 6 ) {
282 230 $group_class .= ' frm-default-show';
283 231 }
284 232
@@ -285,9 +233,8 @@
285 233 $data['data-upgrade'] = $upgrade_label;
286 234 $data['data-medium'] = 'settings-' . $action_control->id_base;
287 235
288 236 $upgrading = FrmAddonsController::install_link( $action_control->action_options['plugin'] );
289 -
290 237 if ( isset( $upgrading['url'] ) ) {
291 238 $data['data-oneclick'] = json_encode( $upgrading );
292 239 }
293 240
@@ -295,9 +242,8 @@
295 242 $data['data-message'] = $action_control->action_options['message'];
296 243 }
297 244
298 245 $requires = FrmFormsHelper::get_plan_required( $upgrading );
299 -
300 246 if ( $requires && 'free' !== $requires ) {
301 247 $data['data-requires'] = $requires;
302 248 }
303 249 }//end if
@@ -303,9 +249,8 @@
303 249 }//end if
304 250
305 251 // HTML to include on the icon.
306 252 $icon_atts = array();
307 -
308 253 if ( $action_control->action_options['color'] !== 'var(--primary-700)' ) {
309 254 $icon_atts = array(
310 255 'style' => '--primary-700:' . $action_control->action_options['color'],
311 256 );
@@ -315,15 +260,13 @@
315 260 }
316 261
317 262 /**
318 263 * @param string $action
319 - *
320 264 * @return array|FrmFormAction A single form action is returned when a specific $action value is requested.
321 265 */
322 266 public static function get_form_actions( $action = 'all' ) {
323 267 $temp_actions = self::$registered_actions;
324 -
325 - if ( ! $temp_actions ) {
268 + if ( empty( $temp_actions ) ) {
326 269 self::actions_init();
327 270 $temp_actions = self::$registered_actions->actions;
328 271 } else {
329 272 $temp_actions = $temp_actions->actions;
@@ -331,9 +274,9 @@
331 274
332 275 $actions = array();
333 276
334 277 foreach ( $temp_actions as $a ) {
335 - if ( 'all' !== $action && $a->id_base === $action ) {
278 + if ( 'all' !== $action && $a->id_base == $action ) {
336 279 return $a;
337 280 }
338 281
339 282 $actions[ $a->id_base ] = $a;
@@ -343,16 +286,11 @@
343 286 }
344 287
345 288 /**
346 289 * @since 2.0
347 - *
348 - * @param object $form
349 - * @param array $values
350 - *
351 - * @return void
352 290 */
353 291 public static function list_actions( $form, $values ) {
354 - if ( ! $form ) {
292 + if ( empty( $form ) ) {
355 293 return;
356 294 }
357 295
358 296 /**
@@ -377,13 +315,11 @@
377 315 foreach ( $action_controls as $key => $control ) {
378 316 $action_map[ $control->id_base ] = $key;
379 317 }
380 318
381 - self::maybe_show_limit_warning( $form->id, $form_actions );
382 -
383 319 foreach ( $form_actions as $action ) {
384 320 if ( ! isset( $action_map[ $action->post_excerpt ] ) ) {
385 - // Don't try and show settings if action no longer exists
321 + // don't try and show settings if action no longer exists
386 322 continue;
387 323 }
388 324
389 325 self::action_control( $action, $form, $action->ID, $action_controls[ $action_map[ $action->post_excerpt ] ], $values );
@@ -389,54 +325,8 @@
389 325 self::action_control( $action, $form, $action->ID, $action_controls[ $action_map[ $action->post_excerpt ] ], $values );
390 326 }
391 327 }
392 328
393 - /**
394 - * Show a warning before the form actions list if there are 99 actions, and the limit is set to 99.
395 - * If it is filtered, the warning is still shown when applicable, just using the new limit.
396 - *
397 - * @since 6.17
398 - *
399 - * @param int|string $form_id
400 - * @param array $form_actions
401 - *
402 - * @return void
403 - */
404 - private static function maybe_show_limit_warning( $form_id, $form_actions ) {
405 - $count = count( $form_actions );
406 -
407 - if ( $count < 99 ) {
408 - return;
409 - }
410 -
411 - $limit = FrmFormAction::get_action_limit( $form_id );
412 -
413 - if ( $limit < 99 || $count < $limit ) {
414 - return;
415 - }
416 -
417 - $documentation_url = 'https://formidableforms.com/knowledgebase/frm_form_action_limit/#kb-increase-limit-of-form-actions';
418 -
419 - echo '<div class="frm_warning_style">';
420 - FrmAppHelper::icon_by_class( 'frmfont frm_alert_icon' );
421 - echo '&nbsp;';
422 - printf(
423 - // translators: %s: URL to documentation
424 - esc_html__( 'You have reached your form action limit. To increase this limit, you will require additional code. Visit our documentation at %s.', 'formidable' ),
425 - '<a href="' . esc_url( $documentation_url ) . '" target="_blank">' . esc_html( $documentation_url ) . '</a>'
426 - );
427 - echo '</div>';
428 - }
429 -
430 - /**
431 - * @param WP_Post $form_action
432 - * @param object $form
433 - * @param int $action_key Action ID.
434 - * @param FrmFormAction $action_control
435 - * @param array $values
436 - *
437 - * @return void
438 - */
439 329 public static function action_control( $form_action, $form, $action_key, $action_control, $values ) {
440 330 $action_control->_set( $action_key );
441 331
442 332 $use_logging = self::should_show_log_message( $form_action->post_excerpt );
@@ -458,14 +348,16 @@
458 348 */
459 349 $action_control = self::get_form_actions( $action_type );
460 350 $action_control->_set( $action_key );
461 351
462 - $form_id = FrmAppHelper::get_param( 'form_id', '', 'post', 'absint' );
352 + $form_id = FrmAppHelper::get_param( 'form_id', '', 'post', 'absint' );
353 +
463 354 $form_action = $action_control->prepare_new( $form_id );
464 355 $use_logging = self::should_show_log_message( $action_type );
465 - $values = array();
466 - $form = self::fields_to_values( $form_id, $values );
467 356
357 + $values = array();
358 + $form = self::fields_to_values( $form_id, $values );
359 +
468 360 include FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/form_action.php';
469 361 wp_die();
470 362 }
471 363
@@ -472,19 +364,21 @@
472 364 public static function fill_action() {
473 365 FrmAppHelper::permission_check( 'frm_edit_forms' );
474 366 check_ajax_referer( 'frm_ajax', 'nonce' );
475 367
476 - $action_key = FrmAppHelper::get_param( 'action_id', '', 'post', 'absint' );
477 - $action_type = FrmAppHelper::get_param( 'action_type', '', 'post', 'sanitize_text_field' );
368 + $action_key = FrmAppHelper::get_param( 'action_id', '', 'post', 'absint' );
369 + $action_type = FrmAppHelper::get_param( 'action_type', '', 'post', 'sanitize_text_field' );
370 +
478 371 $action_control = self::get_form_actions( $action_type );
479 -
480 - if ( ! $action_control ) {
372 + if ( empty( $action_control ) ) {
481 373 wp_die();
482 374 }
483 375
484 376 $form_action = $action_control->get_single_action( $action_key );
485 - $values = array();
486 - $form = self::fields_to_values( $form_action->menu_order, $values );
377 +
378 + $values = array();
379 + $form = self::fields_to_values( $form_action->menu_order, $values );
380 +
487 381 $use_logging = self::should_show_log_message( $action_type );
488 382
489 383 include FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/_action_inside.php';
490 384 wp_die();
@@ -491,11 +385,8 @@
491 385 }
492 386
493 387 /**
494 388 * @since 3.06.04
495 - *
496 - * @param string $action_type
497 - *
498 389 * @return bool
499 390 */
500 391 private static function should_show_log_message( $action_type ) {
501 392 $logging = array( 'api', 'salesforce', 'constantcontact', 'activecampaign' );
@@ -501,14 +392,8 @@
501 392 $logging = array( 'api', 'salesforce', 'constantcontact', 'activecampaign' );
502 393 return in_array( $action_type, $logging, true ) && ! function_exists( 'frm_log_autoloader' );
503 394 }
504 395
505 - /**
506 - * @param int|string $form_id
507 - * @param array $values
508 - *
509 - * @return object
510 - */
511 396 private static function fields_to_values( $form_id, array &$values ) {
512 397 $form = FrmForm::getOne( $form_id );
513 398
514 399 $values = array(
@@ -516,14 +401,12 @@
516 401 'id' => $form->id,
517 402 );
518 403
519 404 $fields = FrmField::get_all_for_form( $form->id );
520 -
521 405 foreach ( $fields as $k => $f ) {
522 406 $f = (array) $f;
523 407 $opts = (array) $f['field_options'];
524 408 $f = array_merge( $opts, $f );
525 -
526 409 if ( ! isset( $f['post_field'] ) ) {
527 410 $f['post_field'] = '';
528 411 }
529 412 $values['fields'][] = $f;
@@ -534,15 +417,13 @@
534 417 }
535 418
536 419 /**
537 420 * @param int $form_id
538 - *
539 421 * @return void
540 422 */
541 423 public static function update_settings( $form_id ) {
542 424 FrmAppHelper::permission_check( 'frm_edit_forms' );
543 425 $process_form = FrmAppHelper::get_post_param( 'process_form', '', 'sanitize_text_field' );
544 -
545 426 if ( ! wp_verify_nonce( $process_form, 'process_form_nonce' ) ) {
546 427 $frm_settings = FrmAppHelper::get_settings();
547 428 $error_args = array(
548 429 'title' => __( 'Verification failed', 'formidable' ),
@@ -575,19 +456,17 @@
575 456 $new_actions = array();
576 457
577 458 foreach ( $registered_actions as $registered_action ) {
578 459 $action_ids = $registered_action->update_callback( $form_id );
579 -
580 - if ( $action_ids ) {
460 + if ( ! empty( $action_ids ) ) {
581 461 $new_actions[] = $action_ids;
582 462 }
583 463 }
584 464
585 465 // Only use array_merge if there are new actions.
586 - if ( $new_actions ) {
466 + if ( ! empty( $new_actions ) ) {
587 467 $new_actions = call_user_func_array( 'array_merge', $new_actions );
588 468 }
589 -
590 469 $old_actions = array_diff( $old_actions, $new_actions );
591 470
592 471 self::delete_missing_actions( $old_actions );
593 472
@@ -593,15 +472,10 @@
593 472
594 473 FrmOnSubmitHelper::save_on_submit_settings( $form_id );
595 474 }
596 475
597 - /**
598 - * @param array $old_actions
599 - *
600 - * @return void
601 - */
602 476 public static function delete_missing_actions( $old_actions ) {
603 - if ( $old_actions ) {
477 + if ( ! empty( $old_actions ) ) {
604 478 foreach ( $old_actions as $old_id ) {
605 479 wp_delete_post( $old_id );
606 480 }
607 481 FrmDb::cache_delete_group( 'frm_actions' );
@@ -607,15 +481,8 @@
607 481 FrmDb::cache_delete_group( 'frm_actions' );
608 482 }
609 483 }
610 484
611 - /**
612 - * @param int|string $entry_id
613 - * @param int|string $form_id
614 - * @param array $args
615 - *
616 - * @return void
617 - */
618 485 public static function trigger_create_actions( $entry_id, $form_id, $args = array() ) {
619 486 $filter_args = $args;
620 487 $filter_args['entry_id'] = $entry_id;
621 488 $filter_args['form_id'] = $form_id;
@@ -632,34 +499,23 @@
632 499 self::trigger_actions( $event, $form_id, $entry_id, 'all', $args );
633 500 }
634 501
635 502 /**
636 - * @param string $event
637 - * @param int|object|string $form
638 - * @param int|object|string $entry
639 - * @param string $type
640 - * @param array $args
641 - *
642 - * @return void
503 + * @param string $event
643 504 */
644 - public static function trigger_actions( $event, $form, $entry, $type = 'all', $args = array() ) { // phpcs:ignore SlevomatCodingStandard.Complexity.Cognitive.ComplexityTooHigh
505 + public static function trigger_actions( $event, $form, $entry, $type = 'all', $args = array() ) {
645 506 $action_status = array(
646 507 'post_status' => 'publish',
647 508 );
648 - $form_actions = FrmFormAction::get_action_for_form( is_object( $form ) ? $form->id : $form, $type, $action_status );
509 + $form_actions = FrmFormAction::get_action_for_form( ( is_object( $form ) ? $form->id : $form ), $type, $action_status );
649 510
650 - if ( ! $form_actions ) {
511 + if ( empty( $form_actions ) ) {
651 512 return;
652 513 }
653 514
654 515 FrmForm::maybe_get_form( $form );
655 516
656 - if ( ! is_object( $form ) ) {
657 - return;
658 - }
659 -
660 517 $link_settings = self::get_form_actions( $type );
661 -
662 518 if ( 'all' !== $type ) {
663 519 $link_settings = array( $type => $link_settings );
664 520 }
665 521
@@ -672,11 +528,11 @@
672 528 $this_event = $event;
673 529 }
674 530
675 531 foreach ( $form_actions as $action ) {
532 +
676 533 $skip_this_action = ! in_array( $this_event, $action->post_content['event'], true ) || FrmOnSubmitAction::$slug === $action->post_excerpt;
677 534 $skip_this_action = apply_filters( 'frm_skip_form_action', $skip_this_action, compact( 'action', 'entry', 'form', 'event' ) );
678 -
679 535 if ( $skip_this_action ) {
680 536 continue;
681 537 }
682 538
@@ -683,18 +539,17 @@
683 539 if ( ! is_object( $entry ) ) {
684 540 $entry = FrmEntry::getOne( $entry, true );
685 541 }
686 542
687 - if ( ! $entry || ( FrmEntriesHelper::DRAFT_ENTRY_STATUS === (int) $entry->is_draft && 'draft' !== $event ) ) {
543 + if ( empty( $entry ) || ( FrmEntriesHelper::DRAFT_ENTRY_STATUS === (int) $entry->is_draft && 'draft' !== $event ) ) {
688 544 continue;
689 545 }
690 546
691 - $child_entry = ( is_numeric( $form->parent_form_id ) && $form->parent_form_id ) || ( $entry && ( (int) $entry->form_id !== (int) $form->id || $entry->parent_item_id ) ) || ! empty( $args['is_child'] ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
547 + $child_entry = ( ( is_object( $form ) && is_numeric( $form->parent_form_id ) && $form->parent_form_id ) || ( $entry && ( $entry->form_id != $form->id || $entry->parent_item_id ) ) || ( isset( $args['is_child'] ) && $args['is_child'] ) );
692 548
693 549 if ( $child_entry ) {
694 - // Maybe trigger actions for sub forms
550 + // maybe trigger actions for sub forms
695 551 $trigger_children = apply_filters( 'frm_use_embedded_form_actions', false, compact( 'form', 'entry' ) );
696 -
697 552 if ( ! $trigger_children ) {
698 553 continue;
699 554 }
700 555 }
@@ -700,9 +555,8 @@
700 555 }
701 556
702 557 // Check conditional logic.
703 558 $stop = FrmFormAction::action_conditions_met( $action, $entry );
704 -
705 559 if ( $stop ) {
706 560 continue;
707 561 }
708 562
@@ -712,9 +566,9 @@
712 566
713 567 unset( $action );
714 568 }//end foreach
715 569
716 - if ( $stored_actions ) {
570 + if ( ! empty( $stored_actions ) ) {
717 571 asort( $action_priority );
718 572
719 573 // Make sure hooks are loaded.
720 574 new FrmNotification();
@@ -745,15 +599,8 @@
745 599 }//end foreach
746 600 }//end if
747 601 }
748 602
749 - /**
750 - * @param int|string $form_id
751 - * @param array $values
752 - * @param array $args
753 - *
754 - * @return void
755 - */
756 603 public static function duplicate_form_actions( $form_id, $values, $args = array() ) {
757 604 if ( empty( $args['old_id'] ) ) {
758 605 // Continue if we know which actions to copy.
759 606 return;
@@ -769,13 +616,8 @@
769 616 unset( $action_control );
770 617 }
771 618 }
772 619
773 - /**
774 - * @param string $where
775 - *
776 - * @return string
777 - */
778 620 public static function limit_by_type( $where ) {
779 621 global $frm_vars, $wpdb;
780 622
781 623 if ( ! isset( $frm_vars['action_type'] ) ) {
@@ -781,31 +623,15 @@
781 623 if ( ! isset( $frm_vars['action_type'] ) ) {
782 624 return $where;
783 625 }
784 626
785 - return $where . $wpdb->prepare( ' AND post_excerpt = %s ', $frm_vars['action_type'] );
786 - }
627 + $where .= $wpdb->prepare( ' AND post_excerpt = %s ', $frm_vars['action_type'] );
787 628
788 - /**
789 - * Prevent WPML from filtering form actions based on the active language.
790 - *
791 - * @since 6.20
792 - *
793 - * @param bool|null $null
794 - * @param string $post_type
795 - *
796 - * @return bool|null
797 - */
798 - public static function prevent_wpml_translations( $null, $post_type ) {
799 - return self::$action_post_type === $post_type ? false : $null;
629 + return $where;
800 630 }
801 631 }
802 632
803 633 class Frm_Form_Action_Factory {
804 -
805 - /**
806 - * @var array
807 - */
808 634 public $actions = array();
809 635
810 636 public function __construct() {
811 637 add_action( 'frm_form_actions_init', array( $this, '_register_actions' ), 100 );
@@ -810,22 +636,12 @@
810 636 public function __construct() {
811 637 add_action( 'frm_form_actions_init', array( $this, '_register_actions' ), 100 );
812 638 }
813 639
814 - /**
815 - * @param string $action_class
816 - *
817 - * @return void
818 - */
819 640 public function register( $action_class ) {
820 641 $this->actions[ $action_class ] = new $action_class();
821 642 }
822 643
823 - /**
824 - * @param string $action_class
825 - *
826 - * @return void
827 - */
828 644 public function unregister( $action_class ) {
829 645 if ( isset( $this->actions[ $action_class ] ) ) {
830 646 unset( $this->actions[ $action_class ] );
831 647 }
@@ -834,9 +650,9 @@
834 650 public function _register_actions() {
835 651 $keys = array_keys( $this->actions );
836 652
837 653 foreach ( $keys as $key ) {
838 - // Don't register new action if old action with the same id is already registered
654 + // don't register new action if old action with the same id is already registered
839 655 if ( ! isset( $this->actions[ $key ] ) ) {
840 656 $this->actions[ $key ]->_register();
841 657 }
842 658 }