diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-02-14 19:13:26 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-02-14 19:13:26 +0100 |
commit | d7fc5f46a8b6faec4ec0c18089d94d21e505c36c (patch) | |
tree | 0500e514d40db5052f82812d08743718fca50306 /application/service | |
parent | b8facbbd7a9a29c6274c435932b9c810155e2460 (diff) |
Use assoc array for service/user/apikeys
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/service')
-rw-r--r-- | application/service/user.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/application/service/user.php b/application/service/user.php index 16fa62272..cab14dbab 100644 --- a/application/service/user.php +++ b/application/service/user.php @@ -53,6 +53,7 @@ class user { static public function apikeys($userid) { $CI =& get_instance(); + $ret = array(); $query = $CI->db->select('key, created, comment, access_level') ->from('apikeys') @@ -66,9 +67,12 @@ class user { if (!empty($record['created'])) { $record['created'] = strtotime($record['created']); } + $ret[$record["key"]] = $record; } unset($record); - return $query; + return array( + "apikeys" => $ret, + ); } } |