You are here

public function FileDeleteForm::getDescription in Ubercart 8.4

Returns additional text to display as a description.

Return value

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

Overrides ConfirmFormBase::getDescription

File

uc_file/src/Form/FileDeleteForm.php, line 25

Class

FileDeleteForm
Performs delete file action.

Namespace

Drupal\uc_file\Form

Code

public function getDescription() {
  return $this
    ->t('Deleting a file will remove all its associated file downloads and product features. Removing a directory will remove any files it contains and their associated file downloads and product features.');
}