You are here

public function ExportConfirmForm::getDescription in Fixed Block Content 8

Returns additional text to display as a description.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form description.

Overrides EntityConfirmFormBase::getDescription

File

src/Form/ExportConfirmForm.php, line 17

Class

ExportConfirmForm
Export default content confirm form class.

Namespace

Drupal\fixed_block_content\Form

Code

public function getDescription() {
  return $this
    ->t('The current content of the block will be lost.') . ' ' . parent::getDescription();
}