public static function FeedImportSQLHashes::delete in Feed Import 8
Deletes hashes from database.
Parameters
array $ids: Hash ids to delete
Overrides FeedImportStaticHashManager::delete
File
- feed_import_base/
src/ FeedImportSQLHashes.php, line 216
Class
- FeedImportSQLHashes
- This class implements SQL hash storage
Namespace
Drupal\feed_import_baseCode
public static function delete(array $ids) {
db_delete('feed_import_hashes')
->condition('id', $ids)
->execute();
}