public function SolrDocument::set in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::set()
- 8.2 src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::set()
Sets a property value.
Parameters
$property_name: The name of the property to set; e.g., 'title' or 'name'.
$value: The value to set, or NULL to unset the property.
bool $notify: (optional) Whether to notify the parent object of the change. Defaults to TRUE. If the update stems from a parent object, set it to FALSE to avoid being notified again.
Return value
$this
Throws
\InvalidArgumentException If the specified property does not exist.
\Drupal\Core\TypedData\Exception\MissingDataException If the complex data structure is unset and no property can be set.
Overrides ComplexDataInterface::set
File
- src/
Plugin/ DataType/ SolrDocument.php, line 132
Class
- SolrDocument
- Defines the "Solr document" data type.
Namespace
Drupal\search_api_solr\Plugin\DataTypeCode
public function set($property_name, $value, $notify = TRUE) {
// Do nothing because we treat Solr documents as read-only.
return $this;
}