You are here

public function SolrDocument::setValue in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::setValue()
  2. 8.2 src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::setValue()

Sets the data value.

Parameters

mixed|null $value: The value to set in the format as documented for the data type or NULL to unset the data value.

bool $notify: (optional) Whether to notify the parent object of the change. Defaults to TRUE. If a property is updated from a parent object, set it to FALSE to avoid being notified again.

Throws

\InvalidArgumentException If the value input is inappropriate.

\Drupal\Core\TypedData\Exception\ReadOnlyException If the data is read-only.

Overrides TypedData::setValue

File

src/Plugin/DataType/SolrDocument.php, line 74

Class

SolrDocument
Defines the "Solr document" data type.

Namespace

Drupal\search_api_solr\Plugin\DataType

Code

public function setValue($item, $notify = TRUE) {
  $this->item = $item;
}