PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.16.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.16.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
← All changes | classes/controllers/FrmAppController.php +462 -197 6.56.16.1 View file →
@@ -15,8 +15,10 @@
15 15 }
16 16
17 17 $menu_name = FrmAppHelper::get_menu_name();
18 18 add_menu_page( 'Formidable', $menu_name, 'frm_view_forms', 'formidable', 'FrmFormsController::route', self::menu_icon(), self::get_menu_position() );
19 +
20 + self::maybe_add_black_friday_submenu_item();
19 21 }
20 22
21 23 /**
22 24 * @return int
@@ -40,8 +42,84 @@
40 42 return apply_filters( 'frm_icon', $icon );
41 43 }
42 44
43 45 /**
46 + * @since 6.16
47 + *
48 + * @return void
49 + */
50 + private static function maybe_add_black_friday_submenu_item() {
51 + if ( ! current_user_can( 'frm_change_settings' ) ) {
52 + return;
53 + }
54 +
55 + $is_black_friday = self::is_black_friday();
56 + $is_cyber_monday = self::is_cyber_monday();
57 +
58 + if ( ! $is_black_friday && ! $is_cyber_monday ) {
59 + return;
60 + }
61 +
62 + $black_friday_menu_label = $is_black_friday ? __( 'Black Friday!', 'formidable' ) : __( 'Cyber Monday!', 'formidable' );
63 + $black_friday_menu_label = '<span class="frm-orange-text">' . esc_html( $black_friday_menu_label ) . '</span>';
64 +
65 + add_action(
66 + 'admin_menu',
67 + function () use ( $black_friday_menu_label ) {
68 + add_submenu_page(
69 + 'formidable',
70 + 'Formidable',
71 + $black_friday_menu_label,
72 + 'frm_change_settings',
73 + 'formidable-black-friday',
74 + function () {
75 + // This function should do nothing. The redirect is handled earlier to avoid header conflicts.
76 + }
77 + );
78 + },
79 + 1000
80 + );
81 + }
82 +
83 + /**
84 + * Black Friday sale is from November 25 to 29.
85 + *
86 + * @since 6.16
87 + *
88 + * @return bool
89 + */
90 + private static function is_black_friday() {
91 + return self::within_sale_date_range( '2024-11-25', '2024-11-29' );
92 + }
93 +
94 + /**
95 + * Cyber Monday sale rules from November 30 to December 4.
96 + *
97 + * @since 6.16
98 + *
99 + * @return bool
100 + */
101 + private static function is_cyber_monday() {
102 + return self::within_sale_date_range( '2024-11-30', '2024-12-04' );
103 + }
104 +
105 + /**
106 + * Check if the current time is within a sale date range.
107 + * Our sales are based on Eastern Time, so we use New York's timezone.
108 + *
109 + * @since 6.16
110 + *
111 + * @param string $from The beginning of the date range. Y-m-d format is expected.
112 + * @param string $to The end of the date range. Y-m-d format is expected.
113 + * @return bool
114 + */
115 + private static function within_sale_date_range( $from, $to ) {
116 + $date = new DateTime( 'now', new DateTimeZone( 'America/New_York' ) );
117 + $today = $date->format( 'Y-m-d' );
118 + return $today >= $from && $today <= $to;
119 + }
120 +
121 + /**
44 122 * @since 3.0
45 123 */
46 124 public static function add_admin_class( $classes ) {
47 125 if ( self::is_white_page() ) {
@@ -61,14 +139,20 @@
61 139 $classes .= ' frm-admin-page-' . $page;
62 140 }
63 141 }
64 142
143 + if ( self::is_grey_page() ) {
144 + $classes .= ' frm-grey-body ';
145 + }
146 +
65 147 if ( FrmAppHelper::is_full_screen() ) {
66 148 $full_screen_on = self::get_full_screen_setting();
67 - $add_class = '';
149 + $add_class = '';
68 150 if ( $full_screen_on ) {
69 151 $add_class = ' frm-full-screen is-fullscreen-mode';
70 - wp_enqueue_style( 'wp-edit-post' ); // Load the CSS for .is-fullscreen-mode.
152 +
153 + // Load the CSS for .is-fullscreen-mode.
154 + wp_enqueue_style( 'wp-edit-post' );
71 155 }
72 156 $classes .= apply_filters( 'frm_admin_full_screen_class', $add_class );
73 157 }
74 158
@@ -75,8 +159,12 @@
75 159 if ( ! FrmAppHelper::pro_is_installed() ) {
76 160 $classes .= ' frm-lite ';
77 161 }
78 162
163 + if ( get_user_setting( 'unfold' ) && 'f' !== get_user_setting( 'mfold' ) ) {
164 + $classes .= ' frm-unfold ';
165 + }
166 +
79 167 return $classes;
80 168 }
81 169
82 170 /**
@@ -124,9 +212,8 @@
124 212 'formidable',
125 213 'formidable-entries',
126 214 'formidable-views',
127 215 'formidable-views-editor',
128 - 'formidable-pro-upgrade',
129 216 'formidable-addons',
130 217 'formidable-import',
131 218 'formidable-settings',
132 219 'formidable-styles',
@@ -131,26 +218,25 @@
131 218 'formidable-settings',
132 219 'formidable-styles',
133 220 'formidable-styles2',
134 221 'formidable-inbox',
135 - 'formidable-welcome',
136 - 'formidable-applications',
222 + FrmFormTemplatesController::PAGE_SLUG,
223 + FrmOnboardingWizardController::PAGE_SLUG,
137 224 );
138 225
139 - if ( ! class_exists( 'FrmTransHooksController', false ) ) {
226 + if ( ! class_exists( 'FrmTransHooksController', false ) && ! FrmTransLiteAppHelper::should_fallback_to_paypal() ) {
140 227 // Only consider the payments page as a "white page" when the Payments submodule is off.
141 228 // Otherwise this causes a lot of styling issues when the Stripe add-on (or Authorize.Net) is active.
142 - $white_pages[] = 'formidable-payments';
229 +
230 + // Add an extra check to avoid white page styling on the PayPal "edit" action.
231 + // We fallback to the PayPal add on for the "edit" action since Stripe Lite does not have an edit view.
232 + if ( ! in_array( FrmAppHelper::simple_get( 'action' ), array( 'edit', 'new' ), true ) || ! is_callable( 'FrmPaymentsController::route' ) ) {
233 + $white_pages[] = 'formidable-payments';
234 + }
143 235 }
144 236
145 - $get_page = FrmAppHelper::simple_get( 'page', 'sanitize_title' );
146 - $is_white_page = in_array( $get_page, $white_pages, true );
237 + $is_white_page = self::is_page_in_list( $white_pages ) || self::is_grey_page() || FrmAppHelper::is_view_builder_page();
147 238
148 - if ( ! $is_white_page ) {
149 - $screen = get_current_screen();
150 - $is_white_page = ( $screen && strpos( $screen->id, 'frm_display' ) !== false );
151 - }
152 -
153 239 /**
154 240 * Allow another add on to style a page as a Formidable "white page", which adds a white background color.
155 241 *
156 242 * @since 5.3
@@ -162,8 +248,45 @@
162 248 return $is_white_page;
163 249 }
164 250
165 251 /**
252 + * Add a grey bg instead of white.
253 + *
254 + * @since 6.8
255 + *
256 + * @return bool
257 + */
258 + private static function is_grey_page() {
259 + $grey_pages = array(
260 + 'formidable-applications',
261 + 'formidable-dashboard',
262 + );
263 +
264 + $is_grey_page = self::is_page_in_list( $grey_pages );
265 +
266 + /**
267 + * Filter to change FF wrapper background to grey.
268 + *
269 + * @since 6.8
270 + *
271 + * @param bool $is_grey_page
272 + * @return bool
273 + */
274 + return apply_filters( 'frm_is_grey_page', $is_grey_page );
275 + }
276 +
277 + /**
278 + * @since 6.8
279 + *
280 + * @param array $pages A list of page names to check.
281 + * @return bool
282 + */
283 + private static function is_page_in_list( $pages ) {
284 + $get_page = FrmAppHelper::simple_get( 'page', 'sanitize_title' );
285 + return in_array( $get_page, $pages, true );
286 + }
287 +
288 + /**
166 289 * @return void
167 290 */
168 291 public static function load_wp_admin_style() {
169 292 FrmAppHelper::load_font_style();
@@ -169,10 +292,11 @@
169 292 FrmAppHelper::load_font_style();
170 293 }
171 294
172 295 /**
173 - * @param bool $show_nav
174 - * @param string $title
296 + * @param int|object $form
297 + * @param bool $show_nav
298 + * @param string $title
175 299 *
176 300 * @psalm-param 'hide'|'show' $title
177 301 *
178 302 * @return void
@@ -191,9 +315,9 @@
191 315 $id = $form->id;
192 316 $current_page = self::get_current_page();
193 317 $nav_items = self::get_form_nav_items( $form );
194 318
195 - include( FrmAppHelper::plugin_path() . '/classes/views/shared/form-nav.php' );
319 + include FrmAppHelper::plugin_path() . '/classes/views/shared/form-nav.php';
196 320 }
197 321
198 322 /**
199 323 * @return string
@@ -247,18 +371,18 @@
247 371 'permission' => 'frm_view_entries',
248 372 ),
249 373 );
250 374
251 - $views_installed = is_callable( 'FrmProAppHelper::views_is_installed' ) ? FrmProAppHelper::views_is_installed() : FrmAppHelper::pro_is_installed();
375 + $views_installed = is_callable( 'FrmProAppHelper::views_is_installed' ) && FrmProAppHelper::views_is_installed();
252 376
253 377 if ( ! $views_installed ) {
254 378 $nav_items[] = array(
255 - 'link' => admin_url( 'admin.php?page=formidable-views&form=' . absint( $id ) ),
256 - 'label' => __( 'Views', 'formidable' ),
257 - 'current' => array(),
258 - 'page' => 'formidable-views',
379 + 'link' => admin_url( 'admin.php?page=formidable-views&form=' . absint( $id ) ),
380 + 'label' => __( 'Views', 'formidable' ),
381 + 'current' => array(),
382 + 'page' => 'formidable-views',
259 383 'permission' => 'frm_view_entries',
260 - 'atts' => array(
384 + 'atts' => array(
261 385 'class' => 'frm_noallow',
262 386 ),
263 387 );
264 388 }
@@ -265,14 +389,14 @@
265 389
266 390 // Let people know reports and views exist.
267 391 if ( ! FrmAppHelper::pro_is_installed() ) {
268 392 $nav_items[] = array(
269 - 'link' => admin_url( 'admin.php?page=formidable&frm_action=lite-reports&form=' . absint( $id ) ),
270 - 'label' => __( 'Reports', 'formidable' ),
271 - 'current' => array( 'reports' ),
272 - 'page' => 'formidable',
393 + 'link' => admin_url( 'admin.php?page=formidable&frm_action=lite-reports&form=' . absint( $id ) ),
394 + 'label' => __( 'Reports', 'formidable' ),
395 + 'current' => array( 'reports' ),
396 + 'page' => 'formidable',
273 397 'permission' => 'frm_view_entries',
274 - 'atts' => array(
398 + 'atts' => array(
275 399 'class' => 'frm_noallow',
276 400 ),
277 401 );
278 402 }
@@ -292,9 +416,10 @@
292 416 public static function settings_link( $links ) {
293 417 $settings = array();
294 418
295 419 if ( ! FrmAppHelper::pro_is_installed() ) {
296 - $settings[] = '<a href="' . esc_url( FrmAppHelper::admin_upgrade_link( 'plugin-row' ) ) . '" target="_blank" rel="noopener"><b style="color:#1da867;font-weight:700;">' . esc_html__( 'Upgrade to Pro', 'formidable' ) . '</b></a>';
420 + $label = FrmAddonsController::is_license_expired() ? __( 'Renew', 'formidable' ) : __( 'Upgrade to Pro', 'formidable' );
421 + $settings[] = '<a href="' . esc_url( FrmAppHelper::admin_upgrade_link( 'plugin-row' ) ) . '" target="_blank" rel="noopener"><b style="color:#1da867;font-weight:700;">' . esc_html( $label ) . '</b></a>';
297 422 }
298 423
299 424 $settings[] = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable' ) ) . '">' . __( 'Build a Form', 'formidable' ) . '</a>';
300 425
@@ -305,9 +430,9 @@
305 430 * @return void
306 431 */
307 432 public static function pro_get_started_headline() {
308 433 self::review_request();
309 - FrmAppHelper::min_pro_version_notice( '4.0' );
434 + FrmAppHelper::min_pro_version_notice( '6.0' );
310 435 }
311 436
312 437 /**
313 438 * Add admin notices as needed for reviews
@@ -374,63 +499,26 @@
374 499 $shared_path = $plugin_path . '/classes/views/shared/';
375 500
376 501 include $shared_path . 'upgrade_overlay.php';
377 502 include $shared_path . 'confirm-overlay.php';
378 -
379 - if ( FrmAppHelper::is_admin_page( 'formidable-welcome' ) || FrmAppHelper::on_form_listing_page() ) {
380 - self::new_form_overlay_html();
381 - }
382 503 }
383 504
384 505 /**
506 + * Create a basic form with an email field.
507 + *
508 + * @param string $form_key
509 + * @param string $title
510 + * @param string $description
385 511 * @return void
386 512 */
387 - private static function new_form_overlay_html() {
388 - FrmFormsController::before_list_templates();
389 -
390 - $plugin_path = FrmAppHelper::plugin_path();
391 - $path = $plugin_path . '/classes/views/frm-forms/';
392 - $expired = FrmFormsController::expired();
393 - $expiring = FrmAddonsController::is_license_expiring();
394 - $user = wp_get_current_user(); // $user used in leave-email.php to determine a default value for field
395 - $view_path = $path . 'new-form-overlay/';
396 - $modal_class = '';
397 - $upgrade_link = FrmAppHelper::admin_upgrade_link(
398 - array(
399 - 'medium' => 'new-template',
400 - 'content' => 'upgrade',
401 - )
513 + public static function api_email_form( $form_key, $title = '', $description = '' ) {
514 + $user = wp_get_current_user();
515 + $args = array(
516 + 'api_url' => 'https://sandbox.formidableforms.com/api/wp-json/frm/v2/forms/' . $form_key . '?return=html&exclude_script=jquery&exclude_style=formidable-css',
517 + 'title' => $title,
518 + 'description' => $description,
402 519 );
403 - $renew_link = FrmAppHelper::admin_upgrade_link(
404 - array(
405 - 'medium' => 'new-template',
406 - 'content' => 'renew',
407 - )
408 - );
409 - $blocks_to_render = array();
410 -
411 - if ( ! FrmAppHelper::pro_is_installed() ) {
412 - // avoid rendering the email and code blocks for users who have upgraded or have a free license already
413 - $api = new FrmFormTemplateApi();
414 - if ( ! $api->has_free_access() ) {
415 - array_push( $blocks_to_render, 'email', 'code' );
416 - }
417 - }
418 -
419 - // avoid rendering the upgrade block for users with elite
420 - if ( 'elite' !== FrmAddonsController::license_type() ) {
421 - $blocks_to_render[] = 'upgrade';
422 - }
423 -
424 - // avoid rendering the renew block for users who are not currently expired
425 - if ( $expired ) {
426 - $blocks_to_render[] = 'renew';
427 - $modal_class = 'frm-expired';
428 - } elseif ( $expiring ) {
429 - $modal_class = 'frm-expiring';
430 - }
431 -
432 - include $path . 'new-form-overlay.php';
520 + require FrmAppHelper::plugin_path() . '/classes/views/form-templates/modals/leave-email-modal.php';
433 521 }
434 522
435 523 /**
436 524 * @return void
@@ -478,9 +566,9 @@
478 566 /**
479 567 * Check if the database is outdated
480 568 *
481 569 * @since 2.0.1
482 - * @return boolean
570 + * @return bool
483 571 */
484 572 public static function needs_update() {
485 573 $needs_upgrade = self::compare_for_update(
486 574 array(
@@ -527,8 +615,12 @@
527 615 *
528 616 * @return void
529 617 */
530 618 public static function admin_init() {
619 + if ( FrmAppHelper::get_param( 'delete_all' ) && FrmAppHelper::is_admin_page( 'formidable' ) && 'trash' === FrmAppHelper::get_param( 'form_type' ) ) {
620 + FrmFormsController::delete_all();
621 + }
622 +
531 623 if ( FrmAppHelper::is_admin_page( 'formidable' ) && 'duplicate' === FrmAppHelper::get_param( 'frm_action' ) ) {
532 624 FrmFormsController::duplicate();
533 625 }
534 626
@@ -536,10 +628,36 @@
536 628 // Hook in earlier than FrmStylesController::route so we can redirect before the headers have been sent.
537 629 FrmStylesController::save_style();
538 630 }
539 631
540 - new FrmPersonalData(); // register personal data hooks
632 + if ( 'formidable-pro-upgrade' === FrmAppHelper::get_param( 'page' ) && ! FrmAppHelper::pro_is_installed() && current_user_can( 'frm_view_forms' ) ) {
633 + wp_redirect(
634 + FrmAppHelper::admin_upgrade_link(
635 + array(
636 + 'medium' => 'upgrade',
637 + 'content' => 'submenu-upgrade',
638 + )
639 + )
640 + );
641 + die();
642 + }
541 643
644 + if ( 'formidable-black-friday' === FrmAppHelper::get_param( 'page' ) && current_user_can( 'frm_change_settings' ) ) {
645 + wp_redirect(
646 + FrmAppHelper::admin_upgrade_link(
647 + array(
648 + 'medium' => 'black-friday-submenu',
649 + 'content' => self::is_cyber_monday() ? 'cyber-monday-submenu' : 'black-friday-submenu',
650 + ),
651 + 'black-friday'
652 + )
653 + );
654 + die();
655 + }
656 +
657 + // Register personal data hooks.
658 + new FrmPersonalData();
659 +
542 660 if ( ! FrmAppHelper::doing_ajax() && self::needs_update() ) {
543 661 self::network_upgrade_site();
544 662 }
545 663
@@ -547,82 +665,51 @@
547 665 // don't continue during ajax calls
548 666 self::admin_js();
549 667 }
550 668
669 + self::trigger_page_load_hooks();
670 +
551 671 if ( FrmAppHelper::is_admin_page( 'formidable' ) ) {
552 - $action = FrmAppHelper::get_param( 'frm_action' );
672 + // Redirect to the "Form Templates" page if the 'frm_action' parameter matches specific actions.
673 + // This provides backward compatibility for old addons that use legacy modal templates.
674 + $action = FrmAppHelper::get_param( 'frm_action' );
675 + $trigger_name_modal = FrmAppHelper::get_param( 'triggerNewFormModal' );
676 + if ( $trigger_name_modal || in_array( $action, array( 'add_new', 'list_templates' ), true ) ) {
677 + $application_id = FrmAppHelper::simple_get( 'applicationId', 'absint' );
678 + $url_param = $application_id ? '&applicationId=' . $application_id : '';
553 679
554 - if ( in_array( $action, array( 'add_new', 'list_templates' ), true ) ) {
555 - wp_safe_redirect( admin_url( 'admin.php?page=formidable&triggerNewFormModal=1' ) );
680 + wp_safe_redirect( admin_url( 'admin.php?page=' . FrmFormTemplatesController::PAGE_SLUG . $url_param ) );
556 681 exit;
557 682 }
558 683
559 684 FrmInbox::maybe_disable_screen_options();
560 685 }
561 -
562 - self::maybe_add_ip_warning();
563 686 }
564 687
565 688 /**
566 - * Show a warning for the IP address setting if it hasn't been set.
689 + * Get the current page and check for a possible function to trigger.
690 + * If a class name matches the page name, and the class has a load_page() method, trigger it.
567 691 *
568 - * @since 6.1
692 + * @since 6.8
569 693 *
570 694 * @return void
571 695 */
572 - private static function maybe_add_ip_warning() {
573 - $settings = FrmAppHelper::get_settings();
574 - if ( false !== $settings->custom_header_ip ) {
575 - // The setting has been changed from the false default (to either 1 or 0), so stop showing the message.
696 + private static function trigger_page_load_hooks() {
697 + $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' );
698 + if ( strpos( $page, 'formidable-' ) !== 0 ) {
699 + // Only trigger hooks on Formidable pages.
576 700 return;
577 701 }
578 702
579 - if ( ! self::is_behind_proxy() ) {
580 - // This message is only applicable when using a reverse proxy.
581 - return;
703 + $page = str_replace( array( 'formidable-', '-' ), array( '', ' ' ), $page );
704 + $page = str_replace( ' ', '', ucwords( $page ) );
705 + $class = 'Frm' . $page . 'Controller';
706 + if ( class_exists( $class ) && method_exists( $class, 'load_page' ) ) {
707 + call_user_func( array( $class, 'load_page' ) );
582 708 }
583 -
584 - if ( FrmAppHelper::get_post_param( 'frm_action', '', 'sanitize_text_field' ) ) {
585 - // Avoid the message on a POST action. We don't want to show the message if we're saving global settings.
586 - return;
587 - }
588 -
589 - $global_settings_link = admin_url( 'admin.php?page=formidable-settings' ) . '#frm_custom_header_ip';
590 - $message = sprintf(
591 - // Translators: 1: Global Settings Link
592 - __( 'IP addresses in form submissions may no longer be accurate! If you are experiencing issues, we recommend going to %1$s and enabling the "Use custom headers when retrieving IPs with form submissions." setting.', 'formidable' ),
593 - '<a href="' . esc_url( $global_settings_link ) . '">Global Settings</a>'
594 - );
595 - $option_name = 'frm_dismiss_ip_address_notice';
596 - FrmAppHelper::add_dismissable_warning_message( $message, $option_name );
597 709 }
598 710
599 711 /**
600 - * Check if any reverse proxy headers are set.
601 - *
602 - * @since 6.1
603 - *
604 - * @return bool
605 - */
606 - private static function is_behind_proxy() {
607 - $custom_headers = FrmAppHelper::get_custom_header_keys_for_ip();
608 - foreach ( $custom_headers as $header ) {
609 - if ( 'REMOTE_ADDR' === $header ) {
610 - // We want to check every key but REMOTE_ADDR. REMOTE_ATTR is not unique to reverse proxy servers.
611 - continue;
612 - }
613 -
614 - $ip = trim( FrmAppHelper::get_server_value( $header ) );
615 - // Return true for anything that isn't empty but ignoring values like ::1.
616 - if ( $ip && 0 !== strpos( $ip, '::' ) ) {
617 - return true;
618 - }
619 - }
620 -
621 - return false;
622 - }
623 -
624 - /**
625 712 * @return void
626 713 */
627 714 public static function admin_js() {
628 715 $plugin_url = FrmAppHelper::plugin_url();
@@ -629,8 +716,17 @@
629 716 $version = FrmAppHelper::plugin_version();
630 717
631 718 FrmAppHelper::load_admin_wide_js();
632 719
720 + // Register component assets early to ensure they can be enqueued later in controllers.
721 + wp_register_style( 'formidable-animations', $plugin_url . '/css/admin/animations.css', array(), $version );
722 +
723 + if ( class_exists( 'FrmOverlayController' ) ) {
724 + // This should always exist.
725 + // But it may not have loaded properly when updating the plugin.
726 + FrmOverlayController::register_assets();
727 + }
728 +
633 729 wp_register_style( 'formidable_admin_global', $plugin_url . '/css/admin/frm_admin_global.css', array(), $version );
634 730 wp_enqueue_style( 'formidable_admin_global' );
635 731
636 732 wp_register_style( 'formidable-admin', $plugin_url . '/css/frm_admin.css', array(), $version );
@@ -641,26 +737,12 @@
641 737 self::register_popper1();
642 738 wp_register_script( 'bootstrap_tooltip', $plugin_url . '/js/bootstrap.min.js', array( 'jquery', 'popper' ), '4.6.1', true );
643 739 wp_register_script( 'formidable_settings', $plugin_url . '/js/admin/settings.js', array(), $version, true );
644 740
645 - $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' );
646 -
647 - // Enqueue Floating Links.
648 - $is_valid_page =
649 - FrmAppHelper::is_formidable_admin() &&
650 - ! FrmAppHelper::is_style_editor_page() &&
651 - ! FrmAppHelper::is_admin_page( 'formidable-views-editor' ) &&
652 - ! FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
653 - if ( $is_valid_page && FrmAppHelper::is_formidable_branding() ) {
741 + if ( self::should_show_floating_links() ) {
654 742 self::enqueue_floating_links( $plugin_url, $version );
655 743 }
656 - unset( $is_valid_page );
657 744
658 - if ( 'formidable-applications' === $page ) {
659 - FrmApplicationsController::load_assets();
660 - return;
661 - }
662 -
663 745 $dependencies = array(
664 746 'formidable_admin_global',
665 747 'jquery',
666 748 'jquery-ui-core',
@@ -668,9 +750,10 @@
668 750 'jquery-ui-sortable',
669 751 'bootstrap_tooltip',
670 752 'bootstrap-multiselect',
671 753 'wp-i18n',
672 - 'wp-hooks', // Required in WP versions older than 5.7
754 + // Required in WP versions older than 5.7
755 + 'wp-hooks',
673 756 'formidable_dom',
674 757 'formidable_embed',
675 758 );
676 759
@@ -687,8 +770,20 @@
687 770 }
688 771
689 772 wp_register_script( 'bootstrap-multiselect', $plugin_url . '/js/bootstrap-multiselect.js', array( 'jquery', 'bootstrap_tooltip', 'popper' ), '1.1.1', true );
690 773
774 + if ( ! class_exists( 'FrmTransHooksController', false ) ) {
775 + /**
776 + * Gateway fields are included for add-on compatibility but we do not want it to be visible.
777 + * They do however need to be visible when the payments submodule is active.
778 + */
779 + wp_add_inline_style(
780 + 'formidable-admin',
781 + '#frm_builder_page li[data-ftype="gateway"] { display: none; }'
782 + );
783 + }
784 +
785 + $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' );
691 786 $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' );
692 787
693 788 global $pagenow;
694 789 if ( strpos( $page, 'formidable' ) === 0 || ( $pagenow === 'edit.php' && $post_type === 'frm_display' ) ) {
@@ -696,15 +791,18 @@
696 791 wp_enqueue_script( 'admin-widgets' );
697 792 wp_enqueue_style( 'widgets' );
698 793 self::maybe_deregister_popper2();
699 794 wp_enqueue_script( 'formidable_admin' );
795 + wp_set_script_translations( 'formidable_admin', 'formidable' );
700 796 wp_enqueue_script( 'formidable_embed' );
797 + wp_set_script_translations( 'formidable_embed', 'formidable' );
701 798 FrmAppHelper::localize_script( 'admin' );
702 799
800 + wp_enqueue_style( 'formidable-animations' );
703 801 wp_enqueue_style( 'formidable-admin' );
704 802 if ( 'formidable-styles' !== $page && 'formidable-styles2' !== $page ) {
705 803 wp_enqueue_style( 'formidable-grids' );
706 - wp_enqueue_style( 'formidable-dropzone' );
804 + self::maybe_enqueue_dropzone_css( $page );
707 805 } else {
708 806 wp_enqueue_style( 'formidable-grids' );
709 807 }
710 808
@@ -710,8 +808,12 @@
710 808
711 809 if ( 'formidable-entries' === $page ) {
712 810 // Load front end js for entries.
713 811 wp_enqueue_script( 'formidable' );
812 +
813 + // Registers and enqueues the entries page scripts.
814 + wp_register_script( 'formidable_entries', $plugin_url . '/js/admin/entries.js', array( 'formidable_admin', 'wp-dom-ready' ), $version, true );
815 + wp_enqueue_script( 'formidable_entries' );
714 816 }
715 817
716 818 do_action( 'frm_enqueue_builder_scripts' );
717 819 self::include_upgrade_overlay();
@@ -731,13 +833,55 @@
731 833
732 834 if ( $post_type === 'frm_display' ) {
733 835 self::enqueue_legacy_views_assets();
734 836 }
837 + }//end if
838 +
839 + if ( 'formidable-addons' === $page ) {
840 + wp_register_script( 'formidable_addons', $plugin_url . '/js/admin/addons.js', array( 'formidable_admin', 'wp-dom-ready' ), $version, true );
841 + wp_enqueue_script( 'formidable_addons' );
735 842 }
843 + }
736 844
845 + /**
846 + * Avoid loading dropzone CSS on the form list page. It isn't required there.
847 + *
848 + * @since 6.11
849 + *
850 + * @param string $page
851 + * @return void
852 + */
853 + private static function maybe_enqueue_dropzone_css( $page ) {
854 + if ( ! FrmAppHelper::pro_is_installed() ) {
855 + return;
856 + }
857 +
858 + $should_avoid_loading_dropzone = 'formidable' === $page && ! FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
859 + if ( ! $should_avoid_loading_dropzone ) {
860 + wp_enqueue_style( 'formidable-dropzone' );
861 + }
737 862 }
738 863
739 864 /**
865 + * The floating links are not shown on every page.
866 + * They are also not shown if white labeling is being used.
867 + *
868 + * @since 6.8.4
869 + *
870 + * @return bool
871 + */
872 + private static function should_show_floating_links() {
873 + if ( ! FrmAppHelper::is_formidable_branding() ) {
874 + return false;
875 + }
876 +
877 + return FrmAppHelper::is_formidable_admin() &&
878 + ! FrmAppHelper::is_style_editor_page() &&
879 + ! FrmAppHelper::is_admin_page( 'formidable-views-editor' ) &&
880 + ! FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
881 + }
882 +
883 + /**
740 884 * @since 6.3.2
741 885 *
742 886 * @return void
743 887 */
@@ -743,8 +887,9 @@
743 887 */
744 888 public static function admin_enqueue_scripts() {
745 889 self::load_wp_admin_style();
746 890 self::maybe_force_formidable_block_on_gutenberg_page();
891 + FrmUsageController::load_scripts();
747 892 }
748 893
749 894 /**
750 895 * Enqueue required assets for the Legacy Views editor (Views v4.x).
@@ -813,12 +958,45 @@
813 958 *
814 959 * @return void
815 960 */
816 961 private static function register_popper1() {
962 + if ( ! self::should_register_popper() ) {
963 + return;
964 + }
817 965 wp_register_script( 'popper', FrmAppHelper::plugin_url() . '/js/popper.min.js', array( 'jquery' ), '1.16.0', true );
818 966 }
819 967
820 968 /**
969 + * Only register popper on Formidable pages.
970 + * This helps to avoid popper conflicts on other plugin pages, including the WP Bakery page editor.
971 + *
972 + * @since 6.11.1
973 + *
974 + * @return bool
975 + */
976 + private static function should_register_popper() {
977 + global $pagenow;
978 +
979 + $post_id = FrmAppHelper::simple_get( 'post', 'absint' );
980 + if ( 'post.php' === $pagenow && $post_id && 'frm_display' === get_post_type( $post_id ) ) {
981 + return true;
982 + }
983 +
984 + $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' );
985 + $is_views_post_type = 'frm_display' === $post_type;
986 + if ( in_array( $pagenow, array( 'post-new.php', 'edit.php' ), true ) && $is_views_post_type ) {
987 + return true;
988 + }
989 +
990 + $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' );
991 + if ( strpos( $page, 'formidable' ) === 0 ) {
992 + return true;
993 + }
994 +
995 + return in_array( $pagenow, array( 'term.php', 'edit-tags.php' ), true ) && FrmAppHelper::simple_get( 'taxonomy' ) === 'frm_application';
996 + }
997 +
998 + /**
821 999 * Automatically insert a Formidable block when loading Gutenberg when $_GET['frmForm' is set.
822 1000 *
823 1001 * @since 5.2
824 1002 *
@@ -877,10 +1055,10 @@
877 1055 * @return void
878 1056 */
879 1057 public static function create_rest_routes() {
880 1058 $args = array(
881 - 'methods' => 'GET',
882 - 'callback' => 'FrmAppController::api_install',
1059 + 'methods' => 'GET',
1060 + 'callback' => 'FrmAppController::api_install',
883 1061 'permission_callback' => __CLASS__ . '::can_update_db',
884 1062 );
885 1063
886 1064 register_rest_route( 'frm-admin/v1', '/install', $args );
@@ -885,10 +1063,10 @@
885 1063
886 1064 register_rest_route( 'frm-admin/v1', '/install', $args );
887 1065
888 1066 $args = array(
889 - 'methods' => 'GET',
890 - 'callback' => 'FrmAddonsController::install_addon_api',
1067 + 'methods' => 'GET',
1068 + 'callback' => 'FrmAddonsController::install_addon_api',
891 1069 'permission_callback' => 'FrmAddonsController::can_install_addon_api',
892 1070 );
893 1071
894 1072 register_rest_route( 'frm-admin/v1', '/install-addon', $args );
@@ -1001,9 +1179,9 @@
1001 1179
1002 1180 $frmdb = new FrmMigrate();
1003 1181 $frmdb->uninstall();
1004 1182
1005 - //disable the plugin and redirect after uninstall so the tables don't get added right back
1183 + // Disable the plugin and redirect after uninstall so the tables don't get added right back.
1006 1184 $plugins = array( FrmAppHelper::plugin_folder() . '/formidable.php', 'formidable-pro/formidable-pro.php' );
1007 1185 deactivate_plugins( $plugins, false, false );
1008 1186 echo esc_url_raw( admin_url( 'plugins.php?deactivate=true' ) );
1009 1187
@@ -1074,63 +1252,69 @@
1074 1252 *
1075 1253 * @return void
1076 1254 */
1077 1255 public static function add_admin_footer_links() {
1078 - $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' );
1079 -
1080 - // Check admin privileges, screen mode, and branding
1081 - $is_not_admin = ! FrmAppHelper::is_formidable_admin() && $post_type !== 'frm_logs';
1082 - $is_full_screen = FrmAppHelper::is_full_screen();
1083 - $is_not_formidable_branding = ! FrmAppHelper::is_formidable_branding();
1084 -
1085 - // Exit if any of the above conditions are met
1086 - if ( $is_not_admin || $is_full_screen || $is_not_formidable_branding ) {
1087 - return;
1256 + if ( self::should_show_footer_links() ) {
1257 + include FrmAppHelper::plugin_path() . '/classes/views/shared/admin-footer-links.php';
1088 1258 }
1089 -
1090 - include FrmAppHelper::plugin_path() . '/classes/views/shared/admin-footer-links.php';
1091 1259 }
1092 1260
1093 1261 /**
1094 - * @deprecated 3.0.04
1262 + * Check if the footer links should be shown.
1095 1263 *
1096 - * @codeCoverageIgnore
1264 + * @since 6.7
1097 1265 *
1098 - * @return void
1266 + * @return bool
1099 1267 */
1100 - public static function activation_install() {
1101 - FrmDeprecated::activation_install();
1102 - }
1268 + private static function should_show_footer_links() {
1269 + $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' );
1270 + $is_formidable_page = FrmAppHelper::is_formidable_admin() || 'frm_logs' === $post_type;
1271 + $show_footer_links = $is_formidable_page;
1272 + if ( FrmAppHelper::is_full_screen() || ! FrmAppHelper::is_formidable_branding() ) {
1273 + $show_footer_links = false;
1274 + }
1103 1275
1104 - /**
1105 - * @deprecated 3.0
1106 - * @codeCoverageIgnore
1107 - */
1108 - public static function page_route( $content ) {
1109 - return FrmDeprecated::page_route( $content );
1276 + /**
1277 + * Filter whether to show the Formidable footer links.
1278 + *
1279 + * @since 6.7
1280 + *
1281 + * @param bool $show_footer_links
1282 + * @return bool
1283 + */
1284 + return apply_filters( 'frm_show_footer_links', $show_footer_links );
1110 1285 }
1111 1286
1112 1287 /**
1113 - * Include icons on page for Embed Form modal.
1288 + * Show an error modal and terminate the script execution.
1114 1289 *
1115 - * @since 5.2
1290 + * @since 6.7
1116 1291 *
1292 + * @param array $error_args Arguments that control the behavior of the error modal.
1293 + *
1117 1294 * @return void
1118 1295 */
1119 - public static function include_embed_form_icons() {
1120 - _deprecated_function( __METHOD__, '5.3' );
1121 - }
1296 + public static function show_error_modal( $error_args ) {
1297 + $defaults = array(
1298 + 'title' => '',
1299 + 'body' => '',
1300 + 'cancel_url' => '',
1301 + 'cancel_classes' => '',
1302 + 'continue_url' => '',
1303 + 'continue_classes' => '',
1304 + 'icon' => 'frm_lock_simple',
1305 + );
1122 1306
1123 - /**
1124 - * @deprecated 1.07.05 This is still referenced in the API add on as of v1.13.
1125 - * @codeCoverageIgnore
1126 - *
1127 - * @param array $atts
1128 - * @return string
1129 - */
1130 - public static function get_form_shortcode( $atts ) {
1131 - _deprecated_function( __FUNCTION__, '1.07.05', 'FrmFormsController::get_form_shortcode' );
1132 - return FrmFormsController::get_form_shortcode( $atts );
1307 + $error_args = wp_parse_args( $error_args, $defaults );
1308 + if ( ! isset( $error_args['cancel_text'] ) && ! empty( $error_args['cancel_url'] ) ) {
1309 + $error_args['cancel_text'] = __( 'Cancel', 'formidable' );
1310 + }
1311 +
1312 + if ( ! isset( $error_args['continue_text'] ) && ! empty( $error_args['continue_url'] ) ) {
1313 + $error_args['continue_text'] = __( 'Continue', 'formidable' );
1314 + }
1315 +
1316 + include FrmAppHelper::plugin_path() . '/classes/views/frm-forms/error-modal.php';
1133 1317 }
1134 1318
1135 1319 /**
1136 1320 * Handles Floating Links' scripts and styles enqueueing.
@@ -1150,15 +1334,96 @@
1150 1334 // Enqueue the Floating Links styles.
1151 1335 wp_enqueue_style( 's11-floating-links', $plugin_url . '/css/packages/s11-floating-links.css', array(), $version );
1152 1336
1153 1337 // Enqueue the Floating Links script.
1154 - wp_enqueue_script( 's11-floating-links', $plugin_url . '/js/packages/floating-links/s11-floating-links.js', array(), $version, true );
1338 + wp_enqueue_script( 's11-floating-links', $plugin_url . '/js/packages/floating-links/s11-floating-links.js', array( 'formidable_admin' ), $version, true );
1155 1339
1156 1340 // Enqueue the config script.
1157 1341 wp_enqueue_script( 's11-floating-links-config', $plugin_url . '/js/packages/floating-links/config.js', array( 'wp-i18n' ), $version, true );
1158 - wp_set_script_translations( 's11-floating-links-config', 's11-' );
1342 +
1343 + if ( function_exists( 'wp_set_script_translations' ) ) {
1344 + wp_set_script_translations( 's11-floating-links-config', 's11-' );
1345 + }
1346 +
1159 1347 $floating_links_data = array(
1160 1348 'proIsInstalled' => FrmAppHelper::pro_is_installed(),
1161 1349 );
1162 1350 wp_localize_script( 's11-floating-links-config', 's11FloatingLinksData', $floating_links_data );
1351 +
1352 + /**
1353 + * Prompt Pro to load additional floating links scripts.
1354 + * This is used to include images in the Inbox SlideIn when Pro is active.
1355 + *
1356 + * @since 6.8.4
1357 + */
1358 + do_action( 'frm_enqueue_floating_links' );
1359 + }
1360 +
1361 + /**
1362 + * Check if we are in our admin pages.
1363 + *
1364 + * @return bool
1365 + */
1366 + private static function in_our_pages() {
1367 + global $current_screen;
1368 + return FrmAppHelper::is_formidable_admin() || ( ! empty( $current_screen->post_type ) && 'frm_logs' === $current_screen->post_type );
1369 + }
1370 +
1371 + /**
1372 + * Hide all third-parties admin notices only in our admin pages.
1373 + *
1374 + * @return void
1375 + */
1376 + public static function filter_admin_notices() {
1377 + if ( ! self::in_our_pages() ) {
1378 + return;
1379 + }
1380 +
1381 + $actions = array(
1382 + 'admin_notices',
1383 + 'network_admin_notices',
1384 + 'user_admin_notices',
1385 + 'all_admin_notices',
1386 + );
1387 +
1388 + global $wp_filter;
1389 +
1390 + foreach ( $actions as $action ) {
1391 + if ( empty( $wp_filter[ $action ]->callbacks ) ) {
1392 + continue;
1393 + }
1394 + foreach ( $wp_filter[ $action ]->callbacks as $priority => $callbacks ) {
1395 + foreach ( $callbacks as $callback_name => $callback ) {
1396 + if ( self::is_our_callback_string( $callback_name ) || self::is_our_callback_array( $callback ) ) {
1397 + continue;
1398 + }
1399 + unset( $wp_filter[ $action ]->callbacks[ $priority ][ $callback_name ] );
1400 + }
1401 + }
1402 + }
1403 + }
1404 +
1405 + /**
1406 + * Validate that the callback name is ours not from third-party.
1407 + *
1408 + * @param string $callback_name WordPress callback name.
1409 + *
1410 + * @return bool
1411 + */
1412 + private static function is_our_callback_string( $callback_name ) {
1413 + return 0 === stripos( $callback_name, 'frm' );
1414 + }
1415 +
1416 + /**
1417 + * Validate that the callback array is ours not from third-party.
1418 + *
1419 + * @param array $callback WordPress callback array.
1420 + *
1421 + * @return bool
1422 + */
1423 + private static function is_our_callback_array( $callback ) {
1424 + return ! empty( $callback['function'] ) &&
1425 + is_array( $callback['function'] ) &&
1426 + ! empty( $callback['function'][0] ) &&
1427 + self::is_our_callback_string( is_object( $callback['function'][0] ) ? get_class( $callback['function'][0] ) : $callback['function'][0] );
1163 1428 }
1164 1429 }