public function SearchApiSolrDocument::getFieldValues in Search API Solr 7
Gets the values of all fields in this document.
Return value
array The values of all fields in this document.
File
- includes/
document.inc, line 333
Class
- SearchApiSolrDocument
- Holds Key / Value pairs that represent a Solr Document along with any associated boost values. Field values can be accessed by direct dereferencing such as:
Code
public function getFieldValues() {
return array_values($this->fields);
}