blob: ed110aa13008a54dad711b02838587181f1dbff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{* $Header: /cvsroot/bitweaver/_bit_themes/templates/admin_themes.tpl,v 1.1 2006/09/10 21:16:39 squareing Exp $ *}
{strip}
{form legend="Theme Settings"}
<input type="hidden" name="page" value="{$page}" />
<div class="row">
{formlabel label="Display action links as" for="site_biticon_display_style"}
{forminput}
{html_options name="site_biticon_display_style" id="site_biticon_display_style" options=$biticon_display_options selected=$gBitSystem->mConfig.site_biticon_display_style}
{formhelp note="Changing this setting will modify the way all action icons are displayed on your site. Icons in menus are not affected."}
{/forminput}
</div>
{foreach from=$themeSettings key=feature item=output}
<div class="row">
{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="row submit">
<input type="submit" name="change_prefs" value="{tr}Apply Settings{/tr}" />
</div>
{/form}
{/strip}
|