You are here

public function ContentHubEntitiesTracking::isReindex in Acquia Content Hub 8

Check if the entity is set for reindex or not.

Return value

bool TRUE if the entity is set for REINDEX, FALSE otherwise.

File

src/ContentHubEntitiesTracking.php, line 284

Class

ContentHubEntitiesTracking
Tracks in a table the list of all entities imported from Content Hub.

Namespace

Drupal\acquia_contenthub

Code

public function isReindex() {
  return $this
    ->getExportStatus() === self::REINDEX;
}