diff options
author | Malf Furious <m@lfurio.us> | 2016-01-26 21:55:43 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-01-26 21:55:43 -0500 |
commit | 9ce26b55017a24f3cae5c20958f2d612273c2f60 (patch) | |
tree | bb21fb624c76c64b07f11da5d69f22cc4739b7fa /app/class/user.class.php | |
parent | 50cd689b49148c47df60d92ce33340b9a4c516b7 (diff) | |
download | scrott-9ce26b55017a24f3cae5c20958f2d612273c2f60.tar.gz scrott-9ce26b55017a24f3cae5c20958f2d612273c2f60.zip |
+ Added function to User class to fetch all users from DB
* Altered Auth MVC deflt action to return false if no users are found. This way, the Auth controller can automatically present user a page to create an admin account
Diffstat (limited to 'app/class/user.class.php')
-rw-r--r-- | app/class/user.class.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/class/user.class.php b/app/class/user.class.php index 8ef91ae..6004dc9 100644 --- a/app/class/user.class.php +++ b/app/class/user.class.php @@ -25,6 +25,22 @@ class User extends Object parent::__construct("user", $cols); $this->loadObj($guid); } + + /* + * Get all users -- ordered by name, ascending + */ + function getAllUsers_orderByName() + { + $query = "SELECT guid FROM `object` WHERE `type` = 'user' ORDER BY name"; + $result = $this->db->query($query); + + $users = array(); + + foreach ($result as $u) + $users[] = new User($u['guid']); + + return $users; + } } ?> |