%# BEGIN LICENSE BLOCK %# %# Copyright (c) 1996-2003 Jesse Vincent %# %# (Except where explictly superceded by other copyright notices) %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work 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. %# %# Unless otherwise specified, all modifications, corrections or %# extensions to this work which alter its source code become the %# property of Best Practical Solutions, LLC when submitted for %# inclusion in the work. %# %# %# END LICENSE BLOCK <& /Admin/Elements/Header, Title => $title &> <& /Admin/Elements/CustomFieldTabs, id => $id, current_subtab => "Admin/CustomFields/Modify.html?id=".$id, Title => $title &> <& /Elements/ListActions, actions => \@results &>

<&|/l&>Selected objects

<& /Admin/Elements/PickObjects, Objects => \@AssignedObjs, id => $id, Checked => 1 &>

<&|/l&>Unselected objects

<& /Admin/Elements/PickObjects, Objects => \@UnassignedObjs, id => $id &> <& /Elements/Submit, CheckAll => 1, ClearAll => 1 &>
<%INIT> my $CF = RT::CustomField->new($session{'CurrentUser'}); $CF->Load($id) or Abort(loc("Could not load CustomField [_1]"), $id); my $LookupType = $CF->LookupType; $LookupType =~ /^(RT::(\w+))/ or Abort(loc("Object of type [_1] cannot take custom fields", $LookupType)); my $Type = $2; my $Class = $1; my $CollectionType = $2.'s'; my $CollectionClass = $Class.'s'; my $title = loc('Modify associated objects for [_1]', $CF->Name); my $Objects = $CollectionClass->new($session{'CurrentUser'}); my (@results); my (@AssignedObjs, @UnassignedObjs); $Objects->UnLimit; $Objects->OrderBy( FIELD => 'Name' ); my $ObjectCFs; $ObjectCFs = RT::ObjectCustomFields->new($session{'CurrentUser'}); $ObjectCFs->UnLimit; $ObjectCFs->LimitToCustomField($id); my %seen; while (my $OCF = $ObjectCFs->Next) { $seen{$OCF->ObjectId}++; } while (my $obj = $Objects->Next) { my $obj_id = $obj->Id; if ($UpdateObjs) { # Go through and delete all the custom field relationships that this object # no longer has my $key = "Object-$obj_id-CF-$id"; if ($ARGS{$key}) { if (!$seen{$obj_id}) { my ($val, $msg) = $CF->AddToObject($obj); push (@results, $msg); push @UnassignedObjs, $obj if !$val; } } else { push @UnassignedObjs, $obj; if ($seen{$obj_id}) { my ($val, $msg) = $CF->RemoveFromObject($obj); push (@results, $msg); pop @UnassignedObjs if !$val; } } } elsif (!$seen{$obj_id}) { push @UnassignedObjs, $obj; } next if @UnassignedObjs and $UnassignedObjs[-1] == $obj; push @AssignedObjs, $obj; } <%ARGS> $id => undef $FindDisabledObjects => 0 $UpdateObjs => 0