X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FQueues.pm;h=e872cfd69191509269b8e43f8555b5ecd0a1c1e8;hb=a36e0f8a0f69349dafaa16d1d2d57dfb6e5dbc85;hp=45cb686e0c100a44528e918d809e31a576de7dae;hpb=7588a4ac90a9b07c08a3107cd1107d773be1c991;p=freeside.git diff --git a/rt/lib/RT/Queues.pm b/rt/lib/RT/Queues.pm index 45cb686e0..e872cfd69 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-2016 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;