function BatchStorage::doInsertBatchRecord
Same name in other branches
- 10 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage::doInsertBatchRecord()
Inserts a record in the table and returns the batch id.
Return value
int A batch id.
1 call to BatchStorage::doInsertBatchRecord()
- BatchStorage::getId in core/
lib/ Drupal/ Core/ Batch/ BatchStorage.php - Returns a new batch id.
File
-
core/
lib/ Drupal/ Core/ Batch/ BatchStorage.php, line 154
Class
Namespace
Drupal\Core\BatchCode
protected function doInsertBatchRecord() : int {
return $this->connection
->insert('batch')
->fields([
'timestamp' => $this->time
->getRequestTime(),
'token' => '',
'batch' => NULL,
])
->execute();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.