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