protected function SpoolStorage::getExpirationTime in Simplenews 3.x
Same name and namespace in other branches
- 8.2 src/Spool/SpoolStorage.php \Drupal\simplenews\Spool\SpoolStorage::getExpirationTime()
- 8 src/Spool/SpoolStorage.php \Drupal\simplenews\Spool\SpoolStorage::getExpirationTime()
Returns the expiration time for IN_PROGRESS status.
Return value
int A unix timestamp. Any IN_PROGRESS messages with a timestamp older than this will be re-allocated and re-sent.
1 call to SpoolStorage::getExpirationTime()
- SpoolStorage::getMails in src/Spool/ SpoolStorage.php 
- This function allocates mails to be sent in current run.
File
- src/Spool/ SpoolStorage.php, line 372 
Class
- SpoolStorage
- Default database spool storage.
Namespace
Drupal\simplenews\SpoolCode
protected function getExpirationTime() {
  $timeout = $this->config
    ->get('mail.spool_progress_expiration');
  $expiration_time = REQUEST_TIME - $timeout;
  return $expiration_time;
}