Files
gallery3/core/views/admin_advanced_settings.html.php
Bharat Mediratta 12380b8b39 Add the "advanced settings" controller which lets you see all the
vars.  We'll eventually turn this into a registry where you can edit
settings directly (at your own risk).
2009-05-13 19:48:57 +00:00

22 lines
728 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gAdminAdvancedSettings">
<h1> <?= t("Advanced Settings") ?> </h1>
<p>
<?= t("Here are internal Gallery configuration settings. Most of these settings are accessible elsewhere in the administrative console. You will eventually be able to modify these directly (at your own risk).") ?>
</p>
<table>
<tr>
<th> <?= t("Module") ?> </th>
<th> <?= t("Name") ?> </th>
<th> <?= t("Value") ?></th>
</tr>
<? foreach ($vars as $var): ?>
<tr class="setting">
<td> <?= $var->module_name ?> </td>
<td> <?= $var->name ?> </td>
<td> <?= $var->value ?> </td>
</tr>
<? endforeach ?>
</table>
</div>