You are here

public function ContentSelectForm::__construct in GatherContent 8.4

Constructor for class.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: EntityTypeManagerInterface object.

\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: DateFormatterInterface object.

\Drupal\user\PrivateTempStoreFactory $temp_store_factory: PrivateTempStoreFactory object.

Overrides MultistepFormBase::__construct

File

gathercontent_ui/src/Form/ContentSelectForm.php, line 30

Class

ContentSelectForm
Class ContentUpdateSelectForm.

Namespace

Drupal\gathercontent_ui\Form

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, PrivateTempStoreFactory $temp_store_factory, GatherContentClientInterface $client) {
  parent::__construct($entity_type_manager, $date_formatter, $temp_store_factory);
  $this->client = $client;
}