summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/ScriptFields.php
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:30:47 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:30:47 -0400
commit7e85254903c7c0cb49e381f16b18441ea7b058cc (patch)
treeb22328fcf4c8408fc25a7acb73d1cb1089cd82ac /vendor/ruflin/elastica/lib/Elastica/ScriptFields.php
parent1de335ad3f395ca6861085393ba366a9e3fb4a0d (diff)
parent1a365e77dfb8825136626202b1df462731b42060 (diff)
Merge commit '1a365e'
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/ScriptFields.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/ScriptFields.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/ScriptFields.php b/vendor/ruflin/elastica/lib/Elastica/ScriptFields.php
new file mode 100644
index 00000000..0a8b4871
--- /dev/null
+++ b/vendor/ruflin/elastica/lib/Elastica/ScriptFields.php
@@ -0,0 +1,63 @@
+<?php
+
+namespace Elastica;
+use Elastica\Exception\InvalidException;
+
+/**
+ * Container for scripts as fields
+ *
+ * @category Xodoa
+ * @package Elastica
+ * @author Sebastien Lavoie <github@lavoie.sl>
+ * @link http://www.elasticsearch.org/guide/reference/api/search/script-fields.html
+ */
+class ScriptFields extends Param
+{
+ /**
+ * @param \Elastica\Script[]|array $scripts OPTIONAL
+ */
+ public function __construct(array $scripts = array())
+ {
+ if ($scripts) {
+ $this->setScripts($scripts);
+ }
+ }
+
+ /**
+ * @param string $name Name of the Script field
+ * @param \Elastica\Script $script
+ * @throws \Elastica\Exception\InvalidException
+ * @return \Elastica\ScriptFields
+ */
+ public function addScript($name, Script $script)
+ {
+ if (!is_string($name) || !strlen($name)) {
+ throw new InvalidException('The name of a Script is required and must be a string');
+ }
+ $this->setParam($name, $script->toArray());
+
+ return $this;
+ }
+
+ /**
+ * @param \Elastica\Script[]|array $scripts Associative array of string => Elastica\Script
+ * @return \Elastica\ScriptFields
+ */
+ public function setScripts(array $scripts)
+ {
+ $this->_params = array();
+ foreach ($scripts as $name => $script) {
+ $this->addScript($name, $script);
+ }
+
+ return $this;
+ }
+
+ /**
+ * @return array
+ */
+ public function toArray()
+ {
+ return $this->_params;
+ }
+}