public function EntityStatus::getLastPush in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Entity/EntityStatus.php \Drupal\cms_content_sync\Entity\EntityStatus::getLastPush()
- 2.0.x src/Entity/EntityStatus.php \Drupal\cms_content_sync\Entity\EntityStatus::getLastPush()
Returns the timestamp for the last push.
Return value
int
1 call to EntityStatus::getLastPush()
- EntityStatus::setLastPush in src/
Entity/ EntityStatus.php - Set the last pull timestamp.
File
- src/
Entity/ EntityStatus.php, line 930
Class
- EntityStatus
- Defines the "Content Sync - Entity Status" entity type.
Namespace
Drupal\cms_content_sync\EntityCode
public function getLastPush() {
return $this
->get('last_export')->value;
}