Completed
Branch master (f92a9e)
by Jesus
02:18
created
lib.php 1 patch
Doc Comments   +12 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
  * $return->time = the time they did it
227 227
  * $return->info = a short text description.
228 228
  *
229
- * @return bool
229
+ * @return string
230 230
  */
231 231
 function bigbluebuttonbn_user_outline($course, $user, $mod, $bigbluebuttonbn) {
232 232
     global $DB;
@@ -315,6 +315,9 @@  discard block
 block discarded – undo
315 315
     }
316 316
 }
317 317
 
318
+/**
319
+ * @param integer $now
320
+ */
318 321
 function bigbluebuttonbn_print_overview_element($bigbluebuttonbn, $now) {
319 322
     global $CFG;
320 323
 
@@ -550,6 +553,11 @@  discard block
 block discarded – undo
550 553
     send_stored_file($file, 0, 0, $forcedownload, $options); // download MUST be forced - security!
551 554
 }
552 555
 
556
+/**
557
+ * @param stdClass $course
558
+ * @param stdClass $cm
559
+ * @param stdClass $context
560
+ */
553 561
 function bigbluebuttonbn_pluginfile_filename($course, $cm, $context, $args) {
554 562
     global $DB;
555 563
 
@@ -644,6 +652,9 @@  discard block
 block discarded – undo
644 652
     bigbluebuttonbn_notification_send($USER, $bigbluebuttonbn, bigbluebuttonbn_notification_msg_html($msg));
645 653
 }
646 654
 
655
+/**
656
+ * @param stdClass $msg
657
+ */
647 658
 function bigbluebuttonbn_notification_msg_html($msg) {
648 659
     $messagetext = '<p>'.$msg->activity_type.' &quot;'.$msg->activity_title.'&quot; '.
649 660
         get_string('email_body_notification_meeting_has_been', 'bigbluebuttonbn').' '.$msg->action.'.</p>'."\n";
Please login to merge, or discard this patch.
bbb_broker.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -175,6 +175,9 @@  discard block
 block discarded – undo
175 175
     return "{$params['callback']}({$callbackresponsedata});";
176 176
 }
177 177
 
178
+/**
179
+ * @param boolean $running
180
+ */
178 181
 function bigbluebuttonbn_broker_meeting_info_can_join($bbbsession, $running, $participantcount) {
179 182
     $status = array("can_join" => false);
180 183
     if ($running) {
@@ -195,6 +198,9 @@  discard block
 block discarded – undo
195 198
     return $status;
196 199
 }
197 200
 
201
+/**
202
+ * @param boolean $running
203
+ */
198 204
 function bigbluebuttonbn_broker_meeting_info_can_end($bbbsession, $running) {
199 205
     $status = array("can_end" => false);
200 206
     if ($running && ($bbbsession['administrator'] || $bbbsession['moderator'])) {
Please login to merge, or discard this patch.