You are here

protected function ContentHubEntitiesTracking::getExportStatus in Acquia Content Hub 8

Returns the Export Status.

Return value

string The Export Status.

6 calls to ContentHubEntitiesTracking::getExportStatus()
ContentHubEntitiesTracking::isExported in src/ContentHubEntitiesTracking.php
Check if the entity exported or not.
ContentHubEntitiesTracking::isExportedEntity in src/ContentHubEntitiesTracking.php
Returns the tracking entity if it is an exported entity.
ContentHubEntitiesTracking::isInitiated in src/ContentHubEntitiesTracking.php
Check if the entity initiated or not.
ContentHubEntitiesTracking::isQueued in src/ContentHubEntitiesTracking.php
Check if the entity queued or not.
ContentHubEntitiesTracking::isReindex in src/ContentHubEntitiesTracking.php
Check if the entity is set for reindex or not.

... See full list

File

src/ContentHubEntitiesTracking.php, line 244

Class

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

Namespace

Drupal\acquia_contenthub

Code

protected function getExportStatus() {
  return isset($this
    ->getTrackingEntity()->status_export) ? $this
    ->getTrackingEntity()->status_export : NULL;
}