You are here

protected function SolrRequestDispatcherListBuilder::getDisabledEntities in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 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.

Overrides AbstractSolrEntityListBuilder::getDisabledEntities

File

src/Controller/SolrRequestDispatcherListBuilder.php, line 23

Class

SolrRequestDispatcherListBuilder
Provides a listing of SolrRequestDispatcher.

Namespace

Drupal\search_api_solr\Controller

Code

protected function getDisabledEntities() : array {
  $backend = $this
    ->getBackend();
  return $backend
    ->getDisabledRequestDispatchers();
}