You are here

public function ResetStatusEntityConfirmation::__construct in CMS Content Sync 2.0.x

Same name and namespace in other branches
  1. 8 src/Form/ResetStatusEntityConfirmation.php \Drupal\cms_content_sync\Form\ResetStatusEntityConfirmation::__construct()
  2. 2.1.x src/Form/ResetStatusEntityConfirmation.php \Drupal\cms_content_sync\Form\ResetStatusEntityConfirmation::__construct()

Constructs a DeleteMultiple form object.

File

src/Form/ResetStatusEntityConfirmation.php, line 47

Class

ResetStatusEntityConfirmation
Provides the confirmation form for the pool reset entity status action.

Namespace

Drupal\cms_content_sync\Form

Code

public function __construct(EntityTypeManager $manager, Messenger $messenger) {
  $this->pool_storage = $manager
    ->getStorage('cms_content_sync_pool');
  $this->messenger = $messenger;
}