Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 857 → Rev 858

/trunk/plugins/viathinksoft/objectTypes/guid/OIDplusGuid.class.php
63,12 → 63,16
public function addString($str) {
if (uuid_valid($str)) {
// real GUID
return 'guid:'.strtolower(uuid_canonize($str));
return self::root() . strtolower(uuid_canonize($str));
} else {
// just a category
return 'guid:'.$this->guid.'/'.$str;
if ($this->isRoot()) {
return self::root() . $str;
} else {
return $this->nodeId() . '/' . $str;
}
}
}
 
public function crudShowId(OIDplusObject $parent) {
if ($this->isLeafNode()) {