1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
%# BEGIN LICENSE BLOCK
%#
%# Copyright (c) 2002-2003 Jesse Vincent <jesse@bestpractical.com>
%#
%# This program is free software; you can redistribute it and/or modify
%# it under the terms of version 2 of the GNU General Public License
%# as published by the Free Software Foundation.
%#
%# A copy of that license should have arrived with this
%# software, but in any event can be snarfed from www.gnu.org.
%#
%# This program is distributed in the hope that it will be useful,
%# but WITHOUT ANY WARRANTY; without even the implied warranty of
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%# GNU General Public License for more details.
%#
%# END LICENSE BLOCK
<& /RTFM/Admin/Elements/CustomFieldTabs, id => $CustomFieldObj->Id ,
current_tab => $current_subtab, Title => $title &>
<& /Elements/ListActions, actions => \@results &>
<FORM METHOD="POST" ACTION="Basics.html">
<INPUT TYPE=HIDDEN NAME="id" VALUE="<%$id %>">
<table>
<tr>
<td class="label"><&|/l&>Name</&></td>
<td><input name="Name" VALUE="<%$CustomFieldObj->Name%>" SIZE=20></td></tr>
<tr>
<td class="label"><&|/l&>Description</&></td>
<td><input name="Description" VALUE="<%$CustomFieldObj->Description%>" SIZE=80></td>
</tr>
<tr>
<td class="label"><&|/l&>Type</&></td>
<td><& /RTFM/Admin/Elements/SelectCustomFieldType,
Name => "Type",
Default => $CustomFieldObj->Type &>
</td>
</tr>
<tr>
<td clas="label"><&|/l&>Sort Order</&></td>
<td><input name="SortOrder" VALUE="<%$CustomFieldObj->SortOrder%>" SIZE=6></td>
<BR>
% if ($CustomFieldObj->Id && $CustomFieldObj->Type =~ /^Select/i) {
<H2><&|/l&>Values</&></H2>
<table width="100%">
<& /RTFM/Admin/Elements/EditCustomFieldValues, CustomField => $CustomFieldObj &>
<& /RTFM/Admin/Elements/AddCustomFieldValue, CustomField => $CustomFieldObj &>
</table>
% }
<&/Elements/Submit&>
</FORM>
<%INIT>
my $CustomFieldObj = RT::FM::CustomField->new( $session{'CurrentUser'} );
my ( $title, @results);
if ( !$id ) {
$title = loc("Create a CustomField");
$id = 'new';
}
else {
if ( $id eq 'new' ) {
my ( $val, $msg ) = $CustomFieldObj->Create(Name => $Name,
Type => $Type,
Description => $Description,
SortOrder => $SortOrder );
$m->comp("/RTFM/Elements/Error", Why => loc( "Could not create CustomField", $msg ) ) unless ($val);
push @results, $msg;
$title = loc( 'Created CustomField [_1]', $CustomFieldObj->Name() );
}
else {
$CustomFieldObj->Load($id) || $m->comp("/RTFM/Elements/Error", Why => loc('No CustomField') );
$title = loc( 'Editing CustomField [_1]', $CustomFieldObj->Name() );
my @attribs = qw( Name Type Description SortOrder);
my @aresults = UpdateRecordObject( AttributesRef => \@attribs,
Object => $CustomFieldObj,
ARGSRef => \%ARGS );
push @results, @aresults;
}
$id = $CustomFieldObj->id;
}
my $paramtag = "CustomField-".$CustomFieldObj->Id."-Value-";
# Delete any fields that want to be deleted
foreach my $key (keys %ARGS) {
next unless ($key =~ /^Delete-$paramtag(\d+)$/);
my ($val, $msg) = $CustomFieldObj->DeleteValue($1);
push (@results, $msg);
}
# Update any existing values
my $values = $CustomFieldObj->ValuesObj;
while (my $value = $values->Next) {
foreach my $attr qw(Name Description SortOrder) {
my $param = $paramtag.$value->Id."-".$attr;
if ( $ARGS{$param} && ($value->$attr() ne $ARGS{$param})) {
my $mutator = "Set$attr";
my ($id, $msg) = $value->$mutator($ARGS{$param});
push (@results, $msg);
}
}
}
# Add any new values
if ($ARGS{$paramtag."new-Name"}) {
my ($id, $msg) = $CustomFieldObj->AddValue ( Name => $ARGS{$paramtag."new-Name"},
Description => $ARGS{$paramtag."new-Description"},
SortOrder => $ARGS{$paramtag."new-SortOrder"});
push (@results, $msg);
}
my $current_subtab;
if ($ARGS{'Create'}){
$current_subtab = "RTFM/Admin/CustomFields/Basics.html?Create=1";
} else {
$current_subtab = "RTFM/Admin/CustomFields/Basics.html?id=".$id;
}
</%INIT>
<%ARGS>
$id => undef
$Type => undef
$SortOrder => undef
$Description => undef
$Name => undef
</%ARGS>
|