Finished Address BMD Export

This commit is contained in:
Frank Schubert
2024-01-05 18:22:17 +01:00
parent 3591da6729
commit f81fd2be06
6 changed files with 90 additions and 7 deletions
+10 -1
View File
@@ -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) {