public function SolrDocument::getProperties in Search API Solr 8.3
Same name and namespace in other branches
- 8.2 src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::getProperties()
- 4.x src/Plugin/DataType/SolrDocument.php \Drupal\search_api_solr\Plugin\DataType\SolrDocument::getProperties()
Gets an array of property objects.
Parameters
bool $include_computed: If set to TRUE, computed properties are included. Defaults to FALSE.
Return value
\Drupal\Core\TypedData\TypedDataInterface[] An array of property objects implementing the TypedDataInterface, keyed by property name.
Throws
\Drupal\Core\TypedData\Exception\MissingDataException If the complex data structure is unset and no property can be created.
Overrides ComplexDataInterface::getProperties
File
- src/
Plugin/ DataType/ SolrDocument.php, line 140
Class
- SolrDocument
- Defines the "Solr document" data type.
Namespace
Drupal\search_api_solr\Plugin\DataTypeCode
public function getProperties($include_computed = FALSE) {
// @todo Implement this.
}