•	Übersicht Pop/Adressen/Koordinaten Verlinkungen

Pop:
•	Fontsize in Übersicht auf 13px geändert für bessere Übersicht
•	Neue Features:
   o	Poprackverwaltung v1 CRUD
   o	Poprackmodulverwaltung V1 CRUD
This commit is contained in:
Spi
2023-11-12 21:18:13 +01:00
parent d0f2f4a837
commit bffcff7b37
12 changed files with 1801 additions and 171 deletions

View File

@@ -0,0 +1,25 @@
<?php
class Poprackmodule extends mfBaseModel
{
private $poprack;
public function getProperty($name)
{
if ($this->$name == null) {
$classname = ucfirst($name);
$idfield = $name . "_id";
$this->$name = new $classname($this->$idfield);
if ($this->$name->id) {
return $this->$name;
} else {
return null;
}
}
return $this->$name;
}
}