function ResourceTypeRepository::isLocatableResourceType
Same name in other branches
- 9 core/modules/jsonapi/src/ResourceType/ResourceTypeRepository.php \Drupal\jsonapi\ResourceType\ResourceTypeRepository::isLocatableResourceType()
- 8.9.x core/modules/jsonapi/src/ResourceType/ResourceTypeRepository.php \Drupal\jsonapi\ResourceType\ResourceTypeRepository::isLocatableResourceType()
- 10 core/modules/jsonapi/src/ResourceType/ResourceTypeRepository.php \Drupal\jsonapi\ResourceType\ResourceTypeRepository::isLocatableResourceType()
Whether an entity type + bundle maps to a locatable resource type.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type to assess.
string $bundle: The bundle to assess.
Return value
bool TRUE if the entity type is locatable, FALSE otherwise.
1 call to ResourceTypeRepository::isLocatableResourceType()
- ResourceTypeRepository::createResourceType in core/
modules/ jsonapi/ src/ ResourceType/ ResourceTypeRepository.php - Creates a ResourceType value object for the given entity type + bundle.
File
-
core/
modules/ jsonapi/ src/ ResourceType/ ResourceTypeRepository.php, line 374
Class
- ResourceTypeRepository
- Provides a repository of all JSON:API resource types.
Namespace
Drupal\jsonapi\ResourceTypeCode
protected static function isLocatableResourceType(EntityTypeInterface $entity_type, $bundle) {
assert(is_string($bundle) && !empty($bundle), 'A bundle ID is required. Bundleless entity types should pass the entity type ID again.');
return $entity_type->getStorageClass() !== ContentEntityNullStorage::class;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.