#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::Publisher::BaseSearchForm;

use strict;
use warnings;
use lib '/app/tools/common/lib';
use Common::Assert;


use Common::FormObject;
use base 'Common::FormObject';


sub _init
{
	my ($self, %args) = @_;

	$self->SUPER::_init(%args);

    # So, I will need a PublisherList object.
    # One that, apparently, I can instantiate with a SearchTerm argument or
    # something similar.
    #
    $self->{PublisherList} = $self->_publisherList()->new(searchTerm => $args{searchTerm});

    # ! Do I even need anymore things?  I might someday, for example for paging...
    #
	return $self;
}



###
1;#
###
