jilo-web/app/templates/config-platform-edit.php

37 lines
2.4 KiB
PHP
Raw Normal View History

2024-08-18 19:12:45 +00:00
2024-10-31 09:59:17 +00:00
<!-- widget "platforms" -->
2024-10-31 09:08:53 +00:00
<div class="card text-center w-50 mx-lef">
<p class="h4 card-header">Jilo configuration for Jitsi platform <strong>"<?= htmlspecialchars($platformDetails[0]['name']) ?>"</strong> :: edit</p>
2024-08-19 10:25:09 +00:00
<div class="card-body">
2024-10-31 09:39:03 +00:00
<form method="POST" action="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=config&item=platform">
<?php
foreach ($platformDetails[0] as $key => $value) {
if ($key === 'id') continue;
?>
2024-08-19 10:25:09 +00:00
<div class="row mb-3">
<div class="col-md-4 text-end">
2024-10-04 11:18:28 +00:00
<label for="<?= htmlspecialchars($config_item) ?>" class="form-label"><?= htmlspecialchars($key) ?></label>
2024-08-19 10:25:09 +00:00
<span class="text-danger" style="margin-right: -12px;">*</span>
</div>
<div class="col-md-8">
2024-10-04 11:18:28 +00:00
<input class="form-control" type="text" name="<?= htmlspecialchars($key) ?>" value="<?= htmlspecialchars($value ?? '') ?>" required autofocus />
<?php if ($key === 'name') { ?>
<p class="text-start"><small>descriptive name for the platform</small></p>
<?php } elseif ($key === 'jitsi_url') { ?>
<p class="text-start"><small>URL of the Jitsi Meet (used for checks and for loading config.js)</small></p>
<?php } elseif ($key === 'jilo_database') { ?>
<p class="text-start"><small>path to the database file (relative to the app root)</small></p>
<?php } ?>
2024-08-19 10:25:09 +00:00
</div>
</div>
<?php } ?>
<br />
2024-10-04 11:18:28 +00:00
<input type="hidden" name="platform" value="<?= htmlspecialchars($platform_id) ?>" />
2024-10-31 13:28:59 +00:00
<a class="btn btn-outline-secondary btn-sm" href="<?= htmlspecialchars($app_root) ?>?page=config&item=platform&platform=<?= htmlspecialchars($platform_id) ?>#platform<?= htmlspecialchars($platform_id) ?>" />Cancel</a>
2024-10-31 09:08:53 +00:00
&nbsp;&nbsp;
<input type="submit" class="btn btn-primary btn-sm" value="Save" />
2024-08-19 10:25:09 +00:00
</form>
</div>
</div>
2024-10-31 09:59:17 +00:00
<!-- /widget "platforms" -->