File Editor
Directories:
.. (Back)
builder
Files:
admin.php
ajax-actions.php
class-about.php
class-editor.php
class-install-skin.php
class-menu.php
class-notices.php
class-review.php
class-settings.php
class-welcome.php
settings-api.php
Create New File
Create
Edit File: admin.php
<?php /** * Global admin related items and functionality. * * @since 1.3.9 */ if ( ! defined( 'ABSPATH' ) ) { exit; } use WPForms\Admin\Notice; /** * Load styles for all WPForms-related admin screens. * * @since 1.3.9 */ function wpforms_admin_styles() { if ( ! wpforms_is_admin_page() ) { return; } $min = wpforms_get_min_suffix(); // jQuery.Confirm Reloaded. wp_enqueue_style( 'jquery-confirm', WPFORMS_PLUGIN_URL . 'assets/lib/jquery.confirm/jquery-confirm.min.css', [], '1.0.0' ); // Minicolors (color picker). wp_enqueue_style( 'minicolors', WPFORMS_PLUGIN_URL . 'assets/lib/jquery.minicolors/jquery.minicolors.min.css', [], '2.3.6' ); // FontAwesome. wp_enqueue_style( 'wpforms-font-awesome', WPFORMS_PLUGIN_URL . 'assets/lib/font-awesome/font-awesome.min.css', null, '4.7.0' ); // Main admin styles. wp_enqueue_style( 'wpforms-admin', WPFORMS_PLUGIN_URL . "assets/css/admin{$min}.css", [], WPFORMS_VERSION ); wp_enqueue_style( 'wpforms-multiselect-checkboxes', WPFORMS_PLUGIN_URL . 'assets/lib/wpforms-multiselect/wpforms-multiselect-checkboxes.min.css', [], '1.0.0' ); // Remove TinyMCE editor styles from third-party themes and plugins. remove_editor_styles(); // WordPress 5.7 color set. if ( version_compare( get_bloginfo( 'version' ), '5.7', '>=' ) ) { wp_enqueue_style( 'wpforms-admin-wp5.7-color', WPFORMS_PLUGIN_URL . "assets/css/admin-wp5.7-colors{$min}.css", [ 'wpforms-admin' ], WPFORMS_VERSION ); } } add_action( 'admin_enqueue_scripts', 'wpforms_admin_styles', 5 ); /** * Load scripts for all WPForms-related admin screens. * * @since 1.3.9 * * @noinspection HtmlUnknownTarget */ function wpforms_admin_scripts() { if ( ! wpforms_is_admin_page() ) { return; } $min = wpforms_get_min_suffix(); wp_enqueue_media(); // jQuery.Confirm Reloaded. wp_enqueue_script( 'jquery-confirm', WPFORMS_PLUGIN_URL . 'assets/lib/jquery.confirm/jquery-confirm.min.js', [ 'jquery' ], '1.0.0', false ); // Minicolors (color picker). wp_enqueue_script( 'minicolors', WPFORMS_PLUGIN_URL . 'assets/lib/jquery.minicolors/jquery.minicolors.min.js', [ 'jquery' ], '2.3.6', false ); // Choices.js. wp_enqueue_script( 'choicesjs', WPFORMS_PLUGIN_URL . 'assets/lib/choices.min.js', [], '10.2.0', false ); // jQuery Conditionals. wp_enqueue_script( 'jquery-conditionals', WPFORMS_PLUGIN_URL . 'assets/lib/jquery.conditionals.min.js', [ 'jquery' ], '1.0.1', false ); wp_enqueue_script( 'wpforms-generic-utils', WPFORMS_PLUGIN_URL . "assets/js/share/utils{$min}.js", [ 'jquery' ], WPFORMS_VERSION, true ); // Load admin utils JS. wp_enqueue_script( 'wpforms-admin-utils', WPFORMS_PLUGIN_URL . "assets/js/admin/share/admin-utils{$min}.js", [ 'jquery' ], WPFORMS_VERSION, true ); // Main admin script. wp_enqueue_script( 'wpforms-admin', WPFORMS_PLUGIN_URL . "assets/js/admin/admin{$min}.js", [ 'jquery' ], WPFORMS_VERSION, false ); wp_enqueue_script( 'wpforms-multiselect-checkboxes', WPFORMS_PLUGIN_URL . 'assets/lib/wpforms-multiselect/wpforms-multiselect-checkboxes.min.js', [], WPFORMS_VERSION, true ); $default_choicesjs_loading_text = esc_html__( 'Loading...', 'wpforms-lite' ); $default_choicesjs_no_results_text = esc_html__( 'No results found', 'wpforms-lite' ); $default_choicesjs_no_choices_text = esc_html__( 'No choices to choose from', 'wpforms-lite' ); $image_extensions = wpforms_chain( get_allowed_mime_types() ) ->map( static function ( $mime ) { return strpos( $mime, 'image/' ) === 0 ? $mime : ''; } ) ->array_filter() ->array_values() ->value(); $strings = [ 'addon_activate' => esc_html__( 'Activate', 'wpforms-lite' ), 'addon_activated' => esc_html__( 'Activated', 'wpforms-lite' ), 'addon_active' => esc_html__( 'Active', 'wpforms-lite' ), 'addon_deactivate' => esc_html__( 'Deactivate', 'wpforms-lite' ), 'addon_inactive' => esc_html__( 'Inactive', 'wpforms-lite' ), 'addon_install' => esc_html__( 'Install Addon', 'wpforms-lite' ), 'addon_error' => sprintf( wp_kses( /* translators: %1$s - addon download URL, %2$s - link to manual installation guide, %3$s - link to contact support. */ __( 'Could not install the addon. Please <a href="%1$s" target="_blank" rel="noopener noreferrer">download it from wpforms.com</a> and <a href="%2$s" target="_blank" rel="noopener noreferrer">install it manually</a>, or <a href="%3$s" target="_blank" rel="noopener noreferrer">contact support</a> for assistance.', 'wpforms-lite' ), [ 'a' => [ 'href' => true, 'target' => true, 'rel' => true, ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/account/licenses/', 'Licenses', 'Addons Error' ) ), esc_url( wpforms_utm_link( 'https://wpforms.com/docs/how-to-manually-install-addons-in-wpforms/', 'Addons Doc', 'Addons Error' ) ), esc_url( wpforms_utm_link( 'https://wpforms.com/contact/', 'Contact', 'Addons Error' ) ) ), 'plugin_error' => esc_html__( 'Could not install the plugin automatically. Please download and install it manually.', 'wpforms-lite' ), 'addon_search' => esc_html__( 'Searching Addons', 'wpforms-lite' ), 'ajax_url' => admin_url( 'admin-ajax.php' ), 'cancel' => esc_html__( 'Cancel', 'wpforms-lite' ), 'continue' => esc_html__( 'Continue', 'wpforms-lite' ), 'close' => esc_html__( 'Close', 'wpforms-lite' ), 'close_refresh' => esc_html__( 'Close and Refresh', 'wpforms-lite' ), 'column_selector_title' => esc_html__( 'Change columns to display', 'wpforms-lite' ), 'column_selector_no_fields' => esc_html__( 'Sorry, there are no form fields that match your criteria.', 'wpforms-lite' ), 'column_selector_no_meta' => esc_html__( 'Sorry, there is no entry meta that match your criteria.', 'wpforms-lite' ), 'entry_delete_confirm' => esc_html__( 'Are you sure you want to delete this entry? This will also remove all associated files, notes, and logs.', 'wpforms-lite' ), 'entry_delete_all_confirm' => esc_html__( 'Are you sure you want to delete ALL entries? This will also remove all associated files, notes, and logs.', 'wpforms-lite' ), 'entry_delete_n_confirm' => sprintf( /* translators: %s - entry count. */ esc_html__( 'Are you sure you want to delete %s entries? This will also remove all associated files, notes, and logs.', 'wpforms-lite' ), '{entry_count}' ), 'entry_trash_confirm' => esc_html__( 'Are you sure you want to trash this entry? This will also remove all associated files, notes, and logs.', 'wpforms-lite' ), 'entry_trash_all_confirm' => esc_html__( 'Are you sure you want to trash ALL entries? This will also remove all associated files, notes, and logs.', 'wpforms-lite' ), 'entry_trash_n_confirm' => sprintf( /* translators: %s - entry count. */ esc_html__( 'Are you sure you want to trash %s entries? This will also remove all associated files, notes, and logs.', 'wpforms-lite' ), '{entry_count}' ), 'entry_empty_fields_hide' => esc_html__( 'Hide Empty Fields', 'wpforms-lite' ), 'entry_empty_fields_show' => esc_html__( 'Show Empty Fields', 'wpforms-lite' ), 'entry_note_delete_confirm' => esc_html__( 'Are you sure you want to delete this note?', 'wpforms-lite' ), 'entry_unstar' => esc_html__( 'Unstar entry', 'wpforms-lite' ), 'entry_star' => esc_html__( 'Star entry', 'wpforms-lite' ), 'entry_read' => esc_html__( 'Mark entry read', 'wpforms-lite' ), 'entry_unread' => esc_html__( 'Mark entry unread', 'wpforms-lite' ), 'form_delete_confirm' => esc_html__( 'Are you sure you want to delete this form and all its entries?', 'wpforms-lite' ), 'template_delete_confirm' => esc_html__( 'Are you sure you want to delete this template and all its entries?', 'wpforms-lite' ), 'form_delete_n_confirm' => esc_html__( 'Are you sure you want to delete the selected forms and all their entries?', 'wpforms-lite' ), 'form_delete_all_confirm' => esc_html__( 'Are you sure you want to delete ALL the forms in the trash and all their entries?', 'wpforms-lite' ), 'form_duplicate_confirm' => esc_html__( 'Are you sure you want to duplicate this form?', 'wpforms-lite' ), 'template_duplicate_confirm' => esc_html__( 'Are you sure you want to duplicate this template?', 'wpforms-lite' ), 'heads_up' => esc_html__( 'Heads up!', 'wpforms-lite' ), 'importer_forms_required' => esc_html__( 'Please select at least one form to import.', 'wpforms-lite' ), 'isPro' => wpforms()->is_pro(), 'nonce' => wp_create_nonce( 'wpforms-admin' ), 'almost_done' => esc_html__( 'Almost Done', 'wpforms-lite' ), 'thanks_for_interest' => esc_html__( 'Thanks for your interest in WPForms Pro!', 'wpforms-lite' ), 'oops' => esc_html__( 'Oops!', 'wpforms-lite' ), 'uh_oh' => esc_html__( 'Uh oh!', 'wpforms-lite' ), 'ok' => esc_html__( 'OK', 'wpforms-lite' ), 'plugin_install_activate_btn' => esc_html__( 'Install and Activate', 'wpforms-lite' ), 'plugin_install_activate_confirm' => esc_html__( 'needs to be installed and activated to import its forms. Would you like us to install and activate it for you?', 'wpforms-lite' ), 'plugin_activate_btn' => esc_html__( 'Activate', 'wpforms-lite' ), 'plugin_activate_confirm' => esc_html__( 'needs to be activated to import its forms. Would you like us to activate it for you?', 'wpforms-lite' ), 'provider_delete_confirm' => esc_html__( 'Are you sure you want to disconnect this account?', 'wpforms-lite' ), 'provider_delete_error' => esc_html__( 'Could not disconnect this account.', 'wpforms-lite' ), 'provider_auth_error' => esc_html__( 'Could not authenticate with the provider.', 'wpforms-lite' ), 'connecting' => esc_html__( 'Connecting...', 'wpforms-lite' ), 'save_refresh' => esc_html__( 'Save and Refresh', 'wpforms-lite' ), 'save_changes' => esc_html__( 'Save Changes', 'wpforms-lite' ), 'server_error' => esc_html__( 'Unfortunately there was a server connection error.', 'wpforms-lite' ), 'unknown_error' => esc_html__( 'Unknown error.', 'wpforms-lite' ), 'settings_form_style_base' => sprintf( wp_kses( /* translators: %s - WPForms.com docs page URL. */ __( 'You\'ve selected <strong>Base Styling Only</strong>, which may result in styling issues. <a href="%s" target="_blank" rel="noopener noreferrer">Please check out our tutorial</a> for common issues and recommendations.', 'wpforms-lite' ), [ 'strong' => [], 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/docs/how-to-choose-an-include-form-styling-setting/', 'settings-license-modal', 'Base Styling Only' ) ) ), 'settings_form_style_none' => sprintf( wp_kses( /* translators: %s - WPForms.com docs page URL. */ __( 'You\'ve selected <strong>No Styling</strong>, which will likely result in significant styling issues and is recommended only for developers. <a href="%s" target="_blank" rel="noopener noreferrer">Please check out our tutorial</a> for more details and recommendations.', 'wpforms-lite' ), [ 'strong' => [], 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/docs/how-to-choose-an-include-form-styling-setting/', 'settings-license-modal', 'No Styling' ) ) ), 'testing' => esc_html__( 'Testing', 'wpforms-lite' ), 'recreating' => esc_html__( 'Recreating', 'wpforms-lite' ), 'upgrade_completed' => esc_html__( 'Upgrade was successfully completed!', 'wpforms-lite' ), 'upload_image_title' => esc_html__( 'Upload or Choose Your Image', 'wpforms-lite' ), 'upload_image_button' => esc_html__( 'Use Image', 'wpforms-lite' ), 'upload_image_extensions' => $image_extensions, 'upload_image_extensions_error' => esc_html__( 'You tried uploading a file type that is not allowed. Please try again.', 'wpforms-lite' ), 'upgrade_modal' => wpforms_get_upgrade_modal_text(), 'choicesjs_loading' => $default_choicesjs_loading_text, 'choicesjs_no_results' => $default_choicesjs_no_results_text, 'choicesjs_no_choices' => $default_choicesjs_no_choices_text, 'debug' => wpforms_debug(), 'edit_license' => esc_html__( 'To edit the License Key, please first click the Remove Key button. Please note that removing this key will remove access to updates, addons, and support.', 'wpforms-lite' ), 'something_went_wrong' => esc_html__( 'Something went wrong', 'wpforms-lite' ), 'success' => esc_html__( 'Success', 'wpforms-lite' ), 'loading' => esc_html__( 'Loading...', 'wpforms-lite' ), 'use_default_template' => esc_html__( 'Use Default Template', 'wpforms-lite' ), 'error_select_template' => esc_html__( 'Something went wrong while applying the form template. Please try again. If the error persists, contact our support team.', 'wpforms-lite' ), 'try_again' => sprintf( wp_kses( /* translators: %s - link to WPForms.com docs page. */ __( 'Something went wrong. Please try again, and if the problem persists, <a href="%1$s" target="_blank" rel="noopener noreferrer">contact our support team</a>.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/contact/', 'error-modal', 'contact our support team' ) ) ), ]; /** * Allow theme/plugin developers to adjust main strings on backend/admin part. * * @since 1.3.9 * * @param array $strings Main admin localized strings. */ $strings = (array) apply_filters( 'wpforms_admin_strings', $strings ); /** * Allow theme/plugin developers to adjust Choices.js settings on backend/admin part. * * @see https://github.com/Choices-js/Choices#setup For configuration options. * * @since 1.7.3 * * @param array $choicesjs_config Choicesjs configuration. */ $choicesjs_config = (array) apply_filters( 'wpforms_admin_scripts_choicesjs_config', [ 'searchEnabled' => false, // Forces the search to look for exact matches anywhere in the string. 'fuseOptions' => [ 'threshold' => 0.1, 'distance' => 1000, ], 'loadingText' => ! empty( $strings['choicesjs_loading'] ) ? $strings['choicesjs_loading'] : $default_choicesjs_loading_text, 'noResultsText' => ! empty( $strings['choicesjs_no_results'] ) ? $strings['choicesjs_no_results'] : $default_choicesjs_no_results_text, 'noChoicesText' => ! empty( $strings['choicesjs_no_choices'] ) ? $strings['choicesjs_no_choices'] : $default_choicesjs_no_choices_text, ] ); wp_localize_script( 'wpforms-admin', 'wpforms_admin_choicesjs_config', $choicesjs_config ); wp_localize_script( 'wpforms-admin', 'wpforms_admin', $strings ); } add_action( 'admin_enqueue_scripts', 'wpforms_admin_scripts' ); /** * Add body class to WPForms admin pages for easy reference. * * @since 1.3.9 * * @param string $classes CSS classes, space separated. * * @return string */ function wpforms_admin_body_class( $classes ) { if ( ! wpforms_is_admin_page() ) { return $classes; } return "$classes wpforms-admin-page"; } add_filter( 'admin_body_class', 'wpforms_admin_body_class' ); /** * Output the WPForms admin header. * * @since 1.3.9 */ function wpforms_admin_header() { // Bail if we're not on a WPForms screen or page (also exclude form builder). if ( ! wpforms_is_admin_page() ) { return; } /** * Prevent admin header outputting if needed. * * @since 1.5.7 * * @param bool $is_admin_header_visible True if admin page header should be outputted. */ if ( ! apply_filters( 'wpforms_admin_header', true ) ) { return; } // Omit header from the Welcome activation screen. // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput.InputNotValidated if ( sanitize_key( $_REQUEST['page'] ) === 'wpforms-getting-started' ) { return; } /** * Fire before the admin header is outputted. * * @since 1.5.7 */ do_action( 'wpforms_admin_header_before' ); ?> <div id="wpforms-header-temp"></div> <div id="wpforms-header" class="wpforms-header"> <img class="wpforms-header-logo" src="<?php echo esc_url( WPFORMS_PLUGIN_URL . 'assets/images/logo.png' ); ?>" alt="WPForms Logo"> </div> <?php /** * Fire after the admin header is outputted. * * @since 1.5.7 */ do_action( 'wpforms_admin_header_after' ); } add_action( 'in_admin_header', 'wpforms_admin_header', 100 ); /** * Remove non-WPForms notices from WPForms pages. * * @since 1.3.9 * @since 1.6.9 Added callback for removing on `admin_footer` hook. */ function wpforms_admin_hide_unrelated_notices() { // phpcs:ignore Generic.Metrics.CyclomaticComplexity.MaxExceeded, Generic.Metrics.NestingLevel.MaxExceeded if ( ! wpforms_is_admin_page() ) { return; } global $wp_filter; // Define rules to remove callbacks. $rules = [ 'user_admin_notices' => [], // remove all callbacks. 'admin_notices' => [], 'all_admin_notices' => [], 'admin_footer' => [ 'render_delayed_admin_notices', // remove this particular callback. ], ]; // Extra deny callbacks (will be removed for each hook tag defined in $rules). $common_deny_callbacks = [ 'wpformsdb_admin_notice', // 'Database for WPForms' plugin. ]; $notice_types = array_keys( $rules ); foreach ( $notice_types as $notice_type ) { if ( empty( $wp_filter[ $notice_type ]->callbacks ) || ! is_array( $wp_filter[ $notice_type ]->callbacks ) ) { continue; } $remove_all_filters = empty( $rules[ $notice_type ] ); foreach ( $wp_filter[ $notice_type ]->callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $arr ) { if ( is_object( $arr['function'] ) && is_callable( $arr['function'] ) ) { if ( $remove_all_filters ) { unset( $wp_filter[ $notice_type ]->callbacks[ $priority ][ $name ] ); } continue; } $class = ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) ? strtolower( get_class( $arr['function'][0] ) ) : ''; // Remove all callbacks except WPForms notices. if ( $remove_all_filters && strpos( $class, 'wpforms' ) === false ) { unset( $wp_filter[ $notice_type ]->callbacks[ $priority ][ $name ] ); continue; } $cb = is_array( $arr['function'] ) ? $arr['function'][1] : $arr['function']; // Remove a specific callback. if ( ! $remove_all_filters ) { if ( in_array( $cb, $rules[ $notice_type ], true ) ) { unset( $wp_filter[ $notice_type ]->callbacks[ $priority ][ $name ] ); } continue; } // Remove non-WPForms callbacks from `$common_deny_callbacks` denylist. if ( in_array( $cb, $common_deny_callbacks, true ) ) { unset( $wp_filter[ $notice_type ]->callbacks[ $priority ][ $name ] ); } } } } } add_action( 'admin_print_scripts', 'wpforms_admin_hide_unrelated_notices' ); /** * Upgrade a link used within the various admin pages. * * Previously was only included as a method in wpforms-lite.php, but made * available globally in 1.3.9. * * @since 1.3.9 * * @param string $medium URL parameter: utm_medium. * @param string $content URL parameter: utm_content. * * @return string */ function wpforms_admin_upgrade_link( $medium = 'link', $content = '' ) { $url = 'https://wpforms.com/lite-upgrade/'; if ( wpforms()->is_pro() ) { $license_key = wpforms_get_license_key(); $url = add_query_arg( 'license_key', sanitize_text_field( $license_key ), 'https://wpforms.com/pricing/' ); } // phpcs:ignore WPForms.Comments.PHPDocHooks.RequiredHookDocumentation $upgrade = wpforms_utm_link( $url, apply_filters( 'wpforms_upgrade_link_medium', $medium ), $content ); /** * Modify upgrade link. * * @since 1.5.1 * * @param string $upgrade Upgrade links. */ return apply_filters( 'wpforms_upgrade_link', $upgrade ); } /** * Check the current PHP version and display a notice if on unsupported PHP. * * @since 1.4.0.1 * @since 1.5.0 Raising this awareness of old PHP version message from 5.2 to 5.3. * @since 1.7.9 Raising this awareness of old PHP version message to 7.1. * @since 1.8.4 Raising this awareness of old PHP version message to 7.3. * * @noinspection HtmlUnknownTarget */ function wpforms_check_php_version() { // Display for PHP below 7.4. if ( PHP_VERSION_ID >= 70400 ) { return; } // Display for admins only. if ( ! is_super_admin() ) { return; } // Display on Dashboard page only. if ( isset( $GLOBALS['pagenow'] ) && $GLOBALS['pagenow'] !== 'index.php' ) { return; } // Display the notice, finally. Notice::error( '<p>' . sprintf( wp_kses( /* translators: %1$s - WPForms plugin name; %2$s - WPForms.com URL to a related doc. */ __( 'Your site is running an outdated version of PHP that is no longer supported and may cause issues with %1$s. <a href="%2$s" target="_blank" rel="noopener noreferrer">Read more</a> for additional information.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), '<strong>WPForms</strong>', 'https://wpforms.com/docs/supported-php-version/' ) . '<br><br><em>' . wp_kses( __( '<strong>Please Note:</strong> Support for PHP 7.3 and below will be discontinued soon. After this, if no further action is taken, WPForms functionality will be disabled.', 'wpforms-lite' ), [ 'strong' => [], 'em' => [], ] ) . '</em></p>' ); } add_action( 'admin_init', 'wpforms_check_php_version' ); /** * Get an upgrade modal text. * * @since 1.4.4 * * @param string $type Either "pro" or "elite". Default is "pro". * * @return string * @noinspection HtmlUnknownTarget */ function wpforms_get_upgrade_modal_text( $type = 'pro' ) { switch ( $type ) { case 'elite': $level = 'WPForms Elite'; break; case 'pro': default: $level = 'WPForms Pro'; } if ( wpforms()->is_pro() ) { return '<p>' . sprintf( wp_kses( /* translators: %s - WPForms.com contact page URL. */ __( 'Thank you for considering upgrading. If you have any questions, please <a href="%s" target="_blank" rel="noopener noreferrer">let us know</a>.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/contact/', 'Upgrade Follow Up Modal', 'Contact Support' ) ) ) . '</p>' . '<p>' . wp_kses( __( 'After upgrading, your license key will remain the same.<br>You may need to do a quick refresh to unlock your new addons. In your WordPress admin, go to <strong>WPForms » Settings</strong>. If you don\'t see your updated plan, click <em>refresh</em>.', 'wpforms-lite' ), [ 'strong' => [], 'br' => [], 'em' => [], ] ) . '</p>' . '<p>' . sprintf( wp_kses( /* translators: %s - WPForms.com upgrade from Lite to paid docs page URL. */ __( 'Check out <a href="%s" target="_blank" rel="noopener noreferrer">our documentation</a> for step-by-step instructions.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/docs/upgrade-wpforms-license/', 'Upgrade License Doc', 'Upgrade Now' ) ) ) . '</p>'; } return '<p>' . sprintf( wp_kses( /* translators: %s - WPForms.com contact page URL. */ __( 'If you have any questions or issues just <a href="%s" target="_blank" rel="noopener noreferrer">let us know</a>.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/contact/', 'Upgrade Intention Alert', 'Upgrade Intention Alert' ) ) ) . '</p>' . '<p>' . sprintf( wp_kses( /* translators: %s - license level, WPForms Pro or WPForms Elite. */ __( 'After purchasing a license, just <strong>enter your license key on the WPForms Settings page</strong>. This will let your site automatically upgrade to %s! (Don\'t worry, all your forms and settings will be preserved.)', 'wpforms-lite' ), [ 'strong' => [], 'br' => [], ] ), $level ) . '</p>' . '<p>' . sprintf( wp_kses( /* translators: %s - WPForms.com upgrade from Lite to paid docs page URL. */ __( 'Check out <a href="%s" target="_blank" rel="noopener noreferrer">our documentation</a> for step-by-step instructions.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), esc_url( wpforms_utm_link( 'https://wpforms.com/docs/upgrade-wpforms-lite-paid-license/', 'Upgrade Intention Alert', 'Upgrade Documentation' ) ) ) . '</p>'; } /** * Hide the wp-admin area "Version x.x" in footer on WPForms pages. * * @since 1.5.7 * * @param string $text Default "Version x.x" or "Get Version x.x" text. * * @return string */ function wpforms_admin_hide_wp_version( $text ) { // Reset text if we're not on a WPForms screen or page. if ( wpforms_is_admin_page() ) { return 'WPForms ' . WPFORMS_VERSION; } return $text; } add_filter( 'update_footer', 'wpforms_admin_hide_wp_version', PHP_INT_MAX );
Save Changes
Rename File
Rename