public function ContentHubEntitiesTracking::getUuid in Acquia Content Hub 8
Returns the Entity's UUID.
Return value
string The Entity's UUID.
1 call to ContentHubEntitiesTracking::getUuid()
- ContentHubEntitiesTracking::delete in src/
ContentHubEntitiesTracking.php - Deletes the entry for this particular entity.
File
- src/
ContentHubEntitiesTracking.php, line 234
Class
- ContentHubEntitiesTracking
- Tracks in a table the list of all entities imported from Content Hub.
Namespace
Drupal\acquia_contenthubCode
public function getUuid() {
return isset($this
->getTrackingEntity()->entity_uuid) ? $this
->getTrackingEntity()->entity_uuid : NULL;
}