]> git.uio.no Git - usit-rt.git/blame - share/html/Admin/Elements/EditCustomField
Upgrade to 4.2.8
[usit-rt.git] / share / html / Admin / Elements / EditCustomField
CommitLineData
84fb5b46
MKG
1%# BEGIN BPS TAGGED BLOCK {{{
2%#
3%# COPYRIGHT:
4%#
3ffc5f4f 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<& /Elements/ListActions, actions => \@results &>
49
50
51<form method="post" action="CustomField.html">
52<input type="hidden" class="hidden" name="CustomField" value="<%$id %>" />
53<input type="hidden" class="hidden" name="Queue" value="<%$Queue%>" />
54
55<table width="100%" border="0">
56<tr><td align="right">
57<&|/l&>Name</&>:
58</td><td>
59<input name="Name" value="<%$CustomFieldObj->Name%>" size="20" />
60</td></tr>
61<tr><td align="right">
62<&|/l&>Description</&>:
63</td><td>
64<input name="Description" value="<%$CustomFieldObj->Description%>" size="80" />
65</td></tr>
66<tr><td align="right">
67<&|/l&>Type</&>:
68</td><td>
69<& /Admin/Elements/SelectCustomFieldType, Name => "Type", Default => $CustomFieldObj->Type &>
70</td></tr>
71<tr><td>
72</td><td>
73<input type="hidden" class="hidden" name="SetEnabled" value="1" />
3ffc5f4f
MKG
74<input type="checkbox" class="checkbox" id="Enabled" name="Enabled" value="1" <%$EnabledChecked%> />
75<label for="Enabled"><&|/l&>Enabled (Unchecking this box disables this custom field)</&></label>
84fb5b46
MKG
76</td></tr>
77</table>
78
79<p>
80% if ($CustomFieldObj->Id and $CustomFieldObj->Type =~ /Select/) {
81<h2><&|/l&>Values</&></h2>
82<font size="-1">
83<& /Admin/Elements/EditCustomFieldValues, CustomField => $CustomFieldObj &>
84<& /Admin/Elements/AddCustomFieldValue, CustomField => $CustomFieldObj &>
85</font>
86% }
87<&/Elements/Submit, Label => loc('Create') &>
88</form>
89
90
91
92<%INIT>
93
94my $CustomFieldObj = RT::CustomField->new($session{'CurrentUser'});
95my $EnabledChecked = 'checked="checked"';
96my (@results);
97
98if (! $CustomField ) {
99 $title = loc("Create a CustomField");
100 $id = 'new';
101} else {
102
103 if ($CustomField eq 'new') {
3ffc5f4f
MKG
104 my ($val, $msg) = $CustomFieldObj->Create(Queue => $Queue,
105 Name => $Name,
84fb5b46
MKG
106 Type => $Type,
107 Description => $Description,
3ffc5f4f
MKG
108 );
109
84fb5b46
MKG
110 # if there is an error, then abort. But since at this point there's
111 # stuff already printed, clear it out.
112 # (This only works in conjunction with temporarily turning autoflush
113 # off in the files that use this component.)
114 unless ($val) {
3ffc5f4f
MKG
115 $m->clear_buffer;
116 Abort(loc("Could not create CustomField: [_1]", $msg), SuppressHeader => 1);
84fb5b46
MKG
117 }
118 push @results, $msg;
119 $CustomFieldObj->SetSortOrder($CustomFieldObj->id);
120 $title = loc('Created CustomField [_1]', $CustomFieldObj->Name());
121 } else {
122 $CustomFieldObj->Load($CustomField) || Abort(loc('No CustomField'), SuppressHeader => 1);
123 $title = loc('Editing CustomField [_1]', $CustomFieldObj->Name());
124
125 my @aresults = ProcessCustomFieldUpdates (
126 CustomFieldObj => $CustomFieldObj,
127 ARGSRef => \%ARGS );
128 push @results, @aresults;
129 }
130
131
132$id = $CustomFieldObj->id;
133
134 #we're asking about enabled on the web page but really care about disabled.
135 my $Disabled = ($Enabled ? 0 : 1);
136
137 if ( ($SetEnabled) and ( $Disabled != $CustomFieldObj->Disabled) ) {
138 my ($code, $msg) = $CustomFieldObj->SetDisabled($Disabled);
139 push @results, loc('Enabled status [_1]', loc_fuzzy($msg));
140 }
141
142 if ($CustomFieldObj->Disabled()) {
143 $EnabledChecked ="";
144 }
145
146}
147
148
149</%INIT>
150<%ARGS>
151$id => undef
152$title => undef
153$Queue => undef
154$CustomField => undef
155$Type => undef
156$Description => undef
157$Name => undef
158$SetEnabled => undef
159$Enabled => undef
160</%ARGS>