public function ImportEntity::gidHasAlreadyBeenImported in Content Synchronizer 8.2
Same name and namespace in other branches
- 8 src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::gidHasAlreadyBeenImported()
- 3.x src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::gidHasAlreadyBeenImported()
Return true if the gid has already been imported.
Parameters
string $gid: The gid.
File
- src/
Entity/ ImportEntity.php, line 410
Class
- ImportEntity
- Defines the Import entity.
Namespace
Drupal\content_synchronizer\EntityCode
public function gidHasAlreadyBeenImported($gid) {
return $this
->getEntityDataFromGid($gid)[self::ENTITY_FIELD_IMPORTING_STATUS] == self::STATUS_DONE;
}