Commit 68921d90a0d68a7495719079b1136f5f46386db1

Authored by nbm
1 parent 8bd581fc

Add aliases getParentFieldsetId and setParentFieldsetId to match the

common usage.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3803 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/documentmanagement/DocumentField.inc
@@ -73,6 +73,8 @@ class DocumentField extends KTEntity { @@ -73,6 +73,8 @@ class DocumentField extends KTEntity {
73 function setHasLookup($iNewValue) { $this->bHasLookup = $iNewValue; } 73 function setHasLookup($iNewValue) { $this->bHasLookup = $iNewValue; }
74 function getParentFieldset() { return $this->iParentFieldset; } 74 function getParentFieldset() { return $this->iParentFieldset; }
75 function setParentFieldset($iNewValue) { $this->iParentFieldset = $iNewValue; } 75 function setParentFieldset($iNewValue) { $this->iParentFieldset = $iNewValue; }
  76 + function getParentFieldsetId() { return $this->iParentFieldset; }
  77 + function setParentFieldsetId($iNewValue) { $this->iParentFieldset = $iNewValue; }
76 function getHasLookupTree() { return $this->bHasLookupTree; } 78 function getHasLookupTree() { return $this->bHasLookupTree; }
77 function setHasLookupTree($iNewValue) { $this->bHasLookupTree = KTUtil::anyToBool($iNewValue); } 79 function setHasLookupTree($iNewValue) { $this->bHasLookupTree = KTUtil::anyToBool($iNewValue); }
78 80