blob: e4569afd642990e2d718593b41fc4dd38d217855 (
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" name="module_settings" value="{tr}Change preferences{/tr}" />
</div>
{/form}
|