You are here

public function SearchApiSolrBackend::getDisabledFieldTypes in Search API Solr 8.3

Same name and namespace in other branches
  1. 4.x src/Plugin/search_api/backend/SearchApiSolrBackend.php \Drupal\search_api_solr\Plugin\search_api\backend\SearchApiSolrBackend::getDisabledFieldTypes()

Gets a list of Solr Field Types that are disabled for this backend.

Return value

String[]

Overrides SolrBackendInterface::getDisabledFieldTypes

1 call to SearchApiSolrBackend::getDisabledFieldTypes()
SearchApiSolrBackend::buildConfigurationForm in src/Plugin/search_api/backend/SearchApiSolrBackend.php

File

src/Plugin/search_api/backend/SearchApiSolrBackend.php, line 4656

Class

SearchApiSolrBackend
Apache Solr backend for search api.

Namespace

Drupal\search_api_solr\Plugin\search_api\backend

Code

public function getDisabledFieldTypes() : array {
  $this
    ->addDefaultConfigurationForConfigGeneration();
  return $this->configuration['disabled_field_types'];
}