2024-08-28 09:59:13 +00:00
|
|
|
|
|
|
|
<!-- widget "config" -->
|
|
|
|
<div class="card text-center w-75 mx-lef">
|
2024-10-04 11:18:28 +00:00
|
|
|
<p class="h4 card-header">Configuration of the Jitsi platform <strong><?= htmlspecialchars($platformDetails[0]['name']) ?></strong></p>
|
2024-08-28 09:59:13 +00:00
|
|
|
<div class="card-body">
|
2024-08-31 16:50:58 +00:00
|
|
|
<p class="card-text">
|
2024-10-04 11:18:28 +00:00
|
|
|
<span class="m-3">URL: <?= htmlspecialchars($platformDetails[0]['jitsi_url']) ?></span>
|
2024-08-31 16:50:58 +00:00
|
|
|
<span class="m-3">FILE: interface_config.js</span>
|
|
|
|
<?php if ($mode === 'raw') { ?>
|
2024-10-04 11:18:28 +00:00
|
|
|
<span class="m-3"><a class="btn btn-light" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=config&item=interfaceconfigjs">view only active lines</a></span>
|
2024-08-31 16:50:58 +00:00
|
|
|
<?php } else { ?>
|
2024-10-04 11:18:28 +00:00
|
|
|
<span class="m-3"><a class="btn btn-light" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=config&item=interfaceconfigjs&mode=raw">view raw file contents</a></span>
|
2024-08-31 16:50:58 +00:00
|
|
|
<?php } ?>
|
|
|
|
</p>
|
2024-10-03 06:43:37 +00:00
|
|
|
<pre class="results">
|
2024-08-28 09:59:13 +00:00
|
|
|
<?php
|
2024-10-04 11:18:28 +00:00
|
|
|
echo htmlspecialchars($platformInterfaceConfigjs);
|
2024-08-28 09:59:13 +00:00
|
|
|
?>
|
2024-08-29 10:01:46 +00:00
|
|
|
</pre>
|
2024-08-28 09:59:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /widget "config" -->
|