public function FeedImportSQLHashesv2Compatible::setOptions in Feed Import 8
Sets options for this instance
Parameters
array $options: An assoc array containig options
bool $overwrite: TRUE if the options should pe overwritten, FALSE to merge them
Overrides FeedImportSQLHashes::setOptions
File
- feed_import_base/
src/ FeedImportSQLHashesv2Compatible.php, line 21
Class
- FeedImportSQLHashesv2Compatible
- This class implements SQL hash storage compatible with version 2.x
Namespace
Drupal\feed_import_baseCode
public function setOptions(array $options, $overwrite = FALSE) {
parent::setOptions($options, $overwrite);
$this->hashPart = '/' . $this->group . '/' . $this->entity;
}