From 8cced8e13cdc81a1d17697cfe9119c6c16c9edcf Mon Sep 17 00:00:00 2001 From: dechutes Date: Wed, 23 Apr 2003 21:43:11 +0000 Subject: [PATCH] moved userentry.php to userentry.inc --- lam/lib/userentry.inc | 79 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 lam/lib/userentry.inc diff --git a/lam/lib/userentry.inc b/lam/lib/userentry.inc new file mode 100644 index 00000000..3cf47231 --- /dev/null +++ b/lam/lib/userentry.inc @@ -0,0 +1,79 @@ +sn; + } + + function setSn ($in_value) { + $this->sn = $in_value; + } + + function getCn() { + return $this->cn; + } + + function setCn ($in_value) { + $this->cn = $in_value; + } + + function getGivenName() { + return $this->givenName; + } + + function setGivenName ($in_value) { + $this->givenName = $in_value; + } + + function getUid() { + return $this->uid; + } + + function setUid ($in_value) { + $this->uid = $in_value; + } + + function getHomeDirectory() { + return $this->homeDirectory; + } + + function setHomeDirectory ($in_value) { + $this->homeDirectory = $in_value; + } + +} + +?> \ No newline at end of file