@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | global $CFG; |
| 29 | 29 | |
| 30 | -require_once(dirname(__FILE__).'/lib.php'); |
|
| 30 | +require_once(dirname(__FILE__) . '/lib.php'); |
|
| 31 | 31 | |
| 32 | 32 | const BIGBLUEBUTTONBN_FORCED = true; |
| 33 | 33 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | if (isset($meta)) { |
| 77 | 77 | $log->meta = $meta; |
| 78 | 78 | } else if ($event == BIGBLUEBUTTONBN_LOG_EVENT_CREATE) { |
| 79 | - $log->meta = '{"record":'.($bbbsession['record'] ? 'true' : 'false').'}'; |
|
| 79 | + $log->meta = '{"record":' . ($bbbsession['record'] ? 'true' : 'false') . '}'; |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | $DB->insert_record('bigbluebuttonbn_logs', $log); |
@@ -121,8 +121,8 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | if (!is_null($pname) && !is_null($purl)) { |
| 123 | 123 | $method = BIGBLUEBUTTONBN_METHOD_POST; |
| 124 | - $data = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='" . $pname . "'><document url='". |
|
| 125 | - $purl."' /></module></modules>"; |
|
| 124 | + $data = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='" . $pname . "'><document url='" . |
|
| 125 | + $purl . "' /></module></modules>"; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | $xml = bigbluebuttonbn_wrap_xml_load_file($createmeetingurl, $method, $data); |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | 'moderatorPW' => $meeting->moderatorPW, |
| 168 | 168 | 'attendeePW' => $meeting->attendeePW, |
| 169 | 169 | 'hasBeenForciblyEnded' => $meeting->hasBeenForciblyEnded, |
| 170 | - 'running' => $meeting->running, ); |
|
| 170 | + 'running' => $meeting->running,); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | return $meetings; |
@@ -308,12 +308,12 @@ discard block |
||
| 308 | 308 | function bigbluebuttonbn_get_recordings_imported_array($courseid, $bigbluebuttonbnid = null, $subset = true) { |
| 309 | 309 | global $DB; |
| 310 | 310 | |
| 311 | - $select = "courseid = '{$courseid}' AND bigbluebuttonbnid <> '{$bigbluebuttonbnid}' AND log = '". |
|
| 312 | - BIGBLUEBUTTONBN_LOG_EVENT_IMPORT."'"; |
|
| 311 | + $select = "courseid = '{$courseid}' AND bigbluebuttonbnid <> '{$bigbluebuttonbnid}' AND log = '" . |
|
| 312 | + BIGBLUEBUTTONBN_LOG_EVENT_IMPORT . "'"; |
|
| 313 | 313 | if ($bigbluebuttonbnid === null) { |
| 314 | - $select = "courseid = '{$courseid}' AND log = '".BIGBLUEBUTTONBN_LOG_EVENT_IMPORT."'"; |
|
| 314 | + $select = "courseid = '{$courseid}' AND log = '" . BIGBLUEBUTTONBN_LOG_EVENT_IMPORT . "'"; |
|
| 315 | 315 | } else if ($subset) { |
| 316 | - $select = "bigbluebuttonbnid = '{$bigbluebuttonbnid}' AND log = '".BIGBLUEBUTTONBN_LOG_EVENT_IMPORT."'"; |
|
| 316 | + $select = "bigbluebuttonbnid = '{$bigbluebuttonbnid}' AND log = '" . BIGBLUEBUTTONBN_LOG_EVENT_IMPORT . "'"; |
|
| 317 | 317 | } |
| 318 | 318 | $recordsimported = $DB->get_records_select('bigbluebuttonbn_logs', $select); |
| 319 | 319 | |
@@ -340,37 +340,37 @@ discard block |
||
| 340 | 340 | function bigbluebuttonbn_get_default_config_xml_array() { |
| 341 | 341 | $defaultconfigxml = bigbluebuttonbn_getDefaultConfigXML(); |
| 342 | 342 | |
| 343 | - return (array) $defaultconfigxml; |
|
| 343 | + return (array)$defaultconfigxml; |
|
| 344 | 344 | } |
| 345 | 345 | |
| 346 | 346 | function bigbluebuttonbn_get_recording_array_value($recording) { |
| 347 | 347 | // Add formats. |
| 348 | 348 | $playbackarray = array(); |
| 349 | 349 | foreach ($recording->playback->format as $format) { |
| 350 | - $playbackarray[(string) $format->type] = array('type' => (string) $format->type, |
|
| 351 | - 'url' => (string) $format->url, 'length' => (string) $format->length); |
|
| 350 | + $playbackarray[(string)$format->type] = array('type' => (string)$format->type, |
|
| 351 | + 'url' => (string)$format->url, 'length' => (string)$format->length); |
|
| 352 | 352 | // Add preview per format when existing. |
| 353 | 353 | if ($format->preview) { |
| 354 | 354 | $imagesarray = array(); |
| 355 | 355 | foreach ($format->preview->images->image as $image) { |
| 356 | - $imagearray = array('url' => (string) $image); |
|
| 356 | + $imagearray = array('url' => (string)$image); |
|
| 357 | 357 | foreach ($image->attributes() as $attkey => $attvalue) { |
| 358 | - $imagearray[$attkey] = (string) $attvalue; |
|
| 358 | + $imagearray[$attkey] = (string)$attvalue; |
|
| 359 | 359 | } |
| 360 | 360 | array_push($imagesarray, $imagearray); |
| 361 | 361 | } |
| 362 | - $playbackarray[(string) $format->type]['preview'] = $imagesarray; |
|
| 362 | + $playbackarray[(string)$format->type]['preview'] = $imagesarray; |
|
| 363 | 363 | } |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | // Add the metadata to the recordings array. |
| 367 | 367 | $metadataarray = bigbluebuttonbn_get_recording_array_meta(get_object_vars($recording->metadata)); |
| 368 | - $recordingarray = array('recordID' => (string) $recording->recordID, |
|
| 369 | - 'meetingID' => (string) $recording->meetingID, 'meetingName' => (string) $recording->name, |
|
| 370 | - 'published' => (string) $recording->published, 'startTime' => (string) $recording->startTime, |
|
| 371 | - 'endTime' => (string) $recording->endTime, 'playbacks' => $playbackarray); |
|
| 368 | + $recordingarray = array('recordID' => (string)$recording->recordID, |
|
| 369 | + 'meetingID' => (string)$recording->meetingID, 'meetingName' => (string)$recording->name, |
|
| 370 | + 'published' => (string)$recording->published, 'startTime' => (string)$recording->startTime, |
|
| 371 | + 'endTime' => (string)$recording->endTime, 'playbacks' => $playbackarray); |
|
| 372 | 372 | if (isset($recording->protected)) { |
| 373 | - $recordingarray['protected'] = (string) $recording->protected; |
|
| 373 | + $recordingarray['protected'] = (string)$recording->protected; |
|
| 374 | 374 | } |
| 375 | 375 | // Force protected. |
| 376 | 376 | $recordingarray['protected'] = 'false'; |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | if (is_object($value)) { |
| 384 | 384 | $value = ''; |
| 385 | 385 | } |
| 386 | - $metadataarray['meta_'.$key] = $value; |
|
| 386 | + $metadataarray['meta_' . $key] = $value; |
|
| 387 | 387 | } |
| 388 | 388 | return $metadataarray; |
| 389 | 389 | } |
@@ -441,7 +441,7 @@ discard block |
||
| 441 | 441 | $ids = explode(',', $recordids); |
| 442 | 442 | foreach ($ids as $id) { |
| 443 | 443 | $xml = bigbluebuttonbn_wrap_xml_load_file( |
| 444 | - \mod_bigbluebuttonbn\locallib\bigbluebutton::action_url('updateRecordings', ['recordID' => $id] + (array) $params) |
|
| 444 | + \mod_bigbluebuttonbn\locallib\bigbluebutton::action_url('updateRecordings', ['recordID' => $id] + (array)$params) |
|
| 445 | 445 | ); |
| 446 | 446 | if ($xml && $xml->returncode != 'SUCCESS') { |
| 447 | 447 | return false; |
@@ -561,7 +561,7 @@ discard block |
||
| 561 | 561 | return $xml; |
| 562 | 562 | } catch (Exception $e) { |
| 563 | 563 | libxml_use_internal_errors($previous); |
| 564 | - $error = 'Caught exception: '.$e->getMessage(); |
|
| 564 | + $error = 'Caught exception: ' . $e->getMessage(); |
|
| 565 | 565 | debugging($error, DEBUG_DEVELOPER); |
| 566 | 566 | return null; |
| 567 | 567 | } |
@@ -573,7 +573,7 @@ discard block |
||
| 573 | 573 | $response = simplexml_load_file($url, 'SimpleXMLElement', LIBXML_NOCDATA | LIBXML_NOBLANKS); |
| 574 | 574 | return $response; |
| 575 | 575 | } catch (Exception $e) { |
| 576 | - $error = 'Caught exception: '.$e->getMessage(); |
|
| 576 | + $error = 'Caught exception: ' . $e->getMessage(); |
|
| 577 | 577 | debugging($error, DEBUG_DEVELOPER); |
| 578 | 578 | libxml_use_internal_errors($previous); |
| 579 | 579 | return null; |
@@ -591,8 +591,8 @@ discard block |
||
| 591 | 591 | |
| 592 | 592 | $options = array(); |
| 593 | 593 | $options['CURLOPT_HTTPHEADER'] = array( |
| 594 | - 'Content-Type: '.$contenttype, |
|
| 595 | - 'Content-Length: '.strlen($data), |
|
| 594 | + 'Content-Type: ' . $contenttype, |
|
| 595 | + 'Content-Length: ' . strlen($data), |
|
| 596 | 596 | 'Content-Language: en-US', |
| 597 | 597 | ); |
| 598 | 598 | |
@@ -609,9 +609,9 @@ discard block |
||
| 609 | 609 | if ($userroles) { |
| 610 | 610 | $where = ''; |
| 611 | 611 | foreach ($userroles as $value) { |
| 612 | - $where .= (empty($where) ? ' WHERE' : ' AND').' id='.$value->roleid; |
|
| 612 | + $where .= (empty($where) ? ' WHERE' : ' AND') . ' id=' . $value->roleid; |
|
| 613 | 613 | } |
| 614 | - $userroles = $DB->get_records_sql('SELECT * FROM {role}'.$where); |
|
| 614 | + $userroles = $DB->get_records_sql('SELECT * FROM {role}' . $where); |
|
| 615 | 615 | } |
| 616 | 616 | |
| 617 | 617 | return $userroles; |
@@ -624,7 +624,7 @@ discard block |
||
| 624 | 624 | } |
| 625 | 625 | |
| 626 | 626 | function bigbluebuttonbn_get_users(context $context = null) { |
| 627 | - $users = (array) get_enrolled_users($context,'',0,'u.*',null,0,0,true); |
|
| 627 | + $users = (array)get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 628 | 628 | foreach ($users as $key => $value) { |
| 629 | 629 | $users[$key] = fullname($value); |
| 630 | 630 | } |
@@ -632,7 +632,7 @@ discard block |
||
| 632 | 632 | } |
| 633 | 633 | |
| 634 | 634 | function bigbluebuttonbn_get_users_select(context $context = null) { |
| 635 | - $users = (array) get_enrolled_users($context,'',0,'u.*',null,0,0,true); |
|
| 635 | + $users = (array)get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 636 | 636 | foreach ($users as $key => $value) { |
| 637 | 637 | $users[$key] = array('id' => $value->id, 'name' => fullname($value)); |
| 638 | 638 | } |
@@ -640,7 +640,7 @@ discard block |
||
| 640 | 640 | } |
| 641 | 641 | |
| 642 | 642 | function bigbluebuttonbn_get_roles(context $context = null) { |
| 643 | - $roles = (array) role_get_names($context); |
|
| 643 | + $roles = (array)role_get_names($context); |
|
| 644 | 644 | foreach ($roles as $key => $value) { |
| 645 | 645 | $roles[$key] = $value->localname; |
| 646 | 646 | } |
@@ -648,7 +648,7 @@ discard block |
||
| 648 | 648 | } |
| 649 | 649 | |
| 650 | 650 | function bigbluebuttonbn_get_roles_select(context $context = null) { |
| 651 | - $roles = (array) role_get_names($context); |
|
| 651 | + $roles = (array)role_get_names($context); |
|
| 652 | 652 | foreach ($roles as $key => $value) { |
| 653 | 653 | $roles[$key] = array('id' => $value->id, 'name' => $value->localname); |
| 654 | 654 | } |
@@ -656,7 +656,7 @@ discard block |
||
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | function bigbluebuttonbn_get_role($id) { |
| 659 | - $roles = (array) role_get_names(); |
|
| 659 | + $roles = (array)role_get_names(); |
|
| 660 | 660 | if (is_numeric($id)) { |
| 661 | 661 | return $roles[$id]; |
| 662 | 662 | } |
@@ -820,9 +820,9 @@ discard block |
||
| 820 | 820 | $isunique = true; |
| 821 | 821 | if ($voicebridge != 0) { |
| 822 | 822 | $table = 'bigbluebuttonbn'; |
| 823 | - $select = 'voicebridge = '.$voicebridge; |
|
| 823 | + $select = 'voicebridge = ' . $voicebridge; |
|
| 824 | 824 | if ($id) { |
| 825 | - $select .= ' AND id <> '.$id; |
|
| 825 | + $select .= ' AND id <> ' . $id; |
|
| 826 | 826 | } |
| 827 | 827 | if ($DB->get_records_select($table, $select)) { |
| 828 | 828 | $isunique = false; |
@@ -890,7 +890,7 @@ discard block |
||
| 890 | 890 | $mt = microtime(); |
| 891 | 891 | $rand = mt_rand(); |
| 892 | 892 | |
| 893 | - return md5($mt.$rand); |
|
| 893 | + return md5($mt . $rand); |
|
| 894 | 894 | } |
| 895 | 895 | |
| 896 | 896 | function bigbluebuttonbn_random_password($length = 8) { |
@@ -902,41 +902,41 @@ discard block |
||
| 902 | 902 | |
| 903 | 903 | function bigbluebuttonbn_events() { |
| 904 | 904 | return array( |
| 905 | - (string) BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 906 | - (string) BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 907 | - (string) BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 908 | - (string) BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 909 | - (string) BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 910 | - (string) BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 911 | - (string) BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 912 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 913 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 914 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 915 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 916 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 917 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 918 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 919 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 905 | + (string)BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 906 | + (string)BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 907 | + (string)BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 908 | + (string)BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 909 | + (string)BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 910 | + (string)BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 911 | + (string)BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 912 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 913 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 914 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 915 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 916 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 917 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 918 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 919 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 920 | 920 | ); |
| 921 | 921 | } |
| 922 | 922 | |
| 923 | 923 | function bigbluebuttonbn_events_action() { |
| 924 | 924 | return array( |
| 925 | - 'view' => (string) BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 926 | - 'view_management' => (string) BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 927 | - 'live_action' => (string) BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 928 | - 'meeting_create' => (string) BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 929 | - 'meeting_end' => (string) BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 930 | - 'meeting_join' => (string) BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 931 | - 'meeting_left' => (string) BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 932 | - 'recording_delete' => (string) BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 933 | - 'recording_import' => (string) BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 934 | - 'recording_protect' => (string) BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 935 | - 'recording_publish' => (string) BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 936 | - 'recording_unprotect' => (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 937 | - 'recording_unpublish' => (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 938 | - 'recording_edit' => (string) BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 939 | - 'recording_play' => (string) BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 925 | + 'view' => (string)BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 926 | + 'view_management' => (string)BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 927 | + 'live_action' => (string)BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 928 | + 'meeting_create' => (string)BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 929 | + 'meeting_end' => (string)BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 930 | + 'meeting_join' => (string)BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 931 | + 'meeting_left' => (string)BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 932 | + 'recording_delete' => (string)BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 933 | + 'recording_import' => (string)BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 934 | + 'recording_protect' => (string)BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 935 | + 'recording_publish' => (string)BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 936 | + 'recording_unprotect' => (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 937 | + 'recording_unpublish' => (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 938 | + 'recording_edit' => (string)BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 939 | + 'recording_play' => (string)BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 940 | 940 | ); |
| 941 | 941 | } |
| 942 | 942 | |
@@ -960,7 +960,7 @@ discard block |
||
| 960 | 960 | $eventproperties['other'] = $options['other']; |
| 961 | 961 | } |
| 962 | 962 | |
| 963 | - $event = call_user_func_array('\mod_bigbluebuttonbn\event\bigbluebuttonbn_'.$eventtype.'::create', |
|
| 963 | + $event = call_user_func_array('\mod_bigbluebuttonbn\event\bigbluebuttonbn_' . $eventtype . '::create', |
|
| 964 | 964 | array($eventproperties)); |
| 965 | 965 | $event->trigger(); |
| 966 | 966 | } |
@@ -1003,11 +1003,11 @@ discard block |
||
| 1003 | 1003 | $now = time(); |
| 1004 | 1004 | if (!$forced && isset($result) && $now < ($result['creation_time'] + $cachettl)) { |
| 1005 | 1005 | // Use the value in the cache. |
| 1006 | - return (array) json_decode($result['meeting_info']); |
|
| 1006 | + return (array)json_decode($result['meeting_info']); |
|
| 1007 | 1007 | } |
| 1008 | 1008 | |
| 1009 | 1009 | // Ping again and refresh the cache. |
| 1010 | - $meetinginfo = (array) bigbluebuttonbn_wrap_xml_load_file( |
|
| 1010 | + $meetinginfo = (array)bigbluebuttonbn_wrap_xml_load_file( |
|
| 1011 | 1011 | \mod_bigbluebuttonbn\locallib\bigbluebutton::action_url('getMeetingInfo', ['meetingID' => $meetingid]) |
| 1012 | 1012 | ); |
| 1013 | 1013 | $cache->set($meetingid, array('creation_time' => time(), 'meeting_info' => json_encode($meetinginfo))); |
@@ -1065,8 +1065,8 @@ discard block |
||
| 1065 | 1065 | * @param string $configxml |
| 1066 | 1066 | */ |
| 1067 | 1067 | function bigbluebuttonbn_set_config_xml_params($meetingid, $configxml) { |
| 1068 | - $params = 'configXML='.urlencode($configxml).'&meetingID='.urlencode($meetingid); |
|
| 1069 | - $configxmlparams = $params.'&checksum='.sha1('setConfigXML'.$params.\mod_bigbluebuttonbn\locallib\config::get('shared_secret')); |
|
| 1068 | + $params = 'configXML=' . urlencode($configxml) . '&meetingID=' . urlencode($meetingid); |
|
| 1069 | + $configxmlparams = $params . '&checksum=' . sha1('setConfigXML' . $params . \mod_bigbluebuttonbn\locallib\config::get('shared_secret')); |
|
| 1070 | 1070 | |
| 1071 | 1071 | return $configxmlparams; |
| 1072 | 1072 | } |
@@ -1076,7 +1076,7 @@ discard block |
||
| 1076 | 1076 | * @param string $configxml |
| 1077 | 1077 | */ |
| 1078 | 1078 | function bigbluebuttonbn_set_config_xml($meetingid, $configxml) { |
| 1079 | - $urldefaultconfig = \mod_bigbluebuttonbn\locallib\config::get('server_url').'api/setConfigXML?'; |
|
| 1079 | + $urldefaultconfig = \mod_bigbluebuttonbn\locallib\config::get('server_url') . 'api/setConfigXML?'; |
|
| 1080 | 1080 | $configxmlparams = bigbluebuttonbn_set_config_xml_params($meetingid, $configxml); |
| 1081 | 1081 | $xml = bigbluebuttonbn_wrap_xml_load_file($urldefaultconfig, BIGBLUEBUTTONBN_METHOD_POST, |
| 1082 | 1082 | $configxmlparams, 'application/x-www-form-urlencoded'); |
@@ -1090,7 +1090,7 @@ discard block |
||
| 1090 | 1090 | */ |
| 1091 | 1091 | function bigbluebuttonbn_set_config_xml_array($meetingid, $configxml) { |
| 1092 | 1092 | $configxml = bigbluebuttonbn_setConfigXML($meetingid, $configxml); |
| 1093 | - $configxmlarray = (array) $configxml; |
|
| 1093 | + $configxmlarray = (array)$configxml; |
|
| 1094 | 1094 | if ($configxmlarray['returncode'] != 'SUCCESS') { |
| 1095 | 1095 | debugging('BigBlueButton was not able to set the custom config.xml file', DEBUG_DEVELOPER); |
| 1096 | 1096 | return ''; |
@@ -1127,7 +1127,7 @@ discard block |
||
| 1127 | 1127 | $starttime = $starttime - ($starttime % 1000); |
| 1128 | 1128 | |
| 1129 | 1129 | // Set formatted date. |
| 1130 | - $dateformat = get_string('strftimerecentfull', 'langconfig').' %Z'; |
|
| 1130 | + $dateformat = get_string('strftimerecentfull', 'langconfig') . ' %Z'; |
|
| 1131 | 1131 | $row->date_formatted = userdate($starttime / 1000, $dateformat, usertimezone($USER->timezone)); |
| 1132 | 1132 | |
| 1133 | 1133 | // Set formatted duration. |
@@ -1198,7 +1198,7 @@ discard block |
||
| 1198 | 1198 | } |
| 1199 | 1199 | |
| 1200 | 1200 | $recordingpreview = html_writer::start_tag('div', |
| 1201 | - array('id' => 'preview-'.$recording['recordID'], $visibility => $visibility)); |
|
| 1201 | + array('id' => 'preview-' . $recording['recordID'], $visibility => $visibility)); |
|
| 1202 | 1202 | foreach ($recording['playbacks'] as $playback) { |
| 1203 | 1203 | if (isset($playback['preview'])) { |
| 1204 | 1204 | foreach ($playback['preview'] as $image) { |
@@ -1231,19 +1231,19 @@ discard block |
||
| 1231 | 1231 | $visibility = 'hidden '; |
| 1232 | 1232 | } |
| 1233 | 1233 | |
| 1234 | - $id = 'playbacks-'.$recording['recordID']; |
|
| 1234 | + $id = 'playbacks-' . $recording['recordID']; |
|
| 1235 | 1235 | $recordingtypes = html_writer::start_tag('div', array('id' => $id, 'data-imported' => $dataimported, |
| 1236 | 1236 | 'data-recordingid' => $recording['recordID'], 'data-meetingid' => $recording['meetingID'], |
| 1237 | 1237 | 'title' => $title, $visibility => $visibility)); |
| 1238 | 1238 | foreach ($recording['playbacks'] as $playback) { |
| 1239 | 1239 | $onclick = 'M.mod_bigbluebuttonbn.recordings.recording_play(this);'; |
| 1240 | - $href = $CFG->wwwroot.'/mod/bigbluebuttonbn/bbb_view.php?action=playback&bn='.$bigbluebuttonbnid. |
|
| 1241 | - '&href='.urlencode($playback['url']).'&rid='.$recording['recordID']; |
|
| 1242 | - $linkattributes = array('title' => get_string('view_recording_format_'.$playback['type'], 'bigbluebuttonbn'), |
|
| 1240 | + $href = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_view.php?action=playback&bn=' . $bigbluebuttonbnid . |
|
| 1241 | + '&href=' . urlencode($playback['url']) . '&rid=' . $recording['recordID']; |
|
| 1242 | + $linkattributes = array('title' => get_string('view_recording_format_' . $playback['type'], 'bigbluebuttonbn'), |
|
| 1243 | 1243 | 'class' => 'btn btn-sm btn-default', 'onclick' => $onclick, |
| 1244 | 1244 | 'data-action' => 'play', 'data-href' => $href); |
| 1245 | - $recordingtypes .= $OUTPUT->action_link('#', get_string('view_recording_format_'.$playback['type'], |
|
| 1246 | - 'bigbluebuttonbn'), null, $linkattributes).' '; |
|
| 1245 | + $recordingtypes .= $OUTPUT->action_link('#', get_string('view_recording_format_' . $playback['type'], |
|
| 1246 | + 'bigbluebuttonbn'), null, $linkattributes) . ' '; |
|
| 1247 | 1247 | } |
| 1248 | 1248 | $recordingtypes .= html_writer::end_tag('div'); |
| 1249 | 1249 | |
@@ -1328,11 +1328,11 @@ discard block |
||
| 1328 | 1328 | $target .= '-' . $data['target']; |
| 1329 | 1329 | } |
| 1330 | 1330 | $id = 'recording-' . $target . '-' . $recording['recordID']; |
| 1331 | - $onclick = 'M.mod_bigbluebuttonbn.recordings.recording_'.$data['action'].'(this);'; |
|
| 1331 | + $onclick = 'M.mod_bigbluebuttonbn.recordings.recording_' . $data['action'] . '(this);'; |
|
| 1332 | 1332 | if ((boolean)\mod_bigbluebuttonbn\locallib\config::get('recording_icons_enabled')) { |
| 1333 | 1333 | // With icon for $manageaction. |
| 1334 | 1334 | $iconattributes = array('id' => $id, 'class' => 'iconsmall'); |
| 1335 | - $icon = new pix_icon('i/'.$data['tag'], |
|
| 1335 | + $icon = new pix_icon('i/' . $data['tag'], |
|
| 1336 | 1336 | get_string('view_recording_list_actionbar_' . $data['action'], 'bigbluebuttonbn'), |
| 1337 | 1337 | 'moodle', $iconattributes); |
| 1338 | 1338 | $linkattributes = array( |
@@ -1423,7 +1423,7 @@ discard block |
||
| 1423 | 1423 | // There are recordings for this meeting. |
| 1424 | 1424 | foreach ($recordings as $recording) { |
| 1425 | 1425 | $row = new html_table_row(); |
| 1426 | - $row->id = 'recording-td-'.$recording['recordID']; |
|
| 1426 | + $row->id = 'recording-td-' . $recording['recordID']; |
|
| 1427 | 1427 | $row->attributes['data-imported'] = 'false'; |
| 1428 | 1428 | $texthead = ''; |
| 1429 | 1429 | $texttail = ''; |
@@ -1437,9 +1437,9 @@ discard block |
||
| 1437 | 1437 | $rowdata = bigbluebuttonbn_get_recording_data_row($bbbsession, $recording, $tools); |
| 1438 | 1438 | if ($rowdata != null) { |
| 1439 | 1439 | $rowdata->date_formatted = str_replace(' ', ' ', $rowdata->date_formatted); |
| 1440 | - $row->cells = array($texthead.$rowdata->recording.$texttail, |
|
| 1441 | - $texthead.$rowdata->activity.$texttail, $texthead.$rowdata->description.$texttail, |
|
| 1442 | - $rowdata->preview, $texthead.$rowdata->date_formatted.$texttail, |
|
| 1440 | + $row->cells = array($texthead . $rowdata->recording . $texttail, |
|
| 1441 | + $texthead . $rowdata->activity . $texttail, $texthead . $rowdata->description . $texttail, |
|
| 1442 | + $rowdata->preview, $texthead . $rowdata->date_formatted . $texttail, |
|
| 1443 | 1443 | $rowdata->duration_formatted); |
| 1444 | 1444 | if ($bbbsession['managerecordings']) { |
| 1445 | 1445 | $row->cells[] = $rowdata->actionbar; |
@@ -1461,9 +1461,9 @@ discard block |
||
| 1461 | 1461 | // Build the message_body. |
| 1462 | 1462 | $msg->activity_type = ''; |
| 1463 | 1463 | $msg->activity_title = $bigbluebuttonbn->name; |
| 1464 | - $messagetext = '<p>'.get_string('email_body_recording_ready_for', 'bigbluebuttonbn').' '. |
|
| 1465 | - $msg->activity_type.' "'.$msg->activity_title.'" '. |
|
| 1466 | - get_string('email_body_recording_ready_is_ready', 'bigbluebuttonbn').'.</p>'; |
|
| 1464 | + $messagetext = '<p>' . get_string('email_body_recording_ready_for', 'bigbluebuttonbn') . ' ' . |
|
| 1465 | + $msg->activity_type . ' "' . $msg->activity_title . '" ' . |
|
| 1466 | + get_string('email_body_recording_ready_is_ready', 'bigbluebuttonbn') . '.</p>'; |
|
| 1467 | 1467 | |
| 1468 | 1468 | bigbluebuttonbn_send_notification($sender, $bigbluebuttonbn, $messagetext); |
| 1469 | 1469 | } |
@@ -1556,15 +1556,15 @@ discard block |
||
| 1556 | 1556 | |
| 1557 | 1557 | // Gather the bigbluebuttonbnids whose meetingids should be included in the getRecordings request'. |
| 1558 | 1558 | $select = "id <> '{$bigbluebuttonbnid}' AND course = '{$courseid}'"; |
| 1559 | - $selectdeleted = "courseid = '{$courseid}' AND bigbluebuttonbnid <> '{$bigbluebuttonbnid}' AND log = '". |
|
| 1560 | - BIGBLUEBUTTONBN_LOG_EVENT_DELETE."' AND meta like '%has_recordings%' AND meta like '%true%'"; |
|
| 1559 | + $selectdeleted = "courseid = '{$courseid}' AND bigbluebuttonbnid <> '{$bigbluebuttonbnid}' AND log = '" . |
|
| 1560 | + BIGBLUEBUTTONBN_LOG_EVENT_DELETE . "' AND meta like '%has_recordings%' AND meta like '%true%'"; |
|
| 1561 | 1561 | if ($bigbluebuttonbnid === null) { |
| 1562 | 1562 | $select = "course = '{$courseid}'"; |
| 1563 | - $selectdeleted = "courseid = '{$courseid}' AND log = '".BIGBLUEBUTTONBN_LOG_EVENT_DELETE. |
|
| 1563 | + $selectdeleted = "courseid = '{$courseid}' AND log = '" . BIGBLUEBUTTONBN_LOG_EVENT_DELETE . |
|
| 1564 | 1564 | "' AND meta like '%has_recordings%' AND meta like '%true%'"; |
| 1565 | 1565 | } else if ($subset) { |
| 1566 | 1566 | $select = "id = '{$bigbluebuttonbnid}'"; |
| 1567 | - $selectdeleted = "bigbluebuttonbnid = '{$bigbluebuttonbnid}' AND log = '".BIGBLUEBUTTONBN_LOG_EVENT_DELETE. |
|
| 1567 | + $selectdeleted = "bigbluebuttonbnid = '{$bigbluebuttonbnid}' AND log = '" . BIGBLUEBUTTONBN_LOG_EVENT_DELETE . |
|
| 1568 | 1568 | "' AND meta like '%has_recordings%' AND meta like '%true%'"; |
| 1569 | 1569 | } |
| 1570 | 1570 | $bigbluebuttonbns = $DB->get_records_select_menu('bigbluebuttonbn', $select, null, 'id', 'id, meetingid'); |
@@ -1586,7 +1586,7 @@ discard block |
||
| 1586 | 1586 | if (!empty($bigbluebuttonbns)) { |
| 1587 | 1587 | // Prepare select for loading records based on existent bigbluebuttonbns. |
| 1588 | 1588 | $sql = 'SELECT DISTINCT meetingid, bigbluebuttonbnid FROM {bigbluebuttonbn_logs} WHERE '; |
| 1589 | - $sql .= '(bigbluebuttonbnid='.implode(' OR bigbluebuttonbnid=', array_keys($bigbluebuttonbns)).')'; |
|
| 1589 | + $sql .= '(bigbluebuttonbnid=' . implode(' OR bigbluebuttonbnid=', array_keys($bigbluebuttonbns)) . ')'; |
|
| 1590 | 1590 | // Include only Create events and exclude those with record not true. |
| 1591 | 1591 | $sql .= ' AND log = ? AND meta LIKE ? AND meta LIKE ?'; |
| 1592 | 1592 | // Execute select for loading records based on existent bigbluebuttonbns. |
@@ -1678,8 +1678,8 @@ discard block |
||
| 1678 | 1678 | function bigbluebuttonbn_format_activity_time($time) { |
| 1679 | 1679 | $activitytime = ''; |
| 1680 | 1680 | if ($time) { |
| 1681 | - $activitytime = calendar_day_representation($time).' '. |
|
| 1682 | - get_string('mod_form_field_notification_msg_at', 'bigbluebuttonbn').' '. |
|
| 1681 | + $activitytime = calendar_day_representation($time) . ' ' . |
|
| 1682 | + get_string('mod_form_field_notification_msg_at', 'bigbluebuttonbn') . ' ' . |
|
| 1683 | 1683 | calendar_time_representation($time); |
| 1684 | 1684 | } |
| 1685 | 1685 | |
@@ -1705,7 +1705,7 @@ discard block |
||
| 1705 | 1705 | |
| 1706 | 1706 | function bigbluebuttonbn_get_moderator_email($context) { |
| 1707 | 1707 | $moderatoremails = array(); |
| 1708 | - $users = (array) get_enrolled_users($context,'',0,'u.*',null,0,0,true); |
|
| 1708 | + $users = (array)get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 1709 | 1709 | $counter = 0; |
| 1710 | 1710 | foreach ($users as $key => $user) { |
| 1711 | 1711 | if ($counter == 5) { |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v2 or later |
| 24 | 24 | */ |
| 25 | 25 | |
| 26 | -require_once(dirname(dirname(dirname(__FILE__))).'/config.php'); |
|
| 27 | -require_once(dirname(__FILE__).'/locallib.php'); |
|
| 26 | +require_once(dirname(dirname(dirname(__FILE__))) . '/config.php'); |
|
| 27 | +require_once(dirname(__FILE__) . '/locallib.php'); |
|
| 28 | 28 | |
| 29 | 29 | $id = required_param('id', PARAM_INT); |
| 30 | 30 | $b = optional_param('n', 0, PARAM_INT); |
@@ -59,18 +59,18 @@ discard block |
||
| 59 | 59 | if (is_null($serverversion)) { |
| 60 | 60 | if ($bbbsession['administrator']) { |
| 61 | 61 | print_error('view_error_unable_join', 'bigbluebuttonbn', |
| 62 | - $CFG->wwwroot.'/admin/settings.php?section=modsettingbigbluebuttonbn'); |
|
| 62 | + $CFG->wwwroot . '/admin/settings.php?section=modsettingbigbluebuttonbn'); |
|
| 63 | 63 | exit; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | if ($bbbsession['moderator']) { |
| 67 | 67 | print_error('view_error_unable_join_teacher', 'bigbluebuttonbn', |
| 68 | - $CFG->wwwroot.'/course/view.php?id='.$bigbluebuttonbn->course); |
|
| 68 | + $CFG->wwwroot . '/course/view.php?id=' . $bigbluebuttonbn->course); |
|
| 69 | 69 | exit; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | print_error('view_error_unable_join_student', 'bigbluebuttonbn', |
| 73 | - $CFG->wwwroot.'/course/view.php?id='.$bigbluebuttonbn->course); |
|
| 73 | + $CFG->wwwroot . '/course/view.php?id=' . $bigbluebuttonbn->course); |
|
| 74 | 74 | exit; |
| 75 | 75 | } |
| 76 | 76 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | // Print the page header. |
| 82 | 82 | $PAGE->set_context($context); |
| 83 | -$PAGE->set_url($CFG->wwwroot.'/mod/bigbluebuttonbn/view.php', array('id' => $cm->id)); |
|
| 83 | +$PAGE->set_url($CFG->wwwroot . '/mod/bigbluebuttonbn/view.php', array('id' => $cm->id)); |
|
| 84 | 84 | $PAGE->set_title(format_string($bigbluebuttonbn->name)); |
| 85 | 85 | $PAGE->set_cacheable(false); |
| 86 | 86 | $PAGE->set_heading($course->fullname); |
@@ -90,11 +90,11 @@ discard block |
||
| 90 | 90 | if (!has_capability('moodle/category:manage', $context) && !has_capability('mod/bigbluebuttonbn:join', $context)) { |
| 91 | 91 | echo $OUTPUT->header(); |
| 92 | 92 | if (isguestuser()) { |
| 93 | - echo $OUTPUT->confirm('<p>'.get_string('view_noguests', 'bigbluebuttonbn').'</p>'.get_string('liketologin'), |
|
| 94 | - get_login_url(), $CFG->wwwroot.'/course/view.php?id='.$course->id); |
|
| 93 | + echo $OUTPUT->confirm('<p>' . get_string('view_noguests', 'bigbluebuttonbn') . '</p>' . get_string('liketologin'), |
|
| 94 | + get_login_url(), $CFG->wwwroot . '/course/view.php?id=' . $course->id); |
|
| 95 | 95 | } else { |
| 96 | - echo $OUTPUT->confirm('<p>'.get_string('view_nojoin', 'bigbluebuttonbn').'</p>'.get_string('liketologin'), |
|
| 97 | - get_login_url(), $CFG->wwwroot.'/course/view.php?id='.$course->id); |
|
| 96 | + echo $OUTPUT->confirm('<p>' . get_string('view_nojoin', 'bigbluebuttonbn') . '</p>' . get_string('liketologin'), |
|
| 97 | + get_login_url(), $CFG->wwwroot . '/course/view.php?id=' . $course->id); |
|
| 98 | 98 | } |
| 99 | 99 | echo $OUTPUT->footer(); |
| 100 | 100 | exit; |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | |
| 103 | 103 | // Operation URLs. |
| 104 | 104 | $bbbsession['bigbluebuttonbnURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/view.php?id=' . $bbbsession['cm']->id; |
| 105 | -$bbbsession['logoutURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_view.php?action=logout&id='.$id . |
|
| 105 | +$bbbsession['logoutURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_view.php?action=logout&id=' . $id . |
|
| 106 | 106 | '&bn=' . $bbbsession['bigbluebuttonbn']->id; |
| 107 | 107 | $bbbsession['recordingReadyURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_broker.php?action=recording_' . |
| 108 | 108 | 'ready&bigbluebuttonbn=' . $bbbsession['bigbluebuttonbn']->id; |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | echo $OUTPUT->footer(); |
| 123 | 123 | |
| 124 | 124 | // Shows version as a comment. |
| 125 | -echo '<!-- '.$bbbsession['originTag'].' -->'."\n"; |
|
| 125 | +echo '<!-- ' . $bbbsession['originTag'] . ' -->' . "\n"; |
|
| 126 | 126 | |
| 127 | 127 | // Initialize session variable used across views. |
| 128 | 128 | $SESSION->bigbluebuttonbn_bbbsession = $bbbsession; |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | $bbbsession['viewerPW'] = $bigbluebuttonbn->viewerpass; |
| 153 | 153 | |
| 154 | 154 | // Database info related to the activity. |
| 155 | - $bbbsession['meetingid'] = $bbbsession['bigbluebuttonbn']->meetingid.'-'.$bbbsession['course']->id.'-'. |
|
| 155 | + $bbbsession['meetingid'] = $bbbsession['bigbluebuttonbn']->meetingid . '-' . $bbbsession['course']->id . '-' . |
|
| 156 | 156 | $bbbsession['bigbluebuttonbn']->id; |
| 157 | 157 | $bbbsession['meetingname'] = $bbbsession['bigbluebuttonbn']->name; |
| 158 | 158 | $bbbsession['meetingdescription'] = $bigbluebuttonbn->intro; |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | $bbbsession['welcome'] = get_string('mod_form_field_welcome_default', 'bigbluebuttonbn'); |
| 174 | 174 | } |
| 175 | 175 | if ($bigbluebuttonbn->record) { |
| 176 | - $bbbsession['welcome'] .= '<br><br>'.get_string('bbbrecordwarning', 'bigbluebuttonbn'); |
|
| 176 | + $bbbsession['welcome'] .= '<br><br>' . get_string('bbbrecordwarning', 'bigbluebuttonbn'); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | $bbbsession['openingtime'] = $bigbluebuttonbn->openingtime; |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | $bbbsession['originServerName'] = $parsedurl['host']; |
| 190 | 190 | $bbbsession['originServerUrl'] = $CFG->wwwroot; |
| 191 | 191 | $bbbsession['originServerCommonName'] = ''; |
| 192 | - $bbbsession['originTag'] = 'moodle-mod_bigbluebuttonbn ('.get_config('mod_bigbluebuttonbn', 'version').')'; |
|
| 192 | + $bbbsession['originTag'] = 'moodle-mod_bigbluebuttonbn (' . get_config('mod_bigbluebuttonbn', 'version') . ')'; |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | function bigbluebuttonbn_view_bbbsession_roles($context, $userid) { |
@@ -248,10 +248,10 @@ discard block |
||
| 248 | 248 | $bbbsession['group'] = groups_get_activity_group($bbbsession['cm'], true); |
| 249 | 249 | |
| 250 | 250 | // Assign group default values. |
| 251 | - $bbbsession['meetingid'] = $bbbsession['bigbluebuttonbn']->meetingid.'-'.$bbbsession['course']->id.'-'. |
|
| 252 | - $bbbsession['bigbluebuttonbn']->id.'['.$bbbsession['group'].']'; |
|
| 251 | + $bbbsession['meetingid'] = $bbbsession['bigbluebuttonbn']->meetingid . '-' . $bbbsession['course']->id . '-' . |
|
| 252 | + $bbbsession['bigbluebuttonbn']->id . '[' . $bbbsession['group'] . ']'; |
|
| 253 | 253 | $groupname = get_string('allparticipants'); |
| 254 | - $bbbsession['meetingname'] = $bbbsession['bigbluebuttonbn']->name.' ('.$groupname.')'; |
|
| 254 | + $bbbsession['meetingname'] = $bbbsession['bigbluebuttonbn']->name . ' (' . $groupname . ')'; |
|
| 255 | 255 | |
| 256 | 256 | if (count($groups) == 0) { |
| 257 | 257 | // Only the All participants group exists. |
@@ -262,10 +262,10 @@ discard block |
||
| 262 | 262 | $bbbsession['group'] = array_values($groups)[0]->id; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - $bbbsession['meetingid'] = $bbbsession['bigbluebuttonbn']->meetingid.'-'.$bbbsession['course']->id.'-'. |
|
| 266 | - $bbbsession['bigbluebuttonbn']->id.'['.$bbbsession['group'].']'; |
|
| 265 | + $bbbsession['meetingid'] = $bbbsession['bigbluebuttonbn']->meetingid . '-' . $bbbsession['course']->id . '-' . |
|
| 266 | + $bbbsession['bigbluebuttonbn']->id . '[' . $bbbsession['group'] . ']'; |
|
| 267 | 267 | $groupname = groups_get_group_name($bbbsession['group']); |
| 268 | - $bbbsession['meetingname'] = $bbbsession['bigbluebuttonbn']->name.' ('.$groupname.')'; |
|
| 268 | + $bbbsession['meetingname'] = $bbbsession['bigbluebuttonbn']->name . ' (' . $groupname . ')'; |
|
| 269 | 269 | |
| 270 | 270 | if (count($groups) == 1) { |
| 271 | 271 | // There only one group and the user has access to. |
@@ -273,12 +273,12 @@ discard block |
||
| 273 | 273 | } |
| 274 | 274 | |
| 275 | 275 | echo $OUTPUT->box_start('generalbox boxaligncenter'); |
| 276 | - echo '<br><div class="alert alert-warning">'.get_string('view_groups_selection_warning', 'bigbluebuttonbn'). |
|
| 276 | + echo '<br><div class="alert alert-warning">' . get_string('view_groups_selection_warning', 'bigbluebuttonbn') . |
|
| 277 | 277 | '</div>'; |
| 278 | 278 | echo $OUTPUT->box_end(); |
| 279 | 279 | |
| 280 | 280 | groups_print_activity_menu( |
| 281 | - $bbbsession['cm'], $CFG->wwwroot.'/mod/bigbluebuttonbn/view.php?id='.$bbbsession['cm']->id, false, $onlyexistentgroups); |
|
| 281 | + $bbbsession['cm'], $CFG->wwwroot . '/mod/bigbluebuttonbn/view.php?id=' . $bbbsession['cm']->id, false, $onlyexistentgroups); |
|
| 282 | 282 | echo '<br><br>'; |
| 283 | 283 | } |
| 284 | 284 | |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | 'M.mod_bigbluebuttonbn.recordings.init', array($jsvars)); |
| 321 | 321 | } |
| 322 | 322 | |
| 323 | - echo $output.html_writer::empty_tag('br').html_writer::empty_tag('br').html_writer::empty_tag('br'); |
|
| 323 | + echo $output . html_writer::empty_tag('br') . html_writer::empty_tag('br') . html_writer::empty_tag('br'); |
|
| 324 | 324 | |
| 325 | 325 | $PAGE->requires->yui_module('moodle-mod_bigbluebuttonbn-broker', 'M.mod_bigbluebuttonbn.broker.init', array($jsvars)); |
| 326 | 326 | } |
@@ -331,12 +331,12 @@ discard block |
||
| 331 | 331 | // JavaScript variables for room. |
| 332 | 332 | $openingtime = ''; |
| 333 | 333 | if ($bbbsession['openingtime']) { |
| 334 | - $openingtime = get_string('mod_form_field_openingtime', 'bigbluebuttonbn').': '. |
|
| 334 | + $openingtime = get_string('mod_form_field_openingtime', 'bigbluebuttonbn') . ': ' . |
|
| 335 | 335 | userdate($bbbsession['openingtime']); |
| 336 | 336 | } |
| 337 | 337 | $closingtime = ''; |
| 338 | 338 | if ($bbbsession['closingtime']) { |
| 339 | - $closingtime = get_string('mod_form_field_closingtime', 'bigbluebuttonbn').': '. |
|
| 339 | + $closingtime = get_string('mod_form_field_closingtime', 'bigbluebuttonbn') . ': ' . |
|
| 340 | 340 | userdate($bbbsession['closingtime']); |
| 341 | 341 | } |
| 342 | 342 | $jsvars += array( |
@@ -353,7 +353,7 @@ discard block |
||
| 353 | 353 | $output .= $OUTPUT->box_end(); |
| 354 | 354 | |
| 355 | 355 | $output .= $OUTPUT->box_start('generalbox boxaligncenter', 'bigbluebuttonbn_view_action_button_box'); |
| 356 | - $output .= '<br><br><span id="join_button"></span> <span id="end_button"></span>'."\n"; |
|
| 356 | + $output .= '<br><br><span id="join_button"></span> <span id="end_button"></span>' . "\n"; |
|
| 357 | 357 | $output .= $OUTPUT->box_end(); |
| 358 | 358 | |
| 359 | 359 | if ($activity == 'ended') { |
@@ -389,7 +389,7 @@ discard block |
||
| 389 | 389 | // If there are meetings with recordings load the data to the table. |
| 390 | 390 | if ($bbbsession['bigbluebuttonbn']->recordings_html) { |
| 391 | 391 | // Render a plain html table. |
| 392 | - return bigbluebutton_output_recording_table($bbbsession, $recordings)."\n"; |
|
| 392 | + return bigbluebutton_output_recording_table($bbbsession, $recordings) . "\n"; |
|
| 393 | 393 | } |
| 394 | 394 | |
| 395 | 395 | // JavaScript variables for recordings with YUI. |
@@ -409,8 +409,8 @@ discard block |
||
| 409 | 409 | array('type' => 'button', |
| 410 | 410 | 'value' => get_string('view_recording_button_import', 'bigbluebuttonbn'), |
| 411 | 411 | 'class' => 'btn btn-secondary', |
| 412 | - 'onclick' => 'window.location=\''.$CFG->wwwroot.'/mod/bigbluebuttonbn/import_view.php?bn='. |
|
| 413 | - $bbbsession['bigbluebuttonbn']->id.'\'')); |
|
| 412 | + 'onclick' => 'window.location=\'' . $CFG->wwwroot . '/mod/bigbluebuttonbn/import_view.php?bn=' . |
|
| 413 | + $bbbsession['bigbluebuttonbn']->id . '\'')); |
|
| 414 | 414 | $output = html_writer::start_tag('br'); |
| 415 | 415 | $output .= html_writer::tag('span', $button, array('id' => 'import_recording_links_button')); |
| 416 | 416 | $output .= html_writer::tag('span', '', array('id' => 'import_recording_links_table')); |
@@ -425,10 +425,10 @@ discard block |
||
| 425 | 425 | $attributes = array('title' => $bbbsession['presentation']['name']); |
| 426 | 426 | $icon = new pix_icon($bbbsession['presentation']['icon'], $bbbsession['presentation']['mimetype_description']); |
| 427 | 427 | |
| 428 | - return '<h4>'.get_string('view_section_title_presentation', 'bigbluebuttonbn').'</h4>'. |
|
| 429 | - ''.$OUTPUT->action_icon($bbbsession['presentation']['url'], $icon, null, array(), false).''. |
|
| 430 | - ''.$OUTPUT->action_link($bbbsession['presentation']['url'], |
|
| 431 | - $bbbsession['presentation']['name'], null, $attributes).'<br><br>'; |
|
| 428 | + return '<h4>' . get_string('view_section_title_presentation', 'bigbluebuttonbn') . '</h4>' . |
|
| 429 | + '' . $OUTPUT->action_icon($bbbsession['presentation']['url'], $icon, null, array(), false) . '' . |
|
| 430 | + '' . $OUTPUT->action_link($bbbsession['presentation']['url'], |
|
| 431 | + $bbbsession['presentation']['name'], null, $attributes) . '<br><br>'; |
|
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | return ''; |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | global $USER; |
| 35 | 35 | |
| 36 | 36 | // Prepare message. |
| 37 | - $msg = (object) array(); |
|
| 37 | + $msg = (object)array(); |
|
| 38 | 38 | // Build the message_body. |
| 39 | 39 | $msg->action = $action; |
| 40 | 40 | $msg->activity_type = ''; |
@@ -54,26 +54,26 @@ discard block |
||
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | public static function notification_msg_html($msg) { |
| 57 | - $messagetext = '<p>'.$msg->activity_type.' "'.$msg->activity_title.'" '. |
|
| 58 | - get_string('email_body_notification_meeting_has_been', 'bigbluebuttonbn').' '.$msg->action.'.</p>'."\n"; |
|
| 59 | - $messagetext .= '<p><b>'.$msg->activity_title.'</b> '. |
|
| 60 | - get_string('email_body_notification_meeting_details', 'bigbluebuttonbn').':'."\n"; |
|
| 61 | - $messagetext .= '<table border="0" style="margin: 5px 0 0 20px"><tbody>'."\n"; |
|
| 62 | - $messagetext .= '<tr><td style="font-weight:bold;color:#555;">'. |
|
| 63 | - get_string('email_body_notification_meeting_title', 'bigbluebuttonbn').': </td><td>'."\n"; |
|
| 64 | - $messagetext .= $msg->activity_title.'</td></tr>'."\n"; |
|
| 65 | - $messagetext .= '<tr><td style="font-weight:bold;color:#555;">'. |
|
| 66 | - get_string('email_body_notification_meeting_description', 'bigbluebuttonbn').': </td><td>'."\n"; |
|
| 67 | - $messagetext .= $msg->activity_description.'</td></tr>'."\n"; |
|
| 68 | - $messagetext .= '<tr><td style="font-weight:bold;color:#555;">'. |
|
| 69 | - get_string('email_body_notification_meeting_start_date', 'bigbluebuttonbn').': </td><td>'."\n"; |
|
| 70 | - $messagetext .= $msg->activity_openingtime.'</td></tr>'."\n"; |
|
| 71 | - $messagetext .= '<tr><td style="font-weight:bold;color:#555;">'. |
|
| 72 | - get_string('email_body_notification_meeting_end_date', 'bigbluebuttonbn').': </td><td>'."\n"; |
|
| 73 | - $messagetext .= $msg->activity_closingtime.'</td></tr>'."\n"; |
|
| 74 | - $messagetext .= '<tr><td style="font-weight:bold;color:#555;">'.$msg->action.' '. |
|
| 75 | - get_string('email_body_notification_meeting_by', 'bigbluebuttonbn').': </td><td>'."\n"; |
|
| 76 | - $messagetext .= $msg->activity_owner.'</td></tr></tbody></table></p>'."\n"; |
|
| 57 | + $messagetext = '<p>' . $msg->activity_type . ' "' . $msg->activity_title . '" ' . |
|
| 58 | + get_string('email_body_notification_meeting_has_been', 'bigbluebuttonbn') . ' ' . $msg->action . '.</p>' . "\n"; |
|
| 59 | + $messagetext .= '<p><b>' . $msg->activity_title . '</b> ' . |
|
| 60 | + get_string('email_body_notification_meeting_details', 'bigbluebuttonbn') . ':' . "\n"; |
|
| 61 | + $messagetext .= '<table border="0" style="margin: 5px 0 0 20px"><tbody>' . "\n"; |
|
| 62 | + $messagetext .= '<tr><td style="font-weight:bold;color:#555;">' . |
|
| 63 | + get_string('email_body_notification_meeting_title', 'bigbluebuttonbn') . ': </td><td>' . "\n"; |
|
| 64 | + $messagetext .= $msg->activity_title . '</td></tr>' . "\n"; |
|
| 65 | + $messagetext .= '<tr><td style="font-weight:bold;color:#555;">' . |
|
| 66 | + get_string('email_body_notification_meeting_description', 'bigbluebuttonbn') . ': </td><td>' . "\n"; |
|
| 67 | + $messagetext .= $msg->activity_description . '</td></tr>' . "\n"; |
|
| 68 | + $messagetext .= '<tr><td style="font-weight:bold;color:#555;">' . |
|
| 69 | + get_string('email_body_notification_meeting_start_date', 'bigbluebuttonbn') . ': </td><td>' . "\n"; |
|
| 70 | + $messagetext .= $msg->activity_openingtime . '</td></tr>' . "\n"; |
|
| 71 | + $messagetext .= '<tr><td style="font-weight:bold;color:#555;">' . |
|
| 72 | + get_string('email_body_notification_meeting_end_date', 'bigbluebuttonbn') . ': </td><td>' . "\n"; |
|
| 73 | + $messagetext .= $msg->activity_closingtime . '</td></tr>' . "\n"; |
|
| 74 | + $messagetext .= '<tr><td style="font-weight:bold;color:#555;">' . $msg->action . ' ' . |
|
| 75 | + get_string('email_body_notification_meeting_by', 'bigbluebuttonbn') . ': </td><td>' . "\n"; |
|
| 76 | + $messagetext .= $msg->activity_owner . '</td></tr></tbody></table></p>' . "\n"; |
|
| 77 | 77 | return $messagetext; |
| 78 | 78 | } |
| 79 | 79 | |
@@ -83,15 +83,15 @@ discard block |
||
| 83 | 83 | $course = $DB->get_record('course', array('id' => $bigbluebuttonbn->course), '*', MUST_EXIST); |
| 84 | 84 | |
| 85 | 85 | // Complete message. |
| 86 | - $msg = (object) array(); |
|
| 86 | + $msg = (object)array(); |
|
| 87 | 87 | $msg->user_name = fullname($sender); |
| 88 | 88 | $msg->user_email = $sender->email; |
| 89 | 89 | $msg->course_name = "$course->fullname"; |
| 90 | - $message .= '<p><hr/><br/>'.get_string('email_footer_sent_by', 'bigbluebuttonbn').' '. |
|
| 91 | - $msg->user_name.'('.$msg->user_email.') '; |
|
| 92 | - $message .= get_string('email_footer_sent_from', 'bigbluebuttonbn').' '.$msg->course_name.'.</p>'; |
|
| 90 | + $message .= '<p><hr/><br/>' . get_string('email_footer_sent_by', 'bigbluebuttonbn') . ' ' . |
|
| 91 | + $msg->user_name . '(' . $msg->user_email . ') '; |
|
| 92 | + $message .= get_string('email_footer_sent_from', 'bigbluebuttonbn') . ' ' . $msg->course_name . '.</p>'; |
|
| 93 | 93 | |
| 94 | - $users = (array) get_enrolled_users($context,'',0,'u.*',null,0,0,true); |
|
| 94 | + $users = (array)get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 95 | 95 | foreach ($users as $user) { |
| 96 | 96 | if ($user->id != $sender->id) { |
| 97 | 97 | message_post_message($sender, $user, $message, FORMAT_HTML); |
@@ -37,17 +37,17 @@ |
||
| 37 | 37 | * @return string |
| 38 | 38 | */ |
| 39 | 39 | public static function action_url($action = '', $data = array(), $metadata = array()) { |
| 40 | - $baseurl = \mod_bigbluebuttonbn\locallib\config::get('server_url').'api/'.$action.'?'; |
|
| 40 | + $baseurl = \mod_bigbluebuttonbn\locallib\config::get('server_url') . 'api/' . $action . '?'; |
|
| 41 | 41 | $params = ''; |
| 42 | 42 | |
| 43 | 43 | foreach ($data as $key => $value) { |
| 44 | - $params .= '&'.$key.'='.urlencode($value); |
|
| 44 | + $params .= '&' . $key . '=' . urlencode($value); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | foreach ($metadata as $key => $value) { |
| 48 | - $params .= '&'.'meta_'.$key.'='.urlencode($value); |
|
| 48 | + $params .= '&' . 'meta_' . $key . '=' . urlencode($value); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - return $baseurl.$params.'&checksum='.sha1($action.$params.\mod_bigbluebuttonbn\locallib\config::get('shared_secret')); |
|
| 51 | + return $baseurl . $params . '&checksum=' . sha1($action . $params . \mod_bigbluebuttonbn\locallib\config::get('shared_secret')); |
|
| 52 | 52 | } |
| 53 | 53 | } |
@@ -47,8 +47,8 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public static function defaultvalues() { |
| 49 | 49 | return array( |
| 50 | - 'server_url' => (string) BIGBLUEBUTTONBN_DEFAULT_SERVER_URL, |
|
| 51 | - 'server_url' => (string) BIGBLUEBUTTONBN_DEFAULT_SHARED_SECRET, |
|
| 50 | + 'server_url' => (string)BIGBLUEBUTTONBN_DEFAULT_SERVER_URL, |
|
| 51 | + 'server_url' => (string)BIGBLUEBUTTONBN_DEFAULT_SHARED_SECRET, |
|
| 52 | 52 | 'importrecordings_enabled' => 'false', |
| 53 | 53 | 'voicebridge_editable' => 'false', |
| 54 | 54 | 'recording_default' => 'true', |
@@ -98,11 +98,11 @@ discard block |
||
| 98 | 98 | global $CFG; |
| 99 | 99 | |
| 100 | 100 | if (isset($CFG->bigbluebuttonbn[$setting])) { |
| 101 | - return (string) $CFG->bigbluebuttonbn[$setting]; |
|
| 101 | + return (string)$CFG->bigbluebuttonbn[$setting]; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - if (isset($CFG->{'bigbluebuttonbn_'.$setting})) { |
|
| 105 | - return (string)$CFG->{'bigbluebuttonbn_'.$setting}; |
|
| 104 | + if (isset($CFG->{'bigbluebuttonbn_' . $setting})) { |
|
| 105 | + return (string)$CFG->{'bigbluebuttonbn_' . $setting}; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | return self::defaultvalue($setting); |
@@ -34,8 +34,8 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | protected function init() { |
| 36 | 36 | parent::init(); |
| 37 | - $this->description = "The user with id '$this->userid' triggered action $this->other in a ". |
|
| 38 | - "bigbluebutton meeting for the bigbluebuttonbn activity with id ". |
|
| 37 | + $this->description = "The user with id '$this->userid' triggered action $this->other in a " . |
|
| 38 | + "bigbluebutton meeting for the bigbluebuttonbn activity with id " . |
|
| 39 | 39 | "'$this->objectid' for the course id '$this->contextinstanceid'."; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | protected function init() { |
| 36 | 36 | parent::init(); |
| 37 | - $this->description = "The user with id '$this->userid' has unprotected a recording with id ". |
|
| 37 | + $this->description = "The user with id '$this->userid' has unprotected a recording with id " . |
|
| 38 | 38 | "'$this->other' in the course id '$this->contextinstanceid'."; |
| 39 | 39 | } |
| 40 | 40 | |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | protected function init() { |
| 36 | 36 | parent::init(); |
| 37 | - $this->description = "The user with id '$this->userid' created a bigbluebutton meeting for". |
|
| 37 | + $this->description = "The user with id '$this->userid' created a bigbluebutton meeting for" . |
|
| 38 | 38 | "the bigbluebuttonbn activity with id '$this->objectid' for the course id '$this->contextinstanceid'."; |
| 39 | 39 | } |
| 40 | 40 | |
@@ -34,8 +34,8 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | protected function init() { |
| 36 | 36 | parent::init(); |
| 37 | - $this->description = "A bigbluebutton meeting for the bigbluebuttonbn activity with id ". |
|
| 38 | - "'$this->objectid' for the course id '$this->contextinstanceid' has been forcibly ". |
|
| 37 | + $this->description = "A bigbluebutton meeting for the bigbluebuttonbn activity with id " . |
|
| 38 | + "'$this->objectid' for the course id '$this->contextinstanceid' has been forcibly " . |
|
| 39 | 39 | "ended by the user with id '$this->userid'."; |
| 40 | 40 | } |
| 41 | 41 | |