class EntityDisplayModeDeleteForm

Same name and namespace in other branches
  1. 11.x core/modules/field_ui/src/Form/EntityDisplayModeDeleteForm.php \Drupal\field_ui\Form\EntityDisplayModeDeleteForm

Provides the delete form for entity display modes.

@internal

Hierarchy

Expanded class hierarchy of EntityDisplayModeDeleteForm

File

core/modules/field_ui/src/Form/EntityDisplayModeDeleteForm.php, line 12

Namespace

Drupal\field_ui\Form
View source
class EntityDisplayModeDeleteForm extends EntityDeleteForm {
  
  /**
   * {@inheritdoc}
   */
  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(),
    ]);
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.