FeedImportSQLHashesv2Compatible.php in Feed Import 8
File
feed_import_base/src/FeedImportSQLHashesv2Compatible.php
View source
<?php
namespace Drupal\feed_import_base;
class FeedImportSQLHashesv2Compatible extends FeedImportSQLHashes {
protected $hashPart;
public function hash(&$uniq) {
return $this->generatedHashes[] = md5($uniq . $this->hashPart);
}
public function setOptions(array $options, $overwrite = FALSE) {
parent::setOptions($options, $overwrite);
$this->hashPart = '/' . $this->group . '/' . $this->entity;
}
}