You are here

public function ContentHubEntitiesTracking::isQueued in Acquia Content Hub 8

Check if the entity queued or not.

Return value

bool TRUE if the entity queued, FALSE otherwise.

File

src/ContentHubEntitiesTracking.php, line 264

Class

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

Namespace

Drupal\acquia_contenthub

Code

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