interface EntityDisplayModeInterface

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Entity/EntityDisplayModeInterface.php \Drupal\Core\Entity\EntityDisplayModeInterface
  2. 10 core/lib/Drupal/Core/Entity/EntityDisplayModeInterface.php \Drupal\Core\Entity\EntityDisplayModeInterface
  3. 8.9.x core/lib/Drupal/Core/Entity/EntityDisplayModeInterface.php \Drupal\Core\Entity\EntityDisplayModeInterface

Provides an interface for entity types that hold form and view mode settings.

Hierarchy

Expanded class hierarchy of EntityDisplayModeInterface

All classes that implement EntityDisplayModeInterface

File

core/lib/Drupal/Core/Entity/EntityDisplayModeInterface.php, line 10

Namespace

Drupal\Core\Entity
View source
interface EntityDisplayModeInterface extends ConfigEntityInterface {
  
  /**
   * Gets the entity type this display mode is used for.
   *
   * @return string
   *   The entity type name.
   */
  public function getTargetType();
  
  /**
   * Set the entity type this display mode is used for.
   *
   * @param string $target_entity_type
   *   The target entity type for this display mode.
   *
   * @return $this
   */
  public function setTargetType($target_entity_type);

}

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