You are here

public function DecryptFieldForm::getDescription in Field Encryption 3.0.x

Returns additional text to display as a description.

Return value

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

Overrides ConfirmFormBase::getDescription

File

src/Form/DecryptFieldForm.php, line 97

Class

DecryptFieldForm
Confirmation form for removing encryption on field.

Namespace

Drupal\field_encrypt\Form

Code

public function getDescription() {
  return $this
    ->t('This action removes field encryption from the specified field. Existing field data will be decrypted through a batch process.');
}