You are here

public function SlickListBuilder::__construct in Slick Carousel 8

Constructs a new SlickListBuilder object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.

\Drupal\slick\SlickManagerInterface $manager: The slick manager.

Overrides DraggableListBuilder::__construct

File

slick_ui/src/Controller/SlickListBuilder.php, line 37

Class

SlickListBuilder
Provides a listing of Slick optionsets.

Namespace

Drupal\slick_ui\Controller

Code

public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, SlickManagerInterface $manager) {
  parent::__construct($entity_type, $storage);
  $this->manager = $manager;
}