' . sprintf(__('Login is set to be done using the Email. This field will NOT appear in the front-end! ( you can change these settings under the "%s" tab )', 'profile-builder'), '' . __('General Settings', 'profile-builder') . '') . ''; } break; case 'Default - Display name publicly as': $form .= '
' . __( 'Display name publicly as - only appears on the Edit Profile page!', 'profile-builder' ) . '
'; break; case 'Default - Blog Details': $form .= '
' . __( 'Blog Details - only appears on the Registration page!', 'profile-builder' ) . '
'; break; } return $form; } add_filter( 'wck_after_content_element', 'wppb_manage_fields_display_field_title_slug' ); /** * Check if field type is 'Default - Display name publicly as' so we can add a notification for it * * @since v.2.2 * * @param string $wck_element_class * @param string $meta * @param array $results * @param integer $element_id * */ function wppb_manage_fields_display_name_notice( $wck_element_class, $meta, $results, $element_id ) { global $wppb_results_field; $wppb_results_field = $results[$element_id]['field']; } add_filter( 'wck_element_class_wppb_manage_fields', 'wppb_manage_fields_display_name_notice', 10, 4 ); /** * Function that adds a custom class to the existing container * * @since v.2.0 * * @param string $update_container_class - the new class name * @param string $meta - the name of the meta * @param array $results * @param integer $element_id - the ID of the element * * @return string */ function wppb_update_container_class( $update_container_class, $meta, $results, $element_id ) { $wppb_element_type = Wordpress_Creation_Kit_PB::wck_generate_slug( $results[$element_id]["field"] ); return "class='wck_update_container update_container_$meta update_container_$wppb_element_type element_type_$wppb_element_type'"; } add_filter( 'wck_update_container_class_wppb_manage_fields', 'wppb_update_container_class', 10, 4 ); /** * Function that adds a custom class to the existing element * * @since v.2.0 * * @param string $element_class - the new class name * @param string $meta - the name of the meta * @param array $results * @param integer $element_id - the ID of the element * * @return string */ function wppb_element_class( $element_class, $meta, $results, $element_id ){ $wppb_element_type = Wordpress_Creation_Kit_PB::wck_generate_slug( $results[$element_id]["field"] ); return "class='element_type_$wppb_element_type added_fields_list'"; } add_filter( 'wck_element_class_wppb_manage_fields', 'wppb_element_class', 10, 4 ); /** * Functions to check password length and strength * * @since v.2.0 */ /* on add user and update profile from WP admin area */ add_action( 'user_profile_update_errors', 'wppb_password_check_on_profile_update', 0, 3 ); function wppb_password_check_on_profile_update( $errors, $update, $user ){ wppb_password_check_extra_conditions( $errors, $user ); } /* on reset password */ add_action( 'validate_password_reset', 'wppb_password_check_extra_conditions', 10, 2 ); function wppb_password_check_extra_conditions( $errors, $user ){ $password = ( isset( $_POST[ 'pass1' ] ) && trim( $_POST[ 'pass1' ] ) ) ? $_POST[ 'pass1' ] : false; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash if( $password && ( !isset( $_POST['pw_weak'] ) || $_POST['pw_weak'] != 'on' ) ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){ if( strlen( $password ) < $wppb_generalSettings['minimum_password_length'] ) $errors->add( 'pass', sprintf( __( 'ERROR: The password must have the minimum length of %s characters', 'profile-builder' ), $wppb_generalSettings['minimum_password_length'] ) ); } if( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ $password_strength_array = array( 'short' => 0, 'bad' => 1, 'good' => 2, 'strong' => 3 ); $password_strength_text = array( 'short' => __( 'Very weak', 'profile-builder' ), 'bad' => __( 'Weak', 'profile-builder' ), 'good' => __( 'Medium', 'profile-builder' ), 'strong' => __( 'Strong', 'profile-builder' ) ); foreach( $password_strength_text as $psr_key => $psr_text ){ if( $psr_text == sanitize_text_field( $_POST['wppb_password_strength'] ) ){ $password_strength_result_slug = $psr_key; break; } } if( !empty( $password_strength_result_slug ) ){ if( $password_strength_array[$password_strength_result_slug] < $password_strength_array[$wppb_generalSettings['minimum_password_strength']] ) $errors->add( 'pass', sprintf( __( 'ERROR: The password must have a minimum strength of %s', 'profile-builder' ), $password_strength_text[$wppb_generalSettings['minimum_password_strength']] ) ); } } } return $errors; } /* we need to create a hidden field that contains the results of the password strength from the js strength tester */ add_action( 'admin_footer', 'wppb_add_hidden_password_strength_on_backend' ); add_action( 'login_footer', 'wppb_add_hidden_password_strength_on_backend' ); function wppb_add_hidden_password_strength_on_backend(){ if( $GLOBALS['pagenow'] == 'profile.php' || $GLOBALS['pagenow'] == 'user-new.php' || ( $GLOBALS['pagenow'] == 'wp-login.php' && isset( $_GET['action'] ) && ( $_GET['action'] === 'rp' || $_GET['action'] === 'resetpass' ) ) ){ $wppb_generalSettings = get_option( 'wppb_general_settings' ); if( !empty( $wppb_generalSettings['minimum_password_strength'] ) ){ ?> %2$s', menu_page_url( 'profile-builder-general-settings', false ), esc_html( __( 'Settings', 'profile-builder' ) ) ); array_unshift( $links, $settings_link ); return $links; } /** * add links on plugin page */ add_filter( 'plugin_row_meta', 'wppb_plugin_row_meta', 10, 2 ); function wppb_plugin_row_meta( $links, $file ) { if ( WPPB_PLUGIN_BASENAME == $file ) { $row_meta = array( 'docs' => '' . esc_html__( 'Docs', 'profile-builder' ) . '', 'get_support' => '' . __( 'Get Support', 'profile-builder' ) . '', ); return array_merge( $links, $row_meta ); } return (array) $links; } function wppb_sync_api( $action ) { $base = 'https://usagetracker.cozmoslabs.com'; $url = $base . '/syncPlugin'; $body = array( 'unique_identifier' => hash( 'sha256', home_url( '', 'https' ) ), 'product' => 'wppb', 'action' => $action, ); $body = apply_filters( 'wppb_sync_api_body', $body, $action ); wp_remote_post( $url, array( 'body' => $body, 'timeout' => 3, 'blocking' => false, ) ); } function wppb_handle_plugin_activation(){ $general_settings = get_option( 'wppb_general_settings' ); if( empty( $general_settings ) || !is_array( $general_settings ) || empty( $general_settings['extraFieldsLayout'] ) ){ wppb_sync_api( 'start' ); } } function wppb_handle_plugin_deactivation(){ wppb_sync_api( 'end' ); } /** * Add the stored deactivation reason to the sync payload * * @param array $body Sync request body * @param string $action Sync action slug * * @return array */ function wppb_add_deactivation_reason_to_sync_body( $body, $action ) { if ( $action !== 'end' ) return $body; $reason_data = get_option( 'wppb_deactivation_reason', array() ); if ( ! is_array( $reason_data ) ) $reason_data = array(); if ( empty( $reason_data['reason'] ) ) $reason_data['reason'] = 'skip'; $body['reason'] = sanitize_key( $reason_data['reason'] ); $reason_key = $reason_data['reason'] . '_reason'; if ( ! empty( $reason_data[ $reason_key ] ) ) $body['extra_metadata'] = sanitize_text_field( $reason_data[ $reason_key ] ); delete_option( 'wppb_deactivation_reason' ); return $body; } add_filter( 'wppb_sync_api_body', 'wppb_add_deactivation_reason_to_sync_body', 10, 2 ); /** * Store the deactivation reason selected in the popup */ function wppb_store_deactivation_reason() { if ( ! check_ajax_referer( 'wppb_deactivation_reason', 'nonce', false ) ) wp_send_json_error( array( 'message' => __( 'We could not verify your request. Please refresh the page and try again.', 'profile-builder' ) ), 403 ); if ( ! current_user_can( 'activate_plugins' ) ) wp_send_json_error( array( 'message' => __( 'You do not have permission to deactivate plugins on this site.', 'profile-builder' ) ), 403 ); $valid_reasons = array( 'dont_need_it', 'switched_to_another_plugin', 'missing_features', 'did_not_work', 'temporary_deactivation', 'other', 'skip', ); $reason = ''; if ( isset( $_POST['reason'] ) ) $reason = sanitize_key( wp_unslash( $_POST['reason'] ) ); if ( ! in_array( $reason, $valid_reasons, true ) ) wp_send_json_error( array( 'message' => __( 'We could not save your deactivation feedback. Please try again.', 'profile-builder' ) ), 400 ); $reason_data = array( 'reason' => $reason, ); if ( $reason === 'switched_to_another_plugin' && ! empty( $_POST['switched_to_another_plugin_reason'] ) ) $reason_data['switched_to_another_plugin_reason'] = sanitize_text_field( wp_unslash( $_POST['switched_to_another_plugin_reason'] ) ); if ( $reason === 'missing_features' && ! empty( $_POST['missing_features_reason'] ) ) $reason_data['missing_features_reason'] = sanitize_text_field( wp_unslash( $_POST['missing_features_reason'] ) ); if ( $reason === 'other' && ! empty( $_POST['other_reason'] ) ) $reason_data['other_reason'] = sanitize_text_field( wp_unslash( $_POST['other_reason'] ) ); update_option( 'wppb_deactivation_reason', $reason_data, false ); wp_send_json_success(); } add_action( 'wp_ajax_wppb_store_deactivation_reason', 'wppb_store_deactivation_reason' ); /* hook to create pages for out forms when a user press the create pages/setup button */ add_action( 'admin_init', 'wppb_create_form_pages' ); function wppb_create_form_pages(){ if( !isset( $_GET['page'] ) || $_GET['page'] != 'profile-builder-basic-info' || !isset( $_GET['wppb_create_pages'] ) || $_GET['wppb_create_pages'] != 'true' ) return; if( !isset( $_GET['_wpnonce'] ) || !wp_verify_nonce( sanitize_text_field( $_GET['_wpnonce'] ), 'wppb_create_pages' ) ) return; if( !current_user_can( 'manage_options' ) ) return; $wppb_pages_created = get_option( 'wppb_pages_created' ); if( empty( $wppb_pages_created ) || ( isset( $_GET['wppb_force_create_pages'] ) && $_GET['wppb_force_create_pages'] === 'true' ) ) { $register_page = array( 'post_title' => 'Register', 'post_content' => '[wppb-register]', 'post_status' => 'publish', 'post_type' => 'page' ); $register_id = wp_insert_post($register_page); $edit_page = array( 'post_title' => 'Edit Profile', 'post_content' => '[wppb-edit-profile]', 'post_status' => 'publish', 'post_type' => 'page' ); $edit_id = wp_insert_post($edit_page); $login_page = array( 'post_title' => 'Log In', 'post_content' => '[wppb-login]', 'post_status' => 'publish', 'post_type' => 'page' ); $login_id = wp_insert_post($login_page); update_option('wppb_pages_created', 'true' ); wp_safe_redirect( admin_url('edit.php?s=%5Bwppb-&post_status=all&post_type=page&action=-1&m=0&paged=1&action2=-1') ); } } /** * Function that prepares labels to pass to the WCK api...we have a quirk in wck api that labels are wrapped * in %label%...so if we want to have % inside the label for example 25% off...we will have a bad time * @param string $label * @return string|string[] */ function wppb_prepare_wck_labels( $label ){ return trim( str_replace( '%', '%', $label ) ); } /** * Function that returns the reserved meta name list */ function wppb_get_reserved_meta_name_list( $all_fields, $posted_values ){ $unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description', 'role' ); // Default contact methods were removed in WP 3.6. A filter dictates contact methods. if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){ $unique_meta_name_list[] = 'aim'; $unique_meta_name_list[] = 'yim'; $unique_meta_name_list[] = 'jabber'; } $add_reserved = true; // source: https://codex.wordpress.org/Reserved_Terms $reserved_meta_names = array( 'action', 'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and', 'category__in', 'category__not_in', 'category_name', 'comments_per_page', 'comments_popup', 'custom', 'customize_messenger_channel', 'customized', 'cpage', 'day', 'debug', 'embed', 'error', 'exact', 'feed', 'fields', 'hour', 'link_category', 'm', 'map', 'minute', 'monthnum', 'more', 'name', 'nav_menu', 'nonce', 'nopaging', 'offset', 'order', 'orderby', 'p', 'page', 'page_id', 'paged', 'pagename', 'pb', 'perm', 'post', 'post__in', 'post__not_in', 'post_format', 'post_mime_type', 'post_status', 'post_tag', 'post_type', 'posts', 'posts_per_archive_page', 'posts_per_page', 'preview', 'robots', 's', 'search', 'second', 'sentence', 'showposts', 'static', 'status', 'subpost', 'subpost_id', 'tag', 'tag__and', 'tag__in', 'tag__not_in', 'tag_id', 'tag_slug__and', 'tag_slug__in', 'taxonomy', 'tb', 'term', 'terms', 'theme', 'title', 'type', 'types', 'w', 'withcomments', 'withoutcomments', 'year' ); $args = array( 'public' => true, '_builtin' => true ); $post_types = get_post_types( $args, 'names', 'or' ); $taxonomies = get_taxonomies( $args, 'names', 'or' ); /*reserved meta names were added in PB 3.1.2 so to avoid the situation where someone updates an already existing field with a reserved name and gets an error check if it is an update or new field */ if( !empty( $all_fields ) && !empty($posted_values['id'] ) && !empty($posted_values['meta-name']) ){ foreach( $all_fields as $field ){ if( $field['id'] === $posted_values['id'] && $field['meta-name'] === $posted_values['meta-name'] ){//it is an update $add_reserved = false; } } } if( $add_reserved ) $unique_meta_name_list = array_merge( $unique_meta_name_list, $reserved_meta_names, $post_types, $taxonomies ); return apply_filters ( 'wppb_unique_meta_name_list', $unique_meta_name_list ); } add_action('admin_head', 'wppb_maybe_remove_add_new_button_for_cpt' ); function wppb_maybe_remove_add_new_button_for_cpt() { global $pagenow; $target_slugs = [ 'wppb-rf-cpt', 'wppb-epf-cpt', 'wppb-ul-cpt' ]; $current_slug = ''; $pointer_content = ''; $correct_page = false; if ( $pagenow === 'edit.php' && isset( $_GET['post_type'] ) && in_array( sanitize_text_field( $_GET['post_type'] ), $target_slugs ) ) { $correct_page = true; $current_slug = sanitize_text_field( $_GET['post_type'] ); } else if( $pagenow === 'post.php' && isset( $_GET['post'] ) ) { $post_type = get_post_type( absint( $_GET['post'] ) ); if ( in_array( $post_type, $target_slugs ) ) { $correct_page = true; $current_slug = $post_type; } } if ( $correct_page ) { $license_status = wppb_get_serial_number_status(); if( $current_slug === 'wppb-rf-cpt' ) { if( $license_status == 'missing' ) { $pointer_content .= '

' . sprintf( __( 'Please %1$senter your license key%2$s first, to add new User Registration Forms.', 'profile-builder' ), '', '' ) . '

'; } else { $pointer_content .= '

' . sprintf( __( 'You need an active license to add new User Registration Forms. %1$sRenew%2$s or %3$spurchase a new one%4$s.', 'profile-builder' ), '', '', '', '' ) . '

'; } } else if( $current_slug === 'wppb-epf-cpt' ) { if( $license_status == 'missing' ) { $pointer_content .= '

' . sprintf( __( 'Please %1$senter your license key%2$s first, to add new Edit Profile Forms.', 'profile-builder' ), '', '' ) . '

'; } else { $pointer_content .= '

' . sprintf( __( 'You need an active license to add new Edit Profile Forms. %1$sRenew%2$s or %3$spurchase a new one%4$s.', 'profile-builder' ), '', '', '', '' ) . '

'; } } else if( $current_slug === 'wppb-ul-cpt' ) { if( $license_status == 'missing' ) { $pointer_content .= '

' . sprintf( __( 'Please %1$senter your license key%2$s first, to add new User Listing.', 'profile-builder' ), '', '' ) . '

'; } else { $pointer_content .= '

' . sprintf( __( 'You need an active license to add a new User Listing. %1$sRenew%2$s or %3$spurchase a new one%4$s.', 'profile-builder' ), '', '', '', '' ) . '

'; } } if( $license_status !== 'valid' ) { wp_enqueue_style('wp-pointer'); wp_enqueue_script('wp-pointer'); echo ' '; } } // This shows the Add new button. Since the above action removes it completelty, we can just attempt to show it here echo ''; // Manage fields if( isset( $_GET['page'] ) && $_GET['page'] === 'manage-fields' ) { $license_status = wppb_get_serial_number_status(); $pointer_content_cl = ''; $pointer_content_fv = ''; $pointer_content_epaa = ''; if( $license_status == 'missing' ) { $pointer_content_cl .= '

' . sprintf( __( 'Please %1$senter your license key%2$s first, to use the Conditional Logic feature.', 'profile-builder' ), '', '' ) . '

'; $pointer_content_fv .= '

' . sprintf( __( 'Please %1$senter your license key%2$s first, to configure Field Visibility options.', 'profile-builder' ), '', '' ) . '

'; $pointer_content_epaa .= '

' . sprintf( __( 'Please %1$senter your license key%2$s first, to use the Edit Profile Updates Approved by Admin addon feature.', 'profile-builder' ), '', '' ) . '

'; } else { $pointer_content_cl .= '

' . sprintf( __( 'You need an active license to configure the Condi tional Logic feature. %1$sRenew%2$s or %3$spurchase a new one%4$s.', 'profile-builder' ), '', '', '', '' ) . '

'; $pointer_content_fv .= '

' . sprintf( __( 'You need an active license to configure Field Visibility options. %1$sRenew%2$s or %3$spurchase a new one%4$s.', 'profile-builder' ), '', '', '', '' ) . '

'; $pointer_content_epaa .= '

' . sprintf( __( 'You need an active license to use the Edit Profile Updates Approved by Admin addon. %1$sRenew%2$s or %3$spurchase a new one%4$s.', 'profile-builder' ), '', '', '', '' ) . '

'; } if( $license_status != 'valid' ) { wp_enqueue_style('wp-pointer'); wp_enqueue_script('wp-pointer'); echo ' '; } } } function wppb_filter_own_post_creation( $data, $postarr ) { if ( in_array( $data['post_type'], [ 'wppb-rf-cpt', 'wppb-epf-cpt', 'wppb-ul-cpt' ] ) && empty( $postarr['ID'] ) ) { $license_status = wppb_get_serial_number_status(); if( $license_status != 'valid' ) { wp_die( 'An active Profile Builder license is required to create new posts of this type.' ); } } return $data; } add_filter( 'wp_insert_post_data', 'wppb_filter_own_post_creation', 10, 2 ); add_filter( 'wck_update_meta_filter_values_wppb_manage_fields', 'wppb_filter_extra_manage_fields_options', 10, 2 ); function wppb_filter_extra_manage_fields_options( $values, $element_id ) { $license_status = wppb_get_serial_number_status(); if( $license_status == 'valid' ) return $values; if( !empty( $values['id'] ) ) { $manage_fields = get_option( 'wppb_manage_fields', array() ); $existing_field = false; if( !empty( $manage_fields ) ) { foreach( $manage_fields as $field ) { if( $field['id'] == $values['id'] ) { $existing_field = $field; break; } } } if( !empty( $existing_field ) ) { $target_keys = [ 'visibility', 'location-visibility', 'user-role-visibility', 'conditional-logic-enabled', 'edit-profile-approved-by-admin', ]; foreach( $target_keys as $key ) { if( !empty( $existing_field[$key] ) ) { $values[$key] = $existing_field[$key]; } } } } return $values; } function wppb_international_telephone_input_admin_notification() { if( !current_user_can( 'manage_options' ) ) return; /* initiate the plugin notifications class */ $notifications = WPPB_Plugin_Notifications::get_instance(); /* this must be unique */ $notification_id = 'wppb_international_telephone_input_notification_pb'; $docs_url = 'https://www.cozmoslabs.com/docs/profile-builder/manage-user-fields/international-telephone-input/'; $notification_message = '

' . __( 'Let users pick their country, see flags and placeholders, and validate numbers in a familiar format.', 'profile-builder' ) . '

'; $docs_link = sprintf( __( '%1$sRead the documentation%2$s', 'profile-builder' ), '', '' ); $buy_url = 'https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=international_telephone_input_notification&utm_campaign=PBFree#pricing'; if( defined( 'WPPB_PAID_PLUGIN_DIR' ) ) { $extra_message = sprintf( /* translators: 1: documentation link (HTML), 2: opening Form Fields link, 3: closing Form Fields link */ __( '%1$s to set it up, or add the field under %2$sProfile Builder → Form Fields%3$s.', 'profile-builder' ), $docs_link, '', '' ); } else { $extra_message = sprintf( /* translators: 1: documentation link (HTML), 2: opening upgrade link, 3: closing upgrade link */ __( '%1$s. This field is available in Profile Builder Basic and Pro. %2$sUpgrade now%3$s to use it.', 'profile-builder' ), $docs_link, '', '' ); } $notification_message .= '

' . $extra_message . '

'; $ul_icon_url = ( file_exists( WPPB_PLUGIN_DIR . 'assets/images/pb-logo.svg' ) ) ? WPPB_PLUGIN_URL . 'assets/images/pb-logo.svg' : ''; $ul_icon = ( !empty( $ul_icon_url ) ) ? 'Profile Builder' : ''; $message = $ul_icon; $message .= '

' . esc_html__( 'New field: International Telephone Input.', 'profile-builder' ) . '

'; $message .= $notification_message; $message .= '' . esc_html__( 'Dismiss this notice.', 'profile-builder' ) . ''; $notifications->add_notification( $notification_id, $message, 'wppb-notice notice notice-info', true, array( 'manage-fields' ) ); } add_action( 'admin_init', 'wppb_international_telephone_input_admin_notification' ); /** * Get the Profile Builder Page or Post slug * */ function wppb_get_pb_page_post_slug() { if ( isset( $_GET['post_type'] ) ) $post_type = sanitize_text_field( $_GET['post_type'] ); elseif ( isset( $_GET['post'] ) ) $post_type = get_post_type( (int)$_GET['post'] ); elseif ( isset( $_GET['page'] ) ) $post_type = sanitize_text_field( $_GET['page'] ); else $post_type = ''; $possible_slugs = array( 'pb', 'wppb', 'profile-builder', 'user-email-customizer', 'admin-email-customizer', 'manage-fields', 'custom-redirects', 'profile-user-profile-picture' ); if ( !empty( $post_type ) ) { foreach ( $possible_slugs as $slug ) { if ( ($post_type === $slug || strpos( $post_type, $slug ) === 0) && strpos($post_type, 'pb_backupbuddy') === false ) { return $post_type; } } } return ''; } /** * Insert the PB Admin area Header Banner * */ function wppb_insert_page_banner() { $pb_slug = wppb_get_pb_page_post_slug(); if ( $pb_slug === 'profile-builder-dashboard' && isset( $_GET['subpage'] ) && $_GET['subpage'] === 'wppb-setup' ) return; $page_name = ''; if ( $pb_slug == 'profile-builder-add-ons' ) $page_name = ' Add-Ons'; if ( !empty( $pb_slug ) ) wppb_output_page_banner($page_name); } add_action( 'in_admin_header', 'wppb_insert_page_banner' ); /** * Output the PB Admin area Header Banner content * */ function wppb_output_page_banner( $page_name ) { $upgrade_button = ' Upgrade to PRO '; $upgrade_button_basic = ' Upgrade to PRO '; $support_url = 'https://wordpress.org/support/plugin/profile-builder/'; $output = '

Profile Builder'. $page_name .'

Support Documentation '; if ( !defined( 'WPPB_PAID_PLUGIN_DIR' ) || ( defined( 'PROFILE_BUILDER_PAID_VERSION' ) && PROFILE_BUILDER_PAID_VERSION === 'dev' ) ) $output .= $upgrade_button; // Add Basic version upgrade button (not to account, to plugin purchase page) if( defined( 'PROFILE_BUILDER' ) && PROFILE_BUILDER == 'Profile Builder Basic' ){ $output .= $upgrade_button_basic; } $output .= '
'; echo $output; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Remove PMS Styles from PB Pages and Posts * */ function wppb_maybe_remove_pms_styles() { if ( !empty( wppb_get_pb_page_post_slug() ) && wp_style_is('pms-style-back-end', 'enqueued') ) { wp_dequeue_style('pms-style-back-end'); } } add_action('admin_enqueue_scripts', 'wppb_maybe_remove_pms_styles', 100); /** * Output the deactivation confirmation popup on the Plugins page * */ function wppb_output_deactivation_popup() { if ( defined( 'WPPB_PAID_PLUGIN_DIR' ) ) return; $screen = get_current_screen(); if ( empty( $screen ) ) return; $is_plugins_screen = in_array( $screen->base, array( 'plugins', 'plugins-network' ), true ) || in_array( $screen->id, array( 'plugins', 'plugins-network' ), true ); if ( !$is_plugins_screen ) return; ?>
<?php esc_attr_e( 'Profile Builder', 'profile-builder' ); ?>

id, $page ) !== false ) return true; } if ( ! empty( $screen->post_type ) ) { $pb_cpt_pages = array( 'wppb-ul-cpt', 'wppb-rf-cpt', 'wppb-epf-cpt' ); if ( in_array( $screen->post_type, $pb_cpt_pages, true ) ) return true; } return false; } /** * Output the popup markup used for documentation links from the admin. * * @return void */ function wppb_output_docs_link_popup() { if ( ! wppb_is_profile_builder_admin_page() ) return; ?>