protected function SolrRequestHandlerListBuilder::getDisabledEntities in Search API Solr 8.3
Same name and namespace in other branches
- 4.x src/Controller/SolrRequestHandlerListBuilder.php \Drupal\search_api_solr\Controller\SolrRequestHandlerListBuilder::getDisabledEntities()
Returns a list of all disabled request handlers for current server.
Return value
array List of all disqbled request handlers for current server.
Throws
\Drupal\search_api\SearchApiException
Overrides AbstractSolrEntityListBuilder::getDisabledEntities
File
- src/
Controller/ SolrRequestHandlerListBuilder.php, line 25
Class
- SolrRequestHandlerListBuilder
- Provides a listing of SolrRequestHandler.
Namespace
Drupal\search_api_solr\ControllerCode
protected function getDisabledEntities() : array {
/** @var \Drupal\search_api_solr\SolrBackendInterface $backend */
$backend = $this
->getBackend();
return $backend
->getDisabledRequestHandlers();
}