public function ContentHubEntitiesTracking::setExported in Acquia Content Hub 8
Sets the entity to the state of "exported".
Return value
\Drupal\acquia_contenthub\ContentHubEntitiesTracking This ContentHubEntitiesTracking object.
File
- src/
ContentHubEntitiesTracking.php, line 424
Class
- ContentHubEntitiesTracking
- Tracks in a table the list of all entities imported from Content Hub.
Namespace
Drupal\acquia_contenthubCode
public function setExported() {
$this
->setExportStatus(self::EXPORTED);
return $this;
}