summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Filter/Range.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Filter/Range.php61
1 files changed, 61 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php b/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php
new file mode 100644
index 00000000..b142e674
--- /dev/null
+++ b/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php
@@ -0,0 +1,61 @@
+<?php
+
+namespace Elastica\Filter;
+
+/**
+ * Range Filter
+ *
+ * @category Xodoa
+ * @package Elastica
+ * @author Nicolas Ruflin <spam@ruflin.com>
+ * @link http://www.elasticsearch.org/guide/reference/query-dsl/range-filter.html
+ */
+class Range extends AbstractFilter
+{
+ /**
+ * Fields
+ *
+ * @var array Fields
+ */
+ protected $_fields = array();
+
+ /**
+ * Construct range filter
+ *
+ * @param string|bool $fieldName Field name
+ * @param array $args Field arguments
+ */
+ public function __construct($fieldName = false, 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 \Elastica\Filter\Range
+ */
+ public function addField($fieldName, array $args)
+ {
+ $this->_fields[$fieldName] = $args;
+
+ return $this;
+ }
+
+ /**
+ * Converts object to array
+ *
+ * @see \Elastica\Filter\AbstractFilter::toArray()
+ * @return array Filter array
+ */
+ public function toArray()
+ {
+ $this->setParams($this->_fields);
+
+ return parent::toArray();
+ }
+}