This commit was generated by cvs2svn to compensate for changes in r10640,
[freeside.git] / rt / share / html / Admin / Elements / EditCustomFields
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
6 %#                                          <jesse@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 <& /Elements/ListActions, actions => \@results &>
49
50 <form action="<%RT->Config->Get('WebPath')%><% $m->request_comp->path |n %>" method="post" name="EditCustomFields">
51 <input type="hidden" class="hidden" name="id" value="<% $Object->Id || ''%>" />
52 <input type="hidden" class="hidden" name="ObjectType" value="<% $ObjectType %>" />
53 <input type="hidden" class="hidden" name="SubType" value="<% $SubType %>" />
54
55 <h2><&|/l&>Selected Custom Fields</&></h2>
56 <& /Elements/CollectionList,
57     %ARGS,
58     Collection    => $applied_cfs,
59     Rows          => 0,
60     Page          => 1,
61     Format        => $format,
62     DisplayFormat =>
63         $id
64             ? ("'__RemoveCheckBox.{$id}__',". $format .", '__MoveCF.{$id}__'")
65             : ("'__CheckBox.{RemoveCustomField}__',". $format .", '__MoveCF.{$id}__'"),
66     AllowSorting  => 0,
67     ShowEmpty     => 0,
68     PassArguments => [
69         qw(Page Order OrderBy),
70         qw(id ObjectType SubType),
71     ],
72 &>
73
74 <h2><&|/l&>Unselected Custom Fields</&></h2>
75 <& /Elements/CollectionList,
76     OrderBy       => 'Name',
77     Order         => 'ASC',
78     %ARGS,
79     Collection    => $not_applied_cfs,
80     Rows          => 50,
81     Format        => $format,
82     DisplayFormat => "'__CheckBox.{AddCustomField}__',". $format,
83     AllowSorting  => 1,
84     ShowEmpty     => 0,
85     PassArguments => [
86         qw(Page Order OrderBy),
87         qw(id ObjectType SubType),
88     ],
89 &>
90
91 <& /Elements/Submit, Name => 'UpdateCFs' &>
92 </form>
93
94
95 <%INIT>
96 my $id = $Object->Id || 0;
97 if ($id and !$Object->CurrentUserHasRight('AssignCustomFields')) {
98     $m->out('<p><i>', loc('(No custom fields)'), '</i></p>');
99     return;
100 }
101
102 my @results;
103
104 my $lookup = $ObjectType;
105 $lookup .= "-$SubType" if $SubType;
106
107 ## deal with moving sortorder of custom fields
108 if ( $MoveCustomFieldUp ) { {
109     my $record = RT::ObjectCustomField->new( $session{'CurrentUser'} );
110     $record->LoadByCols( ObjectId => $id, CustomField => $MoveCustomFieldUp );
111     unless ( $record->id ) {
112         push @results, loc("Custom field #[_1] is not applied to this object", $MoveCustomFieldUp);
113         last;
114     }
115
116     my ($status, $msg) = $record->MoveUp;
117     push @results, $msg;
118 } }
119 if ( $MoveCustomFieldDown ) { {
120     my $record = RT::ObjectCustomField->new( $session{'CurrentUser'} );
121     $record->LoadByCols( ObjectId => $id, CustomField => $MoveCustomFieldDown );
122     unless ( $record->id ) {
123         push @results, loc("Custom field #[_1] is not applied to this object", $MoveCustomFieldDown);
124         last;
125     }
126
127     my ($status, $msg) = $record->MoveDown;
128     push @results, $msg;
129 } }
130
131 if ( $UpdateCFs ) {
132     foreach my $cf_id ( @AddCustomField ) {
133         my $CF = RT::CustomField->new( $session{'CurrentUser'} );
134         $CF->Load( $cf_id );
135         unless ( $CF->id ) {
136             push @results, loc("Couldn't load CustomField #[_1]", $cf_id);
137             next;
138         }
139         my ($status, $msg) = $CF->AddToObject( $Object );
140         push @results, $msg;
141     }
142     foreach my $cf_id ( @RemoveCustomField ) {
143         my $CF = RT::CustomField->new( $session{'CurrentUser'} );
144         $CF->Load( $cf_id );
145         unless ( $CF->id ) {
146             push @results, loc("Couldn't load CustomField #[_1]", $cf_id);
147             next;
148         }
149         my ($status, $msg) = $CF->RemoveFromObject( $Object );
150         push @results, $msg;
151     }
152 }
153
154 my $applied_cfs = RT::CustomFields->new( $session{'CurrentUser'} );
155 $applied_cfs->LimitToLookupType($lookup);
156 $applied_cfs->LimitToGlobalOrObjectId($id);
157 $applied_cfs->ApplySortOrder;
158
159 my $not_applied_cfs = RT::CustomFields->new( $session{'CurrentUser'} );
160 $not_applied_cfs->LimitToLookupType($lookup);
161 $not_applied_cfs->LimitToNotApplied( $id ? ($id, 0) : (0) );
162
163 my $format = RT->Config->Get('AdminSearchResultFormat')->{'CustomFields'};
164
165 </%INIT>
166 <%ARGS>
167 $Object
168 $ObjectType
169 $SubType => ''
170
171 $UpdateCFs           => undef
172 @RemoveCustomField   => ()
173 @AddCustomField      => ()
174 $MoveCustomFieldUp   => undef
175 $MoveCustomFieldDown => undef
176 </%ARGS>