You are here

public function SolrFieldType::isManagedSchema in Search API Multilingual Solr Search 8

Indicates if the Solr Field Type requires a server using a managed schema.

Return value

bool True if the Solr Field Type requires a managed schema, false if the Solr Field Type is designed for a classic schema.

Overrides SolrFieldTypeInterface::isManagedSchema

1 call to SolrFieldType::isManagedSchema()
SolrFieldType::getFieldTypeAsXml in src/Entity/SolrFieldType.php
Gets the Solr Field Type definition as XML fragment.

File

src/Entity/SolrFieldType.php, line 315

Class

SolrFieldType
Defines the SolrFieldType entity.

Namespace

Drupal\search_api_solr_multilingual\Entity

Code

public function isManagedSchema() {
  return $this->managed_schema;
}