public function SearchApiSolrField::isBinary in Search API Solr 7
Determines whether this field is binary.
Return value
bool TRUE if the field is binary, FALSE otherwise.
File
- includes/
solr_field.inc, line 243
Class
- SearchApiSolrField
- Logic around Solr field schema information.
Code
public function isBinary() {
$this
->getSchema();
return isset($this->schema['B']);
}