add a config value for disabling the ACLs... this should be good for a demo in 1...
authorivan <ivan>
Sun, 18 May 2008 06:50:07 +0000 (06:50 +0000)
committerivan <ivan>
Sun, 18 May 2008 06:50:07 +0000 (06:50 +0000)
FS/FS/Conf.pm
httemplate/edit/process/access_group.html

index 73ca907..eb0574d 100644 (file)
@@ -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;
index 581b50f..ab25cb3 100644 (file)
@@ -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',
                },
            )
 %>
+% }
+<%init>
+
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
+
+my $conf = new FS::Conf;
+
+</%init>