You are here

public function SearchApiSolrField::getDynamicBase in Search API Solr 7

Gets the "dynamic base" of this field.

This typically looks like 'ss_*, and is used to aggregate fields based on "hungarian" naming conventions.

Return value

string The mask describing the solr aggregate field, if there is one.

1 call to SearchApiSolrField::getDynamicBase()
SearchApiSolrField::isPossibleKey in includes/solr_field.inc
Determines whether this field may be suitable for use as a key field.

File

includes/solr_field.inc, line 101

Class

SearchApiSolrField
Logic around Solr field schema information.

Code

public function getDynamicBase() {
  return isset($this->field->dynamicBase) ? $this->field->dynamicBase : NULL;
}