You are here

public function SearchApiSolrField::isIndexed in Search API Solr 7

Determines whether this field is indexed.

Return value

bool TRUE if the field is indexed, FALSE otherwise.

1 call to SearchApiSolrField::isIndexed()
SearchApiSolrField::isSortable in includes/solr_field.inc
Determines whether a field is suitable for sorting.

File

includes/solr_field.inc, line 144

Class

SearchApiSolrField
Logic around Solr field schema information.

Code

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