abstract class AbstractSolrEntityController in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/Controller/AbstractSolrEntityController.php \Drupal\search_api_solr\Controller\AbstractSolrEntityController
Provides different listings of Solr Entities.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\search_api_solr\Controller\AbstractSolrEntityController
Expanded class hierarchy of AbstractSolrEntityController
File
- src/
Controller/ AbstractSolrEntityController.php, line 15
Namespace
Drupal\search_api_solr\ControllerView source
abstract class AbstractSolrEntityController extends ControllerBase {
/**
* The messenger.
*
* @var \Drupal\Core\Messenger\MessengerInterface
*/
protected $messenger;
/**
* Entity type id.
*
* @var string
*/
protected $entityTypeId;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('messenger'));
}
/**
* Constructs a SolrRequestHandlerController object.
*
* @param \Drupal\Core\Messenger\MessengerInterface $messenger
* The messenger service.
*/
public function __construct(MessengerInterface $messenger) {
$this->messenger = $messenger;
}
/**
* Provides the listing page.
*
* @param \Drupal\search_api\ServerInterface $search_api_server
* The Search API server entity.
*
* @return array
* A render array as expected by drupal_render().
*
* @throws \Drupal\search_api\SearchApiException
*/
public function listing(ServerInterface $search_api_server) {
return $this
->getListBuilder($search_api_server)
->render();
}
/**
* Gets the list builder.
*
* Ensures that the list builder uses the correct Solr backend.
*
* @param \Drupal\search_api\ServerInterface $search_api_server
* The Search API server entity.
*
* @return \Drupal\search_api_solr\Controller\AbstractSolrEntityListBuilder
* The SolrRequestHandler list builder object.
*
* @throws \Drupal\search_api\SearchApiException
*/
protected function getListBuilder(ServerInterface $search_api_server) {
/** @var \Drupal\search_api_solr\Controller\AbstractSolrEntityListBuilder $list_builder */
$list_builder = $this
->entityTypeManager()
->getListBuilder($this->entityTypeId);
$list_builder
->setServer($search_api_server);
return $list_builder;
}
/**
* Disables a Solr Entity on this server.
*
* @param \Drupal\search_api\ServerInterface $search_api_server
* Search API server.
* @param \Drupal\search_api_solr\SolrConfigInterface $solr_entity
* Solr entity.
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
* Redirect response.
*
* @throws \Drupal\Core\Entity\EntityMalformedException
* @throws \Drupal\Core\Entity\EntityStorageException
*/
public function disableOnServer(ServerInterface $search_api_server, SolrConfigInterface $solr_entity) {
$disabled_key = $solr_entity
->getEntityType()
->getKey('disabled');
$backend_config = $search_api_server
->getBackendConfig();
$backend_config[$disabled_key][] = $solr_entity
->id();
$backend_config[$disabled_key] = array_unique($backend_config[$disabled_key]);
$search_api_server
->setBackendConfig($backend_config);
$search_api_server
->save();
return new RedirectResponse($solr_entity
->toUrl('collection')
->toString());
}
/**
* Enables a Solr Entity on this server.
*
* @param \Drupal\search_api\ServerInterface $search_api_server
* Search API server.
* @param \Drupal\search_api_solr\SolrConfigInterface $solr_entity
* Solr entity.
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
* Redirect response.
*
* @throws \Drupal\Core\Entity\EntityMalformedException
* @throws \Drupal\Core\Entity\EntityStorageException
*/
public function enableOnServer(ServerInterface $search_api_server, SolrConfigInterface $solr_entity) {
$disabled_key = $solr_entity
->getEntityType()
->getKey('disabled');
$backend_config = $search_api_server
->getBackendConfig();
$backend_config[$disabled_key] = array_values(array_diff($backend_config[$disabled_key], [
$solr_entity
->id(),
]));
$search_api_server
->setBackendConfig($backend_config);
$search_api_server
->save();
return new RedirectResponse($solr_entity
->toUrl('collection')
->toString());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AbstractSolrEntityController:: |
protected | property | Entity type id. | 4 |
AbstractSolrEntityController:: |
protected | property |
The messenger. Overrides MessengerTrait:: |
|
AbstractSolrEntityController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
AbstractSolrEntityController:: |
public | function | Disables a Solr Entity on this server. | 4 |
AbstractSolrEntityController:: |
public | function | Enables a Solr Entity on this server. | 4 |
AbstractSolrEntityController:: |
protected | function | Gets the list builder. | |
AbstractSolrEntityController:: |
public | function | Provides the listing page. | |
AbstractSolrEntityController:: |
public | function | Constructs a SolrRequestHandlerController object. | |
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function | Returns a redirect response object for the specified route. | |
ControllerBase:: |
protected | function | Returns the state storage service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |