Commit 9d1a9330a3f7dc6ff3ff24228efb2ca1d93a6e57
1 parent
fc7b39bd
added creator id accessor methods
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1744 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
20 additions
and
0 deletions
lib/foldermanagement/Folder.inc
| ... | ... | @@ -125,6 +125,26 @@ class Folder { |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | + * Get the creator user id | |
| 129 | + * | |
| 130 | + * @return integer creator user id | |
| 131 | + * | |
| 132 | + */ | |
| 133 | + function getCreatorID() { | |
| 134 | + return $this->iCreatorID; | |
| 135 | + } | |
| 136 | + | |
| 137 | + /** | |
| 138 | + * Set the creator user id | |
| 139 | + * | |
| 140 | + * @param $iNewValue New creator user id | |
| 141 | + * | |
| 142 | + */ | |
| 143 | + function setCreatorID($iNewValue) { | |
| 144 | + $this->iCreatorID = $iNewValue; | |
| 145 | + } | |
| 146 | + | |
| 147 | + /** | |
| 128 | 148 | * Get the unit primary key |
| 129 | 149 | * |
| 130 | 150 | * @return integer primary key of unit to which the folder belongs | ... | ... |