jilo-web/app/templates/widget-config.php

12 lines
427 B
PHP
Raw Normal View History

2024-08-07 08:13:55 +00:00
<!-- widget "config" -->
<div>
<p>Jilo web configuration</p>
<ul>
<?php foreach ($config as $config_item=>$config_value) { ?>
2024-08-07 08:13:55 +00:00
<li><?php echo htmlspecialchars($config_item) . ': ' . htmlspecialchars($config_value ?? ''); ?></li>
<?php } ?>
2024-08-07 08:13:55 +00:00
</ul>
</div>
<!-- /widget "config" -->