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