diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2012-03-14 14:55:09 +0100 |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2012-03-14 14:55:09 +0100 |
commit | 4872803486f298b98fb282c83c5c280201a0424c (patch) | |
tree | 8a7b605082547fce4f1491bd619d6584d5d78b0c /lib/api/kolab_api_service_user_types.php | |
parent | 5b95b56165eddd823b5e3d8e5ee1489d4aa43c5c (diff) | |
download | webadmin-4872803486f298b98fb282c83c5c280201a0424c.tar.gz |
Move user type detection to service class, return type id in user.info result
Diffstat (limited to 'lib/api/kolab_api_service_user_types.php')
-rw-r--r-- | lib/api/kolab_api_service_user_types.php | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/lib/api/kolab_api_service_user_types.php b/lib/api/kolab_api_service_user_types.php index 1c5a6c4..164e872 100644 --- a/lib/api/kolab_api_service_user_types.php +++ b/lib/api/kolab_api_service_user_types.php @@ -37,23 +37,7 @@ class kolab_api_service_user_types extends kolab_api_service public function user_types_list($get, $post) { - $sql_result = $this->db->query("SELECT * FROM user_types"); - $user_types = array(); - - while ($row = $this->db->fetch_assoc($sql_result)) { - $user_types[$row['id']] = array(); - - foreach ($row as $key => $value) { - if ($key != "id") { - if ($key == "attributes") { - $user_types[$row['id']][$key] = json_decode(unserialize($value), true); - } - else { - $user_types[$row['id']][$key] = $value; - } - } - } - } + $user_types = $this->user_types(); return array( 'list' => $user_types, |