blob: 06effe4726a72a4503f0ccbc2d946e04b9a8fd24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{* $Header$ *}
{form legend="Global Module Settings"}
<input type="hidden" name="page" value="{$page}" />
{foreach from=$formModuleFeatures key=feature item=output}
<div class="control-group">
{formlabel label=$output.label for=$feature}
{forminput}
{html_checkboxes name="$feature" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature}
{formhelp note=$output.note page=$output.page}
{/forminput}
</div>
{/foreach}
<div class="control-group submit">
<input type="submit" class="btn" name="module_settings" value="{tr}Change preferences{/tr}" />
</div>
{/form}
|