Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ConfigEntityBundleBase.php

function ConfigEntityBundleBase::loadDisplays

Returns view or form displays for this bundle.

Parameters

string $entity_type_id: The entity type ID of the display type to load.

Return value

\Drupal\Core\Entity\Display\EntityDisplayInterface[] A list of matching displays.

1 call to ConfigEntityBundleBase::loadDisplays()
ConfigEntityBundleBase::deleteDisplays in core/lib/Drupal/Core/Config/Entity/ConfigEntityBundleBase.php
Deletes display if a bundle is deleted.

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityBundleBase.php, line 104

Class

ConfigEntityBundleBase
A base class for config entity types that act as bundles.

Namespace

Drupal\Core\Config\Entity

Code

protected function loadDisplays($entity_type_id) {
    
    /** @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface $storage */
    $storage = $this->entityTypeManager()
        ->getStorage($entity_type_id);
    $ids = $storage->getQuery()
        ->condition('id', $this->getEntityType()
        ->getBundleOf() . '.' . $this->getOriginalId() . '.', 'STARTS_WITH')
        ->execute();
    if ($ids) {
        $storage = $this->entityTypeManager()
            ->getStorage($entity_type_id);
        return $storage->loadMultiple($ids);
    }
    return [];
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal