X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FQueues.pm;h=f2b98ab74d7f4a4f65e5a97f9a83d63fda11fb5e;hb=44dd00a3ff974a17999e86e64488e996edc71e3c;hp=45cb686e0c100a44528e918d809e31a576de7dae;hpb=3d0a1bb06b895c5be6e3f0517d355442a6b1e125;p=freeside.git diff --git a/rt/lib/RT/Queues.pm b/rt/lib/RT/Queues.pm index 45cb686e0..f2b98ab74 100755 --- a/rt/lib/RT/Queues.pm +++ b/rt/lib/RT/Queues.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2019 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -69,11 +69,10 @@ package RT::Queues; use strict; use warnings; +use base 'RT::SearchBuilder'; use RT::Queue; -use base 'RT::SearchBuilder'; - sub Table { 'Queues'} # {{{ sub _Init @@ -83,8 +82,8 @@ sub _Init { # By default, order by name $self->OrderBy( ALIAS => 'main', - FIELD => 'Name', - ORDER => 'ASC'); + FIELD => 'Name', + ORDER => 'ASC'); return ($self->SUPER::_Init(@_)); } @@ -92,7 +91,7 @@ sub _Init { sub Limit { my $self = shift; my %args = ( ENTRYAGGREGATOR => 'AND', - @_); + @_); $self->SUPER::Limit(%args); } @@ -113,19 +112,6 @@ sub AddRecord { $self->{'rows'}++; } - - - -=head2 NewItem - -Returns an empty new RT::Queue item - -=cut - -sub NewItem { - my $self = shift; - return(RT::Queue->new($self->CurrentUser)); -} RT::Base->_ImportOverlays(); 1;