| @@ -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 | 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 | } |
| @@ -306,9 +430,9 @@ | ||
| 306 | 430 | * @return void |
| 307 | 431 | */ |
| 308 | 432 | public static function pro_get_started_headline() { |
| 309 | 433 | self::review_request(); |
| 310 | - FrmAppHelper::min_pro_version_notice( '4.0' ); | |
| 434 | + FrmAppHelper::min_pro_version_notice( '6.0' ); | |
| 311 | 435 | } |
| 312 | 436 | |
| 313 | 437 | /** |
| 314 | 438 | * Add admin notices as needed for reviews |
| @@ -375,66 +499,11 @@ | ||
| 375 | 499 | $shared_path = $plugin_path . '/classes/views/shared/'; |
| 376 | 500 | |
| 377 | 501 | include $shared_path . 'upgrade_overlay.php'; |
| 378 | 502 | include $shared_path . 'confirm-overlay.php'; |
| 379 | - | |
| 380 | - if ( FrmAppHelper::is_admin_page( 'formidable-welcome' ) || FrmAppHelper::on_form_listing_page() ) { | |
| 381 | - self::new_form_overlay_html(); | |
| 382 | - } | |
| 383 | 503 | } |
| 384 | 504 | |
| 385 | 505 | /** |
| 386 | - * @return void | |
| 387 | - */ | |
| 388 | - private static function new_form_overlay_html() { | |
| 389 | - FrmFormsController::before_list_templates(); | |
| 390 | - | |
| 391 | - $plugin_path = FrmAppHelper::plugin_path(); | |
| 392 | - $path = $plugin_path . '/classes/views/frm-forms/'; | |
| 393 | - $expired = FrmFormsController::expired(); | |
| 394 | - $expiring = FrmAddonsController::is_license_expiring(); | |
| 395 | - $user = wp_get_current_user(); // $user used in leave-email.php to determine a default value for field | |
| 396 | - $view_path = $path . 'new-form-overlay/'; | |
| 397 | - $modal_class = ''; | |
| 398 | - $upgrade_link = FrmAppHelper::admin_upgrade_link( | |
| 399 | - array( | |
| 400 | - 'medium' => 'new-template', | |
| 401 | - 'content' => 'upgrade', | |
| 402 | - ) | |
| 403 | - ); | |
| 404 | - $renew_link = FrmAppHelper::admin_upgrade_link( | |
| 405 | - array( | |
| 406 | - 'medium' => 'new-template', | |
| 407 | - 'content' => 'renew', | |
| 408 | - ) | |
| 409 | - ); | |
| 410 | - $blocks_to_render = array(); | |
| 411 | - | |
| 412 | - if ( ! FrmAppHelper::pro_is_installed() ) { | |
| 413 | - // avoid rendering the email and code blocks for users who have upgraded or have a free license already | |
| 414 | - $api = new FrmFormTemplateApi(); | |
| 415 | - if ( ! $api->has_free_access() ) { | |
| 416 | - array_push( $blocks_to_render, 'email', 'code' ); | |
| 417 | - } | |
| 418 | - } | |
| 419 | - | |
| 420 | - // avoid rendering the upgrade block for users with elite | |
| 421 | - if ( 'elite' !== FrmAddonsController::license_type() ) { | |
| 422 | - $blocks_to_render[] = 'upgrade'; | |
| 423 | - } | |
| 424 | - | |
| 425 | - // avoid rendering the renew block for users who are not currently expired | |
| 426 | - if ( $expired ) { | |
| 427 | - $blocks_to_render[] = 'renew'; | |
| 428 | - $modal_class = 'frm-expired'; | |
| 429 | - } elseif ( $expiring ) { | |
| 430 | - $modal_class = 'frm-expiring'; | |
| 431 | - } | |
| 432 | - | |
| 433 | - include $path . 'new-form-overlay.php'; | |
| 434 | - } | |
| 435 | - | |
| 436 | - /** | |
| 437 | 506 | * Create a basic form with an email field. |
| 438 | 507 | * |
| 439 | 508 | * @param string $form_key |
| 440 | 509 | * @param string $title |
| @@ -440,13 +509,16 @@ | ||
| 440 | 509 | * @param string $title |
| 441 | 510 | * @param string $description |
| 442 | 511 | * @return void |
| 443 | 512 | */ |
| 444 | - public static function api_email_form( $form_key, $title, $description ) { | |
| 445 | - $url = 'https://sandbox.formidableforms.com/api/wp-json/frm/v2/forms/' . $form_key . '?return=html&exclude_script=jquery&exclude_style=formidable-css'; | |
| 446 | - $view_path = FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new-form-overlay/'; | |
| 447 | - $user = wp_get_current_user(); | |
| 448 | - require $view_path . 'leave-email.php'; | |
| 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, | |
| 519 | + ); | |
| 520 | + require FrmAppHelper::plugin_path() . '/classes/views/form-templates/modals/leave-email-modal.php'; | |
| 449 | 521 | } |
| 450 | 522 | |
| 451 | 523 | /** |
| 452 | 524 | * @return void |
| @@ -494,9 +566,9 @@ | ||
| 494 | 566 | /** |
| 495 | 567 | * Check if the database is outdated |
| 496 | 568 | * |
| 497 | 569 | * @since 2.0.1 |
| 498 | - * @return boolean | |
| 570 | + * @return bool | |
| 499 | 571 | */ |
| 500 | 572 | public static function needs_update() { |
| 501 | 573 | $needs_upgrade = self::compare_for_update( |
| 502 | 574 | array( |
| @@ -543,8 +615,12 @@ | ||
| 543 | 615 | * |
| 544 | 616 | * @return void |
| 545 | 617 | */ |
| 546 | 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 | + | |
| 547 | 623 | if ( FrmAppHelper::is_admin_page( 'formidable' ) && 'duplicate' === FrmAppHelper::get_param( 'frm_action' ) ) { |
| 548 | 624 | FrmFormsController::duplicate(); |
| 549 | 625 | } |
| 550 | 626 | |
| @@ -552,10 +628,36 @@ | ||
| 552 | 628 | // Hook in earlier than FrmStylesController::route so we can redirect before the headers have been sent. |
| 553 | 629 | FrmStylesController::save_style(); |
| 554 | 630 | } |
| 555 | 631 | |
| 556 | - 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 | + } | |
| 557 | 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 | + | |
| 558 | 660 | if ( ! FrmAppHelper::doing_ajax() && self::needs_update() ) { |
| 559 | 661 | self::network_upgrade_site(); |
| 560 | 662 | } |
| 561 | 663 | |
| @@ -563,82 +665,51 @@ | ||
| 563 | 665 | // don't continue during ajax calls |
| 564 | 666 | self::admin_js(); |
| 565 | 667 | } |
| 566 | 668 | |
| 669 | + self::trigger_page_load_hooks(); | |
| 670 | + | |
| 567 | 671 | if ( FrmAppHelper::is_admin_page( 'formidable' ) ) { |
| 568 | - $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 : ''; | |
| 569 | 679 | |
| 570 | - if ( in_array( $action, array( 'add_new', 'list_templates' ), true ) ) { | |
| 571 | - 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 ) ); | |
| 572 | 681 | exit; |
| 573 | 682 | } |
| 574 | 683 | |
| 575 | 684 | FrmInbox::maybe_disable_screen_options(); |
| 576 | 685 | } |
| 577 | - | |
| 578 | - self::maybe_add_ip_warning(); | |
| 579 | 686 | } |
| 580 | 687 | |
| 581 | 688 | /** |
| 582 | - * 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. | |
| 583 | 691 | * |
| 584 | - * @since 6.1 | |
| 692 | + * @since 6.8 | |
| 585 | 693 | * |
| 586 | 694 | * @return void |
| 587 | 695 | */ |
| 588 | - private static function maybe_add_ip_warning() { | |
| 589 | - $settings = FrmAppHelper::get_settings(); | |
| 590 | - if ( false !== $settings->custom_header_ip ) { | |
| 591 | - // 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. | |
| 592 | 700 | return; |
| 593 | 701 | } |
| 594 | 702 | |
| 595 | - if ( ! self::is_behind_proxy() ) { | |
| 596 | - // This message is only applicable when using a reverse proxy. | |
| 597 | - 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' ) ); | |
| 598 | 708 | } |
| 599 | - | |
| 600 | - if ( FrmAppHelper::get_post_param( 'frm_action', '', 'sanitize_text_field' ) ) { | |
| 601 | - // Avoid the message on a POST action. We don't want to show the message if we're saving global settings. | |
| 602 | - return; | |
| 603 | - } | |
| 604 | - | |
| 605 | - $global_settings_link = admin_url( 'admin.php?page=formidable-settings' ) . '#frm_custom_header_ip'; | |
| 606 | - $message = sprintf( | |
| 607 | - // Translators: 1: Global Settings Link | |
| 608 | - __( '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' ), | |
| 609 | - '<a href="' . esc_url( $global_settings_link ) . '">Global Settings</a>' | |
| 610 | - ); | |
| 611 | - $option_name = 'frm_dismiss_ip_address_notice'; | |
| 612 | - FrmAppHelper::add_dismissable_warning_message( $message, $option_name ); | |
| 613 | 709 | } |
| 614 | 710 | |
| 615 | 711 | /** |
| 616 | - * Check if any reverse proxy headers are set. | |
| 617 | - * | |
| 618 | - * @since 6.1 | |
| 619 | - * | |
| 620 | - * @return bool | |
| 621 | - */ | |
| 622 | - private static function is_behind_proxy() { | |
| 623 | - $custom_headers = FrmAppHelper::get_custom_header_keys_for_ip(); | |
| 624 | - foreach ( $custom_headers as $header ) { | |
| 625 | - if ( 'REMOTE_ADDR' === $header ) { | |
| 626 | - // We want to check every key but REMOTE_ADDR. REMOTE_ATTR is not unique to reverse proxy servers. | |
| 627 | - continue; | |
| 628 | - } | |
| 629 | - | |
| 630 | - $ip = trim( FrmAppHelper::get_server_value( $header ) ); | |
| 631 | - // Return true for anything that isn't empty but ignoring values like ::1. | |
| 632 | - if ( $ip && 0 !== strpos( $ip, '::' ) ) { | |
| 633 | - return true; | |
| 634 | - } | |
| 635 | - } | |
| 636 | - | |
| 637 | - return false; | |
| 638 | - } | |
| 639 | - | |
| 640 | - /** | |
| 641 | 712 | * @return void |
| 642 | 713 | */ |
| 643 | 714 | public static function admin_js() { |
| 644 | 715 | $plugin_url = FrmAppHelper::plugin_url(); |
| @@ -645,8 +716,11 @@ | ||
| 645 | 716 | $version = FrmAppHelper::plugin_version(); |
| 646 | 717 | |
| 647 | 718 | FrmAppHelper::load_admin_wide_js(); |
| 648 | 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 | + | |
| 649 | 723 | if ( class_exists( 'FrmOverlayController' ) ) { |
| 650 | 724 | // This should always exist. |
| 651 | 725 | // But it may not have loaded properly when updating the plugin. |
| 652 | 726 | FrmOverlayController::register_assets(); |
| @@ -663,26 +737,12 @@ | ||
| 663 | 737 | self::register_popper1(); |
| 664 | 738 | wp_register_script( 'bootstrap_tooltip', $plugin_url . '/js/bootstrap.min.js', array( 'jquery', 'popper' ), '4.6.1', true ); |
| 665 | 739 | wp_register_script( 'formidable_settings', $plugin_url . '/js/admin/settings.js', array(), $version, true ); |
| 666 | 740 | |
| 667 | - $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); | |
| 668 | - | |
| 669 | - // Enqueue Floating Links. | |
| 670 | - $is_valid_page = | |
| 671 | - FrmAppHelper::is_formidable_admin() && | |
| 672 | - ! FrmAppHelper::is_style_editor_page() && | |
| 673 | - ! FrmAppHelper::is_admin_page( 'formidable-views-editor' ) && | |
| 674 | - ! FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ); | |
| 675 | - if ( $is_valid_page && FrmAppHelper::is_formidable_branding() ) { | |
| 741 | + if ( self::should_show_floating_links() ) { | |
| 676 | 742 | self::enqueue_floating_links( $plugin_url, $version ); |
| 677 | 743 | } |
| 678 | - unset( $is_valid_page ); | |
| 679 | 744 | |
| 680 | - if ( 'formidable-applications' === $page ) { | |
| 681 | - FrmApplicationsController::load_assets(); | |
| 682 | - return; | |
| 683 | - } | |
| 684 | - | |
| 685 | 745 | $dependencies = array( |
| 686 | 746 | 'formidable_admin_global', |
| 687 | 747 | 'jquery', |
| 688 | 748 | 'jquery-ui-core', |
| @@ -690,9 +750,10 @@ | ||
| 690 | 750 | 'jquery-ui-sortable', |
| 691 | 751 | 'bootstrap_tooltip', |
| 692 | 752 | 'bootstrap-multiselect', |
| 693 | 753 | 'wp-i18n', |
| 694 | - 'wp-hooks', // Required in WP versions older than 5.7 | |
| 754 | + // Required in WP versions older than 5.7 | |
| 755 | + 'wp-hooks', | |
| 695 | 756 | 'formidable_dom', |
| 696 | 757 | 'formidable_embed', |
| 697 | 758 | ); |
| 698 | 759 | |
| @@ -720,8 +781,9 @@ | ||
| 720 | 781 | '#frm_builder_page li[data-ftype="gateway"] { display: none; }' |
| 721 | 782 | ); |
| 722 | 783 | } |
| 723 | 784 | |
| 785 | + $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); | |
| 724 | 786 | $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' ); |
| 725 | 787 | |
| 726 | 788 | global $pagenow; |
| 727 | 789 | if ( strpos( $page, 'formidable' ) === 0 || ( $pagenow === 'edit.php' && $post_type === 'frm_display' ) ) { |
| @@ -729,15 +791,18 @@ | ||
| 729 | 791 | wp_enqueue_script( 'admin-widgets' ); |
| 730 | 792 | wp_enqueue_style( 'widgets' ); |
| 731 | 793 | self::maybe_deregister_popper2(); |
| 732 | 794 | wp_enqueue_script( 'formidable_admin' ); |
| 795 | + wp_set_script_translations( 'formidable_admin', 'formidable' ); | |
| 733 | 796 | wp_enqueue_script( 'formidable_embed' ); |
| 797 | + wp_set_script_translations( 'formidable_embed', 'formidable' ); | |
| 734 | 798 | FrmAppHelper::localize_script( 'admin' ); |
| 735 | 799 | |
| 800 | + wp_enqueue_style( 'formidable-animations' ); | |
| 736 | 801 | wp_enqueue_style( 'formidable-admin' ); |
| 737 | 802 | if ( 'formidable-styles' !== $page && 'formidable-styles2' !== $page ) { |
| 738 | 803 | wp_enqueue_style( 'formidable-grids' ); |
| 739 | - wp_enqueue_style( 'formidable-dropzone' ); | |
| 804 | + self::maybe_enqueue_dropzone_css( $page ); | |
| 740 | 805 | } else { |
| 741 | 806 | wp_enqueue_style( 'formidable-grids' ); |
| 742 | 807 | } |
| 743 | 808 | |
| @@ -743,8 +808,12 @@ | ||
| 743 | 808 | |
| 744 | 809 | if ( 'formidable-entries' === $page ) { |
| 745 | 810 | // Load front end js for entries. |
| 746 | 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' ); | |
| 747 | 816 | } |
| 748 | 817 | |
| 749 | 818 | do_action( 'frm_enqueue_builder_scripts' ); |
| 750 | 819 | self::include_upgrade_overlay(); |
| @@ -764,13 +833,55 @@ | ||
| 764 | 833 | |
| 765 | 834 | if ( $post_type === 'frm_display' ) { |
| 766 | 835 | self::enqueue_legacy_views_assets(); |
| 767 | 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' ); | |
| 768 | 842 | } |
| 843 | + } | |
| 769 | 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 | + } | |
| 770 | 862 | } |
| 771 | 863 | |
| 772 | 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 | + /** | |
| 773 | 884 | * @since 6.3.2 |
| 774 | 885 | * |
| 775 | 886 | * @return void |
| 776 | 887 | */ |
| @@ -846,12 +957,45 @@ | ||
| 846 | 957 | * |
| 847 | 958 | * @return void |
| 848 | 959 | */ |
| 849 | 960 | private static function register_popper1() { |
| 961 | + if ( ! self::should_register_popper() ) { | |
| 962 | + return; | |
| 963 | + } | |
| 850 | 964 | wp_register_script( 'popper', FrmAppHelper::plugin_url() . '/js/popper.min.js', array( 'jquery' ), '1.16.0', true ); |
| 851 | 965 | } |
| 852 | 966 | |
| 853 | 967 | /** |
| 968 | + * Only register popper on Formidable pages. | |
| 969 | + * This helps to avoid popper conflicts on other plugin pages, including the WP Bakery page editor. | |
| 970 | + * | |
| 971 | + * @since 6.11.1 | |
| 972 | + * | |
| 973 | + * @return bool | |
| 974 | + */ | |
| 975 | + private static function should_register_popper() { | |
| 976 | + global $pagenow; | |
| 977 | + | |
| 978 | + $post_id = FrmAppHelper::simple_get( 'post', 'absint' ); | |
| 979 | + if ( 'post.php' === $pagenow && $post_id && 'frm_display' === get_post_type( $post_id ) ) { | |
| 980 | + return true; | |
| 981 | + } | |
| 982 | + | |
| 983 | + $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' ); | |
| 984 | + $is_views_post_type = 'frm_display' === $post_type; | |
| 985 | + if ( in_array( $pagenow, array( 'post-new.php', 'edit.php' ), true ) && $is_views_post_type ) { | |
| 986 | + return true; | |
| 987 | + } | |
| 988 | + | |
| 989 | + $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); | |
| 990 | + if ( strpos( $page, 'formidable' ) === 0 ) { | |
| 991 | + return true; | |
| 992 | + } | |
| 993 | + | |
| 994 | + return in_array( $pagenow, array( 'term.php', 'edit-tags.php' ), true ) && FrmAppHelper::simple_get( 'taxonomy' ) === 'frm_application'; | |
| 995 | + } | |
| 996 | + | |
| 997 | + /** | |
| 854 | 998 | * Automatically insert a Formidable block when loading Gutenberg when $_GET['frmForm' is set. |
| 855 | 999 | * |
| 856 | 1000 | * @since 5.2 |
| 857 | 1001 | * |
| @@ -910,10 +1054,10 @@ | ||
| 910 | 1054 | * @return void |
| 911 | 1055 | */ |
| 912 | 1056 | public static function create_rest_routes() { |
| 913 | 1057 | $args = array( |
| 914 | - 'methods' => 'GET', | |
| 915 | - 'callback' => 'FrmAppController::api_install', | |
| 1058 | + 'methods' => 'GET', | |
| 1059 | + 'callback' => 'FrmAppController::api_install', | |
| 916 | 1060 | 'permission_callback' => __CLASS__ . '::can_update_db', |
| 917 | 1061 | ); |
| 918 | 1062 | |
| 919 | 1063 | register_rest_route( 'frm-admin/v1', '/install', $args ); |
| @@ -918,10 +1062,10 @@ | ||
| 918 | 1062 | |
| 919 | 1063 | register_rest_route( 'frm-admin/v1', '/install', $args ); |
| 920 | 1064 | |
| 921 | 1065 | $args = array( |
| 922 | - 'methods' => 'GET', | |
| 923 | - 'callback' => 'FrmAddonsController::install_addon_api', | |
| 1066 | + 'methods' => 'GET', | |
| 1067 | + 'callback' => 'FrmAddonsController::install_addon_api', | |
| 924 | 1068 | 'permission_callback' => 'FrmAddonsController::can_install_addon_api', |
| 925 | 1069 | ); |
| 926 | 1070 | |
| 927 | 1071 | register_rest_route( 'frm-admin/v1', '/install-addon', $args ); |
| @@ -1034,9 +1178,9 @@ | ||
| 1034 | 1178 | |
| 1035 | 1179 | $frmdb = new FrmMigrate(); |
| 1036 | 1180 | $frmdb->uninstall(); |
| 1037 | 1181 | |
| 1038 | - //disable the plugin and redirect after uninstall so the tables don't get added right back | |
| 1182 | + // Disable the plugin and redirect after uninstall so the tables don't get added right back. | |
| 1039 | 1183 | $plugins = array( FrmAppHelper::plugin_folder() . '/formidable.php', 'formidable-pro/formidable-pro.php' ); |
| 1040 | 1184 | deactivate_plugins( $plugins, false, false ); |
| 1041 | 1185 | echo esc_url_raw( admin_url( 'plugins.php?deactivate=true' ) ); |
| 1042 | 1186 | |
| @@ -1107,63 +1251,69 @@ | ||
| 1107 | 1251 | * |
| 1108 | 1252 | * @return void |
| 1109 | 1253 | */ |
| 1110 | 1254 | public static function add_admin_footer_links() { |
| 1111 | - $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' ); | |
| 1112 | - | |
| 1113 | - // Check admin privileges, screen mode, and branding | |
| 1114 | - $is_not_admin = ! FrmAppHelper::is_formidable_admin() && $post_type !== 'frm_logs'; | |
| 1115 | - $is_full_screen = FrmAppHelper::is_full_screen(); | |
| 1116 | - $is_not_formidable_branding = ! FrmAppHelper::is_formidable_branding(); | |
| 1117 | - | |
| 1118 | - // Exit if any of the above conditions are met | |
| 1119 | - if ( $is_not_admin || $is_full_screen || $is_not_formidable_branding ) { | |
| 1120 | - return; | |
| 1255 | + if ( self::should_show_footer_links() ) { | |
| 1256 | + include FrmAppHelper::plugin_path() . '/classes/views/shared/admin-footer-links.php'; | |
| 1121 | 1257 | } |
| 1122 | - | |
| 1123 | - include FrmAppHelper::plugin_path() . '/classes/views/shared/admin-footer-links.php'; | |
| 1124 | 1258 | } |
| 1125 | 1259 | |
| 1126 | 1260 | /** |
| 1127 | - * @deprecated 3.0.04 | |
| 1261 | + * Check if the footer links should be shown. | |
| 1128 | 1262 | * |
| 1129 | - * @codeCoverageIgnore | |
| 1263 | + * @since 6.7 | |
| 1130 | 1264 | * |
| 1131 | - * @return void | |
| 1265 | + * @return bool | |
| 1132 | 1266 | */ |
| 1133 | - public static function activation_install() { | |
| 1134 | - FrmDeprecated::activation_install(); | |
| 1135 | - } | |
| 1267 | + private static function should_show_footer_links() { | |
| 1268 | + $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' ); | |
| 1269 | + $is_formidable_page = FrmAppHelper::is_formidable_admin() || 'frm_logs' === $post_type; | |
| 1270 | + $show_footer_links = $is_formidable_page; | |
| 1271 | + if ( FrmAppHelper::is_full_screen() || ! FrmAppHelper::is_formidable_branding() ) { | |
| 1272 | + $show_footer_links = false; | |
| 1273 | + } | |
| 1136 | 1274 | |
| 1137 | - /** | |
| 1138 | - * @deprecated 3.0 | |
| 1139 | - * @codeCoverageIgnore | |
| 1140 | - */ | |
| 1141 | - public static function page_route( $content ) { | |
| 1142 | - return FrmDeprecated::page_route( $content ); | |
| 1275 | + /** | |
| 1276 | + * Filter whether to show the Formidable footer links. | |
| 1277 | + * | |
| 1278 | + * @since 6.7 | |
| 1279 | + * | |
| 1280 | + * @param bool $show_footer_links | |
| 1281 | + * @return bool | |
| 1282 | + */ | |
| 1283 | + return apply_filters( 'frm_show_footer_links', $show_footer_links ); | |
| 1143 | 1284 | } |
| 1144 | 1285 | |
| 1145 | 1286 | /** |
| 1146 | - * Include icons on page for Embed Form modal. | |
| 1287 | + * Show an error modal and terminate the script execution. | |
| 1147 | 1288 | * |
| 1148 | - * @since 5.2 | |
| 1289 | + * @since 6.7 | |
| 1149 | 1290 | * |
| 1291 | + * @param array $error_args Arguments that control the behavior of the error modal. | |
| 1292 | + * | |
| 1150 | 1293 | * @return void |
| 1151 | 1294 | */ |
| 1152 | - public static function include_embed_form_icons() { | |
| 1153 | - _deprecated_function( __METHOD__, '5.3' ); | |
| 1154 | - } | |
| 1295 | + public static function show_error_modal( $error_args ) { | |
| 1296 | + $defaults = array( | |
| 1297 | + 'title' => '', | |
| 1298 | + 'body' => '', | |
| 1299 | + 'cancel_url' => '', | |
| 1300 | + 'cancel_classes' => '', | |
| 1301 | + 'continue_url' => '', | |
| 1302 | + 'continue_classes' => '', | |
| 1303 | + 'icon' => 'frm_lock_simple', | |
| 1304 | + ); | |
| 1155 | 1305 | |
| 1156 | - /** | |
| 1157 | - * @deprecated 1.07.05 This is still referenced in the API add on as of v1.13. | |
| 1158 | - * @codeCoverageIgnore | |
| 1159 | - * | |
| 1160 | - * @param array $atts | |
| 1161 | - * @return string | |
| 1162 | - */ | |
| 1163 | - public static function get_form_shortcode( $atts ) { | |
| 1164 | - _deprecated_function( __FUNCTION__, '1.07.05', 'FrmFormsController::get_form_shortcode' ); | |
| 1165 | - return FrmFormsController::get_form_shortcode( $atts ); | |
| 1306 | + $error_args = wp_parse_args( $error_args, $defaults ); | |
| 1307 | + if ( ! isset( $error_args['cancel_text'] ) && ! empty( $error_args['cancel_url'] ) ) { | |
| 1308 | + $error_args['cancel_text'] = __( 'Cancel', 'formidable' ); | |
| 1309 | + } | |
| 1310 | + | |
| 1311 | + if ( ! isset( $error_args['continue_text'] ) && ! empty( $error_args['continue_url'] ) ) { | |
| 1312 | + $error_args['continue_text'] = __( 'Continue', 'formidable' ); | |
| 1313 | + } | |
| 1314 | + | |
| 1315 | + include FrmAppHelper::plugin_path() . '/classes/views/frm-forms/error-modal.php'; | |
| 1166 | 1316 | } |
| 1167 | 1317 | |
| 1168 | 1318 | /** |
| 1169 | 1319 | * Handles Floating Links' scripts and styles enqueueing. |
| @@ -1183,9 +1333,9 @@ | ||
| 1183 | 1333 | // Enqueue the Floating Links styles. |
| 1184 | 1334 | wp_enqueue_style( 's11-floating-links', $plugin_url . '/css/packages/s11-floating-links.css', array(), $version ); |
| 1185 | 1335 | |
| 1186 | 1336 | // Enqueue the Floating Links script. |
| 1187 | - wp_enqueue_script( 's11-floating-links', $plugin_url . '/js/packages/floating-links/s11-floating-links.js', array(), $version, true ); | |
| 1337 | + wp_enqueue_script( 's11-floating-links', $plugin_url . '/js/packages/floating-links/s11-floating-links.js', array( 'formidable_admin' ), $version, true ); | |
| 1188 | 1338 | |
| 1189 | 1339 | // Enqueue the config script. |
| 1190 | 1340 | wp_enqueue_script( 's11-floating-links-config', $plugin_url . '/js/packages/floating-links/config.js', array( 'wp-i18n' ), $version, true ); |
| 1191 | 1341 | |
| @@ -1196,6 +1346,91 @@ | ||
| 1196 | 1346 | $floating_links_data = array( |
| 1197 | 1347 | 'proIsInstalled' => FrmAppHelper::pro_is_installed(), |
| 1198 | 1348 | ); |
| 1199 | 1349 | wp_localize_script( 's11-floating-links-config', 's11FloatingLinksData', $floating_links_data ); |
| 1350 | + | |
| 1351 | + /** | |
| 1352 | + * Prompt Pro to load additional floating links scripts. | |
| 1353 | + * This is used to include images in the Inbox SlideIn when Pro is active. | |
| 1354 | + * | |
| 1355 | + * @since 6.8.4 | |
| 1356 | + */ | |
| 1357 | + do_action( 'frm_enqueue_floating_links' ); | |
| 1358 | + } | |
| 1359 | + | |
| 1360 | + /** | |
| 1361 | + * @deprecated 3.0 This is still referenced in https://formidableforms.com/knowledgebase/php-examples/ as of May 8, 2024. | |
| 1362 | + * @codeCoverageIgnore | |
| 1363 | + */ | |
| 1364 | + public static function page_route( $content ) { | |
| 1365 | + return FrmDeprecated::page_route( $content ); | |
| 1366 | + } | |
| 1367 | + | |
| 1368 | + /** | |
| 1369 | + * Check if we are in our admin pages. | |
| 1370 | + * | |
| 1371 | + * @return bool | |
| 1372 | + */ | |
| 1373 | + private static function in_our_pages() { | |
| 1374 | + global $current_screen; | |
| 1375 | + return FrmAppHelper::is_formidable_admin() || ( ! empty( $current_screen->post_type ) && 'frm_logs' === $current_screen->post_type ); | |
| 1376 | + } | |
| 1377 | + | |
| 1378 | + /** | |
| 1379 | + * Hide all third-parties admin notices only in our admin pages. | |
| 1380 | + * | |
| 1381 | + * @return void | |
| 1382 | + */ | |
| 1383 | + public static function filter_admin_notices() { | |
| 1384 | + if ( ! self::in_our_pages() ) { | |
| 1385 | + return; | |
| 1386 | + } | |
| 1387 | + | |
| 1388 | + $actions = array( | |
| 1389 | + 'admin_notices', | |
| 1390 | + 'network_admin_notices', | |
| 1391 | + 'user_admin_notices', | |
| 1392 | + 'all_admin_notices', | |
| 1393 | + ); | |
| 1394 | + | |
| 1395 | + global $wp_filter; | |
| 1396 | + | |
| 1397 | + foreach ( $actions as $action ) { | |
| 1398 | + if ( empty( $wp_filter[ $action ]->callbacks ) ) { | |
| 1399 | + continue; | |
| 1400 | + } | |
| 1401 | + foreach ( $wp_filter[ $action ]->callbacks as $priority => $callbacks ) { | |
| 1402 | + foreach ( $callbacks as $callback_name => $callback ) { | |
| 1403 | + if ( self::is_our_callback_string( $callback_name ) || self::is_our_callback_array( $callback ) ) { | |
| 1404 | + continue; | |
| 1405 | + } | |
| 1406 | + unset( $wp_filter[ $action ]->callbacks[ $priority ][ $callback_name ] ); | |
| 1407 | + } | |
| 1408 | + } | |
| 1409 | + } | |
| 1410 | + } | |
| 1411 | + | |
| 1412 | + /** | |
| 1413 | + * Validate that the callback name is ours not from third-party. | |
| 1414 | + * | |
| 1415 | + * @param string $callback_name WordPress callback name. | |
| 1416 | + * | |
| 1417 | + * @return bool | |
| 1418 | + */ | |
| 1419 | + private static function is_our_callback_string( $callback_name ) { | |
| 1420 | + return 0 === stripos( $callback_name, 'frm' ); | |
| 1421 | + } | |
| 1422 | + | |
| 1423 | + /** | |
| 1424 | + * Validate that the callback array is ours not from third-party. | |
| 1425 | + * | |
| 1426 | + * @param array $callback WordPress callback array. | |
| 1427 | + * | |
| 1428 | + * @return bool | |
| 1429 | + */ | |
| 1430 | + private static function is_our_callback_array( $callback ) { | |
| 1431 | + return ! empty( $callback['function'] ) && | |
| 1432 | + is_array( $callback['function'] ) && | |
| 1433 | + ! empty( $callback['function'][0] ) && | |
| 1434 | + self::is_our_callback_string( is_object( $callback['function'][0] ) ? get_class( $callback['function'][0] ) : $callback['function'][0] ); | |
| 1200 | 1435 | } |
| 1201 | 1436 | } |