You are here

public function BlockContentTypeDeleteForm::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/block_content/src/Form/BlockContentTypeDeleteForm.php \Drupal\block_content\Form\BlockContentTypeDeleteForm::__construct()

Constructs a query factory object.

Parameters

\Drupal\Core\Entity\Query\QueryFactory $query_factory: The entity query object.

File

core/modules/block_content/src/Form/BlockContentTypeDeleteForm.php, line 33
Contains \Drupal\block_content\Form\BlockContentTypeDeleteForm.

Class

BlockContentTypeDeleteForm
Provides a confirmation form for deleting a custom block type entity.

Namespace

Drupal\block_content\Form

Code

public function __construct(QueryFactory $query_factory) {
  $this->queryFactory = $query_factory;
}