• Ü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
25 lines
469 B
PHP
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;
|
|
}
|
|
} |