Files
thetool/application/Poprack/Poprack.php
Spi bffcff7b37 Devices:
•	Ü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
2023-11-12 21:18:13 +01:00

25 lines
469 B
PHP

<?php
class Poprack extends mfBaseModel
{
private $pop;
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;
}
}