X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Flib%2FRT%2FQueues.pm;h=b9aa3dbd12ebc5736d218233a4e81ef25f24c77f;hp=feb34917640f555ab35f2228c37ce395c4db7932;hb=9aee669886202be7035e6c6049fc71bc99dd3013;hpb=f3c4966ed1f6ec3db7accd6dcdd3a5a3821d72a7 diff --git a/rt/lib/RT/Queues.pm b/rt/lib/RT/Queues.pm index feb349176..b9aa3dbd1 100755 --- a/rt/lib/RT/Queues.pm +++ b/rt/lib/RT/Queues.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2015 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;