admin()->check_ajax_nonce(); if ( empty( $_POST['cb_func'] ) ) { wp_send_json_error( __( 'Wrong callback', 'ultimate-member' ) ); } $cb_func = sanitize_key( $_POST['cb_func'] ); if ( 'um_usermeta_fields' === $cb_func ) { //first install metatable global $wpdb; $metakeys = array(); foreach ( UM()->builtin()->all_user_fields as $all_user_field ) { if ( ! array_key_exists( 'metakey', $all_user_field ) ) { continue; } $metakeys[] = $all_user_field['metakey']; } $metakeys = apply_filters( 'um_metadata_same_page_update_ajax', $metakeys, UM()->builtin()->all_user_fields ); if ( is_multisite() ) { $sites = get_sites( array( 'fields' => 'ids' ) ); foreach ( $sites as $blog_id ) { $metakeys[] = $wpdb->get_blog_prefix( $blog_id ) . 'capabilities'; } } else { $blog_id = get_current_blog_id(); $metakeys[] = $wpdb->get_blog_prefix( $blog_id ) . 'capabilities'; } //member directory data $metakeys[] = 'um_member_directory_data'; $metakeys[] = '_um_verified'; $metakeys[] = '_money_spent'; $metakeys[] = '_completed'; $metakeys[] = '_reviews_avg'; //myCred meta if ( function_exists( 'mycred_get_types' ) ) { $mycred_types = mycred_get_types(); if ( ! empty( $mycred_types ) ) { foreach ( array_keys( $mycred_types ) as $point_type ) { $metakeys[] = $point_type; } } } $sortby_custom_keys = $wpdb->get_col( "SELECT DISTINCT meta_value FROM {$wpdb->postmeta} WHERE meta_key='_um_sortby_custom'" ); if ( empty( $sortby_custom_keys ) ) { $sortby_custom_keys = array(); } $sortby_custom_keys2 = $wpdb->get_col( "SELECT meta_value FROM {$wpdb->postmeta} WHERE meta_key='_um_sorting_fields'" ); if ( ! empty( $sortby_custom_keys2 ) ) { foreach ( $sortby_custom_keys2 as $custom_val ) { $custom_val = maybe_unserialize( $custom_val ); foreach ( $custom_val as $sort_value ) { if ( is_array( $sort_value ) ) { $field_keys = array_keys( $sort_value ); $sortby_custom_keys[] = $field_keys[0]; } } } } if ( ! empty( $sortby_custom_keys ) ) { $sortby_custom_keys = array_unique( $sortby_custom_keys ); $metakeys = array_merge( $metakeys, $sortby_custom_keys ); } $skip_fields = UM()->builtin()->get_fields_without_metakey(); $skip_fields = array_merge( $skip_fields, UM()->member_directory()->core_search_fields ); $real_usermeta = $wpdb->get_col( "SELECT DISTINCT meta_key FROM {$wpdb->usermeta}" ); $real_usermeta = ! empty( $real_usermeta ) ? $real_usermeta : array(); $real_usermeta = array_merge( $real_usermeta, array( 'um_member_directory_data' ) ); if ( ! empty( $sortby_custom_keys ) ) { $real_usermeta = array_merge( $real_usermeta, $sortby_custom_keys ); } $wp_usermeta_option = array_intersect( array_diff( $metakeys, $skip_fields ), $real_usermeta ); update_option( 'um_usermeta_fields', array_values( $wp_usermeta_option ) ); update_option( 'um_member_directory_update_meta', time() ); UM()->options()->update( 'member_directory_own_table', true ); wp_send_json_success(); } elseif ( 'um_get_metadata' === $cb_func ) { global $wpdb; $wp_usermeta_option = get_option( 'um_usermeta_fields', array() ); $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->usermeta} WHERE meta_key IN ('" . implode( "','", $wp_usermeta_option ) . "')" ); wp_send_json_success( array( 'count' => $count ) ); } elseif ( 'um_update_metadata_per_page' === $cb_func ) { if ( empty( $_POST['page'] ) ) { wp_send_json_error( __( 'Wrong data', 'ultimate-member' ) ); } $per_page = 500; $wp_usermeta_option = get_option( 'um_usermeta_fields', array() ); global $wpdb; $metadata = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$wpdb->usermeta} WHERE meta_key IN ('" . implode( "','", $wp_usermeta_option ) . "') LIMIT %d, %d", ( absint( $_POST['page'] ) - 1 ) * $per_page, $per_page ), ARRAY_A ); $values = array(); foreach ( $metadata as $metarow ) { $values[] = $wpdb->prepare( '(%d, %s, %s)', $metarow['user_id'], $metarow['meta_key'], $metarow['meta_value'] ); } // maybe create table. $table_name = $wpdb->prefix . 'um_metadata'; $query = $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $table_name ) ); if ( $wpdb->get_var( $query ) !== $table_name ) { UM()->setup()->create_db(); } if ( ! empty( $values ) ) { $wpdb->query( "INSERT INTO {$wpdb->prefix}um_metadata(user_id, um_key, um_value) VALUES " . implode( ',', $values ) ); } $from = ( absint( $_POST['page'] ) * $per_page ) - $per_page + 1; $to = absint( $_POST['page'] ) * $per_page; // translators: %1$s is a metadata from name; %2$s is a metadata to. wp_send_json_success( array( 'message' => sprintf( __( 'Metadata from %1$s to %2$s was upgraded successfully...', 'ultimate-member' ), $from, $to ) ) ); } else { do_action( 'um_same_page_update_ajax_action', $cb_func ); } } /** * */ public function init_variables() { $settings_map = array(); $general_pages_fields = array( array( 'id' => 'pages_settings', 'type' => 'hidden', 'value' => true, 'is_option' => false, ), ); $core_pages = UM()->config()->core_pages; foreach ( $core_pages as $page_s => $page ) { $have_pages = UM()->query()->wp_pages(); $page_id = UM()->options()->get_core_page_id( $page_s ); $page_title = ! empty( $page['title'] ) ? $page['title'] : ''; if ( 'reached_maximum_limit' === $have_pages ) { $general_pages_fields[] = array( 'id' => $page_id, 'type' => 'text', // translators: %s: Page title 'label' => sprintf( __( '%s page', 'ultimate-member' ), $page_title ), 'placeholder' => __( 'Add page ID', 'ultimate-member' ), 'compiler' => true, 'size' => 'small', ); } else { $general_pages_fields[] = array( 'id' => $page_id, 'type' => 'select', // translators: %s: Page title 'label' => sprintf( __( '%s page', 'ultimate-member' ), $page_title ), 'options' => UM()->query()->wp_pages(), 'placeholder' => __( 'Choose a page...', 'ultimate-member' ), 'compiler' => true, 'size' => 'small', ); } $settings_map[ $page_id ] = array( 'sanitize' => 'absint', ); } $appearances_profile_menu_fields = array( array( 'id' => 'profile_menu', 'type' => 'checkbox', 'label' => __( 'Enable profile menu', 'ultimate-member' ), ), ); $settings_map['profile_menu'] = array( 'sanitize' => 'bool', ); $tabs = UM()->profile()->tabs(); $tabs_options = array(); $tabs_condition = array(); foreach ( $tabs as $id => $tab ) { if ( ! empty( $tab['hidden'] ) ) { continue; } if ( isset( $tab['name'] ) ) { $tabs_options[ $id ] = $tab['name']; $tabs_condition[] = 'profile_tab_' . $id; } if ( isset( $tab['default_privacy'] ) ) { $fields = array( array( 'id' => 'profile_tab_' . $id, 'type' => 'checkbox', // translators: %s: Tab title 'label' => sprintf( __( '%s Tab', 'ultimate-member' ), $tab['name'] ), 'conditional' => array( 'profile_menu', '=', 1 ), 'data' => array( 'fill_profile_menu_default_tab' => $id ), ), ); $settings_map[ 'profile_tab_' . $id ] = array( 'sanitize' => 'bool', ); } else { $fields = array( array( 'id' => 'profile_tab_' . $id, 'type' => 'checkbox', // translators: %s: Tab title 'label' => sprintf( __( '%s Tab', 'ultimate-member' ), $tab['name'] ), 'conditional' => array( 'profile_menu', '=', 1 ), 'data' => array( 'fill_profile_menu_default_tab' => $id ), ), array( 'id' => 'profile_tab_' . $id . '_privacy', 'type' => 'select', // translators: %s: Tab title 'label' => sprintf( __( 'Who can see %s Tab?', 'ultimate-member' ), $tab['name'] ), 'tooltip' => __( 'Select which users can view this tab.', 'ultimate-member' ), 'options' => UM()->profile()->tabs_privacy(), 'conditional' => array( 'profile_tab_' . $id, '=', 1 ), 'size' => 'small', ), array( 'id' => 'profile_tab_' . $id . '_roles', 'type' => 'select', 'multi' => true, 'label' => __( 'Allowed roles', 'ultimate-member' ), 'tooltip' => __( 'Select the the user roles allowed to view this tab.', 'ultimate-member' ), 'options' => UM()->roles()->get_roles(), 'placeholder' => __( 'Choose user roles...', 'ultimate-member' ), 'conditional' => array( 'profile_tab_' . $id . '_privacy', '=', array( '4', '5' ) ), 'size' => 'small', ), ); $settings_map = array_merge( $settings_map, array( "profile_tab_{$id}" => array( 'sanitize' => 'bool', ), "profile_tab_{$id}_privacy" => array( 'sanitize' => array( UM()->admin(), 'sanitize_tabs_privacy' ), ), "profile_tab_{$id}_roles" => array( 'sanitize' => array( UM()->admin(), 'sanitize_existed_role' ), ), ) ); } $appearances_profile_menu_fields = array_merge( $appearances_profile_menu_fields, $fields ); } $appearances_profile_menu_fields[] = array( 'id' => 'profile_menu_default_tab', 'type' => 'select', 'label' => __( 'Profile menu default tab', 'ultimate-member' ), 'tooltip' => __( 'This will be the default tab on user profile page', 'ultimate-member' ), 'options' => $tabs_options, 'conditional' => array( implode( '|', $tabs_condition ), '~', 1 ), 'size' => 'small', ); $settings_map['profile_menu_default_tab'] = array( 'sanitize' => 'key', ); $appearances_profile_menu_fields = array_merge( $appearances_profile_menu_fields, array( array( 'id' => 'profile_menu_icons', 'type' => 'checkbox', 'label' => __( 'Enable menu icons in desktop view', 'ultimate-member' ), 'description' => __( '"Desktop view" means the profile block\'s width lower than 800px', 'ultimate-member' ), 'conditional' => array( 'profile_menu', '=', 1 ), ), ) ); $settings_map['profile_menu_icons'] = array( 'sanitize' => 'bool', ); $post_types_options = array(); $all_post_types = get_post_types( array( 'public' => true ), 'objects' ); foreach ( $all_post_types as $key => $post_type_data ) { $post_types_options[ $key ] = $post_type_data->labels->singular_name; } $duplicates = array(); $taxonomies_options = array(); $exclude_taxonomies = UM()->excluded_taxonomies(); $all_taxonomies = get_taxonomies( array( 'public' => true, 'show_ui' => true ), 'objects' ); foreach ( $all_taxonomies as $key => $taxonomy ) { if ( in_array( $key, $exclude_taxonomies, true ) ) { continue; } if ( ! in_array( $taxonomy->labels->singular_name, $duplicates, true ) ) { $duplicates[] = $taxonomy->labels->singular_name; $label = $taxonomy->labels->singular_name; } else { $label = $taxonomy->labels->singular_name . ' (' . $key . ')'; } $taxonomies_options[ $key ] = $label; } $restricted_access_post_metabox_value = array(); $restricted_access_post_metabox = UM()->options()->get( 'restricted_access_post_metabox' ); if ( ! empty( $restricted_access_post_metabox ) && is_array( $restricted_access_post_metabox ) ) { foreach ( $restricted_access_post_metabox as $key => $value ) { if ( $value ) { $restricted_access_post_metabox_value[] = $key; } } } $restricted_access_taxonomy_metabox_value = array(); $restricted_access_taxonomy_metabox = UM()->options()->get( 'restricted_access_taxonomy_metabox' ); if ( ! empty( $restricted_access_taxonomy_metabox ) && is_array( $restricted_access_taxonomy_metabox ) ) { foreach ( $restricted_access_taxonomy_metabox as $key => $value ) { if ( $value ) { $restricted_access_taxonomy_metabox_value[] = $key; } } } $access_fields = array( array( 'id' => 'accessible', 'type' => 'select', 'label' => __( 'Global Site Access', 'ultimate-member' ), 'tooltip' => __( 'Globally control the access of your site, you can have separate restrict options per post/page by editing the desired item.', 'ultimate-member' ), 'options' => array( 0 => __( 'Site accessible to Everyone', 'ultimate-member' ), 2 => __( 'Site accessible to Logged In Users', 'ultimate-member' ), ), 'size' => 'medium', ), array( 'id' => 'access_redirect', 'type' => 'text', 'label' => __( 'Custom Redirect URL', 'ultimate-member' ), 'tooltip' => __( 'A logged out user will be redirected to this url If he is not permitted to access the site', 'ultimate-member' ), 'conditional' => array( 'accessible', '=', 2 ), ), array( 'id' => 'access_exclude_uris', 'type' => 'multi_text', 'label' => __( 'Exclude the following URLs', 'ultimate-member' ), 'tooltip' => __( 'Here you can exclude URLs beside the redirect URI to be accessible to everyone', 'ultimate-member' ), 'add_text' => __( 'Add New URL', 'ultimate-member' ), 'conditional' => array( 'accessible', '=', 2 ), 'show_default_number' => 0, ), array( 'id' => 'home_page_accessible', 'type' => 'checkbox', 'label' => __( 'Allow Homepage to be accessible', 'ultimate-member' ), 'conditional' => array( 'accessible', '=', 2 ), ), array( 'id' => 'category_page_accessible', 'type' => 'checkbox', 'label' => __( 'Allow Category pages to be accessible', 'ultimate-member' ), 'conditional' => array( 'accessible', '=', 2 ), ), array( 'id' => 'restricted_post_title_replace', 'type' => 'checkbox', 'label' => __( 'Replace the restricted Post Title', 'ultimate-member' ), 'tooltip' => __( 'Allow to replace the restricted post title to users that do not have permission to view the content', 'ultimate-member' ), ), array( 'id' => 'restricted_access_post_title', 'type' => 'text', 'label' => __( 'Restricted Access Post Title', 'ultimate-member' ), 'tooltip' => __( 'This is the post title shown to users that do not have permission to view the content', 'ultimate-member' ), 'conditional' => array( 'restricted_post_title_replace', '=', 1 ), ), array( 'id' => 'restricted_access_message', 'type' => 'wp_editor', 'label' => __( 'Restricted Access Message', 'ultimate-member' ), 'tooltip' => __( 'This is the message shown to users that do not have permission to view the content', 'ultimate-member' ), ), ); $settings_map = array_merge( $settings_map, array( 'accessible' => array( 'sanitize' => 'int', ), 'access_redirect' => array( 'sanitize' => 'url', ), 'access_exclude_uris' => array( 'sanitize' => 'url', ), 'home_page_accessible' => array( 'sanitize' => 'bool', ), 'category_page_accessible' => array( 'sanitize' => 'bool', ), 'restricted_post_title_replace' => array( 'sanitize' => 'bool', ), 'restricted_access_post_title' => array( 'sanitize' => 'text', ), 'restricted_access_message' => array( 'sanitize' => 'wp_kses', ), ) ); global $wp_version; if ( version_compare( $wp_version, '5.0', '>=' ) ) { $access_fields = array_merge( $access_fields, array( array( 'id' => 'restricted_blocks', 'type' => 'checkbox', 'label' => __( 'Enable the "Content Restriction" settings for the Gutenberg Blocks', 'ultimate-member' ), ), array( 'id' => 'restricted_block_message', 'type' => 'textarea', 'label' => __( 'Restricted Access Block Message', 'ultimate-member' ), 'tooltip' => __( 'This is the message shown to users that do not have permission to view the block\'s content', 'ultimate-member' ), 'conditional' => array( 'restricted_blocks', '=', 1 ), ), ) ); $settings_map['restricted_blocks'] = array( 'sanitize' => 'bool', ); $settings_map['restricted_block_message'] = array( 'sanitize' => 'textarea', ); } $access_fields = array_merge( $access_fields, array( array( 'id' => 'restricted_access_post_metabox', 'type' => 'hidden', 'value' => '', ), array( 'id' => 'restricted_access_taxonomy_metabox', 'type' => 'hidden', 'value' => '', ), array( 'id' => 'restricted_access_post_metabox', 'type' => 'multi_checkbox', 'label' => __( 'Enable the "Content Restriction" settings for post types', 'ultimate-member' ), 'tooltip' => __( 'Check post types for which you plan to use the "Content Restriction" settings', 'ultimate-member' ), 'options' => $post_types_options, 'columns' => 3, 'value' => $restricted_access_post_metabox_value, 'default' => UM()->options()->get_default( 'restricted_access_post_metabox' ), ), array( 'id' => 'restricted_access_taxonomy_metabox', 'type' => 'multi_checkbox', 'label' => __( 'Enable the "Content Restriction" settings for taxonomies', 'ultimate-member' ), 'tooltip' => __( 'Check taxonomies for which you plan to use the "Content Restriction" settings', 'ultimate-member' ), 'options' => $taxonomies_options, 'columns' => 3, 'value' => $restricted_access_taxonomy_metabox_value, 'default' => UM()->options()->get_default( 'restricted_access_taxonomy_metabox' ), ), ) ); $settings_map = array_merge( $settings_map, array( 'restricted_access_post_metabox' => array( 'sanitize' => 'key', ), 'restricted_access_taxonomy_metabox' => array( 'sanitize' => 'key', ), ) ); $latest_update = get_option( 'um_member_directory_update_meta', false ); $latest_truncate = get_option( 'um_member_directory_truncated', false ); $same_page_update = array( 'id' => 'member_directory_own_table', 'type' => 'same_page_update', 'label' => __( 'Enable custom table for usermeta', 'ultimate-member' ), 'tooltip' => __( 'Check this box if you would like to enable the use of a custom table for user metadata. Improved performance for member directory searches.', 'ultimate-member' ), ); if ( empty( $latest_update ) || ( ! empty( $latest_truncate ) && $latest_truncate > $latest_update ) ) { $same_page_update['upgrade_cb'] = 'sync_metatable'; $same_page_update['upgrade_description'] = '
' . __( 'We recommend creating a backup of your site before running the update process. Do not exit the page before the update process has complete.', 'ultimate-member' ) . '
' . __( 'After clicking the "Run" button, the update process will start. All information will be displayed in the field below.', 'ultimate-member' ) . '
' . __( 'If the update was successful, you will see a corresponding message. Otherwise, contact technical support if the update failed.', 'ultimate-member' ) . '
'; } $settings_map = array_merge( $settings_map, array( 'permalink_base' => array( 'sanitize' => 'key', ), 'permalink_base_custom_meta' => array( 'sanitize' => 'text', ), 'display_name' => array( 'sanitize' => 'key', ), 'display_name_field' => array( 'sanitize' => 'text', ), 'author_redirect' => array( 'sanitize' => 'bool', ), 'members_page' => array( 'sanitize' => 'bool', ), 'use_gravatars' => array( 'sanitize' => 'bool', ), 'use_um_gravatar_default_builtin_image' => array( 'sanitize' => 'key', ), 'use_um_gravatar_default_image' => array( 'sanitize' => 'bool', ), 'toggle_password' => array( 'sanitize' => 'bool', ), 'require_strongpass' => array( 'sanitize' => 'bool', ), 'password_min_chars' => array( 'sanitize' => 'absint', ), 'password_max_chars' => array( 'sanitize' => 'absint', ), 'profile_noindex' => array( 'sanitize' => 'bool', ), 'activation_link_expiry_time' => array( 'sanitize' => 'absint', ), 'account_tab_password' => array( 'sanitize' => 'bool', ), 'account_tab_privacy' => array( 'sanitize' => 'bool', ), 'account_tab_delete' => array( 'sanitize' => 'bool', ), 'delete_account_text' => array( 'sanitize' => 'textarea', ), 'delete_account_no_pass_required_text' => array( 'sanitize' => 'textarea', ), 'account_name' => array( 'sanitize' => 'bool', ), 'account_name_disable' => array( 'sanitize' => 'bool', ), 'account_name_require' => array( 'sanitize' => 'bool', ), 'account_email' => array( 'sanitize' => 'bool', ), 'account_general_password' => array( 'sanitize' => 'bool', ), 'account_hide_in_directory' => array( 'sanitize' => 'bool', ), 'account_hide_in_directory_default' => array( 'sanitize' => 'text', ), 'profile_photo_max_size' => array( 'sanitize' => 'absint', ), 'cover_photo_max_size' => array( 'sanitize' => 'absint', ), 'photo_thumb_sizes' => array( 'sanitize' => 'absint', ), 'cover_thumb_sizes' => array( 'sanitize' => 'absint', ), 'image_orientation_by_exif' => array( 'sanitize' => 'bool', ), 'image_compression' => array( 'sanitize' => 'absint', ), 'image_max_width' => array( 'sanitize' => 'absint', ), 'cover_min_width' => array( 'sanitize' => 'absint', ), 'enable_reset_password_limit' => array( 'sanitize' => 'bool', ), 'reset_password_limit_number' => array( 'sanitize' => 'absint', ), 'change_password_request_limit' => array( 'sanitize' => 'bool', ), 'blocked_emails' => array( 'sanitize' => 'textarea', ), 'blocked_words' => array( 'sanitize' => 'textarea', ), 'allowed_choice_callbacks' => array( 'sanitize' => 'textarea', ), 'allow_url_redirect_confirm' => array( 'sanitize' => 'bool', ), 'admin_email' => array( 'sanitize' => 'text', ), 'mail_from' => array( 'sanitize' => 'text', ), 'mail_from_addr' => array( 'sanitize' => 'text', ), 'email_html' => array( 'sanitize' => 'bool', ), 'profile_template' => array( 'sanitize' => 'text', ), 'profile_max_width' => array( 'sanitize' => 'text', ), 'profile_area_max_width' => array( 'sanitize' => 'text', ), 'profile_icons' => array( 'sanitize' => 'key', ), 'profile_primary_btn_word' => array( 'sanitize' => 'text', ), 'profile_secondary_btn' => array( 'sanitize' => 'bool', ), 'profile_secondary_btn_word' => array( 'sanitize' => 'text', ), 'default_avatar' => array( 'sanitize' => 'url', ), 'default_cover' => array( 'sanitize' => 'url', ), 'disable_profile_photo_upload' => array( 'sanitize' => 'bool', ), 'profile_photosize' => array( 'sanitize' => array( UM()->admin(), 'sanitize_photosize' ), ), 'profile_cover_enabled' => array( 'sanitize' => 'bool', ), 'profile_coversize' => array( 'sanitize' => array( UM()->admin(), 'sanitize_cover_photosize' ), ), 'profile_cover_ratio' => array( 'sanitize' => 'text', ), 'profile_show_metaicon' => array( 'sanitize' => 'bool', ), 'profile_show_name' => array( 'sanitize' => 'bool', ), 'profile_show_social_links' => array( 'sanitize' => 'bool', ), 'profile_show_bio' => array( 'sanitize' => 'bool', ), 'profile_show_html_bio' => array( 'sanitize' => 'bool', ), 'profile_bio_maxchars' => array( 'sanitize' => 'absint', ), 'profile_header_menu' => array( 'sanitize' => 'key', ), 'profile_empty_text' => array( 'sanitize' => 'bool', ), 'profile_empty_text_emo' => array( 'sanitize' => 'bool', ), 'register_template' => array( 'sanitize' => 'text', ), 'register_max_width' => array( 'sanitize' => 'text', ), 'register_align' => array( 'sanitize' => 'key', ), 'register_icons' => array( 'sanitize' => 'key', ), 'register_primary_btn_word' => array( 'sanitize' => 'text', ), 'register_secondary_btn' => array( 'sanitize' => 'bool', ), 'register_secondary_btn_word' => array( 'sanitize' => 'text', ), 'register_secondary_btn_url' => array( 'sanitize' => 'url', ), 'register_role' => array( 'sanitize' => 'key', ), 'login_template' => array( 'sanitize' => 'text', ), 'login_max_width' => array( 'sanitize' => 'text', ), 'login_align' => array( 'sanitize' => 'key', ), 'login_icons' => array( 'sanitize' => 'key', ), 'login_primary_btn_word' => array( 'sanitize' => 'text', ), 'login_secondary_btn' => array( 'sanitize' => 'bool', ), 'login_secondary_btn_word' => array( 'sanitize' => 'text', ), 'login_secondary_btn_url' => array( 'sanitize' => 'url', ), 'login_forgot_pass_link' => array( 'sanitize' => 'bool', ), 'login_show_rememberme' => array( 'sanitize' => 'bool', ), 'form_asterisk' => array( 'sanitize' => 'bool', ), 'profile_title' => array( 'sanitize' => 'text', ), 'profile_desc' => array( 'sanitize' => 'textarea', ), 'um_profile_object_cache_stop' => array( 'sanitize' => 'bool', ), 'enable_blocks' => array( 'sanitize' => 'bool', ), 'rest_api_version' => array( 'sanitize' => 'text', ), 'uninstall_on_delete' => array( 'sanitize' => 'bool', ), 'lock_register_forms' => array( 'sanitize' => 'bool', ), 'display_login_form_notice' => array( 'sanitize' => 'bool', ), 'banned_capabilities' => array( 'sanitize' => array( UM()->admin(), 'sanitize_wp_capabilities_assoc' ), ), 'secure_notify_admins_banned_accounts' => array( 'sanitize' => 'bool', ), 'secure_notify_admins_banned_accounts__interval' => array( 'sanitize' => 'key', ), 'secure_allowed_redirect_hosts' => array( 'sanitize' => 'textarea', ), ) ); $account_fields = array( array( 'id' => 'account_tab_password', 'type' => 'checkbox', 'label' => __( 'Password Account Tab', 'ultimate-member' ), 'tooltip' => __( 'Enable/disable the Password account tab in account page', 'ultimate-member' ), ), array( 'id' => 'account_tab_privacy', 'type' => 'checkbox', 'label' => __( 'Privacy Account Tab', 'ultimate-member' ), 'tooltip' => __( 'Enable/disable the Privacy account tab in account page', 'ultimate-member' ), ), ); if ( false !== UM()->account()->is_notifications_tab_visible() ) { $account_fields[] = array( 'id' => 'account_tab_notifications', 'type' => 'checkbox', 'label' => __( 'Notifications Account Tab', 'ultimate-member' ), 'tooltip' => __( 'Enable/disable the Notifications account tab in account page', 'ultimate-member' ), ); $settings_map['account_tab_notifications'] = array( 'sanitize' => 'bool', ); } $account_fields = array_merge( $account_fields, array( array( 'id' => 'account_tab_delete', 'type' => 'checkbox', 'label' => __( 'Delete Account Tab', 'ultimate-member' ), 'tooltip' => __( 'Enable/disable the Delete account tab in account page', 'ultimate-member' ), ), array( 'id' => 'delete_account_text', 'type' => 'textarea', // bug with wp 4.4? should be editor 'label' => __( 'Account Deletion Custom Text', 'ultimate-member' ), 'tooltip' => __( 'This is custom text that will be displayed to users before they delete their accounts from your site when password is required.', 'ultimate-member' ), 'args' => array( 'textarea_rows' => 6, ), ), array( 'id' => 'delete_account_no_pass_required_text', 'type' => 'textarea', 'label' => __( 'Account Deletion without password Custom Text', 'ultimate-member' ), 'tooltip' => __( 'This is custom text that will be displayed to users before they delete their accounts from your site when password isn\'t required.', 'ultimate-member' ), 'args' => array( 'textarea_rows' => 6, ), ), array( 'id' => 'account_name', 'type' => 'checkbox', 'label' => __( 'Add a First & Last Name fields', 'ultimate-member' ), 'tooltip' => __( 'Whether to enable these fields on the user account page by default or hide them.', 'ultimate-member' ), ), array( 'id' => 'account_name_disable', 'type' => 'checkbox', 'label' => __( 'Disable First & Last Name fields', 'ultimate-member' ), 'tooltip' => __( 'Whether to allow users changing their first and last name in account page.', 'ultimate-member' ), 'conditional' => array( 'account_name', '=', '1' ), ), array( 'id' => 'account_name_require', 'type' => 'checkbox', 'label' => __( 'Require First & Last Name', 'ultimate-member' ), 'tooltip' => __( 'Require first and last name?', 'ultimate-member' ), 'conditional' => array( 'account_name', '=', '1' ), ), array( 'id' => 'account_email', 'type' => 'checkbox', 'label' => __( 'Allow users to change e-mail', 'ultimate-member' ), 'tooltip' => __( 'Whether to allow users changing their email in account page.', 'ultimate-member' ), ), array( 'id' => 'account_general_password', 'type' => 'checkbox', 'label' => __( 'Password is required?', 'ultimate-member' ), 'tooltip' => __( 'Password is required to save account data.', 'ultimate-member' ), ), array( 'id' => 'account_hide_in_directory', 'type' => 'checkbox', 'label' => __( 'Allow users to hide their profiles from directory', 'ultimate-member' ), 'tooltip' => __( 'Whether to allow users changing their profile visibility from member directory in account page.', 'ultimate-member' ), 'conditional' => array( 'account_tab_privacy', '=', '1' ), ), array( 'id' => 'account_hide_in_directory_default', 'type' => 'select', 'label' => __( 'Hide profiles from directory by default', 'ultimate-member' ), 'tooltip' => __( 'Set default value for the "Hide my profile from directory" option', 'ultimate-member' ), 'options' => array( 'No' => __( 'No', 'ultimate-member' ), 'Yes' => __( 'Yes', 'ultimate-member' ), ), 'size' => 'small', 'conditional' => array( 'account_hide_in_directory', '=', '1' ), ), ) ); $this->settings_map = apply_filters( 'um_settings_map', $settings_map ); /** * UM hook * * @type filter * @title um_settings_structure * @description Extend UM Settings * @input_vars * [{"var":"$settings","type":"array","desc":"UM Settings"}] * @change_log * ["Since: 2.0"] * @usage add_filter( 'um_settings_structure', 'function_name', 10, 1 ); * @example * */ $this->settings_structure = apply_filters( 'um_settings_structure', array( '' => array( 'title' => __( 'General', 'ultimate-member' ), 'sections' => array( '' => array( 'title' => __( 'Pages', 'ultimate-member' ), 'fields' => $general_pages_fields, ), 'users' => array( 'title' => __( 'Users', 'ultimate-member' ), 'fields' => array( array( 'id' => 'permalink_base', 'type' => 'select', 'size' => 'small', 'label' => __( 'Profile Permalink Base', 'ultimate-member' ), // translators: %s: Profile page URL 'tooltip' => sprintf( __( 'Here you can control the permalink structure of the user profile URL globally e.g. %susername/', 'ultimate-member' ), trailingslashit( um_get_core_page( 'user' ) ) ), 'options' => UM()->config()->permalink_base_options, 'placeholder' => __( 'Select...', 'ultimate-member' ), ), array( 'id' => 'permalink_base_custom_meta', 'type' => 'text', 'label' => __( 'Profile Permalink Base Custom Meta Key', 'ultimate-member' ), 'tooltip' => __( 'Specify the custom field meta key that you want to use as profile permalink base. Meta value should be unique.', 'ultimate-member' ), 'conditional' => array( 'permalink_base', '=', 'custom_meta' ), 'size' => 'medium', ), array( 'id' => 'display_name', 'type' => 'select', 'size' => 'medium', 'label' => __( 'User Display Name', 'ultimate-member' ), 'tooltip' => __( 'This is the name that will be displayed for users on the front end of your site. Default setting uses first/last name as display name if it exists', 'ultimate-member' ), 'options' => UM()->config()->display_name_options, 'placeholder' => __( 'Select...', 'ultimate-member' ), ), array( 'id' => 'display_name_field', 'type' => 'text', 'label' => __( 'Display Name Custom Field(s)', 'ultimate-member' ), 'tooltip' => __( 'Specify the custom field meta key or custom fields seperated by comma that you want to use to display users name on the frontend of your site', 'ultimate-member' ), 'conditional' => array( 'display_name', '=', 'field' ), 'size' => 'medium', ), array( 'id' => 'author_redirect', 'type' => 'checkbox', 'label' => __( 'Automatically redirect author page to their profile?', 'ultimate-member' ), 'tooltip' => __( 'If enabled, author pages will automatically redirect to the user\'s profile page', 'ultimate-member' ), ), array( 'id' => 'members_page', 'type' => 'checkbox', 'label' => __( 'Enable Members Directory', 'ultimate-member' ), 'tooltip' => __( 'Control whether to enable or disable member directories on this site', 'ultimate-member' ), ), array( 'id' => 'use_gravatars', 'type' => 'checkbox', 'label' => __( 'Use Gravatars?', 'ultimate-member' ), 'tooltip' => __( 'Do you want to use gravatars instead of the default plugin profile photo (If the user did not upload a custom profile photo / avatar)', 'ultimate-member' ), ), array( 'id' => 'use_um_gravatar_default_builtin_image', 'type' => 'select', 'label' => __( 'Use Gravatar builtin image', 'ultimate-member' ), 'tooltip' => __( 'Gravatar has a number of built in options which you can also use as defaults', 'ultimate-member' ), 'options' => array( 'default' => __( 'Default', 'ultimate-member' ), '404' => __( '404 ( File Not Found response )', 'ultimate-member' ), 'mm' => __( 'Mystery Man', 'ultimate-member' ), 'identicon' => __( 'Identicon', 'ultimate-member' ), 'monsterid' => __( 'Monsterid', 'ultimate-member' ), 'wavatar' => __( 'Wavatar', 'ultimate-member' ), 'retro' => __( 'Retro', 'ultimate-member' ), 'blank' => __( 'Blank ( a transparent PNG image )', 'ultimate-member' ), ), 'conditional' => array( 'use_gravatars', '=', 1 ), 'size' => 'medium', ), array( 'id' => 'use_um_gravatar_default_image', 'type' => 'checkbox', 'label' => __( 'Use Default plugin avatar as Gravatar\'s Default avatar', 'ultimate-member' ), 'tooltip' => __( 'Do you want to use the plugin default avatar instead of the gravatar default photo (If the user did not upload a custom profile photo / avatar)', 'ultimate-member' ), 'conditional' => array( 'use_um_gravatar_default_builtin_image', '=', 'default' ), ), array( 'id' => 'toggle_password', 'type' => 'checkbox', 'label' => __( 'Show/hide password button', 'ultimate-member' ), 'tooltip' => __( 'Enable visibility for show/hide password button for the password field-type.', 'ultimate-member' ), ), array( 'id' => 'require_strongpass', 'type' => 'checkbox', 'label' => __( 'Require a strong password?', 'ultimate-member' ), 'tooltip' => __( 'Enable or disable a strong password rules common for all Ultimate Member forms.', 'ultimate-member' ), ), array( 'id' => 'password_min_chars', 'type' => 'number', 'label' => __( 'Password minimum length', 'ultimate-member' ), 'tooltip' => __( 'If you want to enable a minimum number of characters to be in password. User password field in the UM forms has own settings for that. Leave empty to use default value 8', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'password_max_chars', 'type' => 'number', 'label' => __( 'Password maximum length', 'ultimate-member' ), 'tooltip' => __( 'If you want to enable a maximum number of characters to be in password. User password field in the UM forms has own settings for that. Leave empty to use default value 30', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'profile_noindex', 'type' => 'select', 'size' => 'small', 'label' => __( 'Avoid indexing profile by search engines', 'ultimate-member' ), 'tooltip' => __( 'Hides the profile page for robots. This setting can be overridden by individual role settings.', 'ultimate-member' ), 'options' => array( '0' => __( 'No', 'ultimate-member' ), '1' => __( 'Yes', 'ultimate-member' ), ), ), array( 'id' => 'activation_link_expiry_time', 'type' => 'number', 'label' => __( 'Activation link lifetime', 'ultimate-member' ), 'tooltip' => __( 'How long does an activation link live in seconds? Leave empty for endless links.', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'delete_comments', 'type' => 'checkbox', 'label' => __( 'Deleting user comments after deleting a user', 'ultimate-member' ), 'tooltip' => __( 'Do you want to delete a user\'s comments when that user deletes themself or is removed from the admin dashboard from the site?', 'ultimate-member' ), ), ), ), 'account' => array( 'title' => __( 'Account', 'ultimate-member' ), 'fields' => $account_fields, ), 'uploads' => array( 'title' => __( 'Uploads', 'ultimate-member' ), 'fields' => array( array( 'id' => 'profile_photo_max_size', 'type' => 'text', 'size' => 'small', 'label' => __( 'Profile Photo Maximum File Size (bytes)', 'ultimate-member' ), 'tooltip' => __( 'Sets a maximum size for the uploaded photo', 'ultimate-member' ), ), array( 'id' => 'cover_photo_max_size', 'type' => 'text', 'size' => 'small', 'label' => __( 'Cover Photo Maximum File Size (bytes)', 'ultimate-member' ), 'tooltip' => __( 'Sets a maximum size for the uploaded cover', 'ultimate-member' ), ), array( 'id' => 'photo_thumb_sizes', 'type' => 'multi_text', 'size' => 'small', 'label' => __( 'Profile Photo Thumbnail Sizes (px)', 'ultimate-member' ), 'tooltip' => __( 'Here you can define which thumbnail sizes will be created for each profile photo upload.', 'ultimate-member' ), 'validate' => 'numeric', 'add_text' => __( 'Add New Size', 'ultimate-member' ), 'show_default_number' => 1, ), array( 'id' => 'cover_thumb_sizes', 'type' => 'multi_text', 'size' => 'small', 'label' => __( 'Cover Photo Thumbnail Sizes (px)', 'ultimate-member' ), 'tooltip' => __( 'Here you can define which thumbnail sizes will be created for each cover photo upload.', 'ultimate-member' ), 'validate' => 'numeric', 'add_text' => __( 'Add New Size', 'ultimate-member' ), 'show_default_number' => 1, ), array( 'id' => 'image_orientation_by_exif', 'type' => 'checkbox', 'label' => __( 'Change image orientation', 'ultimate-member' ), 'tooltip' => __( 'Rotate image to and use orientation by the camera EXIF data.', 'ultimate-member' ), ), array( 'id' => 'image_compression', 'type' => 'text', 'size' => 'small', 'label' => __( 'Image Quality', 'ultimate-member' ), 'tooltip' => __( 'Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to 100 (best quality, biggest file). The default range is 60.', 'ultimate-member' ), ), array( 'id' => 'image_max_width', 'type' => 'text', 'size' => 'small', 'label' => __( 'Image Upload Maximum Width (px)', 'ultimate-member' ), 'tooltip' => __( 'Any image upload above this width will be resized to this limit automatically.', 'ultimate-member' ), ), array( 'id' => 'cover_min_width', 'type' => 'text', 'size' => 'small', 'label' => __( 'Cover Photo Minimum Width (px)', 'ultimate-member' ), 'tooltip' => __( 'This will be the minimum width for cover photo uploads', 'ultimate-member' ), ), ), ), ), ), 'access' => array( 'title' => __( 'Access', 'ultimate-member' ), 'sections' => array( '' => array( 'title' => __( 'Restriction Content', 'ultimate-member' ), 'fields' => $access_fields, ), 'other' => array( 'title' => __( 'Other', 'ultimate-member' ), 'fields' => array( array( 'id' => 'enable_reset_password_limit', 'type' => 'checkbox', 'label' => __( 'Enable the Reset Password Limit?', 'ultimate-member' ), ), array( 'id' => 'reset_password_limit_number', 'type' => 'text', 'label' => __( 'Reset Password Limit', 'ultimate-member' ), 'tooltip' => __( 'Set the maximum reset password limit. If reached the maximum limit, user will be locked from using this.', 'ultimate-member' ), 'validate' => 'numeric', 'conditional' => array( 'enable_reset_password_limit', '=', 1 ), 'size' => 'small', ), array( 'id' => 'change_password_request_limit', 'type' => 'checkbox', 'label' => __( 'Change Password request limit', 'ultimate-member' ), 'tooltip' => __( 'This option adds rate limit when submitting the change password form in the Account page. Users are only allowed to submit 1 request per 30 minutes to prevent from any brute-force attacks or password guessing with the form.', 'ultimate-member' ), ), array( 'id' => 'blocked_emails', 'type' => 'textarea', 'label' => __( 'Blocked Email Addresses (Enter one email per line)', 'ultimate-member' ), 'tooltip' => __( 'This will block the specified e-mail addresses from being able to sign up or sign in to your site. To block an entire domain, use something like *@domain.com', 'ultimate-member' ), ), array( 'id' => 'blocked_words', 'type' => 'textarea', 'label' => __( 'Blacklist Words (Enter one word per line)', 'ultimate-member' ), 'tooltip' => __( 'This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their username', 'ultimate-member' ), ), array( 'id' => 'allowed_choice_callbacks', 'type' => 'textarea', 'label' => __( 'Allowed Choice Callbacks (Enter one PHP function per line)', 'ultimate-member' ), 'tooltip' => __( 'This option lets you specify the choice callback functions to prevent anyone from using 3rd-party functions that may put your site at risk.', 'ultimate-member' ), ), array( 'id' => 'allow_url_redirect_confirm', 'type' => 'checkbox', 'label' => __( 'Allow external link redirect confirm', 'ultimate-member' ), 'tooltip' => __( 'Using JS.confirm alert when you go to an external link.', 'ultimate-member' ), ), ), ), ), ), 'email' => array( 'title' => __( 'Email', 'ultimate-member' ), 'fields' => array( array( 'id' => 'admin_email', 'type' => 'text', 'label' => __( 'Admin E-mail Address', 'ultimate-member' ), 'tooltip' => __( 'e.g. admin@companyname.com', 'ultimate-member' ), ), array( 'id' => 'mail_from', 'type' => 'text', 'label' => __( 'Mail appears from', 'ultimate-member' ), 'tooltip' => __( 'e.g. Site Name', 'ultimate-member' ), ), array( 'id' => 'mail_from_addr', 'type' => 'text', 'label' => __( 'Mail appears from address', 'ultimate-member' ), 'tooltip' => __( 'e.g. admin@companyname.com', 'ultimate-member' ), ), array( 'id' => 'email_html', 'type' => 'checkbox', 'label' => __( 'Use HTML for E-mails?', 'ultimate-member' ), 'tooltip' => __( 'If you plan use e-mails with HTML, please make sure that this option is enabled. Otherwise, HTML will be displayed as plain text.', 'ultimate-member' ), ), ), ), 'appearance' => array( 'title' => __( 'Appearance', 'ultimate-member' ), 'sections' => array( '' => array( 'title' => __( 'Profile', 'ultimate-member' ), 'fields' => array( array( 'id' => 'profile_template', 'type' => 'select', 'label' => __( 'Profile Default Template', 'ultimate-member' ), 'tooltip' => __( 'This will be the default template to output profile', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_template' ), 'options' => UM()->shortcodes()->get_templates( 'profile' ), 'size' => 'small', ), array( 'id' => 'profile_max_width', 'type' => 'text', 'label' => __( 'Profile Maximum Width', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_max_width' ), 'tooltip' => __( 'The maximum width this shortcode can take from the page width', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'profile_area_max_width', 'type' => 'text', 'label' => __( 'Profile Area Maximum Width', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_area_max_width' ), 'tooltip' => __( 'The maximum width of the profile area inside profile (below profile header)', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'profile_icons', 'type' => 'select', 'label' => __( 'Profile Field Icons', 'ultimate-member' ), 'tooltip' => __( 'This is applicable for edit mode only', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_icons' ), 'options' => array( 'field' => __( 'Show inside text field', 'ultimate-member' ), 'label' => __( 'Show with label', 'ultimate-member' ), 'off' => __( 'Turn off', 'ultimate-member' ), ), 'size' => 'small', ), array( 'id' => 'profile_primary_btn_word', 'type' => 'text', 'label' => __( 'Profile Primary Button Text', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_primary_btn_word' ), 'tooltip' => __( 'The text that is used for updating profile button', 'ultimate-member' ), 'size' => 'medium', ), array( 'id' => 'profile_secondary_btn', 'type' => 'checkbox', 'label' => __( 'Profile Secondary Button', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_secondary_btn' ), 'tooltip' => __( 'Switch on/off the secondary button display in the form', 'ultimate-member' ), ), array( 'id' => 'profile_secondary_btn_word', 'type' => 'text', 'label' => __( 'Profile Secondary Button Text', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_secondary_btn_word' ), 'tooltip' => __( 'The text that is used for cancelling update profile button', 'ultimate-member' ), 'conditional' => array( 'profile_secondary_btn', '=', 1 ), 'size' => 'medium', ), array( 'id' => 'default_avatar', 'type' => 'media', 'label' => __( 'Default Profile Photo', 'ultimate-member' ), 'tooltip' => __( 'You can change the default profile picture globally here. Please make sure that the photo is 300x300px.', 'ultimate-member' ), 'upload_frame_title' => __( 'Select Default Profile Photo', 'ultimate-member' ), 'default' => array( 'url' => UM_URL . 'assets/img/default_avatar.jpg', ), ), array( 'id' => 'default_cover', 'type' => 'media', 'url' => true, 'preview' => false, 'label' => __( 'Default Cover Photo', 'ultimate-member' ), 'tooltip' => __( 'You can change the default cover photo globally here. Please make sure that the default cover is large enough and respects the ratio you are using for cover photos.', 'ultimate-member' ), 'upload_frame_title' => __( 'Select Default Cover Photo', 'ultimate-member' ), ), array( 'id' => 'disable_profile_photo_upload', 'type' => 'checkbox', 'label' => __( 'Disable Profile Photo Upload', 'ultimate-member' ), 'tooltip' => __( 'Switch on/off the profile photo uploader', 'ultimate-member' ), 'default' => um_get_metadefault( 'disable_profile_photo_upload' ), ), array( 'id' => 'profile_photosize', 'type' => 'select', 'label' => __( 'Profile Photo Size', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_photosize' ), 'options' => UM()->files()->get_profile_photo_size( 'photo_thumb_sizes' ), 'tooltip' => __( 'The global default of profile photo size. This can be overridden by individual form settings', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'profile_cover_enabled', 'type' => 'checkbox', 'label' => __( 'Profile Cover Photos', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_cover_enabled' ), 'tooltip' => __( 'Switch on/off the profile cover photos', 'ultimate-member' ), ), array( 'id' => 'profile_coversize', 'type' => 'select', 'label' => __( 'Profile Cover Size', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_coversize' ), 'options' => UM()->files()->get_profile_photo_size( 'cover_thumb_sizes' ), 'tooltip' => __( 'The global default width of cover photo size. This can be overridden by individual form settings', 'ultimate-member' ), 'conditional' => array( 'profile_cover_enabled', '=', 1 ), 'size' => 'small', ), array( 'id' => 'profile_cover_ratio', 'type' => 'select', 'label' => __( 'Profile Cover Ratio', 'ultimate-member' ), 'tooltip' => __( 'Choose global ratio for cover photos of profiles', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_cover_ratio' ), 'options' => array( '1.6:1' => '1.6:1', '2.7:1' => '2.7:1', '2.2:1' => '2.2:1', '3.2:1' => '3.2:1', ), 'conditional' => array( 'profile_cover_enabled', '=', 1 ), 'size' => 'small', ), array( 'id' => 'profile_show_metaicon', 'type' => 'checkbox', 'label' => __( 'Profile Header Meta Text Icon', 'ultimate-member' ), 'default' => 0, 'tooltip' => __( 'Display field icons for related user meta fields in header or not', 'ultimate-member' ), ), array( 'id' => 'profile_show_name', 'type' => 'checkbox', 'label' => __( 'Show display name in profile header', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_show_name' ), 'tooltip' => __( 'Switch on/off the user name on profile header', 'ultimate-member' ), ), array( 'id' => 'profile_show_social_links', 'type' => 'checkbox', 'label' => __( 'Show social links in profile header', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_show_social_links' ), 'tooltip' => __( 'Switch on/off the social links on profile header', 'ultimate-member' ), ), array( 'id' => 'profile_show_bio', 'type' => 'checkbox', 'label' => __( 'Show user description in header', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_show_bio' ), 'tooltip' => __( 'Switch on/off the user description on profile header', 'ultimate-member' ), ), array( 'id' => 'profile_show_html_bio', 'type' => 'checkbox', 'label' => __( 'Enable HTML support for user description', 'ultimate-member' ), 'tooltip' => __( 'Switch on/off to enable/disable support for html tags on user description.', 'ultimate-member' ), ), array( 'id' => 'profile_bio_maxchars', 'type' => 'text', 'label' => __( 'User description maximum chars', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_bio_maxchars' ), 'tooltip' => __( 'Maximum number of characters to allow in user description field in header.', 'ultimate-member' ), 'conditional' => array( 'profile_show_bio', '=', 1 ), 'size' => 'small', ), array( 'id' => 'profile_header_menu', 'type' => 'select', 'label' => __( 'Profile Header Menu Position', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_header_menu' ), 'tooltip' => __( 'For incompatible themes, please make the menu open from left instead of bottom by default.', 'ultimate-member' ), 'options' => array( 'bc' => __( 'Bottom of Icon', 'ultimate-member' ), 'lc' => __( 'Left of Icon (right for RTL)', 'ultimate-member' ), ), 'size' => 'small', ), array( 'id' => 'profile_empty_text', 'type' => 'checkbox', 'label' => __( 'Show a custom message if profile is empty', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_empty_text' ), 'tooltip' => __( 'Switch on/off the custom message that appears when the profile is empty', 'ultimate-member' ), ), array( 'id' => 'profile_empty_text_emo', 'type' => 'checkbox', 'label' => __( 'Show the emoticon', 'ultimate-member' ), 'default' => um_get_metadefault( 'profile_empty_text_emo' ), 'tooltip' => __( 'Switch on/off the emoticon (sad face) that appears above the message', 'ultimate-member' ), 'conditional' => array( 'profile_empty_text', '=', 1 ), ), ), ), 'profile_menu' => array( 'title' => __( 'Profile Menu', 'ultimate-member' ), 'fields' => $appearances_profile_menu_fields, ), 'registration_form' => array( 'title' => __( 'Registration Form', 'ultimate-member' ), 'fields' => array( array( 'id' => 'register_template', 'type' => 'select', 'label' => __( 'Registration Default Template', 'ultimate-member' ), 'tooltip' => __( 'This will be the default template to output registration', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_template' ), 'options' => UM()->shortcodes()->get_templates( 'register' ), 'size' => 'small', ), array( 'id' => 'register_max_width', 'type' => 'text', 'label' => __( 'Registration Maximum Width', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_max_width' ), 'tooltip' => __( 'The maximum width this shortcode can take from the page width', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'register_align', 'type' => 'select', 'label' => __( 'Registration Shortcode Alignment', 'ultimate-member' ), 'tooltip' => __( 'The shortcode is centered by default unless you specify otherwise here', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_align' ), 'options' => array( 'center' => __( 'Centered', 'ultimate-member' ), 'left' => __( 'Left aligned', 'ultimate-member' ), 'right' => __( 'Right aligned', 'ultimate-member' ), ), 'size' => 'small', ), array( 'id' => 'register_icons', 'type' => 'select', 'label' => __( 'Registration Field Icons', 'ultimate-member' ), 'tooltip' => __( 'This controls the display of field icons in the registration form', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_icons' ), 'options' => array( 'field' => __( 'Show inside text field', 'ultimate-member' ), 'label' => __( 'Show with label', 'ultimate-member' ), 'off' => __( 'Turn off', 'ultimate-member' ), ), 'size' => 'small', ), array( 'id' => 'register_primary_btn_word', 'type' => 'text', 'label' => __( 'Registration Primary Button Text', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_primary_btn_word' ), 'tooltip' => __( 'The text that is used for primary button text', 'ultimate-member' ), 'size' => 'medium', ), array( 'id' => 'register_secondary_btn', 'type' => 'checkbox', 'label' => __( 'Registration Secondary Button', 'ultimate-member' ), 'default' => 1, 'tooltip' => __( 'Switch on/off the secondary button display in the form', 'ultimate-member' ), ), array( 'id' => 'register_secondary_btn_word', 'type' => 'text', 'label' => __( 'Registration Secondary Button Text', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_secondary_btn_word' ), 'tooltip' => __( 'The text that is used for the secondary button text', 'ultimate-member' ), 'conditional' => array( 'register_secondary_btn', '=', 1 ), 'size' => 'medium', ), array( 'id' => 'register_secondary_btn_url', 'type' => 'text', 'label' => __( 'Registration Secondary Button URL', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_secondary_btn_url' ), 'tooltip' => __( 'You can replace default link for this button by entering custom URL', 'ultimate-member' ), 'conditional' => array( 'register_secondary_btn', '=', 1 ), 'size' => 'medium', ), array( 'id' => 'register_role', 'type' => 'select', 'label' => __( 'Registration Default Role', 'ultimate-member' ), 'tooltip' => __( 'This will be the default role assigned to users registering thru registration form', 'ultimate-member' ), 'default' => um_get_metadefault( 'register_role' ), 'options' => UM()->roles()->get_roles( __( 'Default', 'ultimate-member' ) ), 'size' => 'small', ), ), ), 'login_form' => array( 'title' => __( 'Login Form', 'ultimate-member' ), 'fields' => array( array( 'id' => 'login_template', 'type' => 'select', 'label' => __( 'Login Default Template', 'ultimate-member' ), 'tooltip' => __( 'This will be the default template to output login', 'ultimate-member' ), 'default' => um_get_metadefault( 'login_template' ), 'options' => UM()->shortcodes()->get_templates( 'login' ), 'size' => 'small', ), array( 'id' => 'login_max_width', 'type' => 'text', 'label' => __( 'Login Maximum Width', 'ultimate-member' ), 'default' => um_get_metadefault( 'login_max_width' ), 'tooltip' => __( 'The maximum width this shortcode can take from the page width', 'ultimate-member' ), 'size' => 'small', ), array( 'id' => 'login_align', 'type' => 'select', 'label' => __( 'Login Shortcode Alignment', 'ultimate-member' ), 'tooltip' => __( 'The shortcode is centered by default unless you specify otherwise here', 'ultimate-member' ), 'default' => um_get_metadefault( 'login_align' ), 'options' => array( 'center' => __( 'Centered', 'ultimate-member' ), 'left' => __( 'Left aligned', 'ultimate-member' ), 'right' => __( 'Right aligned', 'ultimate-member' ), ), 'size' => 'small', ), array( 'id' => 'login_icons', 'type' => 'select', 'label' => __( 'Login Field Icons', 'ultimate-member' ), 'tooltip' => __( 'This controls the display of field icons in the login form', 'ultimate-member' ), 'default' => um_get_metadefault( 'login_icons' ), 'options' => array( 'field' => __( 'Show inside text field', 'ultimate-member' ), 'label' => __( 'Show with label', 'ultimate-member' ), 'off' => __( 'Turn off', 'ultimate-member' ), ), 'size' => 'small', ), array( 'id' => 'login_primary_btn_word', 'type' => 'text', 'label' => __( 'Login Primary Button Text', 'ultimate-member' ), 'default' => um_get_metadefault( 'login_primary_btn_word' ), 'tooltip' => __( 'The text that is used for primary button text', 'ultimate-member' ), 'size' => 'medium', ), array( 'id' => 'login_secondary_btn', 'type' => 'checkbox', 'label' => __( 'Login Secondary Button', 'ultimate-member' ), 'default' => 1, 'tooltip' => __( 'Switch on/off the secondary button display in the form', 'ultimate-member' ), ), array( 'id' => 'login_secondary_btn_word', 'type' => 'text', 'label' => __( 'Login Secondary Button Text', 'ultimate-member' ), 'default' => um_get_metadefault( 'login_secondary_btn_word' ), 'tooltip' => __( 'The text that is used for the secondary button text', 'ultimate-member' ), 'conditional' => array( 'login_secondary_btn', '=', 1 ), 'size' => 'medium', ), array( 'id' => 'login_secondary_btn_url', 'type' => 'text', 'label' => __( 'Login Secondary Button URL', 'ultimate-member' ), 'default' => um_get_metadefault( 'login_secondary_btn_url' ), 'tooltip' => __( 'You can replace default link for this button by entering custom URL', 'ultimate-member' ), 'conditional' => array( 'login_secondary_btn', '=', 1 ), 'size' => 'medium', ), array( 'id' => 'login_forgot_pass_link', 'type' => 'checkbox', 'label' => __( 'Login Forgot Password Link', 'ultimate-member' ), 'default' => 1, 'tooltip' => __( 'Switch on/off the forgot password link in login form', 'ultimate-member' ), ), array( 'id' => 'login_show_rememberme', 'type' => 'checkbox', 'label' => __( 'Show "Remember Me"', 'ultimate-member' ), 'default' => 1, 'tooltip' => __( 'Allow users to choose If they want to stay signed in even after closing the browser. If you do not show this option, the default will be to not remember login session.', 'ultimate-member' ), ), ), ), ), ), 'extensions' => array( 'title' => __( 'Extensions', 'ultimate-member' ), ), 'licenses' => array( 'title' => __( 'Licenses', 'ultimate-member' ), ), 'misc' => array( 'title' => __( 'Misc', 'ultimate-member' ), 'fields' => array( array( 'id' => 'form_asterisk', 'type' => 'checkbox', 'label' => __( 'Show an asterisk for required fields', 'ultimate-member' ), ), array( 'id' => 'profile_title', 'type' => 'text', 'label' => __( 'User Profile Title', 'ultimate-member' ), 'tooltip' => __( 'This is the title that is displayed on a specific user profile', 'ultimate-member' ), 'size' => 'medium', ), array( 'id' => 'profile_desc', 'type' => 'textarea', 'label' => __( 'User Profile Dynamic Meta Description', 'ultimate-member' ), 'tooltip' => __( 'This will be used in the meta description that is available for search-engines.', 'ultimate-member' ), 'args' => array( 'textarea_rows' => 6, ), ), array( 'id' => 'um_profile_object_cache_stop', 'type' => 'checkbox', 'label' => __( 'Disable Cache User Profile', 'ultimate-member' ), 'tooltip' => __( 'Check this box if you would like to disable Ultimate Member user\'s cache.', 'ultimate-member' ), ), array( 'id' => 'enable_blocks', 'type' => 'checkbox', 'label' => __( 'Enable Gutenberg Blocks', 'ultimate-member' ), 'tooltip' => __( 'Check this box if you would like to use Ultimate Member blocks in Gutenberg editor. Important some themes have the conflicts with Gutenberg editor.', 'ultimate-member' ), ), array( 'id' => 'rest_api_version', 'type' => 'select', 'label' => __( 'REST API version', 'ultimate-member' ), 'tooltip' => __( 'This controls the REST API version, we recommend to use the last version', 'ultimate-member' ), 'options' => array( '1.0' => __( '1.0 version', 'ultimate-member' ), '2.0' => __( '2.0 version', 'ultimate-member' ), ), ), // backward compatibility option leave it disabled for better security and ability to exclude posts/terms pre-query // otherwise we filtering only results and restricted posts/terms can be visible array( 'id' => 'disable_restriction_pre_queries', 'type' => 'checkbox', 'label' => __( 'Disable pre-queries for restriction content logic (advanced)', 'ultimate-member' ), 'tooltip' => __( 'Please enable this option only in the cases when you have big or unnecessary queries on your site with active restriction logic. If you want to exclude posts only from the results queries instead of pre_get_posts and fully-hidden post logic also please enable this option. It activates the restriction content logic until 2.2.x version without latest security enhancements', 'ultimate-member' ), ), $same_page_update, array( 'id' => 'uninstall_on_delete', 'type' => 'checkbox', 'label' => __( 'Remove Data on Uninstall?', 'ultimate-member' ), 'tooltip' => __( 'Check this box if you would like Ultimate Member to completely remove all of its data when the plugin/extensions are deleted.', 'ultimate-member' ), ), ), ), 'install_info' => array( 'title' => __( 'Install Info', 'ultimate-member' ), 'fields' => array( array( 'type' => 'install_info', ), ), ), 'override_templates' => array( 'title' => __( 'Override templates', 'ultimate-member' ), 'fields' => array( array( 'type' => 'override_templates', ), ), ), ) ); } /** * @param array $settings * * @return array */ public function sorting_licenses_options( $settings ) { //sorting licenses if ( ! empty( $settings['licenses']['fields'] ) ) { $licenses = $settings['licenses']['fields']; @uasort( $licenses, function( $a, $b ) { return strnatcasecmp( $a['label'], $b['label'] ); } ); $settings['licenses']['fields'] = $licenses; } //sorting extensions by the title if ( ! empty( $settings['extensions']['sections'] ) ) { $extensions = $settings['extensions']['sections']; @uasort( $extensions, function( $a, $b ) { return strnatcasecmp( $a['title'], $b['title'] ); } ); $keys = array_keys( $extensions ); $temp = array( '' => $extensions[ $keys[0] ], ); unset( $extensions[ $keys[0] ] ); $extensions = $temp + $extensions; $settings['extensions']['sections'] = $extensions; } return $settings; } /** * @param $tab * @param $section * * @return array */ function get_section_fields( $tab, $section ) { if ( empty( $this->settings_structure[ $tab ] ) ) { return array(); } if ( ! empty( $this->settings_structure[ $tab ]['sections'][ $section ]['fields'] ) ) { return $this->settings_structure[ $tab ]['sections'][ $section ]['fields']; } elseif ( ! empty( $this->settings_structure[ $tab ]['fields'] ) ) { return $this->settings_structure[ $tab ]['fields']; } return array(); } /** * Setup admin menu */ function primary_admin_menu() { add_submenu_page( 'ultimatemember', __( 'Settings', 'ultimate-member' ), __( 'Settings', 'ultimate-member' ), 'manage_options', 'um_options', array( &$this, 'settings_page' ) ); } /** * Settings page callback */ function settings_page() { $current_tab = empty( $_GET['tab'] ) ? '' : sanitize_key( $_GET['tab'] ); $current_subtab = empty( $_GET['section'] ) ? '' : sanitize_key( $_GET['section'] ); $settings_struct = $this->settings_structure[ $current_tab ]; //remove not option hidden fields if ( ! empty( $settings_struct['fields'] ) ) { foreach ( $settings_struct['fields'] as $field_key => $field_options ) { if ( isset( $field_options['is_option'] ) && $field_options['is_option'] === false ) { unset( $settings_struct['fields'][ $field_key ] ); } } } if ( empty( $settings_struct['fields'] ) && empty( $settings_struct['sections'] ) ) { um_js_redirect( add_query_arg( array( 'page' => 'um_options' ), admin_url( 'admin.php' ) ) ); } if ( ! empty( $settings_struct['sections'] ) ) { if ( empty( $settings_struct['sections'][ $current_subtab ] ) ) { um_js_redirect( add_query_arg( array( 'page' => 'um_options', 'tab' => $current_tab ), admin_url( 'admin.php' ) ) ); } } echo 'here.', 'ultimate-member' ), 'https://docs.ultimatemember.com/article/1516-templates-map' ), UM()->get_allowed_html( 'admin_notice' ) ); ?>
scan_template_files( UM_PATH . '/templates/' ); /** * Filters an array of the template files for scanning versions. * * @since 2.6.1 * @hook um_override_templates_scan_files * * @param {array} $scan_files Template files for scanning versions. * * @return {array} Template files for scanning versions. */ $scan_files = apply_filters( 'um_override_templates_scan_files', $scan_files ); $out_date = false; set_transient( 'um_check_template_versions', time(), 12 * HOUR_IN_SECONDS ); foreach ( $scan_files as $key => $files ) { foreach ( $files as $file ) { if ( false === strpos( $file, 'email/' ) ) { $located = array(); /** * Filters an array of the template files for scanning versions based on $key. * * Note: $key - means um or extension key. * * @since 2.6.1 * @hook um_override_templates_get_template_path__{$key} * * @param {array} $located Template file paths for scanning versions. * @param {string} $file Template file name. * * @return {array} Template file paths for scanning versions. */ $located = apply_filters( "um_override_templates_get_template_path__{$key}", $located, $file ); $exceptions = array( 'members-grid.php', 'members-header.php', 'members-list.php', 'members-pagination.php', 'searchform.php', 'login-to-view.php', 'profile/comments.php', 'profile/comments-single.php', 'profile/posts.php', 'profile/posts-single.php', 'modal/um_upload_single.php', 'modal/um_view_photo.php', ); if ( ! empty( $located ) ) { $theme_file = $located['theme']; } elseif ( in_array( $file, $exceptions, true ) && file_exists( get_stylesheet_directory() . '/ultimate-member/' . $file ) ) { $theme_file = get_stylesheet_directory() . '/ultimate-member/' . $file; } elseif ( file_exists( get_stylesheet_directory() . '/ultimate-member/templates/' . $file ) ) { $theme_file = get_stylesheet_directory() . '/ultimate-member/templates/' . $file; } else { $theme_file = false; } if ( ! empty( $theme_file ) ) { $core_file = $file; if ( ! empty( $located ) ) { $core_path = $located['core']; $core_file_path = stristr( $core_path, 'wp-content' ); } else { $core_path = UM_PATH . '/templates/' . $core_file; $core_file_path = stristr( UM_PATH . 'templates/' . $core_file, 'wp-content' ); } $core_version = $this->get_file_version( $core_path ); $theme_version = $this->get_file_version( $theme_file ); $status = esc_html__( 'Theme version up to date', 'ultimate-member' ); $status_code = 1; if ( version_compare( $theme_version, $core_version, '<' ) ) { $status = esc_html__( 'Theme version is out of date', 'ultimate-member' ); $status_code = 0; } if ( '' === $theme_version ) { $status = esc_html__( 'Theme version is empty', 'ultimate-member' ); $status_code = 0; } if ( 0 === $status_code ) { $out_date = true; update_option( 'um_override_templates_outdated', true ); } $outdated_files[] = array( 'core_version' => $core_version, 'theme_version' => $theme_version, 'core_file' => $core_file_path, 'theme_file' => stristr( $theme_file, 'wp-content' ), 'status' => $status, 'status_code' => $status_code, ); } } } } if ( false === $out_date ) { delete_option( 'um_override_templates_outdated' ); } update_option( 'um_template_statuses', $outdated_files ); if ( true === $get_list ) { return $outdated_files; } } /** * Scan the template files. * * @param string $template_path Path to the template directory. * @return array */ public static function scan_template_files( $template_path ) { $files = @scandir( $template_path ); // @codingStandardsIgnoreLine. $result = array(); if ( ! empty( $files ) ) { foreach ( $files as $value ) { if ( ! in_array( $value, array( '.', '..' ), true ) ) { if ( is_dir( $template_path . DIRECTORY_SEPARATOR . $value ) ) { $sub_files = self::scan_template_files( $template_path . DIRECTORY_SEPARATOR . $value ); foreach ( $sub_files as $sub_file ) { $result[] = $value . DIRECTORY_SEPARATOR . $sub_file; } } else { $result[] = $value; } } } } return $result; } /** * @param $file string * * @return string */ public static function get_file_version( $file ) { // Avoid notices if file does not exist. if ( ! file_exists( $file ) ) { return ''; } // We don't need to write to the file, so just open for reading. $fp = fopen( $file, 'r' ); // @codingStandardsIgnoreLine. // Pull only the first 8kiB of the file in. $file_data = fread( $fp, 8192 ); // @codingStandardsIgnoreLine. // PHP will close a file handle, but we are good citizens. fclose( $fp ); // @codingStandardsIgnoreLine. // Make sure we catch CR-only line endings. $file_data = str_replace( "\r", "\n", $file_data ); $version = ''; if ( preg_match( '/^[ \t\/*#@]*' . preg_quote( '@version', '/' ) . '(.*)$/mi', $file_data, $match ) && $match[1] ) { $version = _cleanup_header_comment( $match[1] ); } return $version; } /** * @param $html * @param $section_fields */ function settings_install_info_tab( $html, $section_fields ) { global $wpdb; if ( ! class_exists( '\Browser' ) ) require_once UM_PATH . 'includes/lib/browser.php'; // Detect browser $browser = new \Browser(); // Get theme info $theme_data = wp_get_theme(); $theme = $theme_data->Name . ' ' . $theme_data->Version; // Identify Hosting Provider $host = um_get_host(); um_fetch_user( get_current_user_id() ); if ( isset( $this->content ) ) { echo $this->content; } else { ?>