public function SearchApiSolrField::isStored in Search API Solr 7
Determines whether this field is stored.
Return value
bool TRUE if the field is stored, FALSE otherwise.
1 call to SearchApiSolrField::isStored()
- SearchApiSolrField::isPossibleKey in includes/
solr_field.inc - Determines whether this field may be suitable for use as a key field.
File
- includes/
solr_field.inc, line 166
Class
- SearchApiSolrField
- Logic around Solr field schema information.
Code
public function isStored() {
$this
->getSchema();
return isset($this->schema['S']);
}