You are here

public function ImportEntity::tagHasImported in Content Synchronizer 8

Same name and namespace in other branches
  1. 8.2 src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::tagHasImported()
  2. 3.x src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::tagHasImported()

Tag the entity has imported.

Parameters

string $gid: The gid.

File

src/Entity/ImportEntity.php, line 425

Class

ImportEntity
Defines the Import entity.

Namespace

Drupal\content_synchronizer\Entity

Code

public function tagHasImported($gid) {
  $this
    ->setGidStatus($gid, self::STATUS_DONE);
}