public function EntityDisplayModeDeleteForm::getDescription in Drupal 8
Same name and namespace in other branches
- 9 core/modules/field_ui/src/Form/EntityDisplayModeDeleteForm.php \Drupal\field_ui\Form\EntityDisplayModeDeleteForm::getDescription()
- 10 core/modules/field_ui/src/Form/EntityDisplayModeDeleteForm.php \Drupal\field_ui\Form\EntityDisplayModeDeleteForm::getDescription()
Returns additional text to display as a description.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form description.
Overrides EntityConfirmFormBase::getDescription
File
- core/
modules/ field_ui/ src/ Form/ EntityDisplayModeDeleteForm.php, line 17
Class
- EntityDisplayModeDeleteForm
- Provides the delete form for entity display modes.
Namespace
Drupal\field_ui\FormCode
public function getDescription() {
$entity_type = $this->entity
->getEntityType();
return $this
->t('Deleting a @entity-type will cause any output still requesting to use that @entity-type to use the default display settings.', [
'@entity-type' => $entity_type
->getSingularLabel(),
]);
}