protected function SolrRequestHandlerListBuilder::getDisabledEntities in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 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 disabled request handlers for current server.
Overrides AbstractSolrEntityListBuilder::getDisabledEntities
File
- src/
Controller/ SolrRequestHandlerListBuilder.php, line 23
Class
- SolrRequestHandlerListBuilder
- Provides a listing of SolrRequestHandler.
Namespace
Drupal\search_api_solr\ControllerCode
protected function getDisabledEntities() : array {
$backend = $this
->getBackend();
return $backend
->getDisabledRequestHandlers();
}