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