1 % if ( $cgi->param('_password') ne $cgi->param('_password2') ) {
2 % $cgi->param('error', "The passwords do not match");
3 % print $cgi->redirect(popurl(2) . "access_user.html?" . $cgi->query_string);
5 <% include( 'elements/process.html',
6 'table' => 'access_user',
7 'viewall_dir' => 'browse',
8 'copy_on_empty' => [ '_password' ],
9 'clear_on_error' => [ '_password', '_password2' ],
10 'process_m2m' => { 'link_table' => 'access_usergroup',
11 'target_table' => 'access_group',
13 'precheck_callback'=> \&precheck_callback,
14 'noerror_callback' => \&noerror_callback,
21 unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
23 if ( FS::Conf->new->exists('disable_acl_changes') ) {
24 errorpage('ACL changes disabled in public demo.');
25 die "shouldn't be reached";
28 sub precheck_callback {
30 my $o = FS::access_user->new({username => scalar($cgi->param('username'))});
31 if( $o->is_system_user and !$cgi->param('usernum') ) {
32 $cgi->param('username','');
33 return "username '".$o->username."' reserved for system account."
38 sub noerror_callback {
39 my( $cgi, $access_user ) = @_;
41 #handle installer checkbox
42 my @sched_item = $access_user->sched_item;
43 my $sched_item = $sched_item[0];
44 if ( $cgi->param('sched_item_enabled') ) {
46 if ( ! $sched_item ) {
47 my $sched_item = new FS::sched_item {
48 'usernum' => $access_user->usernum,
50 my $error = $sched_item->insert;
51 die $error if $error; #wtf? shouldn't happen
52 } elsif ( $sched_item->disabled ) {
53 $sched_item->disabled('');
54 my $error = $sched_item->replace;
55 die $error if $error; #wtf? shouldn't happen
58 } elsif ( ! $cgi->param('sched_item_enabled')
60 && ! $sched_item->disabled
63 $sched_item->disabled('Y');
64 my $error = $sched_item->replace;
65 die $error if $error; #wtf? shouldn't happen