public function SearchApiSolrBackend::getDisabledCaches in Search API Solr 8.3
Same name and namespace in other branches
- 4.x src/Plugin/search_api/backend/SearchApiSolrBackend.php \Drupal\search_api_solr\Plugin\search_api\backend\SearchApiSolrBackend::getDisabledCaches()
Gets a list of Solr Caches that are disabled for this backend.
Return value
String[]
Overrides SolrBackendInterface::getDisabledCaches
1 call to SearchApiSolrBackend::getDisabledCaches()
- SearchApiSolrBackend::buildConfigurationForm in src/
Plugin/ search_api/ backend/ SearchApiSolrBackend.php
File
- src/
Plugin/ search_api/ backend/ SearchApiSolrBackend.php, line 4664
Class
- SearchApiSolrBackend
- Apache Solr backend for search api.
Namespace
Drupal\search_api_solr\Plugin\search_api\backendCode
public function getDisabledCaches() : array {
$this
->addDefaultConfigurationForConfigGeneration();
return $this->configuration['disabled_caches'];
}