public function FacConfigListBuilder::__construct in Fast Autocomplete 8
Constructs a new EntityListBuilder object.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.
\Drupal\fac\SearchPluginManager $search_plugin_manager: The Search Plugin Manager service.
Overrides EntityListBuilder::__construct
File
- src/
Controller/ FacConfigListBuilder.php, line 46
Class
- FacConfigListBuilder
- Provides a listing of FacConfig.
Namespace
Drupal\fac\ControllerCode
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, SearchPluginManager $search_plugin_manager) {
parent::__construct($entity_type, $storage);
$this->searchPluginManager = $search_plugin_manager;
}