BlockDeleteForm.php in Drupal 10
File
core/modules/block/src/Form/BlockDeleteForm.php
View source
<?php
namespace Drupal\block\Form;
use Drupal\Core\Entity\EntityDeleteForm;
use Drupal\Core\Url;
class BlockDeleteForm extends EntityDeleteForm {
public function getCancelUrl() {
return new Url('block.admin_display');
}
public function getConfirmText() {
return $this
->t('Remove');
}
public function getQuestion() {
$entity = $this
->getEntity();
$regions = $this
->systemRegionList($entity
->getTheme(), REGIONS_VISIBLE);
return $this
->t('Are you sure you want to remove the @entity-type %label from the %region region?', [
'@entity-type' => $entity
->getEntityType()
->getSingularLabel(),
'%label' => $entity
->label(),
'%region' => $regions[$entity
->getRegion()],
]);
}
public function getDescription() {
return $this
->t('This will remove the block placement. You will need to <a href=":url">place it again</a> in order to undo this action.', [
':url' => Url::fromRoute('block.admin_display_theme', [
'theme' => $this
->getEntity()
->getTheme(),
])
->toString(),
]);
}
protected function getDeletionMessage() {
$entity = $this
->getEntity();
$regions = $this
->systemRegionList($entity
->getTheme(), REGIONS_VISIBLE);
return $this
->t('The @entity-type %label has been removed from the %region region.', [
'@entity-type' => $entity
->getEntityType()
->getSingularLabel(),
'%label' => $entity
->label(),
'%region' => $regions[$entity
->getRegion()],
]);
}
protected function systemRegionList($theme, $show = REGIONS_ALL) {
return system_region_list($theme, $show);
}
}
Classes
Name |
Description |
BlockDeleteForm |
Provides a deletion confirmation form for the block instance deletion form. |