public function ddblockCycleConfigurationSettings::get in Dynamic display block 7
Alternate function to __get
File
- ./
ddblock.class.php, line 154
Class
Code
public function get($key, $default) {
return $this
->__get($key) !== NULL ? $this
->__get($key) : $default;
}