From e13e16405ae6d568ba991a4d693c454b1e1f99a2 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Tue, 3 Mar 2015 23:28:14 +0100 Subject: Fix Stream-Selection in Feedback-Form --- lib/helper.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'lib/helper.php') diff --git a/lib/helper.php b/lib/helper.php index 50d381d..d23eb35 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -153,6 +153,19 @@ function room_has_slides($room) return count(array_intersect(array('slides'), $formats)) > 0; } +function room_get_possible_selections($room) +{ + $selections = array(); + + if(room_has_hd($room)) $selections[] = 'hd'; + if(room_has_sd($room)) $selections[] = 'sd'; + if(room_has_audio($room)) $selections[] = 'audio'; + if(room_has_music($room)) $selections[] = 'music'; + if(room_has_slides($room)) $selections[] = 'slides'; + + return $selections; +} + function room_has_rtmp($room) { $formats = get("ROOMS.$room.FORMATS"); -- cgit v1.2.3