| @@ -14,13 +14,8 @@ | ||
| 14 | 14 | return; |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | $menu_name = FrmAppHelper::get_menu_name(); |
| 18 | - | |
| 19 | - if ( in_array( $menu_name, array( 'Formidable', 'Forms' ), true ) ) { | |
| 20 | - $menu_name .= wp_kses_post( FrmInboxController::get_notice_count() ); | |
| 21 | - } | |
| 22 | - | |
| 23 | 18 | add_menu_page( 'Formidable', $menu_name, 'frm_view_forms', 'formidable', 'FrmFormsController::route', self::menu_icon(), self::get_menu_position() ); |
| 24 | 19 | } |
| 25 | 20 | |
| 26 | 21 | /** |
| @@ -139,8 +134,9 @@ | ||
| 139 | 134 | 'formidable', |
| 140 | 135 | 'formidable-entries', |
| 141 | 136 | 'formidable-views', |
| 142 | 137 | 'formidable-views-editor', |
| 138 | + 'formidable-pro-upgrade', | |
| 143 | 139 | 'formidable-addons', |
| 144 | 140 | 'formidable-import', |
| 145 | 141 | 'formidable-settings', |
| 146 | 142 | 'formidable-styles', |
| @@ -185,9 +181,8 @@ | ||
| 185 | 181 | private static function is_grey_page() { |
| 186 | 182 | $grey_pages = array( |
| 187 | 183 | 'formidable-applications', |
| 188 | 184 | 'formidable-dashboard', |
| 189 | - 'formidable-views', | |
| 190 | 185 | ); |
| 191 | 186 | |
| 192 | 187 | $is_grey_page = self::is_page_in_list( $grey_pages ); |
| 193 | 188 | |
| @@ -336,12 +331,10 @@ | ||
| 336 | 331 | |
| 337 | 332 | return (array) apply_filters( 'frm_form_nav_list', $nav_items, $nav_args ); |
| 338 | 333 | } |
| 339 | 334 | |
| 335 | + // Adds a settings link to the plugins page | |
| 340 | 336 | /** |
| 341 | - * Adds a settings link to the plugins page | |
| 342 | - * | |
| 343 | - * @param array $links | |
| 344 | 337 | * @return array |
| 345 | 338 | */ |
| 346 | 339 | public static function settings_link( $links ) { |
| 347 | 340 | $settings = array(); |
| @@ -346,25 +339,10 @@ | ||
| 346 | 339 | public static function settings_link( $links ) { |
| 347 | 340 | $settings = array(); |
| 348 | 341 | |
| 349 | 342 | if ( ! FrmAppHelper::pro_is_installed() ) { |
| 350 | - if ( FrmAddonsController::is_license_expired() ) { | |
| 351 | - $label = __( 'Renew', 'formidable' ); | |
| 352 | - } else { | |
| 353 | - $label = FrmSalesApi::get_best_sale_value( 'plugin_page_cta_text' ); | |
| 354 | - if ( ! $label ) { | |
| 355 | - $label = __( 'Upgrade to Pro', 'formidable' ); | |
| 356 | - } | |
| 357 | - } | |
| 358 | - | |
| 359 | - $upgrade_link = FrmSalesApi::get_best_sale_value( 'plugin_page_cta_link' ); | |
| 360 | - if ( $upgrade_link ) { | |
| 361 | - $upgrade_link = FrmAppHelper::maybe_add_missing_utm( $upgrade_link, array( 'medium' => 'plugin-row' ) ); | |
| 362 | - } else { | |
| 363 | - $upgrade_link = FrmAppHelper::admin_upgrade_link( 'plugin-row' ); | |
| 364 | - } | |
| 365 | - | |
| 366 | - $settings[] = '<a href="' . esc_url( $upgrade_link ) . '" target="_blank" rel="noopener"><b style="color:#1da867;font-weight:700;">' . esc_html( $label ) . '</b></a>'; | |
| 343 | + $label = FrmAddonsController::is_license_expired() ? __( 'Renew', 'formidable' ) : __( 'Upgrade to Pro', 'formidable' ); | |
| 344 | + $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>'; | |
| 367 | 345 | } |
| 368 | 346 | |
| 369 | 347 | $settings[] = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable' ) ) . '">' . __( 'Build a Form', 'formidable' ) . '</a>'; |
| 370 | 348 | |
| @@ -486,9 +464,10 @@ | ||
| 486 | 464 | * @return void |
| 487 | 465 | */ |
| 488 | 466 | public static function remove_upsells() { |
| 489 | 467 | remove_action( 'frm_before_settings', 'FrmSettingsController::license_box' ); |
| 490 | - remove_action( 'frm_after_settings_tabs', 'FrmSettingsController::settings_cta' ); | |
| 468 | + remove_action( 'frm_after_settings', 'FrmSettingsController::settings_cta' ); | |
| 469 | + remove_action( 'frm_add_form_style_tab_options', 'FrmFormsController::add_form_style_tab_options' ); | |
| 491 | 470 | remove_action( 'frm_after_field_options', 'FrmFormsController::logic_tip' ); |
| 492 | 471 | } |
| 493 | 472 | |
| 494 | 473 | /** |
| @@ -567,34 +546,13 @@ | ||
| 567 | 546 | if ( FrmAppHelper::is_admin_page( 'formidable' ) && 'duplicate' === FrmAppHelper::get_param( 'frm_action' ) ) { |
| 568 | 547 | FrmFormsController::duplicate(); |
| 569 | 548 | } |
| 570 | 549 | |
| 571 | - if ( FrmAppHelper::is_admin_page( 'formidable' ) && FrmAppHelper::simple_get( 'frm_add_tables' ) ) { | |
| 572 | - self::add_missing_tables(); | |
| 573 | - } | |
| 574 | - | |
| 575 | 550 | if ( FrmAppHelper::is_style_editor_page() && 'save' === FrmAppHelper::get_param( 'frm_action' ) ) { |
| 576 | 551 | // Hook in earlier than FrmStylesController::route so we can redirect before the headers have been sent. |
| 577 | 552 | FrmStylesController::save_style(); |
| 578 | 553 | } |
| 579 | 554 | |
| 580 | - if ( 'formidable-pro-upgrade' === FrmAppHelper::get_param( 'page' ) && ! FrmAppHelper::pro_is_installed() && current_user_can( 'frm_view_forms' ) ) { | |
| 581 | - $redirect = FrmSalesApi::get_best_sale_value( 'menu_cta_link' ); | |
| 582 | - $utm = array( | |
| 583 | - 'medium' => 'upgrade', | |
| 584 | - 'content' => 'submenu-upgrade', | |
| 585 | - ); | |
| 586 | - | |
| 587 | - if ( $redirect ) { | |
| 588 | - $redirect = FrmAppHelper::maybe_add_missing_utm( $redirect, $utm ); | |
| 589 | - } else { | |
| 590 | - $redirect = FrmAppHelper::admin_upgrade_link( $utm ); | |
| 591 | - } | |
| 592 | - | |
| 593 | - wp_redirect( $redirect ); | |
| 594 | - die(); | |
| 595 | - } | |
| 596 | - | |
| 597 | 555 | // Register personal data hooks. |
| 598 | 556 | new FrmPersonalData(); |
| 599 | 557 | |
| 600 | 558 | if ( ! FrmAppHelper::doing_ajax() && self::needs_update() ) { |
| @@ -622,8 +580,10 @@ | ||
| 622 | 580 | } |
| 623 | 581 | |
| 624 | 582 | FrmInbox::maybe_disable_screen_options(); |
| 625 | 583 | } |
| 584 | + | |
| 585 | + self::maybe_add_ip_warning(); | |
| 626 | 586 | } |
| 627 | 587 | |
| 628 | 588 | /** |
| 629 | 589 | * Get the current page and check for a possible function to trigger. |
| @@ -648,10 +608,69 @@ | ||
| 648 | 608 | } |
| 649 | 609 | } |
| 650 | 610 | |
| 651 | 611 | /** |
| 612 | + * Show a warning for the IP address setting if it hasn't been set. | |
| 613 | + * | |
| 614 | + * @since 6.1 | |
| 615 | + * | |
| 652 | 616 | * @return void |
| 653 | 617 | */ |
| 618 | + private static function maybe_add_ip_warning() { | |
| 619 | + $settings = FrmAppHelper::get_settings(); | |
| 620 | + if ( false !== $settings->custom_header_ip ) { | |
| 621 | + // The setting has been changed from the false default (to either 1 or 0), so stop showing the message. | |
| 622 | + return; | |
| 623 | + } | |
| 624 | + | |
| 625 | + if ( ! self::is_behind_proxy() ) { | |
| 626 | + // This message is only applicable when using a reverse proxy. | |
| 627 | + return; | |
| 628 | + } | |
| 629 | + | |
| 630 | + if ( FrmAppHelper::get_post_param( 'frm_action', '', 'sanitize_text_field' ) ) { | |
| 631 | + // Avoid the message on a POST action. We don't want to show the message if we're saving global settings. | |
| 632 | + return; | |
| 633 | + } | |
| 634 | + | |
| 635 | + $global_settings_link = admin_url( 'admin.php?page=formidable-settings' ) . '#frm_custom_header_ip'; | |
| 636 | + $message = sprintf( | |
| 637 | + // Translators: 1: Global Settings Link | |
| 638 | + __( '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' ), | |
| 639 | + '<a href="' . esc_url( $global_settings_link ) . '">' . __( 'Global Settings', 'formidable' ) . '</a>' | |
| 640 | + ); | |
| 641 | + $option_name = 'frm_dismiss_ip_address_notice'; | |
| 642 | + FrmAppHelper::add_dismissable_warning_message( $message, $option_name ); | |
| 643 | + } | |
| 644 | + | |
| 645 | + /** | |
| 646 | + * Check if any reverse proxy headers are set. | |
| 647 | + * | |
| 648 | + * @since 6.1 | |
| 649 | + * | |
| 650 | + * @return bool | |
| 651 | + */ | |
| 652 | + private static function is_behind_proxy() { | |
| 653 | + $custom_headers = FrmAppHelper::get_custom_header_keys_for_ip(); | |
| 654 | + foreach ( $custom_headers as $header ) { | |
| 655 | + if ( 'REMOTE_ADDR' === $header ) { | |
| 656 | + // We want to check every key but REMOTE_ADDR. REMOTE_ATTR is not unique to reverse proxy servers. | |
| 657 | + continue; | |
| 658 | + } | |
| 659 | + | |
| 660 | + $ip = trim( FrmAppHelper::get_server_value( $header ) ); | |
| 661 | + // Return true for anything that isn't empty but ignoring values like ::1. | |
| 662 | + if ( $ip && 0 !== strpos( $ip, '::' ) ) { | |
| 663 | + return true; | |
| 664 | + } | |
| 665 | + } | |
| 666 | + | |
| 667 | + return false; | |
| 668 | + } | |
| 669 | + | |
| 670 | + /** | |
| 671 | + * @return void | |
| 672 | + */ | |
| 654 | 673 | public static function admin_js() { |
| 655 | 674 | $plugin_url = FrmAppHelper::plugin_url(); |
| 656 | 675 | $version = FrmAppHelper::plugin_version(); |
| 657 | 676 | |
| @@ -675,14 +694,9 @@ | ||
| 675 | 694 | wp_register_script( 'formidable_dom', $plugin_url . '/js/admin/dom.js', array( 'jquery', 'jquery-ui-dialog', 'wp-i18n' ), $version, true ); |
| 676 | 695 | wp_register_script( 'formidable_embed', $plugin_url . '/js/admin/embed.js', array( 'formidable_dom', 'jquery-ui-autocomplete' ), $version, true ); |
| 677 | 696 | self::register_popper1(); |
| 678 | 697 | wp_register_script( 'bootstrap_tooltip', $plugin_url . '/js/bootstrap.min.js', array( 'jquery', 'popper' ), '4.6.1', true ); |
| 679 | - | |
| 680 | - $settings_js_vars = array( | |
| 681 | - 'currencies' => FrmCurrencyHelper::get_currencies(), | |
| 682 | - ); | |
| 683 | 698 | wp_register_script( 'formidable_settings', $plugin_url . '/js/admin/settings.js', array(), $version, true ); |
| 684 | - wp_localize_script( 'formidable_settings', 'frmSettings', $settings_js_vars ); | |
| 685 | 699 | |
| 686 | 700 | if ( self::should_show_floating_links() ) { |
| 687 | 701 | self::enqueue_floating_links( $plugin_url, $version ); |
| 688 | 702 | } |
| @@ -731,17 +745,14 @@ | ||
| 731 | 745 | $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' ); |
| 732 | 746 | |
| 733 | 747 | global $pagenow; |
| 734 | 748 | if ( strpos( $page, 'formidable' ) === 0 || ( $pagenow === 'edit.php' && $post_type === 'frm_display' ) ) { |
| 735 | - self::enqueue_global_settings_scripts( $page ); | |
| 736 | 749 | |
| 737 | 750 | wp_enqueue_script( 'admin-widgets' ); |
| 738 | 751 | wp_enqueue_style( 'widgets' ); |
| 739 | 752 | self::maybe_deregister_popper2(); |
| 740 | 753 | wp_enqueue_script( 'formidable_admin' ); |
| 741 | - wp_set_script_translations( 'formidable_admin', 'formidable' ); | |
| 742 | 754 | wp_enqueue_script( 'formidable_embed' ); |
| 743 | - wp_set_script_translations( 'formidable_embed', 'formidable' ); | |
| 744 | 755 | FrmAppHelper::localize_script( 'admin' ); |
| 745 | 756 | |
| 746 | 757 | wp_enqueue_style( 'formidable-animations' ); |
| 747 | 758 | wp_enqueue_style( 'formidable-admin' ); |
| @@ -785,46 +796,11 @@ | ||
| 785 | 796 | if ( 'formidable-addons' === $page ) { |
| 786 | 797 | wp_register_script( 'formidable_addons', $plugin_url . '/js/admin/addons.js', array( 'formidable_admin', 'wp-dom-ready' ), $version, true ); |
| 787 | 798 | wp_enqueue_script( 'formidable_addons' ); |
| 788 | 799 | } |
| 789 | - | |
| 790 | - self::enqueue_builder_assets( $plugin_url, $version ); | |
| 791 | 800 | } |
| 792 | 801 | |
| 793 | 802 | /** |
| 794 | - * Enqueue the Form Builder assets. | |
| 795 | - * | |
| 796 | - * @since 6.24 | |
| 797 | - * | |
| 798 | - * @param string $plugin_url The plugin URL. | |
| 799 | - * @param string $version The plugin version. | |
| 800 | - * @return void | |
| 801 | - */ | |
| 802 | - private static function enqueue_builder_assets( $plugin_url, $version ) { | |
| 803 | - wp_register_style( 'formidable-settings-components', $plugin_url . '/css/admin/frm-settings-components.css', array( 'formidable-admin', 'formidable-grids' ), $version ); | |
| 804 | - wp_register_script( 'formidable-settings-components', $plugin_url . '/js/formidable-settings-components.js', array( 'formidable_admin' ), $version, true ); | |
| 805 | - | |
| 806 | - if ( ! FrmAppHelper::is_form_builder_page() ) { | |
| 807 | - return; | |
| 808 | - } | |
| 809 | - | |
| 810 | - wp_enqueue_style( 'formidable-settings-components' ); | |
| 811 | - wp_enqueue_script( 'formidable-settings-components' ); | |
| 812 | - } | |
| 813 | - | |
| 814 | - /** | |
| 815 | - * Enqueues global settings scripts. | |
| 816 | - * | |
| 817 | - * @param string $page The `page` param in URL. | |
| 818 | - */ | |
| 819 | - private static function enqueue_global_settings_scripts( $page ) { | |
| 820 | - if ( 'formidable-settings' === $page ) { | |
| 821 | - wp_enqueue_style( 'wp-color-picker' ); | |
| 822 | - wp_enqueue_script( 'formidable_settings' ); | |
| 823 | - } | |
| 824 | - } | |
| 825 | - | |
| 826 | - /** | |
| 827 | 803 | * Avoid loading dropzone CSS on the form list page. It isn't required there. |
| 828 | 804 | * |
| 829 | 805 | * @since 6.11 |
| 830 | 806 | * |
| @@ -868,14 +844,8 @@ | ||
| 868 | 844 | */ |
| 869 | 845 | public static function admin_enqueue_scripts() { |
| 870 | 846 | self::load_wp_admin_style(); |
| 871 | 847 | self::maybe_force_formidable_block_on_gutenberg_page(); |
| 872 | - | |
| 873 | - if ( FrmAppHelper::is_admin_page( 'formidable-settings' ) ) { | |
| 874 | - wp_enqueue_style( FrmDashboardController::PAGE_SLUG, FrmAppHelper::plugin_url() . '/css/admin/dashboard.css', array(), FrmAppHelper::plugin_version() ); | |
| 875 | - } | |
| 876 | - | |
| 877 | - FrmUsageController::load_scripts(); | |
| 878 | 848 | } |
| 879 | 849 | |
| 880 | 850 | /** |
| 881 | 851 | * Enqueue required assets for the Legacy Views editor (Views v4.x). |
| @@ -911,9 +881,8 @@ | ||
| 911 | 881 | } |
| 912 | 882 | ' |
| 913 | 883 | ); |
| 914 | 884 | wp_enqueue_style( 'formidable-admin' ); |
| 915 | - wp_enqueue_script( 'formidable_legacy_views', FrmAppHelper::plugin_url() . '/js/admin/legacy-views.js', array( 'jquery', 'formidable_admin' ), FrmAppHelper::plugin_version() ); | |
| 916 | 885 | FrmAppHelper::localize_script( 'admin' ); |
| 917 | 886 | self::include_info_overlay(); |
| 918 | 887 | } |
| 919 | 888 | |
| @@ -1044,9 +1013,9 @@ | ||
| 1044 | 1013 | public static function create_rest_routes() { |
| 1045 | 1014 | $args = array( |
| 1046 | 1015 | 'methods' => 'GET', |
| 1047 | 1016 | 'callback' => 'FrmAppController::api_install', |
| 1048 | - 'permission_callback' => self::class . '::can_update_db', | |
| 1017 | + 'permission_callback' => __CLASS__ . '::can_update_db', | |
| 1049 | 1018 | ); |
| 1050 | 1019 | |
| 1051 | 1020 | register_rest_route( 'frm-admin/v1', '/install', $args ); |
| 1052 | 1021 | |
| @@ -1239,9 +1208,8 @@ | ||
| 1239 | 1208 | * |
| 1240 | 1209 | * @return void |
| 1241 | 1210 | */ |
| 1242 | 1211 | public static function add_admin_footer_links() { |
| 1243 | - FrmFormsController::include_device_too_small_message(); | |
| 1244 | 1212 | if ( self::should_show_footer_links() ) { |
| 1245 | 1213 | include FrmAppHelper::plugin_path() . '/classes/views/shared/admin-footer-links.php'; |
| 1246 | 1214 | } |
| 1247 | 1215 | } |
| @@ -1281,10 +1249,8 @@ | ||
| 1281 | 1249 | * |
| 1282 | 1250 | * @return void |
| 1283 | 1251 | */ |
| 1284 | 1252 | public static function show_error_modal( $error_args ) { |
| 1285 | - add_filter( 'frm_show_footer_links', '__return_false' ); | |
| 1286 | - | |
| 1287 | 1253 | $defaults = array( |
| 1288 | 1254 | 'title' => '', |
| 1289 | 1255 | 'body' => '', |
| 1290 | 1256 | 'cancel_url' => '', |
| @@ -1324,9 +1290,9 @@ | ||
| 1324 | 1290 | // Enqueue the Floating Links styles. |
| 1325 | 1291 | wp_enqueue_style( 's11-floating-links', $plugin_url . '/css/packages/s11-floating-links.css', array(), $version ); |
| 1326 | 1292 | |
| 1327 | 1293 | // Enqueue the Floating Links script. |
| 1328 | - wp_enqueue_script( 's11-floating-links', $plugin_url . '/js/packages/floating-links/s11-floating-links.js', array( 'formidable_admin' ), $version, true ); | |
| 1294 | + wp_enqueue_script( 's11-floating-links', $plugin_url . '/js/packages/floating-links/s11-floating-links.js', array(), $version, true ); | |
| 1329 | 1295 | |
| 1330 | 1296 | // Enqueue the config script. |
| 1331 | 1297 | wp_enqueue_script( 's11-floating-links-config', $plugin_url . '/js/packages/floating-links/config.js', array( 'wp-i18n' ), $version, true ); |
| 1332 | 1298 | |
| @@ -1348,218 +1314,11 @@ | ||
| 1348 | 1314 | do_action( 'frm_enqueue_floating_links' ); |
| 1349 | 1315 | } |
| 1350 | 1316 | |
| 1351 | 1317 | /** |
| 1352 | - * Check if we are in our admin pages. | |
| 1353 | - * | |
| 1354 | - * @return bool | |
| 1318 | + * @deprecated 3.0 This is still referenced in https://formidableforms.com/knowledgebase/php-examples/ as of May 8, 2024. | |
| 1319 | + * @codeCoverageIgnore | |
| 1355 | 1320 | */ |
| 1356 | - private static function in_our_pages() { | |
| 1357 | - global $current_screen, $pagenow; | |
| 1358 | - if ( FrmAppHelper::is_formidable_admin() ) { | |
| 1359 | - return true; | |
| 1360 | - } | |
| 1361 | - | |
| 1362 | - if ( ! empty( $current_screen->post_type ) && 'frm_logs' === $current_screen->post_type ) { | |
| 1363 | - return true; | |
| 1364 | - } | |
| 1365 | - | |
| 1366 | - if ( in_array( $pagenow, array( 'term.php', 'edit-tags.php' ), true ) && 'frm_application' === FrmAppHelper::simple_get( 'taxonomy' ) ) { | |
| 1367 | - return true; | |
| 1368 | - } | |
| 1369 | - | |
| 1370 | - return false; | |
| 1371 | - } | |
| 1372 | - | |
| 1373 | - /** | |
| 1374 | - * Handles actions related to the current screen. | |
| 1375 | - * | |
| 1376 | - * @since 6.19 | |
| 1377 | - * | |
| 1378 | - * @return void | |
| 1379 | - */ | |
| 1380 | - public static function handle_current_screen() { | |
| 1381 | - if ( ! self::in_our_pages() ) { | |
| 1382 | - return; | |
| 1383 | - } | |
| 1384 | - | |
| 1385 | - self::filter_admin_notices(); | |
| 1386 | - self::remember_custom_sort(); | |
| 1387 | - } | |
| 1388 | - | |
| 1389 | - /** | |
| 1390 | - * Hide all third-parties admin notices only in our admin pages. | |
| 1391 | - * | |
| 1392 | - * @return void | |
| 1393 | - */ | |
| 1394 | - public static function filter_admin_notices() { | |
| 1395 | - $actions = array( | |
| 1396 | - 'admin_notices', | |
| 1397 | - 'network_admin_notices', | |
| 1398 | - 'user_admin_notices', | |
| 1399 | - 'all_admin_notices', | |
| 1400 | - ); | |
| 1401 | - | |
| 1402 | - global $wp_filter; | |
| 1403 | - | |
| 1404 | - foreach ( $actions as $action ) { | |
| 1405 | - if ( empty( $wp_filter[ $action ]->callbacks ) ) { | |
| 1406 | - continue; | |
| 1407 | - } | |
| 1408 | - foreach ( $wp_filter[ $action ]->callbacks as $priority => $callbacks ) { | |
| 1409 | - foreach ( $callbacks as $callback_name => $callback ) { | |
| 1410 | - if ( self::is_our_callback_string( $callback_name ) || self::is_our_callback_array( $callback ) ) { | |
| 1411 | - continue; | |
| 1412 | - } | |
| 1413 | - unset( $wp_filter[ $action ]->callbacks[ $priority ][ $callback_name ] ); | |
| 1414 | - } | |
| 1415 | - } | |
| 1416 | - } | |
| 1417 | - } | |
| 1418 | - | |
| 1419 | - /** | |
| 1420 | - * Remembers and applies user-specific sorting preferences. | |
| 1421 | - * | |
| 1422 | - * @return void | |
| 1423 | - */ | |
| 1424 | - private static function remember_custom_sort() { | |
| 1425 | - $screen = get_current_screen(); | |
| 1426 | - if ( ! $screen ) { | |
| 1427 | - return; | |
| 1428 | - } | |
| 1429 | - | |
| 1430 | - if ( ! FrmAppHelper::is_admin_list_page() && ! FrmAppHelper::is_admin_list_page( 'formidable-entries' ) ) { | |
| 1431 | - return; | |
| 1432 | - } | |
| 1433 | - | |
| 1434 | - $orderby = FrmAppHelper::get_param( 'orderby' ); | |
| 1435 | - | |
| 1436 | - if ( ! $orderby ) { | |
| 1437 | - return; | |
| 1438 | - } | |
| 1439 | - | |
| 1440 | - $user_id = get_current_user_id(); | |
| 1441 | - $meta_key = 'frm_preferred_list_sort_' . $screen->id; | |
| 1442 | - $order = FrmAppHelper::get_param( 'order' ); | |
| 1443 | - | |
| 1444 | - $new_sort = array( | |
| 1445 | - 'orderby' => $orderby, | |
| 1446 | - 'order' => $order, | |
| 1447 | - ); | |
| 1448 | - | |
| 1449 | - $current_sort = get_user_meta( $user_id, $meta_key, true ); | |
| 1450 | - | |
| 1451 | - if ( $new_sort !== $current_sort ) { | |
| 1452 | - update_user_meta( | |
| 1453 | - $user_id, | |
| 1454 | - $meta_key, | |
| 1455 | - array( | |
| 1456 | - 'orderby' => $orderby, | |
| 1457 | - 'order' => $order, | |
| 1458 | - ) | |
| 1459 | - ); | |
| 1460 | - } | |
| 1461 | - } | |
| 1462 | - | |
| 1463 | - /** | |
| 1464 | - * Retrieve and apply any saved sorting preferences for the current screen. | |
| 1465 | - * | |
| 1466 | - * @since 6.19 | |
| 1467 | - * | |
| 1468 | - * @param string &$orderby Reference to the current 'orderby' parameter. | |
| 1469 | - * @param string &$order Reference to the current 'order' parameter. | |
| 1470 | - * @return void | |
| 1471 | - */ | |
| 1472 | - public static function apply_saved_sort_preference( &$orderby, &$order ) { | |
| 1473 | - if ( ! function_exists( 'get_current_screen' ) ) { | |
| 1474 | - return; | |
| 1475 | - } | |
| 1476 | - | |
| 1477 | - $screen = get_current_screen(); | |
| 1478 | - if ( ! $screen ) { | |
| 1479 | - return; | |
| 1480 | - } | |
| 1481 | - | |
| 1482 | - $user_id = get_current_user_id(); | |
| 1483 | - $preferred_list_sort = get_user_meta( $user_id, 'frm_preferred_list_sort_' . $screen->id, true ); | |
| 1484 | - | |
| 1485 | - if ( is_array( $preferred_list_sort ) && ! empty( $preferred_list_sort['orderby'] ) ) { | |
| 1486 | - $orderby = $preferred_list_sort['orderby']; | |
| 1487 | - | |
| 1488 | - if ( ! empty( $preferred_list_sort['order'] ) ) { | |
| 1489 | - $order = $preferred_list_sort['order']; | |
| 1490 | - } | |
| 1491 | - } | |
| 1492 | - } | |
| 1493 | - | |
| 1494 | - /** | |
| 1495 | - * Validate that the callback name is ours not from third-party. | |
| 1496 | - * | |
| 1497 | - * @param string $callback_name WordPress callback name. | |
| 1498 | - * | |
| 1499 | - * @return bool | |
| 1500 | - */ | |
| 1501 | - private static function is_our_callback_string( $callback_name ) { | |
| 1502 | - return 0 === stripos( $callback_name, 'frm' ); | |
| 1503 | - } | |
| 1504 | - | |
| 1505 | - /** | |
| 1506 | - * Validate that the callback array is ours not from third-party. | |
| 1507 | - * | |
| 1508 | - * @param array $callback WordPress callback array. | |
| 1509 | - * | |
| 1510 | - * @return bool | |
| 1511 | - */ | |
| 1512 | - private static function is_our_callback_array( $callback ) { | |
| 1513 | - return ! empty( $callback['function'] ) && | |
| 1514 | - is_array( $callback['function'] ) && | |
| 1515 | - ! empty( $callback['function'][0] ) && | |
| 1516 | - self::is_our_callback_string( is_object( $callback['function'][0] ) ? get_class( $callback['function'][0] ) : $callback['function'][0] ); | |
| 1517 | - } | |
| 1518 | - | |
| 1519 | - /** | |
| 1520 | - * In some cases, the DB tables may fail to install. | |
| 1521 | - * This function tries to add them again when the user clicks the link to try again | |
| 1522 | - * from the given inbox notice. | |
| 1523 | - * | |
| 1524 | - * @since 6.19 | |
| 1525 | - */ | |
| 1526 | - private static function add_missing_tables() { | |
| 1527 | - FrmAppHelper::permission_check( 'frm_view_forms' ); | |
| 1528 | - | |
| 1529 | - $inbox = new FrmInbox(); | |
| 1530 | - $error = $inbox->check_for_error(); | |
| 1531 | - | |
| 1532 | - if ( ! $error || 'failed-to-create-tables' !== $error['key'] ) { | |
| 1533 | - // Confirm the inbox item with this CTA exists. | |
| 1534 | - wp_safe_redirect( admin_url( 'admin.php?page=formidable' ) ); | |
| 1535 | - exit; | |
| 1536 | - } | |
| 1537 | - | |
| 1538 | - global $wpdb; | |
| 1539 | - $exists = $wpdb->get_results( $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->prefix . 'frm_forms' ) ); | |
| 1540 | - | |
| 1541 | - if ( $exists ) { | |
| 1542 | - // Exit early if the table already exists. | |
| 1543 | - wp_safe_redirect( admin_url( 'admin.php?page=formidable' ) ); | |
| 1544 | - exit; | |
| 1545 | - } | |
| 1546 | - | |
| 1547 | - delete_option( 'frm_db_version' ); | |
| 1548 | - wp_safe_redirect( admin_url( 'admin.php?page=formidable' ) ); | |
| 1549 | - exit; | |
| 1550 | - } | |
| 1551 | - | |
| 1552 | - /** | |
| 1553 | - * Handles the small screen proceed action. | |
| 1554 | - * | |
| 1555 | - * @since 6.21 | |
| 1556 | - * | |
| 1557 | - * @return void | |
| 1558 | - */ | |
| 1559 | - public static function small_screen_proceed() { | |
| 1560 | - FrmAppHelper::permission_check( 'frm_view_forms' ); | |
| 1561 | - check_ajax_referer( 'frm_ajax', 'nonce' ); | |
| 1562 | - update_user_option( get_current_user_id(), 'frm_ignore_small_screen_warning', true ); | |
| 1563 | - wp_send_json_success(); | |
| 1321 | + public static function page_route( $content ) { | |
| 1322 | + return FrmDeprecated::page_route( $content ); | |
| 1564 | 1323 | } |
| 1565 | 1324 | } |