2024-10-29 11:38:22 +00:00
|
|
|
|
|
|
|
<!-- widget "config" -->
|
|
|
|
<div class="card text-center w-75 mx-lef">
|
|
|
|
<p class="h4 card-header">Jilo configuration file</p>
|
|
|
|
<div class="card-body">
|
2024-10-29 11:48:23 +00:00
|
|
|
<p class="card-text">editing the Jilo Server configuration file
|
|
|
|
<span class="text-danger">this may break everything, use with extreme caution</span>
|
|
|
|
</p>
|
2024-10-29 11:38:22 +00:00
|
|
|
<form method="POST" action="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=config&item=config_file">
|
|
|
|
|
|
|
|
<?php
|
|
|
|
include '../app/helpers/render.php';
|
|
|
|
editConfig($config, '0');
|
|
|
|
echo "\n";
|
|
|
|
?>
|
|
|
|
|
|
|
|
<br />
|
2024-10-29 11:45:27 +00:00
|
|
|
<a class="btn btn-secondary" href="<?= htmlspecialchars($app_root) ?>?page=config&item=config_file" />Cancel</a>
|
2024-10-29 11:38:22 +00:00
|
|
|
<input type="submit" class="btn btn-primary" value="Save" />
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /widget "config" -->
|