From 94e59d47705f30cab039c01e2ba2bc079496938e Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 1 Feb 2014 01:00:26 -0800 Subject: status indication --- mod/chatsvc.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'mod') diff --git a/mod/chatsvc.php b/mod/chatsvc.php index f32ea56ce..0a69834f0 100644 --- a/mod/chatsvc.php +++ b/mod/chatsvc.php @@ -85,7 +85,17 @@ function chatsvc_content(&$a) { ); if($r) { foreach($r as $rr) { - $inroom[] = array('img' => zid($rr['xchan_photo_m']), 'img_type' => $rr['xchan_photo_mimetype'],'name' => $rr['xchan_name']); + switch($rr['cp_status']) { + case 'away': + $status = t('Away'); + break; + case 'online': + default: + $status = t('Online'); + break; + } + + $inroom[] = array('img' => zid($rr['xchan_photo_m']), 'img_type' => $rr['xchan_photo_mimetype'],'name' => $rr['xchan_name'], status => $status); } } -- cgit v1.2.3