public function SolrDocument::getItemLabel in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/Plugin/search_api/datasource/SolrDocument.php \Drupal\search_api_solr\Plugin\search_api\datasource\SolrDocument::getItemLabel()
- 8.2 src/Plugin/search_api/datasource/SolrDocument.php \Drupal\search_api_solr\Plugin\search_api\datasource\SolrDocument::getItemLabel()
Throws
\Drupal\Core\TypedData\Exception\MissingDataException
File
- src/
Plugin/ search_api/ datasource/ SolrDocument.php, line 107
Class
- SolrDocument
- Represents a datasource which exposes external Solr Documents.
Namespace
Drupal\search_api_solr\Plugin\search_api\datasourceCode
public function getItemLabel(ComplexDataInterface $item) {
return $this
->getFieldValue($item, 'label_field');
}