public function FeedImportSQLHashesv2Compatible::setOptions in Feed Import 7.3
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/
inc/ feed_import.inc, line 2077 - This file contains Feed Import helpers.
Class
- FeedImportSQLHashesv2Compatible
- This class implements SQL hash storage compatible with version 2.x
Code
public function setOptions(array $options, $overwrite = FALSE) {
parent::setOptions($options, $overwrite);
$this->hashPart = '/' . $this->group . '/' . $this->entity;
}