You are here

public function FlagListItemDeleteForm::getDescription in Flag Lists 4.0.x

Returns additional text to display as a description.

Return value

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

Overrides ContentEntityConfirmFormBase::getDescription

File

src/Form/FlagListItemDeleteForm.php, line 18

Class

FlagListItemDeleteForm
Provides a form for deleting Flag List Item entities.

Namespace

Drupal\flag_lists\Form

Code

public function getDescription() {
  return $this
    ->t('Please note that this is only to delete erranious Flag List Items in the case upgrade problems. In the normal case you would like to "unflag" the Flag List Item instead of "delete" it. Are you still really sure you want to delete it?');
}