Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 953 → Rev 954

/trunk/includes/classes/OIDplusObject.class.php
25,7 → 25,9
public static function parse($node_id) { // please overwrite this function!
// TODO: in case we are not calling this class directly, check if function is overwritten and throw exception otherwise
foreach (OIDplus::getEnabledObjectTypes() as $ot) {
try {
if ($obj = $ot::parse($node_id)) return $obj;
} catch (Exception $e) {}
}
return null;
}