public function ddblockCycleMappingSettings::__set in Dynamic display block 7
Use overload functions to get and set $settings
Keys passed to the set function should be keys that already exist in the settings array.
1 call to ddblockCycleMappingSettings::__set()
File
- ./
ddblock.class.php, line 203
Class
Code
public function __set($key, $value) {
if (!array_key_exists($key, $this->settings)) {
return;
}
$this->settings[$key]['target'] = $value['target'];
$this->settings[$key]['source'] = $value['source'];
}