From: ivan Date: Sun, 18 May 2008 06:50:07 +0000 (+0000) Subject: add a config value for disabling the ACLs... this should be good for a demo in 1... X-Git-Tag: root_of_webpay_support~647 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=310971fea20ca8ced4c810c2694b392a8806180d add a config value for disabling the ACLs... this should be good for a demo in 1.7, 1.9 will need some way to disable ACL changes from OUTSIDE the db --- diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 73ca9073b..eb0574d64 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -2264,6 +2264,13 @@ worry that config_items is freeside-specific and icky. 'type' => 'checkbox', }, + { + 'key' => 'disable_acl_changes', + 'section' => '', + 'description' => 'Disable all ACL changes, for demos.', + 'type' => 'checkbox', + }, + ); 1; diff --git a/httemplate/edit/process/access_group.html b/httemplate/edit/process/access_group.html index 581b50f9e..ab25cb3a2 100644 --- a/httemplate/edit/process/access_group.html +++ b/httemplate/edit/process/access_group.html @@ -1,3 +1,6 @@ +% if ( $conf->exists('disable_acl_changes') ) { + ACL changes disabled in public demo. +% } else { <% include( 'elements/process.html', 'table' => 'access_group', 'viewall_dir' => 'browse', @@ -14,3 +17,12 @@ }, ) %> +% } +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +my $conf = new FS::Conf; + +