mirror of https://github.com/sualko/cloud_bbb
43 lines
1.7 KiB
PHP
43 lines
1.7 KiB
PHP
<?php
|
|
/** @var $l \OCP\IL10N */
|
|
/** @var $_ array */
|
|
|
|
script('bbb', 'admin');
|
|
script('bbb', 'restrictions');
|
|
?>
|
|
|
|
<div id="bbb-settings" class="section">
|
|
<h2>BigBlueButton</h2>
|
|
|
|
<p><?php p($l->t('Get your API URL and secret by executing "sudo bbb-conf --secret" on your BigBlueButton server.')); ?></p>
|
|
|
|
<form id="bbb-api">
|
|
<input type="url" name="api.url" value="<?php p($_['api.url']); ?>" placeholder="<?php p($l->t('API URL')); ?>" pattern="https://.*" required />
|
|
<input type="password" name="api.secret" value="<?php p($_['api.secret']); ?>" placeholder="<?php p($l->t('API secret')); ?>" autocomplete="new-password" required />
|
|
<input type="submit" value="<?php p($l->t('Save')); ?>" />
|
|
|
|
<div class="bbb-result"></div>
|
|
</form>
|
|
|
|
<p>
|
|
<input type="checkbox" name="app.navigation" id="bbb-app-navigation" class="checkbox" value="1" <?php p($_['app.navigation']); ?> />
|
|
<label for="bbb-app-navigation"><?php p($l->t('Show room manager in app navigation instead of settings page.')); ?></label>
|
|
</p>
|
|
|
|
<h3>URL Shortener</h3>
|
|
<p><?php p($l->t('If you like to use shorter urls, you can enter a forwarding proxy below.')); ?></p>
|
|
|
|
<form id="bbb-shortener">
|
|
<input type="url" name="app.shortener" value="<?php p($_['app.shortener']); ?>" placeholder="<?php p($l->t('URL shortener')); ?>" pattern="https://.*" />
|
|
<input type="submit" value="<?php p($l->t('Save')); ?>" />
|
|
|
|
<div id="bbb-shortener-example"></div>
|
|
|
|
<div class="bbb-result"></div>
|
|
</form>
|
|
|
|
<h3>Restrictions</h3>
|
|
<div id="bbb-restrictions">
|
|
</div>
|
|
</div>
|