public function SearchApiSolrField::isTokenized in Search API Solr 7
Determines whether this field is tokenized.
Return value
bool TRUE if the field is tokenized, FALSE otherwise.
1 call to SearchApiSolrField::isTokenized()
- SearchApiSolrField::isSortable in includes/
solr_field.inc - Determines whether a field is suitable for sorting.
File
- includes/
solr_field.inc, line 155
Class
- SearchApiSolrField
- Logic around Solr field schema information.
Code
public function isTokenized() {
$this
->getSchema();
return isset($this->schema['T']);
}