summaryrefslogtreecommitdiff
path: root/httemplate/browse/access_user.html
blob: 5b787977d8ebffecfd45bd4f893de629cb2179ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<%

my $html_init = 
  "Internal users have access to the back-office interface.  Typically, this is your employees and contractors, but in a VISP setup, you can also add accounts for your reseller's employees.  It is <B>highly recommended</B> to add a <B>separate account for each person</B> rather than using role accounts.<BR><BR>".
  qq!<A HREF="${p}edit/access_user.html"><I>Add an internal user</I></A><BR><BR>!;

#false laziness w/part_pkg.cgi
my %search = ();
my $search = '';
unless ( $cgi->param('showdisabled') ) {
  %search = ( 'disabled' => '' );
  $search = "( disabled = '' OR disabled IS NULL )";
}

#false laziness w/access_group.html & agent_type.cgi
my $groups_sub = sub {
  my $access_user = shift;

  [ map {
          my $access_usergroup = $_;
          my $access_group = $access_usergroup->access_group;
          [
            {
              'data'  => $access_group->groupname,
              'align' => 'left',
              'link'  =>
                $p. 'edit/access_group.html?'. $access_usergroup->groupnum,
            },
          ];
        }
    grep { $_->access_group # and ! $_->access_group->disabled
         }
    $access_user->access_usergroup,

  ];

};

my $posttotal;
if ( $cgi->param('showdisabled') ) {
  $cgi->param('showdisabled', 0);
  $posttotal = '( <a href="'. $cgi->self_url. '">hide disabled users</a> )';
  $cgi->param('showdisabled', 1);
} else {
  $cgi->param('showdisabled', 1);
  $posttotal = '( <a href="'. $cgi->self_url. '">show disabled users</a> )';
  $cgi->param('showdisabled', 0);
}

my $count_query = 'SELECT COUNT(*) FROM access_user';
$count_query .= " WHERE $search"
  if $search;

my $link = [ $p.'edit/access_user.html?', 'usernum' ];

my @header = ( '#', 'Username' );
my @fields = ( 'usernum', 'username' );
my $align = 'rl';
my @links = ( $link, $link );
my @style = ( '', '' );

#false laziness w/part_pkg.cgi
#unless ( $cgi->param('showdisabled') ) { #its been reversed already
if ( $cgi->param('showdisabled') ) { #its been reversed already
  push @header, 'Status';
  push @fields, sub { shift->disabled
                        ? '<FONT COLOR="#FF0000">DISABLED</FONT>'
                        : '<FONT COLOR="#00CC00">Active</FONT>'
                    };
  push @links, '';
  $align .= 'c';
  push @style, 'b';
}

push @header, 'Full name', 'Groups';
push @fields, 'name',      $groups_sub;
push @links,  $link,       '';
$align .= 'll';

%><%= include( 'elements/browse.html',
                 'title'          => 'Internal Users',
                 'menubar'        => [ #'Main menu' => $p,
                                       'Internal access groups' => $p.'browse/access_group.html',
                                     ],
                 'html_init'      => $html_init,
                 'html_posttotal' => $posttotal,
                 'name'           => 'internal users',
                 'query'          => { 'table'     => 'access_user',
                                       'hashref'   => \%search,
                                       'extra_sql' => 'ORDER BY last, first',
                                     },
                 'count_query'    => $count_query,
                 'header'         => \@header,
                 'fields'         => \@fields,
                 'links'          => \@links,
                 'style'          => \@style,
             )
%>