Skip to content

Commit

Permalink
Add ability to disable theme configuration page for user mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Rostovtsev committed Oct 24, 2018
1 parent 60bce9e commit 55a921f
Show file tree
Hide file tree
Showing 24 changed files with 88 additions and 7 deletions.
18 changes: 16 additions & 2 deletions authentic-lib.pm
Expand Up @@ -877,7 +877,8 @@ sub print_left_menu
$theme_text{'right_slcheck'}, 1);
}

} elsif (!foreign_available("webmin") && $__custom_print eq '0') {
} elsif (!foreign_available("webmin") && $__custom_print eq '0' &&
$theme_config{'settings_show_theme_configuration_for_admins_only'} ne 'true') {
print_category_link($gconfig{'webprefix'} . "/settings-user.cgi", $theme_text{'settings_title'}, 1);
$__custom_print++;
}
Expand Down Expand Up @@ -2210,6 +2211,8 @@ sub theme_settings
'true',
'settings_theme_options_button',
'true',
'settings_show_theme_configuration_for_admins_only',
'false',
'settings_leftmenu_button_language',
'false',
'settings_leftmenu_button_refresh',
Expand Down Expand Up @@ -2315,7 +2318,18 @@ sub theme_settings

if ($t eq 'exclusions') {

# Exclude list of combined settings for Virtualmin/Cloudmin/Usermin
# Exclude list of combined settings for UserminVirtualmin/Cloudmin
my @s_vc_e = ('settings_show_theme_configuration_for_admins_only');

if (!&foreign_available("server-manager") &&
!foreign_available("virtual-server") && !get_usermin_data("mailbox"))
{
foreach my $e (@s_vc_e) {
push(@theme_settings_excluded, $e);
}
}

# Exclude list of combined settings for Virtualmin/Cloudmin
my @s_vc_e = ('settings_right_default_tab_webmin', 'settings_right_reload');

if (!&foreign_available("server-manager") &&
Expand Down
3 changes: 2 additions & 1 deletion buttons.pm
Expand Up @@ -50,7 +50,8 @@ if ($get_user_level eq '0' &&
print '</li>';
}

if ($theme_config{'settings_theme_options_button'} ne 'false') {
if (($get_user_level eq '0' && $theme_config{'settings_theme_options_button'} ne 'false') ||
($get_user_level ne '0' && $theme_config{'settings_show_theme_configuration_for_admins_only'} ne 'true')) {
print '<li data-linked' .
get_button_tooltip('settings_title', undef, 'auto top') . ' class="user-link theme-options cursor-pointer">';
if ($get_user_level eq '0' && foreign_available('webmin')) {
Expand Down
5 changes: 5 additions & 0 deletions lang/ca.UTF-8
Expand Up @@ -962,3 +962,8 @@ settings_sysinfo_max_servers=Maximum virtual servers to show
right_download_is_ready=Your download is ready.
theme_xhred_download_is_being_prepared=Your download is being prepared. It may take a while. Please wait..
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
5 changes: 5 additions & 0 deletions lang/cz.UTF-8
Expand Up @@ -961,3 +961,8 @@ settings_sysinfo_max_servers=Maximum virtual servers to show
right_download_is_ready=Your download is ready.
theme_xhred_download_is_being_prepared=Your download is being prepared. It may take a while. Please wait..
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/da.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
5 changes: 5 additions & 0 deletions lang/de.UTF-8
Expand Up @@ -953,3 +953,8 @@ settings_sysinfo_max_servers=Maximum virtual servers to show
right_download_is_ready=Your download is ready.
theme_xhred_download_is_being_prepared=Your download is being prepared. It may take a while. Please wait..
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/en.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/es.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/fr.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/id.UTF-8
Expand Up @@ -966,3 +966,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/it.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/ja_JP.UTF-8
Expand Up @@ -961,3 +961,6 @@ theme_xhred_download_is_being_prepared= あなたのダウンロードは準備
theme_xhred_backup_is_being_prepared= バックアップを準備中です。それには時間がかかることがあります。お待ちください..

settings_mail_ui= 新しいメールUIを有効にする

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/nl.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/no.UTF-8
Expand Up @@ -822,3 +822,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/pl.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/pt.UTF-8
Expand Up @@ -964,3 +964,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/ro_RO.UTF-8
Expand Up @@ -962,3 +962,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/ru.UTF-8
Expand Up @@ -967,3 +967,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/sq.UTF-8
Expand Up @@ -975,3 +975,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/sv.UTF-8
Expand Up @@ -961,3 +961,6 @@ theme_xhred_download_is_being_prepared=Din nerladdning förbereds. Det kan ta et
theme_xhred_backup_is_being_prepared=Din säkerhetskopia förbereds. Det kan ta ett tag. Vänta...

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 3 additions & 0 deletions lang/zh_CN.UTF-8
Expand Up @@ -961,3 +961,6 @@ theme_xhred_download_is_being_prepared=Your download is being prepared. It may t
theme_xhred_backup_is_being_prepared=Your backup is being prepared. It may take a while. Please wait..

settings_mail_ui=Enable new mail UI

settings_show_theme_configuration_for_admins_only=Show theme settings button for administrators only
settings_show_theme_configuration_for_admins_only_error=Access denied: Administrator has blocked access to user customisations
3 changes: 2 additions & 1 deletion navigation.pm
Expand Up @@ -79,7 +79,8 @@ if (
$theme_text{'settings_right_theme_left_background_title'}, 1);
$__custom_print++;

} elsif (!foreign_available("webmin") && $__custom_print eq '0') {
} elsif (!foreign_available("webmin") && $__custom_print eq '0' &&
$theme_config{'settings_show_theme_configuration_for_admins_only'} ne 'true') {
print_category_link($gconfig{'webprefix'} . "/settings-user.cgi", $theme_text{'settings_title'}, 1);
$__custom_print++;
}
Expand Down
2 changes: 2 additions & 0 deletions settings-user.cgi
Expand Up @@ -13,6 +13,8 @@ our ($remote_user, %theme_config, %theme_text);

require(dirname(__FILE__) . "/authentic-lib.pm");

$theme_config{'settings_show_theme_configuration_for_admins_only'} eq 'true' && error($theme_text{'settings_show_theme_configuration_for_admins_only_error'});

ui_print_header(($theme_text{'settings_subtitle'} . ' <tt>' . $remote_user . '</tt>'),
$theme_text{'settings_title'},
undef, undef, undef, 1);
Expand Down
6 changes: 3 additions & 3 deletions unauthenticated/js/bundle.min.js

Large diffs are not rendered by default.

0 comments on commit 55a921f

Please sign in to comment.