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