| @@ -4,11 +4,8 @@ | ||
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | class FrmAppController { |
| 7 | 7 | |
| 8 | - /** | |
| 9 | - * @return void | |
| 10 | - */ | |
| 11 | 8 | public static function menu() { |
| 12 | 9 | FrmAppHelper::maybe_add_permissions(); |
| 13 | 10 | if ( ! current_user_can( 'frm_view_forms' ) ) { |
| 14 | 11 | return; |
| @@ -62,47 +59,16 @@ | ||
| 62 | 59 | } |
| 63 | 60 | } |
| 64 | 61 | |
| 65 | 62 | if ( FrmAppHelper::is_full_screen() ) { |
| 66 | - $full_screen_on = self::get_full_screen_setting(); | |
| 67 | - $add_class = ''; | |
| 68 | - if ( $full_screen_on ) { | |
| 69 | - $add_class = ' frm-full-screen is-fullscreen-mode'; | |
| 70 | - wp_enqueue_style( 'wp-edit-post' ); // Load the CSS for .is-fullscreen-mode. | |
| 71 | - } | |
| 72 | - $classes .= apply_filters( 'frm_admin_full_screen_class', $add_class ); | |
| 63 | + $classes .= apply_filters( 'frm_admin_full_screen_class', ' frm-full-screen folded' ); | |
| 73 | 64 | } |
| 74 | 65 | |
| 75 | - if ( ! FrmAppHelper::pro_is_installed() ) { | |
| 76 | - $classes .= ' frm-lite '; | |
| 77 | - } | |
| 78 | - | |
| 79 | 66 | return $classes; |
| 80 | 67 | } |
| 81 | 68 | |
| 82 | 69 | /** |
| 83 | - * Get the full screen mode setting from the block editor. | |
| 84 | - * | |
| 85 | - * @since 6.1 | |
| 86 | - * | |
| 87 | - * @return bool | |
| 88 | - */ | |
| 89 | - private static function get_full_screen_setting() { | |
| 90 | - global $wpdb; | |
| 91 | - $meta_key = $wpdb->get_blog_prefix() . 'persisted_preferences'; | |
| 92 | - | |
| 93 | - $prefs = get_user_meta( get_current_user_id(), $meta_key, true ); | |
| 94 | - if ( $prefs && isset( $prefs['core/edit-post']['fullscreenMode'] ) ) { | |
| 95 | - return $prefs['core/edit-post']['fullscreenMode']; | |
| 96 | - } | |
| 97 | - | |
| 98 | - return true; | |
| 99 | - } | |
| 100 | - | |
| 101 | - /** | |
| 102 | 70 | * @since 4.0 |
| 103 | - * | |
| 104 | - * @return string | |
| 105 | 71 | */ |
| 106 | 72 | private static function get_os() { |
| 107 | 73 | $agent = strtolower( FrmAppHelper::get_server_value( 'HTTP_USER_AGENT' ) ); |
| 108 | 74 | $os = ''; |
| @@ -123,9 +89,8 @@ | ||
| 123 | 89 | $white_pages = array( |
| 124 | 90 | 'formidable', |
| 125 | 91 | 'formidable-entries', |
| 126 | 92 | 'formidable-views', |
| 127 | - 'formidable-views-editor', | |
| 128 | 93 | 'formidable-pro-upgrade', |
| 129 | 94 | 'formidable-addons', |
| 130 | 95 | 'formidable-import', |
| 131 | 96 | 'formidable-settings', |
| @@ -132,19 +97,12 @@ | ||
| 132 | 97 | 'formidable-styles', |
| 133 | 98 | 'formidable-styles2', |
| 134 | 99 | 'formidable-inbox', |
| 135 | 100 | 'formidable-welcome', |
| 136 | - 'formidable-applications', | |
| 137 | 101 | ); |
| 138 | 102 | |
| 139 | - if ( ! class_exists( 'FrmTransHooksController', false ) ) { | |
| 140 | - // Only consider the payments page as a "white page" when the Payments submodule is off. | |
| 141 | - // Otherwise this causes a lot of styling issues when the Stripe add-on (or Authorize.Net) is active. | |
| 142 | - $white_pages[] = 'formidable-payments'; | |
| 143 | - } | |
| 144 | - | |
| 145 | 103 | $get_page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); |
| 146 | - $is_white_page = in_array( $get_page, $white_pages, true ); | |
| 104 | + $is_white_page = in_array( $get_page, $white_pages ); | |
| 147 | 105 | |
| 148 | 106 | if ( ! $is_white_page ) { |
| 149 | 107 | $screen = get_current_screen(); |
| 150 | 108 | $is_white_page = ( $screen && strpos( $screen->id, 'frm_display' ) !== false ); |
| @@ -149,35 +107,15 @@ | ||
| 149 | 107 | $screen = get_current_screen(); |
| 150 | 108 | $is_white_page = ( $screen && strpos( $screen->id, 'frm_display' ) !== false ); |
| 151 | 109 | } |
| 152 | 110 | |
| 153 | - /** | |
| 154 | - * Allow another add on to style a page as a Formidable "white page", which adds a white background color. | |
| 155 | - * | |
| 156 | - * @since 5.3 | |
| 157 | - * | |
| 158 | - * @param bool $is_white_page | |
| 159 | - */ | |
| 160 | - $is_white_page = apply_filters( 'frm_is_white_page', $is_white_page ); | |
| 161 | - | |
| 162 | 111 | return $is_white_page; |
| 163 | 112 | } |
| 164 | 113 | |
| 165 | - /** | |
| 166 | - * @return void | |
| 167 | - */ | |
| 168 | 114 | public static function load_wp_admin_style() { |
| 169 | 115 | FrmAppHelper::load_font_style(); |
| 170 | 116 | } |
| 171 | 117 | |
| 172 | - /** | |
| 173 | - * @param bool $show_nav | |
| 174 | - * @param string $title | |
| 175 | - * | |
| 176 | - * @psalm-param 'hide'|'show' $title | |
| 177 | - * | |
| 178 | - * @return void | |
| 179 | - */ | |
| 180 | 118 | public static function get_form_nav( $form, $show_nav = false, $title = 'show' ) { |
| 181 | 119 | $show_nav = FrmAppHelper::get_param( 'show_nav', $show_nav, 'get', 'absint' ); |
| 182 | 120 | if ( empty( $show_nav ) || ! $form ) { |
| 183 | 121 | return; |
| @@ -194,11 +132,8 @@ | ||
| 194 | 132 | |
| 195 | 133 | include( FrmAppHelper::plugin_path() . '/classes/views/shared/form-nav.php' ); |
| 196 | 134 | } |
| 197 | 135 | |
| 198 | - /** | |
| 199 | - * @return string | |
| 200 | - */ | |
| 201 | 136 | private static function get_current_page() { |
| 202 | 137 | $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); |
| 203 | 138 | $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title', 'None' ); |
| 204 | 139 | $current_page = isset( $_GET['page'] ) ? $page : $post_type; |
| @@ -209,12 +144,8 @@ | ||
| 209 | 144 | |
| 210 | 145 | return $current_page; |
| 211 | 146 | } |
| 212 | 147 | |
| 213 | - /** | |
| 214 | - * @param object $form | |
| 215 | - * @return array | |
| 216 | - */ | |
| 217 | 148 | private static function get_form_nav_items( $form ) { |
| 218 | 149 | $id = $form->parent_form_id ? $form->parent_form_id : $form->id; |
| 219 | 150 | |
| 220 | 151 | $nav_items = array( |
| @@ -225,15 +156,8 @@ | ||
| 225 | 156 | 'page' => 'formidable', |
| 226 | 157 | 'permission' => 'frm_edit_forms', |
| 227 | 158 | ), |
| 228 | 159 | array( |
| 229 | - 'link' => FrmStylesHelper::get_list_url( $id ), | |
| 230 | - 'label' => __( 'Style', 'formidable' ), | |
| 231 | - 'current' => array(), | |
| 232 | - 'page' => 'formidable-styles', | |
| 233 | - 'permission' => 'frm_edit_forms', | |
| 234 | - ), | |
| 235 | - array( | |
| 236 | 160 | 'link' => admin_url( 'admin.php?page=formidable&frm_action=settings&id=' . absint( $id ) ), |
| 237 | 161 | 'label' => __( 'Settings', 'formidable' ), |
| 238 | 162 | 'current' => array( 'settings' ), |
| 239 | 163 | 'page' => 'formidable', |
| @@ -239,9 +163,9 @@ | ||
| 239 | 163 | 'page' => 'formidable', |
| 240 | 164 | 'permission' => 'frm_edit_forms', |
| 241 | 165 | ), |
| 242 | 166 | array( |
| 243 | - 'link' => admin_url( 'admin.php?page=formidable-entries&frm_action=list&form=' . absint( $id ) ), | |
| 167 | + 'link' => admin_url( 'admin.php?page=formidable-entries&frm-full=1&frm_action=list&form=' . absint( $id ) ), | |
| 244 | 168 | 'label' => __( 'Entries', 'formidable' ), |
| 245 | 169 | 'current' => array(), |
| 246 | 170 | 'page' => 'formidable-entries', |
| 247 | 171 | 'permission' => 'frm_view_entries', |
| @@ -251,9 +175,9 @@ | ||
| 251 | 175 | $views_installed = is_callable( 'FrmProAppHelper::views_is_installed' ) ? FrmProAppHelper::views_is_installed() : FrmAppHelper::pro_is_installed(); |
| 252 | 176 | |
| 253 | 177 | if ( ! $views_installed ) { |
| 254 | 178 | $nav_items[] = array( |
| 255 | - 'link' => admin_url( 'admin.php?page=formidable-views&form=' . absint( $id ) ), | |
| 179 | + 'link' => admin_url( 'admin.php?page=formidable-views&frm-full=1&form=' . absint( $id ) ), | |
| 256 | 180 | 'label' => __( 'Views', 'formidable' ), |
| 257 | 181 | 'current' => array(), |
| 258 | 182 | 'page' => 'formidable-views', |
| 259 | 183 | 'permission' => 'frm_view_entries', |
| @@ -265,9 +189,9 @@ | ||
| 265 | 189 | |
| 266 | 190 | // Let people know reports and views exist. |
| 267 | 191 | if ( ! FrmAppHelper::pro_is_installed() ) { |
| 268 | 192 | $nav_items[] = array( |
| 269 | - 'link' => admin_url( 'admin.php?page=formidable&frm_action=lite-reports&form=' . absint( $id ) ), | |
| 193 | + 'link' => admin_url( 'admin.php?page=formidable&frm_action=lite-reports&frm-full=1&form=' . absint( $id ) ), | |
| 270 | 194 | 'label' => __( 'Reports', 'formidable' ), |
| 271 | 195 | 'current' => array( 'reports' ), |
| 272 | 196 | 'page' => 'formidable', |
| 273 | 197 | 'permission' => 'frm_view_entries', |
| @@ -281,21 +205,17 @@ | ||
| 281 | 205 | 'form_id' => $id, |
| 282 | 206 | 'form' => $form, |
| 283 | 207 | ); |
| 284 | 208 | |
| 285 | - return (array) apply_filters( 'frm_form_nav_list', $nav_items, $nav_args ); | |
| 209 | + return apply_filters( 'frm_form_nav_list', $nav_items, $nav_args ); | |
| 286 | 210 | } |
| 287 | 211 | |
| 288 | 212 | // Adds a settings link to the plugins page |
| 289 | - /** | |
| 290 | - * @return array | |
| 291 | - */ | |
| 292 | 213 | public static function settings_link( $links ) { |
| 293 | 214 | $settings = array(); |
| 294 | 215 | |
| 295 | 216 | if ( ! FrmAppHelper::pro_is_installed() ) { |
| 296 | - $label = FrmAddonsController::is_license_expired() ? __( 'Renew', 'formidable' ) : __( 'Upgrade to Pro', 'formidable' ); | |
| 297 | - $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>'; | |
| 217 | + $settings[] = '<a href="' . esc_url( FrmAppHelper::admin_upgrade_link( 'plugin-row' ) ) . '" target="_blank" rel="noopener"><b>' . esc_html__( 'Upgrade to Pro', 'formidable' ) . '</b></a>'; | |
| 298 | 218 | } |
| 299 | 219 | |
| 300 | 220 | $settings[] = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable' ) ) . '">' . __( 'Build a Form', 'formidable' ) . '</a>'; |
| 301 | 221 | |
| @@ -301,11 +221,8 @@ | ||
| 301 | 221 | |
| 302 | 222 | return array_merge( $settings, $links ); |
| 303 | 223 | } |
| 304 | 224 | |
| 305 | - /** | |
| 306 | - * @return void | |
| 307 | - */ | |
| 308 | 225 | public static function pro_get_started_headline() { |
| 309 | 226 | self::review_request(); |
| 310 | 227 | FrmAppHelper::min_pro_version_notice( '4.0' ); |
| 311 | 228 | } |
| @@ -313,10 +230,8 @@ | ||
| 313 | 230 | /** |
| 314 | 231 | * Add admin notices as needed for reviews |
| 315 | 232 | * |
| 316 | 233 | * @since 3.04.03 |
| 317 | - * | |
| 318 | - * @return void | |
| 319 | 234 | */ |
| 320 | 235 | private static function review_request() { |
| 321 | 236 | $reviews = new FrmReviews(); |
| 322 | 237 | $reviews->review_request(); |
| @@ -325,10 +240,8 @@ | ||
| 325 | 240 | /** |
| 326 | 241 | * Save the request to hide the review |
| 327 | 242 | * |
| 328 | 243 | * @since 3.04.03 |
| 329 | - * | |
| 330 | - * @return void | |
| 331 | 244 | */ |
| 332 | 245 | public static function dismiss_review() { |
| 333 | 246 | FrmAppHelper::permission_check( 'frm_change_settings' ); |
| 334 | 247 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| @@ -338,32 +251,18 @@ | ||
| 338 | 251 | } |
| 339 | 252 | |
| 340 | 253 | /** |
| 341 | 254 | * @since 3.04.02 |
| 342 | - * | |
| 343 | - * @return void | |
| 344 | 255 | */ |
| 345 | 256 | public static function include_upgrade_overlay() { |
| 346 | - self::enqueue_dialog_assets(); | |
| 347 | - add_action( 'admin_footer', 'FrmAppController::upgrade_overlay_html' ); | |
| 348 | - } | |
| 349 | - | |
| 350 | - /** | |
| 351 | - * Enqueue scripts and styles required for modals. | |
| 352 | - * | |
| 353 | - * @since 5.3 | |
| 354 | - * | |
| 355 | - * @return void | |
| 356 | - */ | |
| 357 | - public static function enqueue_dialog_assets() { | |
| 358 | 257 | wp_enqueue_script( 'jquery-ui-dialog' ); |
| 359 | 258 | wp_enqueue_style( 'jquery-ui-dialog' ); |
| 259 | + | |
| 260 | + add_action( 'admin_footer', 'FrmAppController::upgrade_overlay_html' ); | |
| 360 | 261 | } |
| 361 | 262 | |
| 362 | 263 | /** |
| 363 | 264 | * @since 3.06.03 |
| 364 | - * | |
| 365 | - * @return void | |
| 366 | 265 | */ |
| 367 | 266 | public static function upgrade_overlay_html() { |
| 368 | 267 | $is_pro = FrmAppHelper::pro_is_installed(); |
| 369 | 268 | $upgrade_link = array( |
| @@ -376,16 +275,13 @@ | ||
| 376 | 275 | |
| 377 | 276 | include $shared_path . 'upgrade_overlay.php'; |
| 378 | 277 | include $shared_path . 'confirm-overlay.php'; |
| 379 | 278 | |
| 380 | - if ( FrmAppHelper::is_admin_page( 'formidable-welcome' ) || FrmAppHelper::on_form_listing_page() ) { | |
| 279 | + if ( ( FrmAppHelper::is_admin_page( 'formidable' ) || FrmAppHelper::is_admin_page( 'formidable-welcome' ) ) && in_array( FrmAppHelper::get_param( 'frm_action' ), array( '', 'list', 'trash' ), true ) ) { | |
| 381 | 280 | self::new_form_overlay_html(); |
| 382 | 281 | } |
| 383 | 282 | } |
| 384 | 283 | |
| 385 | - /** | |
| 386 | - * @return void | |
| 387 | - */ | |
| 388 | 284 | private static function new_form_overlay_html() { |
| 389 | 285 | FrmFormsController::before_list_templates(); |
| 390 | 286 | |
| 391 | 287 | $plugin_path = FrmAppHelper::plugin_path(); |
| @@ -432,42 +328,21 @@ | ||
| 432 | 328 | |
| 433 | 329 | include $path . 'new-form-overlay.php'; |
| 434 | 330 | } |
| 435 | 331 | |
| 436 | - /** | |
| 437 | - * Create a basic form with an email field. | |
| 438 | - * | |
| 439 | - * @param string $form_key | |
| 440 | - * @param string $title | |
| 441 | - * @param string $description | |
| 442 | - * @return void | |
| 443 | - */ | |
| 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'; | |
| 449 | - } | |
| 332 | + public static function include_info_overlay() { | |
| 333 | + wp_enqueue_script( 'jquery-ui-dialog' ); | |
| 334 | + wp_enqueue_style( 'jquery-ui-dialog' ); | |
| 450 | 335 | |
| 451 | - /** | |
| 452 | - * @return void | |
| 453 | - */ | |
| 454 | - public static function include_info_overlay() { | |
| 455 | - self::enqueue_dialog_assets(); | |
| 456 | 336 | add_action( 'admin_footer', 'FrmAppController::info_overlay_html' ); |
| 457 | 337 | } |
| 458 | 338 | |
| 459 | - /** | |
| 460 | - * @return void | |
| 461 | - */ | |
| 462 | 339 | public static function info_overlay_html() { |
| 463 | - include FrmAppHelper::plugin_path() . '/classes/views/shared/info-overlay.php'; | |
| 340 | + include( FrmAppHelper::plugin_path() . '/classes/views/shared/info-overlay.php' ); | |
| 464 | 341 | } |
| 465 | 342 | |
| 466 | 343 | /** |
| 467 | 344 | * @since 3.04.02 |
| 468 | - * | |
| 469 | - * @return void | |
| 470 | 345 | */ |
| 471 | 346 | public static function remove_upsells() { |
| 472 | 347 | remove_action( 'frm_before_settings', 'FrmSettingsController::license_box' ); |
| 473 | 348 | remove_action( 'frm_after_settings', 'FrmSettingsController::settings_cta' ); |
| @@ -472,8 +347,13 @@ | ||
| 472 | 347 | remove_action( 'frm_before_settings', 'FrmSettingsController::license_box' ); |
| 473 | 348 | remove_action( 'frm_after_settings', 'FrmSettingsController::settings_cta' ); |
| 474 | 349 | remove_action( 'frm_add_form_style_tab_options', 'FrmFormsController::add_form_style_tab_options' ); |
| 475 | 350 | remove_action( 'frm_after_field_options', 'FrmFormsController::logic_tip' ); |
| 351 | + | |
| 352 | + if ( is_callable( 'FrmProAddonsController::renewal_message' ) ) { | |
| 353 | + // These functions moved to Pro in 4.09.01 | |
| 354 | + remove_action( 'frm_page_footer', 'FrmAppHelper::renewal_message' ); | |
| 355 | + } | |
| 476 | 356 | } |
| 477 | 357 | |
| 478 | 358 | /** |
| 479 | 359 | * If there are CURL problems on this server, wp_remote_post won't work for installing |
| @@ -479,17 +359,12 @@ | ||
| 479 | 359 | * If there are CURL problems on this server, wp_remote_post won't work for installing |
| 480 | 360 | * Use a javascript fallback instead. |
| 481 | 361 | * |
| 482 | 362 | * @since 2.0.3 |
| 483 | - * | |
| 484 | - * @return void | |
| 485 | 363 | */ |
| 486 | 364 | public static function install_js_fallback() { |
| 487 | 365 | FrmAppHelper::load_admin_wide_js(); |
| 488 | - ?> | |
| 489 | - <div id="frm_install_message"></div> | |
| 490 | - <script>jQuery(document).ready( frm_install_now );</script> | |
| 491 | - <?php | |
| 366 | + echo '<div id="hidden frm_install_message"></div><script type="text/javascript">jQuery(document).ready(function(){frm_install_now();});</script>'; | |
| 492 | 367 | } |
| 493 | 368 | |
| 494 | 369 | /** |
| 495 | 370 | * Check if the database is outdated |
| @@ -516,11 +391,8 @@ | ||
| 516 | 391 | /** |
| 517 | 392 | * Check both version number and DB number for changes |
| 518 | 393 | * |
| 519 | 394 | * @since 3.0.04 |
| 520 | - * | |
| 521 | - * @param array $atts | |
| 522 | - * @return bool | |
| 523 | 395 | */ |
| 524 | 396 | public static function compare_for_update( $atts ) { |
| 525 | 397 | $db_version = get_option( $atts['option'] ); |
| 526 | 398 | |
| @@ -539,21 +411,10 @@ | ||
| 539 | 411 | /** |
| 540 | 412 | * Check for database update and trigger js loading |
| 541 | 413 | * |
| 542 | 414 | * @since 2.0.1 |
| 543 | - * | |
| 544 | - * @return void | |
| 545 | 415 | */ |
| 546 | 416 | public static function admin_init() { |
| 547 | - if ( FrmAppHelper::is_admin_page( 'formidable' ) && 'duplicate' === FrmAppHelper::get_param( 'frm_action' ) ) { | |
| 548 | - FrmFormsController::duplicate(); | |
| 549 | - } | |
| 550 | - | |
| 551 | - if ( FrmAppHelper::is_style_editor_page() && 'save' === FrmAppHelper::get_param( 'frm_action' ) ) { | |
| 552 | - // Hook in earlier than FrmStylesController::route so we can redirect before the headers have been sent. | |
| 553 | - FrmStylesController::save_style(); | |
| 554 | - } | |
| 555 | - | |
| 556 | 417 | new FrmPersonalData(); // register personal data hooks |
| 557 | 418 | |
| 558 | 419 | if ( ! FrmAppHelper::doing_ajax() && self::needs_update() ) { |
| 559 | 420 | self::network_upgrade_site(); |
| @@ -573,112 +434,18 @@ | ||
| 573 | 434 | } |
| 574 | 435 | |
| 575 | 436 | FrmInbox::maybe_disable_screen_options(); |
| 576 | 437 | } |
| 577 | - | |
| 578 | - self::maybe_add_ip_warning(); | |
| 579 | 438 | } |
| 580 | 439 | |
| 581 | 440 | /** |
| 582 | - * Show a warning for the IP address setting if it hasn't been set. | |
| 583 | - * | |
| 584 | - * @since 6.1 | |
| 585 | - * | |
| 586 | 441 | * @return void |
| 587 | 442 | */ |
| 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. | |
| 592 | - return; | |
| 593 | - } | |
| 594 | - | |
| 595 | - if ( ! self::is_behind_proxy() ) { | |
| 596 | - // This message is only applicable when using a reverse proxy. | |
| 597 | - return; | |
| 598 | - } | |
| 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 | - } | |
| 614 | - | |
| 615 | - /** | |
| 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 | - * @return void | |
| 642 | - */ | |
| 643 | 443 | public static function admin_js() { |
| 644 | - $plugin_url = FrmAppHelper::plugin_url(); | |
| 645 | - $version = FrmAppHelper::plugin_version(); | |
| 646 | - | |
| 444 | + $version = FrmAppHelper::plugin_version(); | |
| 647 | 445 | FrmAppHelper::load_admin_wide_js(); |
| 648 | - FrmOverlayController::register_assets(); | |
| 649 | 446 | |
| 650 | - wp_register_style( 'formidable_admin_global', $plugin_url . '/css/admin/frm_admin_global.css', array(), $version ); | |
| 651 | - wp_enqueue_style( 'formidable_admin_global' ); | |
| 652 | - | |
| 653 | - wp_register_style( 'formidable-admin', $plugin_url . '/css/frm_admin.css', array(), $version ); | |
| 654 | - wp_register_style( 'formidable-grids', $plugin_url . '/css/frm_grids.css', array(), $version ); | |
| 655 | - | |
| 656 | - wp_register_script( 'formidable_dom', $plugin_url . '/js/admin/dom.js', array( 'jquery', 'jquery-ui-dialog', 'wp-i18n' ), $version, true ); | |
| 657 | - wp_register_script( 'formidable_embed', $plugin_url . '/js/admin/embed.js', array( 'formidable_dom', 'jquery-ui-autocomplete' ), $version, true ); | |
| 658 | - self::register_popper1(); | |
| 659 | - wp_register_script( 'bootstrap_tooltip', $plugin_url . '/js/bootstrap.min.js', array( 'jquery', 'popper' ), '4.6.1', true ); | |
| 660 | - wp_register_script( 'formidable_settings', $plugin_url . '/js/admin/settings.js', array(), $version, true ); | |
| 661 | - | |
| 662 | - $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); | |
| 663 | - | |
| 664 | - // Enqueue Floating Links. | |
| 665 | - $is_valid_page = | |
| 666 | - FrmAppHelper::is_formidable_admin() && | |
| 667 | - ! FrmAppHelper::is_style_editor_page() && | |
| 668 | - ! FrmAppHelper::is_admin_page( 'formidable-views-editor' ) && | |
| 669 | - ! FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ); | |
| 670 | - if ( $is_valid_page && FrmAppHelper::is_formidable_branding() ) { | |
| 671 | - self::enqueue_floating_links( $plugin_url, $version ); | |
| 672 | - } | |
| 673 | - unset( $is_valid_page ); | |
| 674 | - | |
| 675 | - if ( 'formidable-applications' === $page ) { | |
| 676 | - FrmApplicationsController::load_assets(); | |
| 677 | - return; | |
| 678 | - } | |
| 679 | - | |
| 680 | - $dependencies = array( | |
| 447 | + $dependecies = array( | |
| 681 | 448 | 'formidable_admin_global', |
| 682 | 449 | 'jquery', |
| 683 | 450 | 'jquery-ui-core', |
| 684 | 451 | 'jquery-ui-draggable', |
| @@ -685,38 +452,32 @@ | ||
| 685 | 452 | 'jquery-ui-sortable', |
| 686 | 453 | 'bootstrap_tooltip', |
| 687 | 454 | 'bootstrap-multiselect', |
| 688 | 455 | 'wp-i18n', |
| 689 | - 'wp-hooks', // Required in WP versions older than 5.7 | |
| 690 | - 'formidable_dom', | |
| 691 | - 'formidable_embed', | |
| 692 | 456 | ); |
| 693 | 457 | |
| 694 | - if ( FrmAppHelper::is_style_editor_page( 'edit' ) ) { | |
| 695 | - // We only need to load the color picker when editing styles. | |
| 696 | - $dependencies[] = 'wp-color-picker'; | |
| 458 | + if ( FrmAppHelper::is_admin_page( 'formidable-styles' ) || FrmAppHelper::is_admin_page( 'formidable-styles2' ) ) { | |
| 459 | + $dependecies[] = 'wp-color-picker'; | |
| 697 | 460 | } |
| 698 | 461 | |
| 699 | - wp_register_script( 'formidable_admin', $plugin_url . '/js/formidable_admin.js', $dependencies, $version, true ); | |
| 462 | + wp_register_script( 'formidable_admin', FrmAppHelper::plugin_url() . '/js/formidable_admin.js', $dependecies, $version, true ); | |
| 463 | + wp_register_style( 'formidable-admin', FrmAppHelper::plugin_url() . '/css/frm_admin.css', array(), $version ); | |
| 464 | + wp_register_script( 'popper', FrmAppHelper::plugin_url() . '/js/popper.min.js', array( 'jquery' ), '1.16.0', true ); | |
| 465 | + wp_register_script( 'bootstrap_tooltip', FrmAppHelper::plugin_url() . '/js/bootstrap.min.js', array( 'jquery', 'popper' ), '4.6.1', true ); | |
| 466 | + wp_register_style( 'formidable-grids', FrmAppHelper::plugin_url() . '/css/frm_grids.css', array(), $version ); | |
| 700 | 467 | |
| 701 | - if ( FrmAppHelper::on_form_listing_page() ) { | |
| 702 | - // For the existing page dropdown in the Form embed modal. | |
| 703 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); | |
| 468 | + if ( 'formidable' === FrmAppHelper::simple_get( 'page', 'sanitize_title' ) ) { | |
| 469 | + $action = FrmAppHelper::get_param( 'frm_action', '', 'sanitize_title' ); | |
| 470 | + $is_form_index = ! $action || in_array( $action, array( 'list', 'trash' ), true ); | |
| 471 | + if ( $is_form_index ) { | |
| 472 | + // For the existing page dropdown in the Form embed modal. | |
| 473 | + wp_enqueue_script( 'jquery-ui-autocomplete' ); | |
| 474 | + } | |
| 704 | 475 | } |
| 705 | 476 | |
| 706 | - wp_register_script( 'bootstrap-multiselect', $plugin_url . '/js/bootstrap-multiselect.js', array( 'jquery', 'bootstrap_tooltip', 'popper' ), '1.1.1', true ); | |
| 477 | + wp_register_script( 'bootstrap-multiselect', FrmAppHelper::plugin_url() . '/js/bootstrap-multiselect.js', array( 'jquery', 'bootstrap_tooltip', 'popper' ), '1.1.1', true ); | |
| 707 | 478 | |
| 708 | - if ( ! class_exists( 'FrmTransHooksController', false ) ) { | |
| 709 | - /** | |
| 710 | - * Gateway fields are included for add-on compatibility but we do not want it to be visible. | |
| 711 | - * They do however need to be visible when the payments submodule is active. | |
| 712 | - */ | |
| 713 | - wp_add_inline_style( | |
| 714 | - 'formidable-admin', | |
| 715 | - '#frm_builder_page li[data-ftype="gateway"] { display: none; }' | |
| 716 | - ); | |
| 717 | - } | |
| 718 | - | |
| 479 | + $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); | |
| 719 | 480 | $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' ); |
| 720 | 481 | |
| 721 | 482 | global $pagenow; |
| 722 | 483 | if ( strpos( $page, 'formidable' ) === 0 || ( $pagenow === 'edit.php' && $post_type === 'frm_display' ) ) { |
| @@ -722,11 +483,9 @@ | ||
| 722 | 483 | if ( strpos( $page, 'formidable' ) === 0 || ( $pagenow === 'edit.php' && $post_type === 'frm_display' ) ) { |
| 723 | 484 | |
| 724 | 485 | wp_enqueue_script( 'admin-widgets' ); |
| 725 | 486 | wp_enqueue_style( 'widgets' ); |
| 726 | - self::maybe_deregister_popper2(); | |
| 727 | 487 | wp_enqueue_script( 'formidable_admin' ); |
| 728 | - wp_enqueue_script( 'formidable_embed' ); | |
| 729 | 488 | FrmAppHelper::localize_script( 'admin' ); |
| 730 | 489 | |
| 731 | 490 | wp_enqueue_style( 'formidable-admin' ); |
| 732 | 491 | if ( 'formidable-styles' !== $page && 'formidable-styles2' !== $page ) { |
| @@ -757,98 +516,23 @@ | ||
| 757 | 516 | return; |
| 758 | 517 | } |
| 759 | 518 | |
| 760 | 519 | if ( $post_type === 'frm_display' ) { |
| 761 | - self::enqueue_legacy_views_assets(); | |
| 520 | + wp_enqueue_style( 'formidable-grids' ); | |
| 521 | + wp_enqueue_script( 'jquery-ui-draggable' ); | |
| 522 | + wp_enqueue_script( 'formidable_admin' ); | |
| 523 | + wp_enqueue_style( 'formidable-admin' ); | |
| 524 | + FrmAppHelper::localize_script( 'admin' ); | |
| 525 | + self::include_info_overlay(); | |
| 762 | 526 | } |
| 763 | 527 | } |
| 764 | 528 | |
| 765 | - } | |
| 766 | - | |
| 767 | - /** | |
| 768 | - * @since 6.3.2 | |
| 769 | - * | |
| 770 | - * @return void | |
| 771 | - */ | |
| 772 | - public static function admin_enqueue_scripts() { | |
| 773 | - self::load_wp_admin_style(); | |
| 774 | 529 | self::maybe_force_formidable_block_on_gutenberg_page(); |
| 775 | 530 | } |
| 776 | 531 | |
| 777 | 532 | /** |
| 778 | - * Enqueue required assets for the Legacy Views editor (Views v4.x). | |
| 533 | + * Automatically insert a Formidable block when loading Gutenberg with a $_GET['frmForm'] value set. | |
| 779 | 534 | * |
| 780 | - * @since 6.1.2 | |
| 781 | - * | |
| 782 | - * @return void | |
| 783 | - */ | |
| 784 | - private static function enqueue_legacy_views_assets() { | |
| 785 | - wp_enqueue_style( 'formidable-grids' ); | |
| 786 | - wp_enqueue_script( 'jquery-ui-draggable' ); | |
| 787 | - self::maybe_deregister_popper2(); | |
| 788 | - wp_enqueue_script( 'formidable_admin' ); | |
| 789 | - wp_add_inline_style( | |
| 790 | - 'formidable-admin', | |
| 791 | - ' | |
| 792 | - .frm-white-body.post-type-frm_display .columns-2 { | |
| 793 | - display: block; | |
| 794 | - overflow: visible; | |
| 795 | - } | |
| 796 | - | |
| 797 | - .frm-white-body.post-type-frm_display .columns-2 > div { | |
| 798 | - overflow-y: hidden; | |
| 799 | - } | |
| 800 | - | |
| 801 | - .frm-white-body.post-type-frm_display #titlediv #title-prompt-text { | |
| 802 | - padding: 3px 0 0 10px; | |
| 803 | - } | |
| 804 | - | |
| 805 | - .post-type-frm_display #field-search-input, | |
| 806 | - .post-type-frm_display #advanced-search-input { | |
| 807 | - flex: 1; | |
| 808 | - } | |
| 809 | - ' | |
| 810 | - ); | |
| 811 | - wp_enqueue_style( 'formidable-admin' ); | |
| 812 | - FrmAppHelper::localize_script( 'admin' ); | |
| 813 | - self::include_info_overlay(); | |
| 814 | - } | |
| 815 | - | |
| 816 | - /** | |
| 817 | - * Fix a Duplicator Pro conflict because it uses Popper 2. See issue #3459. | |
| 818 | - * | |
| 819 | - * @since 5.2.02.01 | |
| 820 | - * | |
| 821 | - * @return void | |
| 822 | - */ | |
| 823 | - private static function maybe_deregister_popper2() { | |
| 824 | - global $wp_scripts; | |
| 825 | - | |
| 826 | - if ( ! array_key_exists( 'popper', $wp_scripts->registered ) ) { | |
| 827 | - return; | |
| 828 | - } | |
| 829 | - | |
| 830 | - $popper = $wp_scripts->registered['popper']; | |
| 831 | - if ( version_compare( $popper->ver, '2.0', '>=' ) ) { | |
| 832 | - wp_deregister_script( 'popper' ); | |
| 833 | - self::register_popper1(); | |
| 834 | - } | |
| 835 | - } | |
| 836 | - | |
| 837 | - /** | |
| 838 | - * Register Popper required for Bootstrap 4. | |
| 839 | - * | |
| 840 | - * @since 5.2.02.01 | |
| 841 | - * | |
| 842 | - * @return void | |
| 843 | - */ | |
| 844 | - private static function register_popper1() { | |
| 845 | - wp_register_script( 'popper', FrmAppHelper::plugin_url() . '/js/popper.min.js', array( 'jquery' ), '1.16.0', true ); | |
| 846 | - } | |
| 847 | - | |
| 848 | - /** | |
| 849 | - * Automatically insert a Formidable block when loading Gutenberg when $_GET['frmForm' is set. | |
| 850 | - * | |
| 851 | 535 | * @since 5.2 |
| 852 | 536 | * |
| 853 | 537 | * @return void |
| 854 | 538 | */ |
| @@ -862,27 +546,77 @@ | ||
| 862 | 546 | if ( ! $form_id ) { |
| 863 | 547 | return; |
| 864 | 548 | } |
| 865 | 549 | |
| 866 | - self::add_js_to_inject_gutenberg_block( 'formidable/simple-form', 'formId', $form_id ); | |
| 867 | - } | |
| 550 | + ?> | |
| 551 | + <script> | |
| 552 | + ( function() { | |
| 553 | + const handleDomReady = () => { | |
| 554 | + if ( 'undefined' === typeof wp || 'undefined' === typeof wp.data || 'function' !== typeof wp.data.subscribe ) { | |
| 555 | + return; | |
| 556 | + } | |
| 868 | 557 | |
| 869 | - /** | |
| 870 | - * @since 5.3 | |
| 871 | - * | |
| 872 | - * @param string $block_name | |
| 873 | - * @param string $object_key | |
| 874 | - * @param array|string $object_id | |
| 875 | - * | |
| 876 | - * @return void | |
| 877 | - */ | |
| 878 | - public static function add_js_to_inject_gutenberg_block( $block_name, $object_key, $object_id ) { | |
| 879 | - require FrmAppHelper::plugin_path() . '/classes/views/shared/edit-page-js.php'; | |
| 558 | + const closeListener = wp.data.subscribe( | |
| 559 | + () => { | |
| 560 | + const editor = wp.data.select( 'core/editor' ); | |
| 561 | + | |
| 562 | + if ( 'function' !== typeof editor.__unstableIsEditorReady ) { | |
| 563 | + closeListener(); | |
| 564 | + return; | |
| 565 | + } | |
| 566 | + | |
| 567 | + const isReady = editor.__unstableIsEditorReady(); | |
| 568 | + if ( isReady ) { | |
| 569 | + closeListener(); | |
| 570 | + requestAnimationFrame( () => injectFormidableBlock() ); | |
| 571 | + } | |
| 572 | + } | |
| 573 | + ); | |
| 574 | + } | |
| 575 | + | |
| 576 | + document.addEventListener( 'DOMContentLoaded', handleDomReady ); | |
| 577 | + | |
| 578 | + const injectFormidableBlock = () => { | |
| 579 | + insertedBlock = wp.blocks.createBlock( | |
| 580 | + 'formidable/simple-form', | |
| 581 | + { | |
| 582 | + formId: '<?php echo absint( $form_id ); ?>' | |
| 583 | + } | |
| 584 | + ); | |
| 585 | + | |
| 586 | + const getBlocks = () => wp.data.select( 'core/editor' ).getBlocks(); | |
| 587 | + const blockList = getBlocks(); | |
| 588 | + | |
| 589 | + const closeListener = wp.data.subscribe( | |
| 590 | + () => { | |
| 591 | + const currentBlocks = getBlocks(); | |
| 592 | + if ( currentBlocks === blockList ) { | |
| 593 | + return; | |
| 594 | + } | |
| 595 | + | |
| 596 | + closeListener(); | |
| 597 | + const block = currentBlocks[ currentBlocks.length - 1 ]; | |
| 598 | + const interval = setInterval( | |
| 599 | + () => { | |
| 600 | + const scrollTarget = document.getElementById( 'block-' + block.clientId ); | |
| 601 | + const form = scrollTarget.querySelector( 'form' ); | |
| 602 | + if ( form ) { | |
| 603 | + scrollTarget.scrollIntoView({ behavior: 'smooth' }); | |
| 604 | + clearInterval( interval ); | |
| 605 | + } | |
| 606 | + }, | |
| 607 | + 50 | |
| 608 | + ); | |
| 609 | + } | |
| 610 | + ); | |
| 611 | + | |
| 612 | + wp.data.dispatch( 'core/block-editor' ).insertBlocks( insertedBlock ); | |
| 613 | + }; | |
| 614 | + }() ); | |
| 615 | + </script> | |
| 616 | + <?php | |
| 880 | 617 | } |
| 881 | 618 | |
| 882 | - /** | |
| 883 | - * @return void | |
| 884 | - */ | |
| 885 | 619 | public static function load_lang() { |
| 886 | 620 | load_plugin_textdomain( 'formidable', false, FrmAppHelper::plugin_folder() . '/languages/' ); |
| 887 | 621 | } |
| 888 | 622 | |
| @@ -889,10 +623,8 @@ | ||
| 889 | 623 | /** |
| 890 | 624 | * Check if the styles are updated when a form is loaded on the front-end |
| 891 | 625 | * |
| 892 | 626 | * @since 3.0.1 |
| 893 | - * | |
| 894 | - * @return void | |
| 895 | 627 | */ |
| 896 | 628 | public static function maybe_update_styles() { |
| 897 | 629 | if ( self::needs_update() ) { |
| 898 | 630 | self::network_upgrade_site(); |
| @@ -900,10 +632,8 @@ | ||
| 900 | 632 | } |
| 901 | 633 | |
| 902 | 634 | /** |
| 903 | 635 | * @since 3.0 |
| 904 | - * | |
| 905 | - * @return void | |
| 906 | 636 | */ |
| 907 | 637 | public static function create_rest_routes() { |
| 908 | 638 | $args = array( |
| 909 | 639 | 'methods' => 'GET', |
| @@ -938,10 +668,8 @@ | ||
| 938 | 668 | * |
| 939 | 669 | * @since 2.0.1 |
| 940 | 670 | * |
| 941 | 671 | * @param int $blog_id Blog ID. |
| 942 | - * | |
| 943 | - * @return void | |
| 944 | 672 | */ |
| 945 | 673 | public static function network_upgrade_site( $blog_id = 0 ) { |
| 946 | 674 | // Flag to check if install is happening as intended. |
| 947 | 675 | set_transient( 'frm_updating_api', true, MINUTE_IN_SECONDS ); |
| @@ -965,10 +693,8 @@ | ||
| 965 | 693 | |
| 966 | 694 | /** |
| 967 | 695 | * Make sure WP_Site_Health has been included because it is required when calling rest_do_request. |
| 968 | 696 | * Check first that the file exists because WP_Site_Health was only introduced in WordPress 5.2. |
| 969 | - * | |
| 970 | - * @return void | |
| 971 | 697 | */ |
| 972 | 698 | private static function maybe_add_wp_site_health() { |
| 973 | 699 | if ( ! class_exists( 'WP_Site_Health' ) ) { |
| 974 | 700 | $wp_site_health_path = ABSPATH . 'wp-admin/includes/class-wp-site-health.php'; |
| @@ -979,10 +705,8 @@ | ||
| 979 | 705 | } |
| 980 | 706 | |
| 981 | 707 | /** |
| 982 | 708 | * @since 3.0 |
| 983 | - * | |
| 984 | - * @return true | |
| 985 | 709 | */ |
| 986 | 710 | public static function api_install() { |
| 987 | 711 | delete_transient( 'frm_updating_api' ); |
| 988 | 712 | if ( self::needs_update() ) { |
| @@ -1001,29 +725,19 @@ | ||
| 1001 | 725 | * Silent database upgrade (no redirect). |
| 1002 | 726 | * Called via ajax request during network upgrade process. |
| 1003 | 727 | * |
| 1004 | 728 | * @since 2.0.1 |
| 1005 | - * | |
| 1006 | - * @return void | |
| 1007 | 729 | */ |
| 1008 | 730 | public static function ajax_install() { |
| 1009 | - FrmAppHelper::permission_check( 'frm_change_settings' ); | |
| 1010 | - check_ajax_referer( 'frm_ajax', 'nonce' ); | |
| 1011 | 731 | self::api_install(); |
| 1012 | 732 | wp_die(); |
| 1013 | 733 | } |
| 1014 | 734 | |
| 1015 | - /** | |
| 1016 | - * @return void | |
| 1017 | - */ | |
| 1018 | 735 | public static function install() { |
| 1019 | 736 | $frmdb = new FrmMigrate(); |
| 1020 | 737 | $frmdb->upgrade(); |
| 1021 | 738 | } |
| 1022 | 739 | |
| 1023 | - /** | |
| 1024 | - * @return void | |
| 1025 | - */ | |
| 1026 | 740 | public static function uninstall() { |
| 1027 | 741 | FrmAppHelper::permission_check( 'administrator' ); |
| 1028 | 742 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 1029 | 743 | |
| @@ -1047,11 +761,8 @@ | ||
| 1047 | 761 | |
| 1048 | 762 | return $tables; |
| 1049 | 763 | } |
| 1050 | 764 | |
| 1051 | - /** | |
| 1052 | - * @return void | |
| 1053 | - */ | |
| 1054 | 765 | public static function deauthorize() { |
| 1055 | 766 | FrmAppHelper::permission_check( 'frm_change_settings' ); |
| 1056 | 767 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 1057 | 768 | |
| @@ -1061,33 +772,8 @@ | ||
| 1061 | 772 | delete_site_option( 'frmpro-authorized' ); |
| 1062 | 773 | wp_die(); |
| 1063 | 774 | } |
| 1064 | 775 | |
| 1065 | - /** | |
| 1066 | - * This is triggered when Formidable is activated. | |
| 1067 | - * | |
| 1068 | - * @return void | |
| 1069 | - */ | |
| 1070 | - public static function handle_activation() { | |
| 1071 | - self::maybe_activate_payment_cron(); | |
| 1072 | - } | |
| 1073 | - | |
| 1074 | - /** | |
| 1075 | - * The payment cron is unscheduled when Formidable is deactivated. | |
| 1076 | - * We need to add it back again on activation if Stripe is configured. | |
| 1077 | - * | |
| 1078 | - * @since 6.5 | |
| 1079 | - * | |
| 1080 | - * @return void | |
| 1081 | - */ | |
| 1082 | - private static function maybe_activate_payment_cron() { | |
| 1083 | - if ( ! FrmStrpLiteConnectHelper::stripe_connect_is_setup() ) { | |
| 1084 | - return; | |
| 1085 | - } | |
| 1086 | - | |
| 1087 | - FrmTransLiteAppController::maybe_schedule_cron(); | |
| 1088 | - } | |
| 1089 | - | |
| 1090 | 776 | public static function set_footer_text( $text ) { |
| 1091 | 777 | if ( FrmAppHelper::is_formidable_admin() ) { |
| 1092 | 778 | $text = ''; |
| 1093 | 779 | } |
| @@ -1095,102 +781,56 @@ | ||
| 1095 | 781 | return $text; |
| 1096 | 782 | } |
| 1097 | 783 | |
| 1098 | 784 | /** |
| 1099 | - * Add admin footer links. | |
| 785 | + * Include icons on page for Embed Form modal. | |
| 1100 | 786 | * |
| 1101 | - * @since 6.4.1 | |
| 787 | + * @since 5.2 | |
| 1102 | 788 | * |
| 1103 | 789 | * @return void |
| 1104 | 790 | */ |
| 1105 | - public static function add_admin_footer_links() { | |
| 1106 | - $post_type = FrmAppHelper::simple_get( 'post_type', 'sanitize_title' ); | |
| 1107 | - | |
| 1108 | - // Check admin privileges, screen mode, and branding | |
| 1109 | - $is_not_admin = ! FrmAppHelper::is_formidable_admin() && $post_type !== 'frm_logs'; | |
| 1110 | - $is_full_screen = FrmAppHelper::is_full_screen(); | |
| 1111 | - $is_not_formidable_branding = ! FrmAppHelper::is_formidable_branding(); | |
| 1112 | - | |
| 1113 | - // Exit if any of the above conditions are met | |
| 1114 | - if ( $is_not_admin || $is_full_screen || $is_not_formidable_branding ) { | |
| 1115 | - return; | |
| 1116 | - } | |
| 1117 | - | |
| 1118 | - include FrmAppHelper::plugin_path() . '/classes/views/shared/admin-footer-links.php'; | |
| 791 | + public static function include_embed_form_icons() { | |
| 792 | + require_once FrmAppHelper::plugin_path() . '/classes/views/frm-forms/_embed_form_icons.php'; | |
| 1119 | 793 | } |
| 1120 | 794 | |
| 1121 | 795 | /** |
| 1122 | - * @deprecated 3.0.04 | |
| 1123 | - * | |
| 796 | + * @deprecated 1.07.05 | |
| 1124 | 797 | * @codeCoverageIgnore |
| 1125 | - * | |
| 1126 | - * @return void | |
| 1127 | 798 | */ |
| 1128 | - public static function activation_install() { | |
| 1129 | - FrmDeprecated::activation_install(); | |
| 799 | + public static function get_form_shortcode( $atts ) { | |
| 800 | + return FrmDeprecated::get_form_shortcode( $atts ); | |
| 1130 | 801 | } |
| 1131 | 802 | |
| 1132 | 803 | /** |
| 1133 | - * @deprecated 3.0 | |
| 804 | + * @deprecated 2.5.4 | |
| 1134 | 805 | * @codeCoverageIgnore |
| 1135 | 806 | */ |
| 1136 | - public static function page_route( $content ) { | |
| 1137 | - return FrmDeprecated::page_route( $content ); | |
| 807 | + public static function widget_text_filter( $content ) { | |
| 808 | + return FrmDeprecated::widget_text_filter( $content ); | |
| 1138 | 809 | } |
| 1139 | 810 | |
| 1140 | 811 | /** |
| 1141 | - * Include icons on page for Embed Form modal. | |
| 812 | + * Deprecated in favor of wpmu_upgrade_site | |
| 1142 | 813 | * |
| 1143 | - * @since 5.2 | |
| 1144 | - * | |
| 1145 | - * @return void | |
| 814 | + * @deprecated 2.3 | |
| 815 | + * @codeCoverageIgnore | |
| 1146 | 816 | */ |
| 1147 | - public static function include_embed_form_icons() { | |
| 1148 | - _deprecated_function( __METHOD__, '5.3' ); | |
| 817 | + public static function front_head() { | |
| 818 | + FrmDeprecated::front_head(); | |
| 1149 | 819 | } |
| 1150 | 820 | |
| 1151 | 821 | /** |
| 1152 | - * @deprecated 1.07.05 This is still referenced in the API add on as of v1.13. | |
| 822 | + * @deprecated 3.0.04 | |
| 1153 | 823 | * @codeCoverageIgnore |
| 1154 | - * | |
| 1155 | - * @param array $atts | |
| 1156 | - * @return string | |
| 1157 | 824 | */ |
| 1158 | - public static function get_form_shortcode( $atts ) { | |
| 1159 | - _deprecated_function( __FUNCTION__, '1.07.05', 'FrmFormsController::get_form_shortcode' ); | |
| 1160 | - return FrmFormsController::get_form_shortcode( $atts ); | |
| 825 | + public static function activation_install() { | |
| 826 | + FrmDeprecated::activation_install(); | |
| 1161 | 827 | } |
| 1162 | 828 | |
| 1163 | 829 | /** |
| 1164 | - * Handles Floating Links' scripts and styles enqueueing. | |
| 1165 | - * | |
| 1166 | - * @since 6.4 | |
| 1167 | - * | |
| 1168 | - * @param string $plugin_url URL of the plugin. | |
| 1169 | - * @param string $version Current version of the plugin. | |
| 1170 | - * @return void | |
| 830 | + * @deprecated 3.0 | |
| 831 | + * @codeCoverageIgnore | |
| 1171 | 832 | */ |
| 1172 | - private static function enqueue_floating_links( $plugin_url, $version ) { | |
| 1173 | - if ( ! $plugin_url || ! $version ) { | |
| 1174 | - // If any required parameters are missing, exit early. | |
| 1175 | - return; | |
| 1176 | - } | |
| 1177 | - | |
| 1178 | - // Enqueue the Floating Links styles. | |
| 1179 | - wp_enqueue_style( 's11-floating-links', $plugin_url . '/css/packages/s11-floating-links.css', array(), $version ); | |
| 1180 | - | |
| 1181 | - // Enqueue the Floating Links script. | |
| 1182 | - wp_enqueue_script( 's11-floating-links', $plugin_url . '/js/packages/floating-links/s11-floating-links.js', array(), $version, true ); | |
| 1183 | - | |
| 1184 | - // Enqueue the config script. | |
| 1185 | - wp_enqueue_script( 's11-floating-links-config', $plugin_url . '/js/packages/floating-links/config.js', array( 'wp-i18n' ), $version, true ); | |
| 1186 | - | |
| 1187 | - if ( function_exists( 'wp_set_script_translations' ) ) { | |
| 1188 | - wp_set_script_translations( 's11-floating-links-config', 's11-' ); | |
| 1189 | - } | |
| 1190 | - | |
| 1191 | - $floating_links_data = array( | |
| 1192 | - 'proIsInstalled' => FrmAppHelper::pro_is_installed(), | |
| 1193 | - ); | |
| 1194 | - wp_localize_script( 's11-floating-links-config', 's11FloatingLinksData', $floating_links_data ); | |
| 833 | + public static function page_route( $content ) { | |
| 834 | + return FrmDeprecated::page_route( $content ); | |
| 1195 | 835 | } |
| 1196 | 836 | } |