Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / rt / share / html / Admin / Articles / Classes / Objects.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
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 => $title &>
49 <& /Elements/Tabs &>
50 <& /Elements/ListActions, actions => \@results &>
51
52 <form action="Objects.html" method="post">
53 <input type="hidden" class="hidden" name="id" value="<% $id %>" />
54
55 % if ( $is_global ) {
56 <h2><&|/l&>Applies to all objects</&></h2>
57 <input type="checkbox" id="RemoveClass-<% $Class->id %>" name="RemoveClass-<% $Class->id %>" value="0" />
58 <label for="RemoveClass-<% $Class->id %>"><&|/l&>check this box to remove this Class globally and be able to choose specific Queues.</&></label>
59 % } else {
60 <h2><&|/l&>Apply globally</&></h2>
61
62 <input type="checkbox" id="AddClass-<% $Class->id %>" name="AddClass-<% $Class->id %>" value="0" />
63 <label for="AddClass-<% $Class->id %>"><&|/l&>check this box to apply this Class globally to all Queues.</&></label>
64
65 <h2><&|/l&>Selected Queues</&></h2>
66 <& /Elements/CollectionList,
67     OrderBy => 'id',
68     Order => 'ASC',
69     %ARGS,
70     Collection => $applied,
71     Rows => 0,
72     Page => 1,
73     Format        => $format,
74     DisplayFormat => "'__CheckBox.{RemoveClass-". $Class->id ."}__',". $format,
75     AllowSorting => 0,
76     ShowEmpty    => 0,
77     PassArguments => [
78         qw(id Format Rows Page Order OrderBy),
79     ],
80 &>
81
82 <h2><&|/l&>Unselected Queues</&></h2>
83 <& /Elements/CollectionList,
84     OrderBy => 'id',
85     Order => 'ASC',
86     %ARGS,
87     Collection => $not_applied,
88     Rows          => $rows,
89     Format        => $format,
90     DisplayFormat => "'__CheckBox.{AddClass-". $Class->id ."}__',". $format,
91     AllowSorting  => 1,
92     ShowEmpty     => 0,
93     PassArguments => [
94         qw(id Format Rows Page Order OrderBy),
95     ],
96 &>
97
98 % }
99
100 <& /Elements/Submit, Name => 'UpdateObjs' &>
101 </form>
102
103 <%INIT>
104 my $Class = RT::Class->new($session{'CurrentUser'});
105 $Class->Load($id) or Abort(loc("Could not load Class [_1]"), $id);
106
107 my (@results);
108
109 if ( $UpdateObjs ) {
110     if ( defined (my $del = $ARGS{'RemoveClass-'.$Class->id}) ) {
111         foreach my $id ( ref $del? (@$del) : ($del) ) {
112             my $object = RT::Queue->new( $session{'CurrentUser'} );
113             if ( $id ) {
114                 $object->Load( $id );
115                 next unless $object->id;
116             }
117
118             my ($status, $msg) = $Class->RemoveFromObject( $object );
119             push @results, $msg;
120         }
121     }
122     if ( defined (my $add = $ARGS{'AddClass-'.$Class->id}) ) {
123         foreach my $id ( ref $add? (@$add) : ($add) ) {
124             my $object = RT::Queue->new( $session{'CurrentUser'} );
125             if ( $id ) {
126                 $object->Load( $id );
127                 next unless $object->id;
128             }
129
130             my ($status, $msg) = $Class->AddToObject( $object );
131             push @results, $msg;
132         }
133     }
134 }
135
136 my $is_global = $Class->IsApplied(0);
137
138 my $applied = $Class->AppliedTo;
139 my $not_applied = $Class->NotAppliedTo;
140
141 my $collection_class = ref($applied);
142 $collection_class =~ s/^RT:://;
143
144 my $format = RT->Config->Get('AdminSearchResultFormat')->{$collection_class}
145     || '__id__,__Name__';
146 my $rows = RT->Config->Get('AdminSearchResultRows')->{$collection_class} || 50;
147
148 my $title = loc('Modify associated objects for [_1]', $Class->Name);
149
150 </%INIT>
151 <%ARGS>
152 $id => undef
153 $FindDisabledObjects => 0
154 $UpdateObjs => 0
155 </%ARGS>