You are here

public function ContentHubEntitiesTracking::getModified in Acquia Content Hub 8

Returns the modified timestamp.

Return value

string The modified timestamp.

1 call to ContentHubEntitiesTracking::getModified()
ContentHubEntitiesTracking::save in src/ContentHubEntitiesTracking.php
Saves a record of an imported entity.

File

src/ContentHubEntitiesTracking.php, line 358

Class

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

Namespace

Drupal\acquia_contenthub

Code

public function getModified() {
  return isset($this
    ->getTrackingEntity()->modified) ? $this
    ->getTrackingEntity()->modified : NULL;
}