You are here

public function DeleteForm::getDescription in Optimizely 8.3

Returns additional text to display as a description.

Return value

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

Overrides ConfirmFormBase::getDescription

File

src/Form/DeleteForm.php, line 36

Class

DeleteForm
Implements the confirmation form for deleting a project.

Namespace

Drupal\optimizely\Form

Code

public function getDescription() {
  return $this
    ->t('Are you sure you want to delete this configuration?
                    <p>This action cannot be undone.</p>');
}