You are here

protected function EntityResource::entityExists in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/src/Controller/EntityResource.php \Drupal\jsonapi\Controller\EntityResource::entityExists()

Checks if the given entity exists.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for which to test existence.

Return value

bool Whether the entity already has been created.

1 call to EntityResource::entityExists()
EntityResource::createIndividual in core/modules/jsonapi/src/Controller/EntityResource.php
Creates an individual entity.

File

core/modules/jsonapi/src/Controller/EntityResource.php, line 1200

Class

EntityResource
Process all entity requests.

Namespace

Drupal\jsonapi\Controller

Code

protected function entityExists(EntityInterface $entity) {
  $entity_storage = $this->entityTypeManager
    ->getStorage($entity
    ->getEntityTypeId());
  return !empty($entity_storage
    ->loadByProperties([
    'uuid' => $entity
      ->uuid(),
  ]));
}