@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | global $CFG; |
| 30 | 30 | |
| 31 | -require_once(dirname(__FILE__).'/lib.php'); |
|
| 31 | +require_once(dirname(__FILE__) . '/lib.php'); |
|
| 32 | 32 | |
| 33 | 33 | const BIGBLUEBUTTONBN_FORCED = true; |
| 34 | 34 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | if (isset($meta)) { |
| 81 | 81 | $log->meta = $meta; |
| 82 | 82 | } else if ($event == BIGBLUEBUTTONBN_LOG_EVENT_CREATE) { |
| 83 | - $log->meta = '{"record":'.($bbbsession['record'] ? 'true' : 'false').'}'; |
|
| 83 | + $log->meta = '{"record":' . ($bbbsession['record'] ? 'true' : 'false') . '}'; |
|
| 84 | 84 | } |
| 85 | 85 | $DB->insert_record('bigbluebuttonbn_logs', $log); |
| 86 | 86 | } |
@@ -120,8 +120,8 @@ discard block |
||
| 120 | 120 | $data = null; |
| 121 | 121 | if (!is_null($pname) && !is_null($purl)) { |
| 122 | 122 | $method = BIGBLUEBUTTONBN_METHOD_POST; |
| 123 | - $data = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='". |
|
| 124 | - $purl."' /></module></modules>"; |
|
| 123 | + $data = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='" . |
|
| 124 | + $purl . "' /></module></modules>"; |
|
| 125 | 125 | } |
| 126 | 126 | $xml = bigbluebuttonbn_wrap_xml_load_file($createmeetingurl, $method, $data); |
| 127 | 127 | if ($xml) { |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | // Override imported flag with actual ID. |
| 270 | 270 | $recording['imported'] = $recordimported->id; |
| 271 | 271 | if (isset($recordimported->protected)) { |
| 272 | - $recording['protected'] = (string) $recordimported->protected; |
|
| 272 | + $recording['protected'] = (string)$recordimported->protected; |
|
| 273 | 273 | } |
| 274 | 274 | $recordsimportedarray[$recording['recordID']] = $recording; |
| 275 | 275 | } |
@@ -285,36 +285,36 @@ discard block |
||
| 285 | 285 | |
| 286 | 286 | function bigbluebuttonbn_get_default_config_xml_array() { |
| 287 | 287 | $defaultconfigxml = bigbluebuttonbn_getDefaultConfigXML(); |
| 288 | - return (array) $defaultconfigxml; |
|
| 288 | + return (array)$defaultconfigxml; |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | function bigbluebuttonbn_get_recording_array_value($recording) { |
| 292 | 292 | // Add formats. |
| 293 | 293 | $playbackarray = array(); |
| 294 | 294 | foreach ($recording->playback->format as $format) { |
| 295 | - $playbackarray[(string) $format->type] = array('type' => (string) $format->type, |
|
| 296 | - 'url' => trim((string) $format->url), 'length' => (string) $format->length); |
|
| 295 | + $playbackarray[(string)$format->type] = array('type' => (string)$format->type, |
|
| 296 | + 'url' => trim((string)$format->url), 'length' => (string)$format->length); |
|
| 297 | 297 | // Add preview per format when existing. |
| 298 | 298 | if ($format->preview) { |
| 299 | 299 | $imagesarray = array(); |
| 300 | 300 | foreach ($format->preview->images->image as $image) { |
| 301 | - $imagearray = array('url' => trim((string) $image)); |
|
| 301 | + $imagearray = array('url' => trim((string)$image)); |
|
| 302 | 302 | foreach ($image->attributes() as $attkey => $attvalue) { |
| 303 | - $imagearray[$attkey] = (string) $attvalue; |
|
| 303 | + $imagearray[$attkey] = (string)$attvalue; |
|
| 304 | 304 | } |
| 305 | 305 | array_push($imagesarray, $imagearray); |
| 306 | 306 | } |
| 307 | - $playbackarray[(string) $format->type]['preview'] = $imagesarray; |
|
| 307 | + $playbackarray[(string)$format->type]['preview'] = $imagesarray; |
|
| 308 | 308 | } |
| 309 | 309 | } |
| 310 | 310 | // Add the metadata to the recordings array. |
| 311 | 311 | $metadataarray = bigbluebuttonbn_get_recording_array_meta(get_object_vars($recording->metadata)); |
| 312 | - $recordingarray = array('recordID' => (string) $recording->recordID, |
|
| 313 | - 'meetingID' => (string) $recording->meetingID, 'meetingName' => (string) $recording->name, |
|
| 314 | - 'published' => (string) $recording->published, 'startTime' => (string) $recording->startTime, |
|
| 315 | - 'endTime' => (string) $recording->endTime, 'playbacks' => $playbackarray); |
|
| 312 | + $recordingarray = array('recordID' => (string)$recording->recordID, |
|
| 313 | + 'meetingID' => (string)$recording->meetingID, 'meetingName' => (string)$recording->name, |
|
| 314 | + 'published' => (string)$recording->published, 'startTime' => (string)$recording->startTime, |
|
| 315 | + 'endTime' => (string)$recording->endTime, 'playbacks' => $playbackarray); |
|
| 316 | 316 | if (isset($recording->protected)) { |
| 317 | - $recordingarray['protected'] = (string) $recording->protected; |
|
| 317 | + $recordingarray['protected'] = (string)$recording->protected; |
|
| 318 | 318 | } |
| 319 | 319 | return $recordingarray + $metadataarray; |
| 320 | 320 | } |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | if (is_object($value)) { |
| 326 | 326 | $value = ''; |
| 327 | 327 | } |
| 328 | - $metadataarray['meta_'.$key] = $value; |
|
| 328 | + $metadataarray['meta_' . $key] = $value; |
|
| 329 | 329 | } |
| 330 | 330 | return $metadataarray; |
| 331 | 331 | } |
@@ -381,7 +381,7 @@ discard block |
||
| 381 | 381 | $ids = explode(',', $recordids); |
| 382 | 382 | foreach ($ids as $id) { |
| 383 | 383 | $xml = bigbluebuttonbn_wrap_xml_load_file( |
| 384 | - \mod_bigbluebuttonbn\locallib\bigbluebutton::action_url('updateRecordings', ['recordID' => $id] + (array) $params) |
|
| 384 | + \mod_bigbluebuttonbn\locallib\bigbluebutton::action_url('updateRecordings', ['recordID' => $id] + (array)$params) |
|
| 385 | 385 | ); |
| 386 | 386 | if ($xml && $xml->returncode != 'SUCCESS') { |
| 387 | 387 | return false; |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | return $xml; |
| 449 | 449 | } catch (Exception $e) { |
| 450 | 450 | libxml_use_internal_errors($previous); |
| 451 | - $error = 'Caught exception: '.$e->getMessage(); |
|
| 451 | + $error = 'Caught exception: ' . $e->getMessage(); |
|
| 452 | 452 | debugging($error, DEBUG_DEVELOPER); |
| 453 | 453 | return null; |
| 454 | 454 | } |
@@ -459,7 +459,7 @@ discard block |
||
| 459 | 459 | $response = simplexml_load_file($url, 'SimpleXMLElement', LIBXML_NOCDATA | LIBXML_NOBLANKS); |
| 460 | 460 | return $response; |
| 461 | 461 | } catch (Exception $e) { |
| 462 | - $error = 'Caught exception: '.$e->getMessage(); |
|
| 462 | + $error = 'Caught exception: ' . $e->getMessage(); |
|
| 463 | 463 | debugging($error, DEBUG_DEVELOPER); |
| 464 | 464 | libxml_use_internal_errors($previous); |
| 465 | 465 | return null; |
@@ -477,8 +477,8 @@ discard block |
||
| 477 | 477 | |
| 478 | 478 | $options = array(); |
| 479 | 479 | $options['CURLOPT_HTTPHEADER'] = array( |
| 480 | - 'Content-Type: '.$contenttype, |
|
| 481 | - 'Content-Length: '.strlen($data), |
|
| 480 | + 'Content-Type: ' . $contenttype, |
|
| 481 | + 'Content-Length: ' . strlen($data), |
|
| 482 | 482 | 'Content-Language: en-US', |
| 483 | 483 | ); |
| 484 | 484 | |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | |
| 490 | 490 | function bigbluebuttonbn_end_meeting_if_running($bigbluebuttonbn) { |
| 491 | 491 | // End the session associated with this instance (if it's running). |
| 492 | - $meetingid = $bigbluebuttonbn->meetingid.'-'.$bigbluebuttonbn->course.'-'.$bigbluebuttonbn->id; |
|
| 492 | + $meetingid = $bigbluebuttonbn->meetingid . '-' . $bigbluebuttonbn->course . '-' . $bigbluebuttonbn->id; |
|
| 493 | 493 | if (bigbluebuttonbn_is_meeting_running($meetingid)) { |
| 494 | 494 | bigbluebuttonbn_end_meeting($meetingid, $bigbluebuttonbn->moderatorpass); |
| 495 | 495 | } |
@@ -501,9 +501,9 @@ discard block |
||
| 501 | 501 | if ($userroles) { |
| 502 | 502 | $where = ''; |
| 503 | 503 | foreach ($userroles as $value) { |
| 504 | - $where .= (empty($where) ? ' WHERE' : ' OR').' id='.$value->roleid; |
|
| 504 | + $where .= (empty($where) ? ' WHERE' : ' OR') . ' id=' . $value->roleid; |
|
| 505 | 505 | } |
| 506 | - $userroles = $DB->get_records_sql('SELECT * FROM {role}'.$where); |
|
| 506 | + $userroles = $DB->get_records_sql('SELECT * FROM {role}' . $where); |
|
| 507 | 507 | } |
| 508 | 508 | return $userroles; |
| 509 | 509 | } |
@@ -514,7 +514,7 @@ discard block |
||
| 514 | 514 | } |
| 515 | 515 | |
| 516 | 516 | function bigbluebuttonbn_get_users(context $context = null) { |
| 517 | - $users = (array) get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 517 | + $users = (array)get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 518 | 518 | foreach ($users as $key => $value) { |
| 519 | 519 | $users[$key] = fullname($value); |
| 520 | 520 | } |
@@ -522,7 +522,7 @@ discard block |
||
| 522 | 522 | } |
| 523 | 523 | |
| 524 | 524 | function bigbluebuttonbn_get_users_select(context $context = null) { |
| 525 | - $users = (array) get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 525 | + $users = (array)get_enrolled_users($context, '', 0, 'u.*', null, 0, 0, true); |
|
| 526 | 526 | foreach ($users as $key => $value) { |
| 527 | 527 | $users[$key] = array('id' => $value->id, 'name' => fullname($value)); |
| 528 | 528 | } |
@@ -530,7 +530,7 @@ discard block |
||
| 530 | 530 | } |
| 531 | 531 | |
| 532 | 532 | function bigbluebuttonbn_get_roles(context $context = null) { |
| 533 | - $roles = (array) role_get_names($context); |
|
| 533 | + $roles = (array)role_get_names($context); |
|
| 534 | 534 | foreach ($roles as $key => $value) { |
| 535 | 535 | $roles[$key] = $value->localname; |
| 536 | 536 | } |
@@ -538,7 +538,7 @@ discard block |
||
| 538 | 538 | } |
| 539 | 539 | |
| 540 | 540 | function bigbluebuttonbn_get_roles_select(context $context = null) { |
| 541 | - $roles = (array) role_get_names($context); |
|
| 541 | + $roles = (array)role_get_names($context); |
|
| 542 | 542 | foreach ($roles as $key => $value) { |
| 543 | 543 | $roles[$key] = array('id' => $value->id, 'name' => $value->localname); |
| 544 | 544 | } |
@@ -546,7 +546,7 @@ discard block |
||
| 546 | 546 | } |
| 547 | 547 | |
| 548 | 548 | function bigbluebuttonbn_get_role($id) { |
| 549 | - $roles = (array) role_get_names(); |
|
| 549 | + $roles = (array)role_get_names(); |
|
| 550 | 550 | if (is_numeric($id)) { |
| 551 | 551 | return (object)$roles[$id]; |
| 552 | 552 | } |
@@ -626,11 +626,11 @@ discard block |
||
| 626 | 626 | return array(); |
| 627 | 627 | } |
| 628 | 628 | foreach ($rules as $key => $rule) { |
| 629 | - if ( $rule['selectiontype'] !== 'role' || is_numeric($rule['selectionid']) ) { |
|
| 629 | + if ($rule['selectiontype'] !== 'role' || is_numeric($rule['selectionid'])) { |
|
| 630 | 630 | continue; |
| 631 | 631 | } |
| 632 | 632 | $role = bigbluebuttonbn_get_role($rule['selectionid']); |
| 633 | - if ( $role == null ) { |
|
| 633 | + if ($role == null) { |
|
| 634 | 634 | unset($rules[$key]); |
| 635 | 635 | continue; |
| 636 | 636 | } |
@@ -669,10 +669,10 @@ discard block |
||
| 669 | 669 | if (empty($userroles)) { |
| 670 | 670 | $userroles = get_user_roles($context, $userid, true); |
| 671 | 671 | } |
| 672 | - return bigbluebuttonbn_is_moderator_validator($participantlist, $userid , $userroles); |
|
| 672 | + return bigbluebuttonbn_is_moderator_validator($participantlist, $userid, $userroles); |
|
| 673 | 673 | } |
| 674 | 674 | |
| 675 | -function bigbluebuttonbn_is_moderator_validator($participantlist, $userid , $userroles) { |
|
| 675 | +function bigbluebuttonbn_is_moderator_validator($participantlist, $userid, $userroles) { |
|
| 676 | 676 | // Iterate participant rules. |
| 677 | 677 | foreach ($participantlist as $participant) { |
| 678 | 678 | if (bigbluebuttonbn_is_moderator_validate_rule($participant, $userid, $userroles)) { |
@@ -717,9 +717,9 @@ discard block |
||
| 717 | 717 | $isunique = true; |
| 718 | 718 | if ($voicebridge != 0) { |
| 719 | 719 | $table = 'bigbluebuttonbn'; |
| 720 | - $select = 'voicebridge = '.$voicebridge; |
|
| 720 | + $select = 'voicebridge = ' . $voicebridge; |
|
| 721 | 721 | if ($id) { |
| 722 | - $select .= ' AND id <> '.$id; |
|
| 722 | + $select .= ' AND id <> ' . $id; |
|
| 723 | 723 | } |
| 724 | 724 | if ($DB->get_records_select($table, $select)) { |
| 725 | 725 | $isunique = false; |
@@ -773,7 +773,7 @@ discard block |
||
| 773 | 773 | function bigbluebuttonbn_generate_nonce() { |
| 774 | 774 | $mt = microtime(); |
| 775 | 775 | $rand = mt_rand(); |
| 776 | - return md5($mt.$rand); |
|
| 776 | + return md5($mt . $rand); |
|
| 777 | 777 | } |
| 778 | 778 | |
| 779 | 779 | function bigbluebuttonbn_random_password($length = 8, $unique = "") { |
@@ -786,41 +786,41 @@ discard block |
||
| 786 | 786 | |
| 787 | 787 | function bigbluebuttonbn_events() { |
| 788 | 788 | return array( |
| 789 | - (string) BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 790 | - (string) BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 791 | - (string) BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 792 | - (string) BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 793 | - (string) BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 794 | - (string) BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 795 | - (string) BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 796 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 797 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 798 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 799 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 800 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 801 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 802 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 803 | - (string) BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 789 | + (string)BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 790 | + (string)BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 791 | + (string)BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 792 | + (string)BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 793 | + (string)BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 794 | + (string)BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 795 | + (string)BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 796 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 797 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 798 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 799 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 800 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 801 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 802 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 803 | + (string)BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 804 | 804 | ); |
| 805 | 805 | } |
| 806 | 806 | |
| 807 | 807 | function bigbluebuttonbn_events_action() { |
| 808 | 808 | return array( |
| 809 | - 'view' => (string) BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 810 | - 'view_management' => (string) BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 811 | - 'live_action' => (string) BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 812 | - 'meeting_create' => (string) BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 813 | - 'meeting_end' => (string) BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 814 | - 'meeting_join' => (string) BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 815 | - 'meeting_left' => (string) BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 816 | - 'recording_delete' => (string) BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 817 | - 'recording_import' => (string) BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 818 | - 'recording_protect' => (string) BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 819 | - 'recording_publish' => (string) BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 820 | - 'recording_unprotect' => (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 821 | - 'recording_unpublish' => (string) BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 822 | - 'recording_edit' => (string) BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 823 | - 'recording_play' => (string) BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 809 | + 'view' => (string)BIGBLUEBUTTON_EVENT_ACTIVITY_VIEWED, |
|
| 810 | + 'view_management' => (string)BIGBLUEBUTTON_EVENT_ACTIVITY_MANAGEMENT_VIEWED, |
|
| 811 | + 'live_action' => (string)BIGBLUEBUTTON_EVENT_LIVE_SESSION, |
|
| 812 | + 'meeting_create' => (string)BIGBLUEBUTTON_EVENT_MEETING_CREATED, |
|
| 813 | + 'meeting_end' => (string)BIGBLUEBUTTON_EVENT_MEETING_ENDED, |
|
| 814 | + 'meeting_join' => (string)BIGBLUEBUTTON_EVENT_MEETING_JOINED, |
|
| 815 | + 'meeting_left' => (string)BIGBLUEBUTTON_EVENT_MEETING_LEFT, |
|
| 816 | + 'recording_delete' => (string)BIGBLUEBUTTON_EVENT_RECORDING_DELETED, |
|
| 817 | + 'recording_import' => (string)BIGBLUEBUTTON_EVENT_RECORDING_IMPORTED, |
|
| 818 | + 'recording_protect' => (string)BIGBLUEBUTTON_EVENT_RECORDING_PROTECTED, |
|
| 819 | + 'recording_publish' => (string)BIGBLUEBUTTON_EVENT_RECORDING_PUBLISHED, |
|
| 820 | + 'recording_unprotect' => (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPROTECTED, |
|
| 821 | + 'recording_unpublish' => (string)BIGBLUEBUTTON_EVENT_RECORDING_UNPUBLISHED, |
|
| 822 | + 'recording_edit' => (string)BIGBLUEBUTTON_EVENT_RECORDING_EDITED, |
|
| 823 | + 'recording_play' => (string)BIGBLUEBUTTON_EVENT_RECORDING_VIEWED |
|
| 824 | 824 | ); |
| 825 | 825 | } |
| 826 | 826 | |
@@ -841,7 +841,7 @@ discard block |
||
| 841 | 841 | if (array_key_exists('other', $options)) { |
| 842 | 842 | $eventproperties['other'] = $options['other']; |
| 843 | 843 | } |
| 844 | - $event = call_user_func_array('\mod_bigbluebuttonbn\event\bigbluebuttonbn_'.$eventtype.'::create', |
|
| 844 | + $event = call_user_func_array('\mod_bigbluebuttonbn\event\bigbluebuttonbn_' . $eventtype . '::create', |
|
| 845 | 845 | array($eventproperties)); |
| 846 | 846 | $event->trigger(); |
| 847 | 847 | } |
@@ -882,10 +882,10 @@ discard block |
||
| 882 | 882 | $now = time(); |
| 883 | 883 | if (!$forced && isset($result) && $now < ($result['creation_time'] + $cachettl)) { |
| 884 | 884 | // Use the value in the cache. |
| 885 | - return (array) json_decode($result['meeting_info']); |
|
| 885 | + return (array)json_decode($result['meeting_info']); |
|
| 886 | 886 | } |
| 887 | 887 | // Ping again and refresh the cache. |
| 888 | - $meetinginfo = (array) bigbluebuttonbn_wrap_xml_load_file( |
|
| 888 | + $meetinginfo = (array)bigbluebuttonbn_wrap_xml_load_file( |
|
| 889 | 889 | \mod_bigbluebuttonbn\locallib\bigbluebutton::action_url('getMeetingInfo', ['meetingID' => $meetingid]) |
| 890 | 890 | ); |
| 891 | 891 | $cache->set($meetingid, array('creation_time' => time(), 'meeting_info' => json_encode($meetinginfo))); |
@@ -960,8 +960,8 @@ discard block |
||
| 960 | 960 | * @param string $configxml |
| 961 | 961 | */ |
| 962 | 962 | function bigbluebuttonbn_set_config_xml_params($meetingid, $configxml) { |
| 963 | - $params = 'configXML='.urlencode($configxml).'&meetingID='.urlencode($meetingid); |
|
| 964 | - $configxmlparams = $params.'&checksum='.sha1('setConfigXML'.$params.\mod_bigbluebuttonbn\locallib\config::get('shared_secret')); |
|
| 963 | + $params = 'configXML=' . urlencode($configxml) . '&meetingID=' . urlencode($meetingid); |
|
| 964 | + $configxmlparams = $params . '&checksum=' . sha1('setConfigXML' . $params . \mod_bigbluebuttonbn\locallib\config::get('shared_secret')); |
|
| 965 | 965 | return $configxmlparams; |
| 966 | 966 | } |
| 967 | 967 | |
@@ -970,7 +970,7 @@ discard block |
||
| 970 | 970 | * @param string $configxml |
| 971 | 971 | */ |
| 972 | 972 | function bigbluebuttonbn_set_config_xml($meetingid, $configxml) { |
| 973 | - $urldefaultconfig = \mod_bigbluebuttonbn\locallib\config::get('server_url').'api/setConfigXML?'; |
|
| 973 | + $urldefaultconfig = \mod_bigbluebuttonbn\locallib\config::get('server_url') . 'api/setConfigXML?'; |
|
| 974 | 974 | $configxmlparams = bigbluebuttonbn_set_config_xml_params($meetingid, $configxml); |
| 975 | 975 | $xml = bigbluebuttonbn_wrap_xml_load_file($urldefaultconfig, BIGBLUEBUTTONBN_METHOD_POST, |
| 976 | 976 | $configxmlparams, 'application/x-www-form-urlencoded'); |
@@ -983,7 +983,7 @@ discard block |
||
| 983 | 983 | */ |
| 984 | 984 | function bigbluebuttonbn_set_config_xml_array($meetingid, $configxml) { |
| 985 | 985 | $configxml = bigbluebuttonbn_setConfigXML($meetingid, $configxml); |
| 986 | - $configxmlarray = (array) $configxml; |
|
| 986 | + $configxmlarray = (array)$configxml; |
|
| 987 | 987 | if ($configxmlarray['returncode'] != 'SUCCESS') { |
| 988 | 988 | debugging('BigBlueButton was not able to set the custom config.xml file', DEBUG_DEVELOPER); |
| 989 | 989 | return ''; |
@@ -1033,7 +1033,7 @@ discard block |
||
| 1033 | 1033 | global $USER; |
| 1034 | 1034 | $starttime = $starttime - ($starttime % 1000); |
| 1035 | 1035 | // Set formatted date. |
| 1036 | - $dateformat = get_string('strftimerecentfull', 'langconfig').' %Z'; |
|
| 1036 | + $dateformat = get_string('strftimerecentfull', 'langconfig') . ' %Z'; |
|
| 1037 | 1037 | return userdate($starttime / 1000, $dateformat, usertimezone($USER->timezone)); |
| 1038 | 1038 | } |
| 1039 | 1039 | |
@@ -1049,7 +1049,7 @@ discard block |
||
| 1049 | 1049 | function bigbluebuttonbn_get_recording_data_row_actionbar($recording, $tools) { |
| 1050 | 1050 | $actionbar = ''; |
| 1051 | 1051 | foreach ($tools as $tool) { |
| 1052 | - if ( $tool == 'protect' && !isset($recording['protected']) ) { |
|
| 1052 | + if ($tool == 'protect' && !isset($recording['protected'])) { |
|
| 1053 | 1053 | continue; |
| 1054 | 1054 | } |
| 1055 | 1055 | $buttonpayload = bigbluebuttonbn_get_recording_data_row_actionbar_payload($recording, $tool); |
@@ -1093,7 +1093,7 @@ discard block |
||
| 1093 | 1093 | $visibility = 'hidden '; |
| 1094 | 1094 | } |
| 1095 | 1095 | $recordingpreview = html_writer::start_tag('div', |
| 1096 | - array('id' => 'preview-'.$recording['recordID'], $visibility => $visibility)); |
|
| 1096 | + array('id' => 'preview-' . $recording['recordID'], $visibility => $visibility)); |
|
| 1097 | 1097 | foreach ($recording['playbacks'] as $playback) { |
| 1098 | 1098 | if (isset($playback['preview'])) { |
| 1099 | 1099 | foreach ($playback['preview'] as $image) { |
@@ -1121,13 +1121,13 @@ discard block |
||
| 1121 | 1121 | if ($recording['published'] === 'false') { |
| 1122 | 1122 | $visibility = 'hidden '; |
| 1123 | 1123 | } |
| 1124 | - $id = 'playbacks-'.$recording['recordID']; |
|
| 1124 | + $id = 'playbacks-' . $recording['recordID']; |
|
| 1125 | 1125 | $recordingtypes = html_writer::start_tag('div', array('id' => $id, 'data-imported' => $dataimported, |
| 1126 | 1126 | 'data-meetingid' => $recording['meetingID'], 'data-recordingid' => $recording['recordID'], |
| 1127 | 1127 | 'title' => $title, $visibility => $visibility)); |
| 1128 | 1128 | foreach ($recording['playbacks'] as $playback) { |
| 1129 | 1129 | $recordingtypes .= bigbluebuttonbn_get_recording_data_row_type($recording, $bigbluebuttonbnid, |
| 1130 | - $playback).' '; |
|
| 1130 | + $playback) . ' '; |
|
| 1131 | 1131 | } |
| 1132 | 1132 | $recordingtypes .= html_writer::end_tag('div'); |
| 1133 | 1133 | return $recordingtypes; |
@@ -1135,12 +1135,12 @@ discard block |
||
| 1135 | 1135 | |
| 1136 | 1136 | function bigbluebuttonbn_get_recording_data_row_type($recording, $bigbluebuttonbnid, $playback) { |
| 1137 | 1137 | global $CFG, $OUTPUT; |
| 1138 | - $title = get_string('view_recording_format_'.$playback['type'], 'bigbluebuttonbn'); |
|
| 1138 | + $title = get_string('view_recording_format_' . $playback['type'], 'bigbluebuttonbn'); |
|
| 1139 | 1139 | $onclick = 'M.mod_bigbluebuttonbn.recordings.recordingPlay(this);'; |
| 1140 | - $href = $CFG->wwwroot.'/mod/bigbluebuttonbn/bbb_view.php?action=play&bn='.$bigbluebuttonbnid. |
|
| 1141 | - '&mid='.$recording['meetingID'].'&rid='.$recording['recordID'].'&rtype='.$playback['type']; |
|
| 1140 | + $href = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_view.php?action=play&bn=' . $bigbluebuttonbnid . |
|
| 1141 | + '&mid=' . $recording['meetingID'] . '&rid=' . $recording['recordID'] . '&rtype=' . $playback['type']; |
|
| 1142 | 1142 | if (!isset($recording['imported']) || !isset($recording['protected']) || $recording['protected'] === 'false') { |
| 1143 | - $href .= '&href='.urlencode(trim($playback['url'])); |
|
| 1143 | + $href .= '&href=' . urlencode(trim($playback['url'])); |
|
| 1144 | 1144 | } |
| 1145 | 1145 | $id = 'recording-play-' . $playback['type'] . '-' . $recording['recordID']; |
| 1146 | 1146 | $linkattributes = array( |
@@ -1226,7 +1226,7 @@ discard block |
||
| 1226 | 1226 | if ((boolean)\mod_bigbluebuttonbn\locallib\config::get('recording_icons_enabled')) { |
| 1227 | 1227 | // With icon for $manageaction. |
| 1228 | 1228 | $iconattributes = array('id' => $id, 'class' => 'iconsmall'); |
| 1229 | - $icon = new pix_icon('i/'.$data['tag'], |
|
| 1229 | + $icon = new pix_icon('i/' . $data['tag'], |
|
| 1230 | 1230 | get_string('view_recording_list_actionbar_' . $data['action'], 'bigbluebuttonbn'), |
| 1231 | 1231 | 'moodle', $iconattributes); |
| 1232 | 1232 | $linkattributes = array( |
@@ -1308,7 +1308,7 @@ discard block |
||
| 1308 | 1308 | if (isset($recordings) && !array_key_exists('messageKey', $recordings)) { |
| 1309 | 1309 | // There are recordings for this meeting. |
| 1310 | 1310 | foreach ($recordings as $recording) { |
| 1311 | - if ( !bigbluebuttonbn_include_recording_table_row($bbbsession, $recording) ) { |
|
| 1311 | + if (!bigbluebuttonbn_include_recording_table_row($bbbsession, $recording)) { |
|
| 1312 | 1312 | continue; |
| 1313 | 1313 | } |
| 1314 | 1314 | bigbluebuttonbn_get_recording_table_row($bbbsession, $recording, $tools, $table); |
@@ -1323,7 +1323,7 @@ discard block |
||
| 1323 | 1323 | return; |
| 1324 | 1324 | } |
| 1325 | 1325 | $row = new html_table_row(); |
| 1326 | - $row->id = 'recording-td-'.$recording['recordID']; |
|
| 1326 | + $row->id = 'recording-td-' . $recording['recordID']; |
|
| 1327 | 1327 | $row->attributes['data-imported'] = 'false'; |
| 1328 | 1328 | $texthead = ''; |
| 1329 | 1329 | $texttail = ''; |
@@ -1347,7 +1347,7 @@ discard block |
||
| 1347 | 1347 | } |
| 1348 | 1348 | |
| 1349 | 1349 | function bigbluebuttonbn_include_recording_table_row($bbbsession, $recording) { |
| 1350 | - if ( isset($recording['imported']) || !isset($bbbsession['group']) || $recording['meetingID'] == $bbbsession['meetingid'] ) { |
|
| 1350 | + if (isset($recording['imported']) || !isset($bbbsession['group']) || $recording['meetingID'] == $bbbsession['meetingid']) { |
|
| 1351 | 1351 | return true; |
| 1352 | 1352 | } |
| 1353 | 1353 | return false; |
@@ -1360,9 +1360,9 @@ discard block |
||
| 1360 | 1360 | // Build the message_body. |
| 1361 | 1361 | $msg->activity_type = ''; |
| 1362 | 1362 | $msg->activity_title = $bigbluebuttonbn->name; |
| 1363 | - $messagetext = '<p>'.get_string('email_body_recording_ready_for', 'bigbluebuttonbn').' '. |
|
| 1364 | - $msg->activity_type.' "'.$msg->activity_title.'" '. |
|
| 1365 | - get_string('email_body_recording_ready_is_ready', 'bigbluebuttonbn').'.</p>'; |
|
| 1363 | + $messagetext = '<p>' . get_string('email_body_recording_ready_for', 'bigbluebuttonbn') . ' ' . |
|
| 1364 | + $msg->activity_type . ' "' . $msg->activity_title . '" ' . |
|
| 1365 | + get_string('email_body_recording_ready_is_ready', 'bigbluebuttonbn') . '.</p>'; |
|
| 1366 | 1366 | bigbluebuttonbn_send_notification($sender, $bigbluebuttonbn, $messagetext); |
| 1367 | 1367 | } |
| 1368 | 1368 | |
@@ -1509,7 +1509,7 @@ discard block |
||
| 1509 | 1509 | } |
| 1510 | 1510 | // Prepare select for loading records based on existent bigbluebuttonbns. |
| 1511 | 1511 | $sql = 'SELECT DISTINCT meetingid, bigbluebuttonbnid FROM {bigbluebuttonbn_logs} WHERE '; |
| 1512 | - $sql .= '(bigbluebuttonbnid='.implode(' OR bigbluebuttonbnid=', array_keys($bigbluebuttonbns)).')'; |
|
| 1512 | + $sql .= '(bigbluebuttonbnid=' . implode(' OR bigbluebuttonbnid=', array_keys($bigbluebuttonbns)) . ')'; |
|
| 1513 | 1513 | // Include only Create events and exclude those with record not true. |
| 1514 | 1514 | $sql .= ' AND log = ? AND meta LIKE ? AND meta LIKE ?'; |
| 1515 | 1515 | // Execute select for loading records based on existent bigbluebuttonbns. |
@@ -1584,8 +1584,8 @@ discard block |
||
| 1584 | 1584 | function bigbluebuttonbn_format_activity_time($time) { |
| 1585 | 1585 | $activitytime = ''; |
| 1586 | 1586 | if ($time) { |
| 1587 | - $activitytime = calendar_day_representation($time).' '. |
|
| 1588 | - get_string('mod_form_field_notification_msg_at', 'bigbluebuttonbn').' '. |
|
| 1587 | + $activitytime = calendar_day_representation($time) . ' ' . |
|
| 1588 | + get_string('mod_form_field_notification_msg_at', 'bigbluebuttonbn') . ' ' . |
|
| 1589 | 1589 | calendar_time_representation($time); |
| 1590 | 1590 | } |
| 1591 | 1591 | return $activitytime; |