summaryrefslogtreecommitdiffstats
path: root/app/class/user.class.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-01-26 21:55:43 -0500
committerMalf Furious <m@lfurio.us>2016-01-26 21:55:43 -0500
commit9ce26b55017a24f3cae5c20958f2d612273c2f60 (patch)
treebb21fb624c76c64b07f11da5d69f22cc4739b7fa /app/class/user.class.php
parent50cd689b49148c47df60d92ce33340b9a4c516b7 (diff)
downloadscrott-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.php16
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;
+ }
}
?>