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
|
# 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
use strict;
no warnings qw/redefine/;
=head2 LimitToClass ID
limit the set of custom fields found to ones that apply to the class which has the id "ID"
=cut
sub LimitToClass {
my $self = shift;
my $class = shift;
unless ($class =~ /^\d+$/) {
my $class_obj = RT::FM::Class->new($RT::SystemUser);
$class_obj->Load($class);
unless ($class_obj->Id) {
$RT::Logger->debug($self->CurrentUser->Name ." asked to limit ".ref($self)." to unknown class ".$class);
return;
}
$class = $class_obj->Id;
}
my $class_cfs = $self->NewAlias('FM_ClassCustomFields');
$self->Join( ALIAS1 => 'main',
FIELD1 => 'id',
ALIAS2 => $class_cfs,
FIELD2 => 'CustomField' );
$self->Limit( ALIAS => $class_cfs,
FIELD => 'Class',
OPERATOR => '=',
VALUE => $class,
ENTRYAGGREGATOR => 'OR' );
# This doesn't work on postgres.
#$self->OrderBy( ALIAS => $class_cfs , FIELD => "SortOrder", ORDER => 'ASC');
}
1;
|