Skip to content
Snippets Groups Projects
Commit 769536d1 authored by Demian Katz's avatar Demian Katz
Browse files

Minor comment/style improvements.

parent 275e3fc8
Branches
Tags
No related merge requests found
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
namespace VuFind\Search\Favorites; namespace VuFind\Search\Favorites;
use VuFind\Search\Base\Params as BaseParams;
/** /**
* Search Favorites Parameters * Search Favorites Parameters
...@@ -37,8 +36,13 @@ use VuFind\Search\Base\Params as BaseParams; ...@@ -37,8 +36,13 @@ use VuFind\Search\Base\Params as BaseParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
class Params extends BaseParams class Params extends \VuFind\Search\Base\Params
{ {
/**
* Auth manager
*
* @var \VuFind\Auth\Manager
*/
protected $account; protected $account;
/** /**
......
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
namespace VuFind\Search\MixedList; namespace VuFind\Search\MixedList;
use VuFind\Search\Base\Params as BaseParams;
/** /**
* Search Mixed List Parameters * Search Mixed List Parameters
...@@ -37,10 +36,12 @@ use VuFind\Search\Base\Params as BaseParams; ...@@ -37,10 +36,12 @@ use VuFind\Search\Base\Params as BaseParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
class Params extends BaseParams class Params extends \VuFind\Search\Base\Params
{ {
/** /**
* Array of target record ids * Array of target record ids
*
* @var array
*/ */
protected $recordsToRequest; protected $recordsToRequest;
......
...@@ -40,18 +40,29 @@ class Params extends \VuFind\Search\Base\Params ...@@ -40,18 +40,29 @@ class Params extends \VuFind\Search\Base\Params
{ {
/** /**
* Facet result limit * Facet result limit
*
* @var int
*/ */
protected $facetLimit = 30; protected $facetLimit = 30;
/** /**
* Offset for facet results * Offset for facet results
*
* @var int
*/ */
protected $facetOffset = null; protected $facetOffset = null;
/** /**
* Prefix for facet searching * Prefix for facet searching
*
* @var string
*/ */
protected $facetPrefix = null; protected $facetPrefix = null;
/** /**
* Sorting order for facet search results * Sorting order for facet search results
*
* @var string
*/ */
protected $facetSort = null; protected $facetSort = null;
......
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
* @link http://www.vufind.org Main Page * @link http://www.vufind.org Main Page
*/ */
namespace VuFind\Search\SolrAuth; namespace VuFind\Search\SolrAuth;
use VuFind\Search\Solr\Params as SolrParams;
/** /**
* Solr Authority Search Parameters * Solr Authority Search Parameters
...@@ -37,6 +36,6 @@ use VuFind\Search\Solr\Params as SolrParams; ...@@ -37,6 +36,6 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://www.vufind.org Main Page * @link http://www.vufind.org Main Page
*/ */
class Params extends SolrParams class Params extends \VuFind\Search\Solr\Params
{ {
} }
\ No newline at end of file
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
namespace VuFind\Search\SolrAuthor; namespace VuFind\Search\SolrAuthor;
use VuFind\Search\Solr\Params as SolrParams;
/** /**
* Author Search Options * Author Search Options
...@@ -37,7 +36,7 @@ use VuFind\Search\Solr\Params as SolrParams; ...@@ -37,7 +36,7 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
class Params extends SolrParams class Params extends \VuFind\Search\Solr\Params
{ {
/** /**
* Support method for _initSearch() -- handle basic settings. * Support method for _initSearch() -- handle basic settings.
......
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
namespace VuFind\Search\SolrAuthorFacets; namespace VuFind\Search\SolrAuthorFacets;
use VuFind\Search\Solr\Params as SolrParams;
/** /**
* AuthorFacets Search Parameters * AuthorFacets Search Parameters
...@@ -37,7 +36,7 @@ use VuFind\Search\Solr\Params as SolrParams; ...@@ -37,7 +36,7 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
class Params extends SolrParams class Params extends \VuFind\Search\Solr\Params
{ {
/** /**
* Set parameters based on a search object * Set parameters based on a search object
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
* @link http://www.vufind.org Main Page * @link http://www.vufind.org Main Page
*/ */
namespace VuFind\Search\SolrReserves; namespace VuFind\Search\SolrReserves;
use VuFind\Search\Solr\Params as SolrParams;
/** /**
* Solr Reserves Search Parameters * Solr Reserves Search Parameters
...@@ -39,6 +38,6 @@ use VuFind\Search\Solr\Params as SolrParams; ...@@ -39,6 +38,6 @@ use VuFind\Search\Solr\Params as SolrParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://www.vufind.org Main Page * @link http://www.vufind.org Main Page
*/ */
class Params extends SolrParams class Params extends \VuFind\Search\Solr\Params
{ {
} }
\ No newline at end of file
...@@ -40,10 +40,15 @@ class Params extends \VuFind\Search\Base\Params ...@@ -40,10 +40,15 @@ class Params extends \VuFind\Search\Base\Params
{ {
/** /**
* Settings for all the facets * Settings for all the facets
*
* @var array
*/ */
protected $fullFacetSettings = array(); protected $fullFacetSettings = array();
/** /**
* Settings for the date facet only * Settings for the date facet only
*
* @var array
*/ */
protected $dateFacetSettings = array(); protected $dateFacetSettings = array();
......
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
namespace VuFind\Search\Tags; namespace VuFind\Search\Tags;
use VuFind\Search\Base\Params as BaseParams;
/** /**
* Search Tags Parameters * Search Tags Parameters
...@@ -37,7 +36,7 @@ use VuFind\Search\Base\Params as BaseParams; ...@@ -37,7 +36,7 @@ use VuFind\Search\Base\Params as BaseParams;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
class Params extends BaseParams class Params extends \VuFind\Search\Base\Params
{ {
/** /**
* Load all recommendation settings from the relevant ini file. Returns an * Load all recommendation settings from the relevant ini file. Returns an
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment