public function EntityDisplayRepository::getAllViewModes in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/EntityDisplayRepository.php \Drupal\Core\Entity\EntityDisplayRepository::getAllViewModes()
Gets the entity view mode info for all entity types.
Return value
array The view mode info for all entity types.
Overrides EntityDisplayRepositoryInterface::getAllViewModes
File
- core/
lib/ Drupal/ Core/ Entity/ EntityDisplayRepository.php, line 75 - Contains \Drupal\Core\Entity\EntityDisplayRepository.
Class
- EntityDisplayRepository
- Provides a repository for entity display objects (view modes and form modes).
Namespace
Drupal\Core\EntityCode
public function getAllViewModes() {
return $this
->getAllDisplayModesByEntityType('view_mode');
}