diff --git a/addons/system_info.php b/addons/system_info.php index 487050a4..f1e23cd7 100644 --- a/addons/system_info.php +++ b/addons/system_info.php @@ -160,7 +160,7 @@ Nav Menu Settings: Exclude CSS/JS on Home: ---- UM Page Configurations --- +--- UM Pages Configuration --- User: @@ -172,6 +172,50 @@ Logout: Password Reset: +-- UM Users Configuration --- + +Default New User Role: +Profile Permalink Base: +User Display Name: +Force Name to Uppercase: value( um_get_option('force_display_name_capitlized'), 'yesno', true ); ?> +Redirect author to profile: value( um_get_option('author_redirect'), 'yesno', true ); ?> +Enable Members Directory: value( um_get_option('members_page'), 'yesno', true ); ?> +Use Gravatars: value( um_get_option('use_gravatars'), 'yesno', true ); ?> +Gravatar builtin image: +UM Avatar as blank Gravatar: value( um_get_option('use_um_gravatar_default_image'), 'yesno', true ); ?> +Require a strong password: value( um_get_option('reset_require_strongpass'), 'onoff', true ); ?> +Editable primary email field in profile view: value( um_get_option('editable_primary_email_in_profile'), 'onoff', true ); ?> + +-- UM Access Configuration --- + +Panic Key: +Global Site Access: + +Custom Redirect URL: +Exclude the following URLs: +Backend Login Screen for Guests: value( um_get_option('wpadmin_login'), 'yesno', true ); ?> +Redirect to alternative login page: +Backend Register Screen for Guests: value( um_get_option('wpadmin_register'), 'yesno', true ); ?> +Redirect to alternative register page: +Access Control widget for Admins only: value( um_get_option('access_widget_admin_only'), 'yesno', true ); ?> +Enable the Reset Password Limit: value( um_get_option('enable_reset_password_limit'), 'yesno', true ); ?> +value( um_get_option('disable_admin_reset_password_limit'), 'yesno', true ); +} ?> + +Whitelisted Backend IPs: + + +Blocked IP Addresses: + + +Blocked Email Addresses: + + +Blacklist Words: + + --- UM Total Users --- $count){ // Show templates that have been copied to the theme's edd_templates dir $dir = get_stylesheet_directory() . '/ultimate-member/templates/*.php'; -echo "--Templates Directory: ".$dir."\n"; if ( ! empty( $dir ) ){ $found = glob( $dir ); if( ! empty( $found ) ){ foreach ( glob( $dir ) as $file ) { - echo "Filename: " . basename( $file ) . "\n"; + echo "File: " . $file . "\n"; } }else { echo 'N/A'."\n"; } } echo "\n\n"; + $dir = get_stylesheet_directory() . '/ultimate-member/templates/emails/*.html'; -echo "-- Email Templates Directory: ".$dir."\n"; +echo "-- UM Email HTML Templates -- \n\n"; + if ( ! empty( $dir ) ){ $found = glob( $dir ); if( ! empty( $found ) ){ foreach ( glob( $dir ) as $file ) { - echo "Filename: " . basename( $file ) . "\n"; + echo "File: ". $file . "\n"; } }else { echo 'N/A'."\n"; @@ -231,12 +276,12 @@ if ( ! empty( $dir ) ){ --- Web Server Configurations --- PHP Version: -MySQL Version: +MySQL Version: db_version() . "\n"; ?> Web Server Info: --- PHP Configurations -- -PHP Safe Mode: +PHP Safe Mode: value( ini_get( 'safe_mode' ), 'yesno', true ); ?> PHP Memory Limit: PHP Upload Max Size: PHP Post Max Size: @@ -323,6 +368,26 @@ do_action( 'um_system_info_after' );