BlocktabsDeleteForm.php in Block Tabs 8
File
src/Form/BlocktabsDeleteForm.php
View source
<?php
namespace Drupal\blocktabs\Form;
use Drupal\Core\Entity\EntityDeleteForm;
class BlocktabsDeleteForm extends EntityDeleteForm {
public function getQuestion() {
return $this
->t('Optionally select a blocktabs before deleting %blocktabs', [
'%blocktabs' => $this->entity
->label(),
]);
}
public function getDescription() {
return $this
->t('If this block tabs is in use on the site, this block tabs will be permanently deleted.');
}
}