mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
vars. We'll eventually turn this into a registry where you can edit settings directly (at your own risk).
22 lines
728 B
PHP
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>
|