From 9d1a9330a3f7dc6ff3ff24228efb2ca1d93a6e57 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 29 Apr 2003 11:35:08 +0000 Subject: [PATCH] added creator id accessor methods --- lib/foldermanagement/Folder.inc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+), 0 deletions(-) diff --git a/lib/foldermanagement/Folder.inc b/lib/foldermanagement/Folder.inc index 4dc1eef..6ebfb07 100644 --- a/lib/foldermanagement/Folder.inc +++ b/lib/foldermanagement/Folder.inc @@ -125,6 +125,26 @@ class Folder { } /** + * Get the creator user id + * + * @return integer creator user id + * + */ + function getCreatorID() { + return $this->iCreatorID; + } + + /** + * Set the creator user id + * + * @param $iNewValue New creator user id + * + */ + function setCreatorID($iNewValue) { + $this->iCreatorID = $iNewValue; + } + + /** * Get the unit primary key * * @return integer primary key of unit to which the folder belongs -- libgit2 0.21.4