@@ -59,7 +59,7 @@ |
||
59 | 59 | $logs = new backup_nested_element('logs'); |
60 | 60 | |
61 | 61 | $log = new backup_nested_element('log', array('id'), array( |
62 | - 'courseid', 'bigbluebuttonbnid', 'userid', 'timecreated', 'meetingid', 'log', 'meta', )); |
|
62 | + 'courseid', 'bigbluebuttonbnid', 'userid', 'timecreated', 'meetingid', 'log', 'meta',)); |
|
63 | 63 | |
64 | 64 | // Build the tree. |
65 | 65 | $bigbluebuttonbn->add_child($logs); |
@@ -126,7 +126,7 @@ |
||
126 | 126 | echo $completionvalidate; |
127 | 127 | return; |
128 | 128 | } |
129 | - header('HTTP/1.0 400 Bad request. The action '. $a . ' doesn\'t exist'); |
|
129 | + header('HTTP/1.0 400 Bad request. The action '.$a.' doesn\'t exist'); |
|
130 | 130 | } catch (Exception $e) { |
131 | 131 | header('HTTP/1.0 500 Internal Server Error. '.$e->getMessage()); |
132 | 132 | } |
@@ -626,7 +626,7 @@ discard block |
||
626 | 626 | // Pull the Bearer from the headers. |
627 | 627 | if (!array_key_exists('Authorization', $headers)) { |
628 | 628 | $msg = 'Authorization failed'; |
629 | - header('HTTP/1.0 400 Bad Request. ' . $msg); |
|
629 | + header('HTTP/1.0 400 Bad Request. '.$msg); |
|
630 | 630 | return; |
631 | 631 | } |
632 | 632 | $authorization = explode(" ", $headers['Authorization']); |
@@ -641,8 +641,8 @@ discard block |
||
641 | 641 | // Convert JSON string to a JSON object. |
642 | 642 | $jsonobj = json_decode($jsonstr); |
643 | 643 | } catch (Exception $e) { |
644 | - $msg = 'Caught exception: ' . $e->getMessage(); |
|
645 | - header('HTTP/1.0 400 Bad Request. ' . $msg); |
|
644 | + $msg = 'Caught exception: '.$e->getMessage(); |
|
645 | + header('HTTP/1.0 400 Bad Request. '.$msg); |
|
646 | 646 | return; |
647 | 647 | } |
648 | 648 | |
@@ -651,7 +651,7 @@ discard block |
||
651 | 651 | $meetingidelements = explode('-', $meetingidelements[0]); |
652 | 652 | if (!isset($bigbluebuttonbn) || $bigbluebuttonbn->meetingid != $meetingidelements[0]) { |
653 | 653 | $msg = 'The activity may have been deleted'; |
654 | - header('HTTP/1.0 410 Gone. ' . $msg); |
|
654 | + header('HTTP/1.0 410 Gone. '.$msg); |
|
655 | 655 | return; |
656 | 656 | } |
657 | 657 | |
@@ -664,11 +664,11 @@ discard block |
||
664 | 664 | // Process the events. |
665 | 665 | bigbluebuttonbn_process_meeting_events($bigbluebuttonbn, $jsonobj); |
666 | 666 | $msg = 'Enqueued.'; |
667 | - header('HTTP/1.0 202 Accepted. ' . $msg); |
|
667 | + header('HTTP/1.0 202 Accepted. '.$msg); |
|
668 | 668 | return; |
669 | 669 | } |
670 | 670 | $msg = 'Already processed.'; |
671 | - header('HTTP/1.0 202 Accepted. ' . $msg); |
|
671 | + header('HTTP/1.0 202 Accepted. '.$msg); |
|
672 | 672 | } |
673 | 673 | |
674 | 674 | /** |
@@ -47,7 +47,7 @@ |
||
47 | 47 | print_error('view_error_invalid_session', plugin::COMPONENT); |
48 | 48 | } |
49 | 49 | |
50 | -if (!(boolean)\mod_bigbluebuttonbn\locallib\config::importrecordings_enabled()) { |
|
50 | +if (!(boolean) \mod_bigbluebuttonbn\locallib\config::importrecordings_enabled()) { |
|
51 | 51 | print_error('view_message_importrecordings_disabled', plugin::COMPONENT); |
52 | 52 | } |
53 | 53 |
@@ -58,7 +58,7 @@ |
||
58 | 58 | bigbluebuttonbn_view_bbbsession_set($PAGE->context, $bbbsession); |
59 | 59 | |
60 | 60 | // Validates if the BigBlueButton server is working. |
61 | -$serverversion = bigbluebuttonbn_get_server_version(); // In locallib. |
|
61 | +$serverversion = bigbluebuttonbn_get_server_version(); // In locallib. |
|
62 | 62 | if ($serverversion === null) { |
63 | 63 | $errmsg = 'view_error_unable_join_student'; |
64 | 64 | $errurl = '/course/view.php'; |
@@ -31,7 +31,7 @@ |
||
31 | 31 | 'coursebigbluebuttonbn' => array( // Handler unique name (can be anything). |
32 | 32 | 'displaydata' => array( |
33 | 33 | 'title' => 'pluginname', |
34 | - 'icon' => $CFG->wwwroot . '/mod/bigbluebuttonbn/pix/icon.gif', |
|
34 | + 'icon' => $CFG->wwwroot.'/mod/bigbluebuttonbn/pix/icon.gif', |
|
35 | 35 | 'class' => '', |
36 | 36 | ), |
37 | 37 | 'delegate' => 'CoreCourseModuleDelegate', // Delegate (where to display the link to the add-on). |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | // The endpoints for recording_ready and meeting_events callbacks must be moved to services (CONTRIB-7440). |
44 | 44 | // But in order to support the transition, requests other than the callbacks are redirected to bbb_ajax.php. |
45 | 45 | if ($params['action'] != 'recording_ready' && $params['action'] != 'meeting_events') { |
46 | - $url = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_ajax.php?' . http_build_query($params, '', '&'); |
|
47 | - header("Location: " . $url); |
|
46 | + $url = $CFG->wwwroot.'/mod/bigbluebuttonbn/bbb_ajax.php?'.http_build_query($params, '', '&'); |
|
47 | + header("Location: ".$url); |
|
48 | 48 | exit; |
49 | 49 | } |
50 | 50 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | bigbluebuttonbn_broker_meeting_events($bigbluebuttonbn); |
72 | 72 | return; |
73 | 73 | } |
74 | - header('HTTP/1.0 400 Bad request. The action '. $a . ' doesn\'t exist'); |
|
74 | + header('HTTP/1.0 400 Bad request. The action '.$a.' doesn\'t exist'); |
|
75 | 75 | } catch (Exception $e) { |
76 | 76 | header('HTTP/1.0 500 Internal Server Error. '.$e->getMessage()); |
77 | 77 | } |
@@ -85,15 +85,15 @@ discard block |
||
85 | 85 | $bbbsession['serverversion'] = (string) $serverversion; |
86 | 86 | |
87 | 87 | // Operation URLs. |
88 | - $bbbsession['bigbluebuttonbnURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/view.php?id=' . $bbbsession['cm']->id; |
|
89 | - $bbbsession['logoutURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_view.php?action=logout&id='.$id . |
|
90 | - '&bn=' . $bbbsession['bigbluebuttonbn']->id; |
|
91 | - $bbbsession['recordingReadyURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_broker.php?action=recording_' . |
|
92 | - 'ready&bigbluebuttonbn=' . $bbbsession['bigbluebuttonbn']->id; |
|
93 | - $bbbsession['meetingEventsURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_broker.php?action=meeting' . |
|
94 | - '_events&bigbluebuttonbn=' . $bbbsession['bigbluebuttonbn']->id; |
|
95 | - $bbbsession['joinURL'] = $CFG->wwwroot . '/mod/bigbluebuttonbn/bbb_view.php?action=join&id=' . $cm->id . |
|
96 | - '&bn=' . $bbbsession['bigbluebuttonbn']->id; |
|
88 | + $bbbsession['bigbluebuttonbnURL'] = $CFG->wwwroot.'/mod/bigbluebuttonbn/view.php?id='.$bbbsession['cm']->id; |
|
89 | + $bbbsession['logoutURL'] = $CFG->wwwroot.'/mod/bigbluebuttonbn/bbb_view.php?action=logout&id='.$id. |
|
90 | + '&bn='.$bbbsession['bigbluebuttonbn']->id; |
|
91 | + $bbbsession['recordingReadyURL'] = $CFG->wwwroot.'/mod/bigbluebuttonbn/bbb_broker.php?action=recording_'. |
|
92 | + 'ready&bigbluebuttonbn='.$bbbsession['bigbluebuttonbn']->id; |
|
93 | + $bbbsession['meetingEventsURL'] = $CFG->wwwroot.'/mod/bigbluebuttonbn/bbb_broker.php?action=meeting'. |
|
94 | + '_events&bigbluebuttonbn='.$bbbsession['bigbluebuttonbn']->id; |
|
95 | + $bbbsession['joinURL'] = $CFG->wwwroot.'/mod/bigbluebuttonbn/bbb_view.php?action=join&id='.$cm->id. |
|
96 | + '&bn='.$bbbsession['bigbluebuttonbn']->id; |
|
97 | 97 | |
98 | 98 | // Check status and set extra values. |
99 | 99 | $activitystatus = bigbluebuttonbn_view_get_activity_status($bbbsession); |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | $lastaccess = json_decode($lastaccess->meta); |
156 | 156 | // If the user acceded from Timeline it should be redirected to the Dashboard. |
157 | 157 | if (isset($lastaccess->origin) && $lastaccess->origin == BIGBLUEBUTTON_ORIGIN_TIMELINE) { |
158 | - redirect($CFG->wwwroot . '/my/'); |
|
158 | + redirect($CFG->wwwroot.'/my/'); |
|
159 | 159 | } |
160 | 160 | // Close the tab or window where BBB was opened. |
161 | 161 | bigbluebuttonbn_bbb_view_close_window(); |
@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | * @return string |
358 | 358 | */ |
359 | 359 | function bigbluebuttonbn_bbb_view_create_meeting_data_record($record) { |
360 | - if ((boolean)\mod_bigbluebuttonbn\locallib\config::recordings_enabled() && $record) { |
|
360 | + if ((boolean) \mod_bigbluebuttonbn\locallib\config::recordings_enabled() && $record) { |
|
361 | 361 | return 'true'; |
362 | 362 | } |
363 | 363 | return 'false'; |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | * @return integer |
371 | 371 | */ |
372 | 372 | function bigbluebuttonbn_bbb_view_create_meeting_data_duration($closingtime) { |
373 | - if ((boolean)\mod_bigbluebuttonbn\locallib\config::get('scheduled_duration_enabled')) { |
|
373 | + if ((boolean) \mod_bigbluebuttonbn\locallib\config::get('scheduled_duration_enabled')) { |
|
374 | 374 | return bigbluebuttonbn_get_duration($closingtime); |
375 | 375 | } |
376 | 376 | return 0; |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | defined('MOODLE_INTERNAL') || die(); |
28 | 28 | |
29 | -require_once($CFG->dirroot . '/mod/bigbluebuttonbn/locallib.php'); |
|
29 | +require_once($CFG->dirroot.'/mod/bigbluebuttonbn/locallib.php'); |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Methods used to render view BBB in mobile. |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | $session['bigbluebuttonbn']->id; |
63 | 63 | $session['meetingname'] = $session['bigbluebuttonbn']->name; |
64 | 64 | $session['meetingdescription'] = $session['bigbluebuttonbn']->intro; |
65 | - $session['userlimit'] = intval((int)\mod_bigbluebuttonbn\locallib\config::get('userlimit_default')); |
|
66 | - if ((boolean)\mod_bigbluebuttonbn\locallib\config::get('userlimit_editable')) { |
|
65 | + $session['userlimit'] = intval((int) \mod_bigbluebuttonbn\locallib\config::get('userlimit_default')); |
|
66 | + if ((boolean) \mod_bigbluebuttonbn\locallib\config::get('userlimit_editable')) { |
|
67 | 67 | $session['userlimit'] = intval($session['bigbluebuttonbn']->userlimit); |
68 | 68 | } |
69 | 69 | $session['voicebridge'] = $session['bigbluebuttonbn']->voicebridge; |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | * @return string |
224 | 224 | */ |
225 | 225 | public static function create_meeting_data_record($record) { |
226 | - if ((boolean)\mod_bigbluebuttonbn\locallib\config::recordings_enabled() && $record) { |
|
226 | + if ((boolean) \mod_bigbluebuttonbn\locallib\config::recordings_enabled() && $record) { |
|
227 | 227 | return 'true'; |
228 | 228 | } |
229 | 229 | return 'false'; |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | * @return integer |
237 | 237 | */ |
238 | 238 | public static function create_meeting_data_duration($closingtime) { |
239 | - if ((boolean)\mod_bigbluebuttonbn\locallib\config::get('scheduled_duration_enabled')) { |
|
239 | + if ((boolean) \mod_bigbluebuttonbn\locallib\config::get('scheduled_duration_enabled')) { |
|
240 | 240 | return bigbluebuttonbn_get_duration($closingtime); |
241 | 241 | } |
242 | 242 | return 0; |