chatroom list widget backend

This commit is contained in:
friendica
2014-01-29 01:52:23 -08:00
parent 9261a170eb
commit 9f54675702
2 changed files with 18 additions and 0 deletions

View File

@@ -114,4 +114,13 @@ function chatroom_leave($observer_xchan,$room_id,$status) {
);
}
return true;
}
function chatroom_list($uid) {
$r = q("select cr_name, cr_id, count(cp_id) as cr_inroom from chatroom left join chatpresence on cr_id = cp_room where cr_uid = %d order by cr_name group by cp_id",
intval($uid)
);
return $r;
}