public function ContentHubEntitiesTracking::setModified in Acquia Content Hub 8
Sets the modified timestamp.
Parameters
string $modified: Sets the modified timestamp.
Return value
\Drupal\acquia_contenthub\ContentHubEntitiesTracking This ContentHubEntitiesTracking object.
File
- src/
ContentHubEntitiesTracking.php, line 513
Class
- ContentHubEntitiesTracking
- Tracks in a table the list of all entities imported from Content Hub.
Namespace
Drupal\acquia_contenthubCode
public function setModified($modified) {
$this
->getTrackingEntity()->modified = $modified;
return $this;
}