@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | $course_plugin = 'bbb'; //needed in order to load the plugin lang variables |
| 10 | 10 | $cidReset = true; |
| 11 | 11 | |
| 12 | -require_once __DIR__ . '/../../main/inc/global.inc.php'; |
|
| 12 | +require_once __DIR__.'/../../main/inc/global.inc.php'; |
|
| 13 | 13 | |
| 14 | 14 | api_protect_admin_script(); |
| 15 | 15 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | /** @var User $participant */ |
| 28 | 28 | foreach ($participants as $participant) { |
| 29 | 29 | $meeting['participants'][] = $participant['participant']->getCompleteName() |
| 30 | - . ' (' . $participant['participant']->getUsername() . ')'; |
|
| 30 | + . ' ('.$participant['participant']->getUsername().')'; |
|
| 31 | 31 | } |
| 32 | 32 | } |
| 33 | 33 | |
@@ -74,9 +74,9 @@ discard block |
||
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | $htmlHeadXtra[] = api_get_js_simple( |
| 77 | - api_get_path(WEB_PLUGIN_PATH) . 'bbb/resources/utils.js' |
|
| 77 | + api_get_path(WEB_PLUGIN_PATH).'bbb/resources/utils.js' |
|
| 78 | 78 | ); |
| 79 | -$htmlHeadXtra[] = "<script>var _p = {web_plugin: '" . api_get_path(WEB_PLUGIN_PATH). "'}</script>"; |
|
| 79 | +$htmlHeadXtra[] = "<script>var _p = {web_plugin: '".api_get_path(WEB_PLUGIN_PATH)."'}</script>"; |
|
| 80 | 80 | |
| 81 | 81 | $tpl = new Template($tool_name); |
| 82 | 82 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | if ($meetings) { |
| 89 | 89 | $actions[] = Display::toolbarButton( |
| 90 | 90 | get_lang('ExportInExcel'), |
| 91 | - api_get_self() . '?action=export', |
|
| 91 | + api_get_self().'?action=export', |
|
| 92 | 92 | 'file-excel-o', |
| 93 | 93 | 'success' |
| 94 | 94 | ); |