protected KeyValueEntityStorage::has($id, EntityInterface $entity)
Determines if this entity already exists in storage.
Parameters
int|string $id: The original entity ID.
\Drupal\Core\Entity\EntityInterface $entity: The entity being saved.
Return value
bool
Overrides EntityStorageBase::has
File
- core/lib/Drupal/Core/Entity/KeyValueStore/KeyValueEntityStorage.php, line 186
Class
- KeyValueEntityStorage
- Provides a key value backend for entities.
Namespace
Drupal\Core\Entity\KeyValueStore
Code
1 2 3 | protected function has( $id , EntityInterface $entity ) { return $this ->keyValueStore->has( $id ); } |
Please login to continue.