You are here

public function SearchApiSolrField::isTermVectorStored in Search API Solr 7

Determines whether this field has stored term vectors.

Return value

bool TRUE if the field has stored term vectors, FALSE otherwise.

File

includes/solr_field.inc, line 188

Class

SearchApiSolrField
Logic around Solr field schema information.

Code

public function isTermVectorStored() {
  $this
    ->getSchema();
  return isset($this->schema['V']);
}