DirectorObjectForm: experiments with inheritance

This commit is contained in:
Thomas Gelf 2015-07-30 12:53:37 +02:00
parent 49042393bf
commit 8b9a212bf7

View File

@ -307,6 +307,11 @@ $inherited = null; // Just testing
return $this;
}
$inherited = $this->object->getInheritedProperties();
foreach ($props as $k => $v) {
$i = property_exists($inherited, $k) ? $inherited->$k : null;
$this->setElementValue($k, $v, $i);
}
if ($object->supportsGroups()) {