29 lines
552 B
PHP
29 lines
552 B
PHP
<?php
|
|
|
|
class Termination extends mfBaseModel {
|
|
protected $forcestr = ['phone','email','note'];
|
|
|
|
private $building;
|
|
private $status;
|
|
private $lineworker;
|
|
private $creator;
|
|
private $editor;
|
|
|
|
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;
|
|
}
|
|
|
|
} |