Completed
Push — master ( c814ae...6cff67 )
by Jesus
02:10
created
classes/output/index.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
 defined('MOODLE_INTERNAL') || die();
37 37
 
38
-require_once($CFG->dirroot.'/mod/bigbluebuttonbn/locallib.php');
38
+require_once($CFG->dirroot . '/mod/bigbluebuttonbn/locallib.php');
39 39
 
40 40
 /**
41 41
  * Class index
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 // Add a the data for the bigbluebuttonbn instance.
92 92
                 $groupobj = null;
93 93
                 if (groups_get_activity_groupmode($cm) > 0) {
94
-                    $groupobj = (object) array('id' => 0, 'name' => get_string('allparticipants'));
94
+                    $groupobj = (object)array('id' => 0, 'name' => get_string('allparticipants'));
95 95
                 }
96 96
                 $table->data[] = self::bigbluebuttonbn_index_display_room($canmoderate, $course, $bigbluebuttonbn, $groupobj);
97 97
                 // Add a the data for the groups belonging to the bigbluebuttonbn instance, if any.
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
             $attendeecount = 0;
182 182
             foreach ($meetinginfo['attendees']->attendee as $attendee) {
183 183
                 if ($attendee->role == $role) {
184
-                    $attendeelist .= ($attendeecount++ > 0 ? ', ' : '').$attendee->fullName;
184
+                    $attendeelist .= ($attendeecount++ > 0 ? ', ' : '') . $attendee->fullName;
185 185
                 }
186 186
             }
187 187
         }
@@ -215,18 +215,18 @@  discard block
 block discarded – undo
215 215
     public static function bigbluebuttonbn_index_display_room_actions($moderator, $course, $bigbluebuttonbn, $groupobj = null) {
216 216
         $actions = '';
217 217
         if ($moderator) {
218
-            $actions .= '<form name="form1" method="post" action="">'."\n";
219
-            $actions .= '  <INPUT type="hidden" name="id" value="'.$course->id.'">'."\n";
220
-            $actions .= '  <INPUT type="hidden" name="a" value="'.$bigbluebuttonbn->id.'">'."\n";
221
-            $actions .= '  <INPUT type="hidden" name="action" value="end">'."\n";
218
+            $actions .= '<form name="form1" method="post" action="">' . "\n";
219
+            $actions .= '  <INPUT type="hidden" name="id" value="' . $course->id . '">' . "\n";
220
+            $actions .= '  <INPUT type="hidden" name="a" value="' . $bigbluebuttonbn->id . '">' . "\n";
221
+            $actions .= '  <INPUT type="hidden" name="action" value="end">' . "\n";
222 222
             if ($groupobj != null) {
223
-                $actions .= '  <INPUT type="hidden" name="g" value="'.$groupobj->id.'">'."\n";
223
+                $actions .= '  <INPUT type="hidden" name="g" value="' . $groupobj->id . '">' . "\n";
224 224
             }
225 225
             $actions .= '  <INPUT type="submit" name="submit" value="' .
226 226
                 get_string('view_conference_action_end', 'bigbluebuttonbn') .
227 227
                 '" class="btn btn-primary btn-sm" onclick="return confirm(\'' .
228 228
                 get_string('index_confirm_end', 'bigbluebuttonbn') . '\')">' . "\n";
229
-            $actions .= '</form>'."\n";
229
+            $actions .= '</form>' . "\n";
230 230
         }
231 231
         return $actions;
232 232
     }
Please login to merge, or discard this patch.