This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/modules/gallery/views/admin_advanced_settings.html.php

58 lines
2.0 KiB
PHP
Raw Normal View History

2013-04-04 09:26:00 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="g-admin-advanced-settings" class="g-block">
<h1> <?= t("Advanced settings") ?> </h1>
<p>
<?= t("Here are internal Gallery configuration settings. Most of these settings are accessible elsewhere in the administrative console.") ?>
</p>
<ul id="g-action-status" class="g-message-block">
<li class="g-warning"><?= t("Change these values at your own risk!") ?></li>
</ul>
<?= t("Filter:") ?> <input id="g-admin-advanced-settings-filter" type="text"></input>
<div class="g-block-content">
<table>
<tr>
<th> <?= t("Module") ?> </th>
<th> <?= t("Name") ?> </th>
<th> <?= t("Value") ?></th>
</tr>
<? foreach ($vars as $var): ?>
<tr class="setting-row <?= text::alternate("g-odd", "g-even") ?>">
2013-04-04 09:26:06 +00:00
<td> <?= html::clean($var->module_name) ?> </td>
2013-04-04 09:26:00 +00:00
<td> <?= html::clean($var->name) ?> </td>
<td>
<a href="<?= url::site("admin/advanced_settings/edit/$var->module_name/" . html::clean($var->name)) ?>"
class="g-dialog-link"
title="<?= t("Edit %var (%module_name)", array("var" => $var->name, "module_name" => $var->module_name))->for_html_attr() ?>">
<? if (!isset($var->value) || $var->value === ""): ?>
<i> <?= t("empty") ?> </i>
<? else: ?>
<?= html::clean($var->value) ?>
<? endif ?>
</a>
</td>
</tr>
<? endforeach ?>
</table>
</div>
<script>
$(document).ready(function() {
$("#g-admin-advanced-settings-filter").keyup(function() {
var filter = $(this).attr("value");
if (filter) {
$("tr.setting-row").fadeOut("fast");
2013-04-04 09:26:04 +00:00
$("tr.setting-row").each(function() {
if ($(this).text().indexOf(filter) > 0) {
$(this).stop().show();
2013-04-04 09:26:00 +00:00
}
});
} else {
$("tr.setting-row").show();
}
});
});
</script>
</div>