Added ProductNetwork
This commit is contained in:
@@ -3,10 +3,23 @@
|
||||
class Product extends mfBaseModel {
|
||||
private $productgroup;
|
||||
private $producttech;
|
||||
private $sla;
|
||||
private $networks;
|
||||
|
||||
public function getProperty($name) {
|
||||
if($this->$name == null) {
|
||||
|
||||
if($name == "networks") {
|
||||
$this->networks = [];
|
||||
$productNetworks = ProductNetworkModel::search(['product_id' => $this->id]);
|
||||
foreach($productNetworks as $pnet) {
|
||||
$this->networks[$pnet->network_id] = new Network($pnet->network_id);
|
||||
}
|
||||
return $this->networks;
|
||||
}
|
||||
|
||||
|
||||
|
||||
$classname = ucfirst($name);
|
||||
$idfield = $name."_id";
|
||||
$this->$name = new $classname($this->$idfield);
|
||||
|
||||
Reference in New Issue
Block a user