git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
66 lines
2.2 KiB
Plaintext
66 lines
2.2 KiB
Plaintext
<script type='text/javascript'>
|
|
{literal}
|
|
function toggleSettingsDisplay(id)
|
|
{
|
|
var el = document.getElementById(id);
|
|
var head = document.getElementById(id+'_head');
|
|
|
|
if(el.style.visibility == 'visible'){
|
|
el.style.visibility = 'hidden';
|
|
el.style.display = 'none';
|
|
head.className = 'collapse';
|
|
}else{
|
|
el.style.visibility = 'visible';
|
|
el.style.display = 'block';
|
|
head.className = 'expand';
|
|
}
|
|
}
|
|
{/literal}
|
|
</script>
|
|
|
|
<h2>{$section}</h2>
|
|
|
|
<form name="manageConfigSettings" action="{$smarty.server.PHP_SELF}" method="POST">
|
|
|
|
{if $groupList}
|
|
|
|
{* <!-- Display the group name and description --> *}
|
|
{foreach from=$groupList item=groupItem}
|
|
{assign var=group value=$groupItem.name}
|
|
|
|
<h4 style='margin-top: 20px;'><span class="expand" id='{$groupItem.id}_head' onclick='javascript: toggleSettingsDisplay("{$groupItem.id}");' style='cursor: pointer;'>
|
|
{$group}
|
|
</span></h3>
|
|
<span class='descriptiveText'>{$groupItem.description}</span>
|
|
<div id='{$groupItem.id}' style='visibility: visible;'>
|
|
<fieldset>
|
|
|
|
{* <!-- Display the settings, render the input according to the setting type (dropdown / radio / etc) --> *}
|
|
{foreach from=$groupSettings.$group item=settings}
|
|
|
|
<p style='padding-bottom: 15px;'>
|
|
{$settings.display_name}<br>
|
|
{if $settings.description}
|
|
<span class='descriptiveText'>{$settings.description}</span><br>
|
|
{/if}
|
|
{$context->renderInput($settings.id, $settings.type, $settings.value, $settings.default_value, $settings.options)}<br>
|
|
</p>
|
|
|
|
{/foreach}
|
|
|
|
</fieldset>
|
|
</div>
|
|
{/foreach}
|
|
|
|
<br><hr>
|
|
<input type="submit" name="AlterConfig" value="{i18n}Save Config Settings{/i18n}" />
|
|
|
|
{else}
|
|
|
|
<p style='padding-top: 15px;padding-bottom: 15px;'>
|
|
{i18n}This page defines configuration options which are currently reserved for future development.{/i18n}
|
|
</p>
|
|
|
|
{/if}
|
|
|
|
</form> |