summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/class/externuser.class.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/class/externuser.class.php b/app/class/externuser.class.php
new file mode 100644
index 0000000..8f5c9d0
--- /dev/null
+++ b/app/class/externuser.class.php
@@ -0,0 +1,26 @@
+<?php
+
+require_once "class/object.class.php";
+
+/*
+ * Non-application users
+ */
+class ExternUser extends Object
+{
+ /*
+ * Constructor
+ */
+ function __construct($guid = null)
+ {
+ $cols = array(
+ "guid",
+ "email",
+ "emailConfKey"
+ );
+
+ parent::__construct("extern-user", $cols);
+ $this->loadObj($guid);
+ }
+}
+
+?>