public function ExportEntity::getCreatedTime in Content Synchronizer 8
Same name and namespace in other branches
- 8.2 src/Entity/ExportEntity.php \Drupal\content_synchronizer\Entity\ExportEntity::getCreatedTime()
- 3.x src/Entity/ExportEntity.php \Drupal\content_synchronizer\Entity\ExportEntity::getCreatedTime()
Gets the Export entity creation timestamp.
Return value
int Creation timestamp of the Export entity.
Overrides ExportEntityInterface::getCreatedTime
File
- src/
Entity/ ExportEntity.php, line 101
Class
- ExportEntity
- Defines the Export entity entity.
Namespace
Drupal\content_synchronizer\EntityCode
public function getCreatedTime() {
return $this
->get('created')->value;
}