BlockContentTypeDeleteForm.php

Same filename and directory in other branches
  1. 9 core/modules/block_content/src/Form/BlockContentTypeDeleteForm.php
  2. 8.9.x core/modules/block_content/src/Form/BlockContentTypeDeleteForm.php
  3. 10 core/modules/block_content/src/Form/BlockContentTypeDeleteForm.php

Namespace

Drupal\block_content\Form

File

core/modules/block_content/src/Form/BlockContentTypeDeleteForm.php

View source
<?php

namespace Drupal\block_content\Form;

use Drupal\Core\Entity\EntityDeleteForm;
use Drupal\Core\Form\FormStateInterface;

/**
 * Provides a confirmation form for deleting a block type entity.
 *
 * @internal
 */
class BlockContentTypeDeleteForm extends EntityDeleteForm {
    
    /**
     * {@inheritdoc}
     */
    public function buildForm(array $form, FormStateInterface $form_state) {
        $block_count = $this->entityTypeManager
            ->getStorage('block_content')
            ->getQuery()
            ->accessCheck(FALSE)
            ->condition('type', $this->entity
            ->id())
            ->count()
            ->execute();
        if ($block_count) {
            $caption = '<p>' . $this->formatPlural($block_count, '%label is used by 1 content block on your site. You can not remove this block type until you have removed all of the %label blocks.', '%label is used by @count content blocks on your site. You may not remove %label until you have removed all of the %label content blocks.', [
                '%label' => $this->entity
                    ->label(),
            ]) . '</p>';
            $form['description'] = [
                '#markup' => $caption,
            ];
            return $form;
        }
        else {
            return parent::buildForm($form, $form_state);
        }
    }

}

Classes

Title Deprecated Summary
BlockContentTypeDeleteForm Provides a confirmation form for deleting a block type entity.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.