]> git.uio.no Git - usit-rt.git/blame - share/html/Admin/Users/index.html
Master to 4.2.8
[usit-rt.git] / share / html / Admin / Users / index.html
CommitLineData
84fb5b46
MKG
1%# BEGIN BPS TAGGED BLOCK {{{
2%#
3%# COPYRIGHT:
4%#
320f0092 5%# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
84fb5b46
MKG
6%# <sales@bestpractical.com>
7%#
8%# (Except where explicitly superseded by other copyright notices)
9%#
10%#
11%# LICENSE:
12%#
13%# This work is made available to you under the terms of Version 2 of
14%# the GNU General Public License. A copy of that license should have
15%# been provided with this software, but in any event can be snarfed
16%# from www.gnu.org.
17%#
18%# This work is distributed in the hope that it will be useful, but
19%# WITHOUT ANY WARRANTY; without even the implied warranty of
20%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21%# General Public License for more details.
22%#
23%# You should have received a copy of the GNU General Public License
24%# along with this program; if not, write to the Free Software
25%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26%# 02110-1301 or visit their web page on the internet at
27%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28%#
29%#
30%# CONTRIBUTION SUBMISSION POLICY:
31%#
32%# (The following paragraph is not intended to limit the rights granted
33%# to you to modify and distribute this software under the terms of
34%# the GNU General Public License and is only of importance to you if
35%# you choose to contribute your changes and enhancements to the
36%# community by submitting them to Best Practical Solutions, LLC.)
37%#
38%# By intentionally submitting any modifications, corrections or
39%# derivatives to this work, or any other work intended for use with
40%# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41%# you are the copyright holder for those contributions and you grant
42%# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
43%# royalty-free, perpetual, license to use, copy, create derivative
44%# works based on those contributions, and sublicense and distribute
45%# those contributions and any derivatives thereof.
46%#
47%# END BPS TAGGED BLOCK }}}
48<& /Admin/Elements/Header, Title => loc('Select a user') &>
49<& /Elements/Tabs &>
50
51<h1><% $caption %></h1>
52
53<form method="post" action="<% RT->Config->Get('WebPath') %>/Admin/Users/index.html">
54% foreach my $field( qw(Format Rows Page Order OrderBy) ) {
55% next unless defined $ARGS{ $field } && length $ARGS{ $field };
56<input type="hidden" name="<% $field %>" value="<% $ARGS{ $field } %>" />
57% }
58<input type="hidden" name="UserField" value="Name" />
59<input type="hidden" name="UserOp" value="LIKE" />
60<&|/l&>Go to user</&>
af59614d 61<input type="text" name="UserString" value="" data-autocomplete="Users" data-autocomplete-return="Name" id="autocomplete-UserString" />
84fb5b46
MKG
62<script type="text/javascript">
63jQuery(function(){
af59614d
MKG
64 // Jump directly to the page if a user is chosen
65 jQuery("#autocomplete-UserString").on("autocompleteselect", function( event, ui ) {
66 document.location = RT.Config.WebPath + "/Admin/Users/Modify.html?id=" + ui.item.id;
67 });
84fb5b46
MKG
68});
69</script>
70</form>
71
72<form method="post" action="<% RT->Config->Get('WebPath') %>/Admin/Users/index.html">
73% foreach my $field( qw(Format Rows Page Order OrderBy) ) {
74% next unless defined $ARGS{ $field } && length $ARGS{ $field };
75<input type="hidden" name="<% $field %>" value="<% $ARGS{ $field } %>" />
76% }
77<&|/l&>Find all users whose</&> <& /Elements/SelectUsers, %ARGS, Fields => \@fields &><br />
af59614d
MKG
78<input type="checkbox" class="checkbox" id="FindDisabledUsers" name="FindDisabledUsers" value="1" <% $FindDisabledUsers? 'checked="checked"': '' %> />
79<label for="FindDisabledUsers"><&|/l&>Include disabled users in search.</&></label>
84fb5b46
MKG
80<br />
81<div align="right"><input type="submit" class="button" value="<&|/l&>Go!</&>" /></div>
82</form>
83
84% unless ( $users->Count ) {
85<em><&|/l&>No users matching search criteria found.</&></em>
86% } else {
87<p><&|/l&>Select a user</&>:</p>
88
89<& /Elements/CollectionList,
90 OrderBy => 'Name',
91 Order => 'ASC',
c33a4027 92 Rows => $Rows,
84fb5b46
MKG
93 %ARGS,
94 Format => $Format,
95 Collection => $users,
96 AllowSorting => 1,
97 PassArguments => [qw(Format Rows Page Order OrderBy UserString UserOp UserField IdLike EmailLike FindDisabledUsers)],
98&>
99
100% }
101
102<%INIT>
103my $caption;
104my $users = RT::Users->new( $session{'CurrentUser'} );
105$users->FindAllRows if $FindDisabledUsers;
106
107if ( defined($UserString) && length $UserString ) {
108 $caption = loc("Users matching search criteria");
109 if ( $UserField =~ /^CustomField-(\d+)/ ) {
110 $users->LimitCustomField(
111 CUSTOMFIELD => $1,
112 OPERATOR => $UserOp,
113 VALUE => $UserString,
114 );
115 }
116 else {
117 $users->Limit(
118 FIELD => $UserField,
119 OPERATOR => $UserOp,
120 VALUE => $UserString,
121 );
122 }
123 RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Users/Modify.html?id=".$users->First->id)
124 if $users->Count == 1;
125}
126else {
127 $caption = loc("Privileged users");
128 $users->LimitToPrivileged;
129}
130
131$Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Users'};
c33a4027 132my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Users'} || 50;
84fb5b46
MKG
133
134# Build up the list of fields to display for searching
135my $i = 0;
136my %sorted = map { $_ => $i++ } qw(
137 Name EmailAddress RealName Organization NickName WorkPhone HomePhone
138 MobilePhone PagerPhone Address1 Address2 City State Zip Country
af59614d 139 Timezone Lang Gecos SMIMECertificate Comments
84fb5b46
MKG
140);
141
142my @attrs = sort { $sorted{$a} <=> $sorted{$b} }
143 grep { !/(?:^id$|ContactInfo|Encoding|^External|System|PGPKey|AuthToken|^Last|^Creat(?:ed|or)$|^Signature$)/ }
144 RT::User->ReadableAttributes;
145my @fields;
146
147for my $name (@attrs) {
148 my $label = $m->comp(
149 '/Elements/ColumnMap',
150 Class => 'RT__User',
151 Name => $name,
152 Attr => 'title'
153 );
154
155 push @fields, [ $name, $label || $name ];
156}
157</%INIT>
158<%ARGS>
159$Format => undef,
160
161$UserString => undef
162$UserOp => '='
163$UserField => 'Name'
164$IdLike => undef
165$EmailLike => undef
166
167$FindDisabledUsers => 0
168</%ARGS>