protected SqlContentEntityStorage::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/Sql/SqlContentEntityStorage.php, line 873
Class
- SqlContentEntityStorage
- A content entity database storage implementation.
Namespace
Drupal\Core\Entity\Sql
Code
1 2 3 | protected function has( $id , EntityInterface $entity ) { return ! $entity ->isNew(); } |
Please login to continue.