Finished Address BMD Export
This commit is contained in:
@@ -49,7 +49,16 @@ class mfConfig {
|
||||
if($value !== null) {
|
||||
$this->value = $value;
|
||||
}
|
||||
return $this->value;
|
||||
$return_value = $this->value;
|
||||
|
||||
if($this->type == "int") {
|
||||
$return_value = (int)$return_value;
|
||||
}
|
||||
if($this->type == "float") {
|
||||
$return_value = (float)$return_value;
|
||||
}
|
||||
|
||||
return $return_value;
|
||||
}
|
||||
|
||||
public function type($type = null) {
|
||||
|
||||
Reference in New Issue
Block a user