public function FeedImportSQLHashes::insertCommit in Feed Import 7.3
Commits the insert to storage.
Overrides FeedImportHashManager::insertCommit
1 call to FeedImportSQLHashes::insertCommit()
- FeedImportSQLHashes::insert in feed_import_base/
inc/ feed_import.inc - Inserts a new hash.
File
- feed_import_base/
inc/ feed_import.inc, line 1888 - This file contains Feed Import helpers.
Class
- FeedImportSQLHashes
- This class implements SQL hash storage
Code
public function insertCommit() {
if ($this->toInsert) {
$this->insert
->execute();
$this->toInsert = 0;
}
}