objectManager for PHP objectManager.class objectManager
Description The name of the class and the path of the file where it is stored.
Parameters String $classname, string $path .
Return Values none.
Example use
<? $obMan = new objectManager("example","manager/store/");Important any class must contain an identifier OID and the followinggetters and setters.Without this objectManager cannot keep track of your instance!class example {$var oid;function setOID($int){$this->oid=$int;}function getOID(){return $this->oid;}}?>
