apachesolr_views_handler_field_score.inc in Apache Solr Views 6
Views handler to handle the score field. Will not add anything to the query
File
handlers/apachesolr_views_handler_field_score.incView source
<?php
/**
* @file
* Views handler to handle the score field. Will not add anything to the query
*/
class apachesolr_views_handler_field_score extends views_handler_field_numeric {
function construct() {
parent::construct();
$this->definition['float'] = TRUE;
}
function query() {
$this->field_alias = $this->query
->add_solr_field('score');
}
}
Classes
Name | Description |
---|---|
apachesolr_views_handler_field_score | @file Views handler to handle the score field. Will not add anything to the query |