You are here

public function EntityDisplayRepository::clearDisplayModeInfo in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/EntityDisplayRepository.php \Drupal\Core\Entity\EntityDisplayRepository::clearDisplayModeInfo()

Clears the gathered display mode info.

Return value

$this

Overrides EntityDisplayRepositoryInterface::clearDisplayModeInfo

File

core/lib/Drupal/Core/Entity/EntityDisplayRepository.php, line 241

Class

EntityDisplayRepository
Provides a repository for entity display objects (view modes and form modes).

Namespace

Drupal\Core\Entity

Code

public function clearDisplayModeInfo() {
  $this->displayModeInfo = [];
  return $this;
}