You are here

public function ImportEntity::tagHasImporting in Content Synchronizer 8

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

Tag the entity has importing.

Parameters

string $gid: The gid.

File

src/Entity/ImportEntity.php, line 415

Class

ImportEntity
Defines the Import entity.

Namespace

Drupal\content_synchronizer\Entity

Code

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