diff options
author | Malf Furious <m@lfurio.us> | 2015-12-30 20:49:36 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2015-12-30 20:49:36 -0500 |
commit | 58dacd8e07d8d8eddf0d5c0a598a5eae27796473 (patch) | |
tree | 7c09c7280b61c0250bca10094794b1ef8f2cdb41 /app/class | |
parent | 76f208ddcc490280885c3fd2fd2917e6be0b65b5 (diff) | |
download | scrott-58dacd8e07d8d8eddf0d5c0a598a5eae27796473.tar.gz scrott-58dacd8e07d8d8eddf0d5c0a598a5eae27796473.zip |
+ Created class file for extern-user table
Diffstat (limited to 'app/class')
-rw-r--r-- | app/class/externuser.class.php | 26 |
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); + } +} + +?> |