Completed
Push — master ( 32c9ae...514091 )
by Jesus
04:47
created
bbb_broker.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -179,6 +179,9 @@  discard block
 block discarded – undo
179 179
     return "{$params['callback']}({$callbackresponsedata});";
180 180
 }
181 181
 
182
+/**
183
+ * @param boolean $running
184
+ */
182 185
 function bigbluebuttonbn_broker_meeting_info_can_join($bbbsession, $running, $participantcount) {
183 186
     $status = array("can_join" => false);
184 187
     if ($running) {
@@ -199,6 +202,9 @@  discard block
 block discarded – undo
199 202
     return $status;
200 203
 }
201 204
 
205
+/**
206
+ * @param boolean $running
207
+ */
202 208
 function bigbluebuttonbn_broker_meeting_info_can_end($bbbsession, $running) {
203 209
     $status = array("can_end" => false);
204 210
     if ($running && ($bbbsession['administrator'] || $bbbsession['moderator'])) {
@@ -345,6 +351,9 @@  discard block
 block discarded – undo
345 351
     return "{$params['callback']}({$callbackresponsedata});";
346 352
 }
347 353
 
354
+/**
355
+ * @param string $action
356
+ */
348 357
 function bigbluebuttonbn_broker_recording_action_perform($action, $bbbsession, $params, $recordings) {
349 358
     if ($action == 'recording_publish') {
350 359
         return bigbluebuttonbn_broker_recording_action_publish($bbbsession, $params, $recordings);
Please login to merge, or discard this patch.