| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- namespace Elastica\Processor;
- class Attachment extends AbstractProcessor
- {
- /**
- * Attachment constructor.
- *
- * @param string $field
- */
- public function __construct(string $field)
- {
- $this->setField($field);
- }
- /**
- * Set field.
- *
- * @param string $field
- *
- * @return $this
- */
- public function setField(string $field)
- {
- return $this->setParam('field', $field);
- }
- /**
- * Set target_field. Default attachment.
- *
- * @param string $targetField
- *
- * @return $this
- */
- public function setTargetField(string $targetField)
- {
- return $this->setParam('target_field', $targetField);
- }
- /**
- * Set indexed_chars. Default 100000.
- *
- * @param int $indexedChars
- *
- * @return $this
- */
- public function setIndexedChars(int $indexedChars)
- {
- return $this->setParam('indexed_chars', $indexedChars);
- }
- /**
- * Set properties. Default all properties. Can be content, title, name, author, keywords, date, content_type, content_length, language.
- *
- * @param array $properties
- *
- * @return $this
- */
- public function setProperties(array $properties)
- {
- return $this->setParam('properties', $properties);
- }
- /**
- * Set ignore_missing. Default false.
- *
- * @param bool $ignoreMissing
- *
- * @return $this
- */
- public function setIgnoreMissing(bool $ignoreMissing)
- {
- return $this->setParam('ignore_missing', $ignoreMissing);
- }
- }
|