| Current File : /home/jvzmxxx/wiki/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php |
<?php
namespace Elastica\Filter;
trigger_error('Deprecated: Filters are deprecated. Use queries in filter context. See https://www.elastic.co/guide/en/elasticsearch/reference/2.0/query-dsl-filters.html', E_USER_DEPRECATED);
/**
* Range Filter.
*
* @author Nicolas Ruflin <spam@ruflin.com>
*
* @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-range-filter.html
* @deprecated Filters are deprecated. Use queries in filter context. See https://www.elastic.co/guide/en/elasticsearch/reference/2.0/query-dsl-filters.html
*/
class Range extends AbstractFilter
{
/**
* Fields.
*
* @var array Fields
*/
protected $_fields = array();
/**
* Construct range filter.
*
* @param string $fieldName Field name
* @param array $args Field arguments
*/
public function __construct($fieldName = '', array $args = array())
{
if ($fieldName) {
$this->addField($fieldName, $args);
}
}
/**
* Ads a field with arguments to the range query.
*
* @param string $fieldName Field name
* @param array $args Field arguments
*
* @return $this
*/
public function addField($fieldName, array $args)
{
$this->_fields[$fieldName] = $args;
return $this;
}
/**
* Set execution mode.
*
* @param string $execution Options: "index" or "fielddata"
*
* @return $this
*/
public function setExecution($execution)
{
return $this->setParam('execution', (string) $execution);
}
/**
* Converts object to array.
*
* @see \Elastica\Filter\AbstractFilter::toArray()
*
* @return array Filter array
*/
public function toArray()
{
$this->setParams(array_merge($this->getParams(), $this->_fields));
return parent::toArray();
}
}