@@ -11,9 +11,9 @@ discard block |
||
11 | 11 | $tool_name = $plugin->get_lang('Videoconference'); |
12 | 12 | |
13 | 13 | $htmlHeadXtra[] = api_get_js_simple( |
14 | - api_get_path(WEB_PLUGIN_PATH) . 'bbb/resources/utils.js' |
|
14 | + api_get_path(WEB_PLUGIN_PATH).'bbb/resources/utils.js' |
|
15 | 15 | ); |
16 | -$htmlHeadXtra[] = "<script>var _p = {web_plugin: '" . api_get_path(WEB_PLUGIN_PATH). "'}</script>"; |
|
16 | +$htmlHeadXtra[] = "<script>var _p = {web_plugin: '".api_get_path(WEB_PLUGIN_PATH)."'}</script>"; |
|
17 | 17 | |
18 | 18 | $tpl = new Template($tool_name); |
19 | 19 | |
@@ -79,22 +79,22 @@ discard block |
||
79 | 79 | case 'end': |
80 | 80 | $bbb->endMeeting($_GET['id']); |
81 | 81 | $message = Display::return_message( |
82 | - get_lang('MeetingClosed') . '<br />' . get_lang( |
|
82 | + get_lang('MeetingClosed').'<br />'.get_lang( |
|
83 | 83 | 'MeetingClosedComment' |
84 | 84 | ), |
85 | 85 | 'success', |
86 | 86 | false |
87 | 87 | ); |
88 | 88 | |
89 | - if (file_exists(__DIR__ . '/config.vm.php')) { |
|
90 | - require __DIR__ . '/../../vendor/autoload.php'; |
|
89 | + if (file_exists(__DIR__.'/config.vm.php')) { |
|
90 | + require __DIR__.'/../../vendor/autoload.php'; |
|
91 | 91 | |
92 | - require __DIR__ . '/lib/vm/AbstractVM.php'; |
|
93 | - require __DIR__ . '/lib/vm/VMInterface.php'; |
|
94 | - require __DIR__ . '/lib/vm/DigitalOceanVM.php'; |
|
95 | - require __DIR__ . '/lib/VM.php'; |
|
92 | + require __DIR__.'/lib/vm/AbstractVM.php'; |
|
93 | + require __DIR__.'/lib/vm/VMInterface.php'; |
|
94 | + require __DIR__.'/lib/vm/DigitalOceanVM.php'; |
|
95 | + require __DIR__.'/lib/VM.php'; |
|
96 | 96 | |
97 | - $config = require __DIR__ . '/config.vm.php'; |
|
97 | + $config = require __DIR__.'/config.vm.php'; |
|
98 | 98 | |
99 | 99 | $vm = new VM($config); |
100 | 100 | $vm->resizeToMinLimit(); |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | $actionLinks = [ |
146 | 146 | Display::toolbarButton( |
147 | 147 | $plugin->get_lang('AdminView'), |
148 | - api_get_path(WEB_PLUGIN_PATH) . 'bbb/admin.php', |
|
148 | + api_get_path(WEB_PLUGIN_PATH).'bbb/admin.php', |
|
149 | 149 | 'list', |
150 | 150 | 'primary' |
151 | 151 | ) |