53 lines
1.5 KiB
Smarty
53 lines
1.5 KiB
Smarty
|
|
{*
|
||
|
|
Template to display config options used by setup.tpl and profile.tpl
|
||
|
|
$Id: options.tpl,v 1.6 2006/11/11 15:53:44 andig2 Exp $
|
||
|
|
*}
|
||
|
|
|
||
|
|
{foreach from=$setup item=option}
|
||
|
|
<tr class="{cycle values="even,odd"}">
|
||
|
|
{if !empty($option.group)}
|
||
|
|
<td class="center" colspan="2">
|
||
|
|
<h3><a name="{$option.group}"></a>{$lang[$option.group]}</h3>
|
||
|
|
</td>
|
||
|
|
{else}
|
||
|
|
<td class="center" nowrap="nowrap">
|
||
|
|
<b>{$option.hl}</b>
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
{if $option.type == 'text'}
|
||
|
|
<input type="text" size="20" name="{$option.name}" id="{$option.name}" value="{$option.set|escape}" style="text-align:center"/>
|
||
|
|
{/if}
|
||
|
|
|
||
|
|
{if $option.type == 'boolean'}
|
||
|
|
{html_checkbox name=$option.name id=$option.name value=1 checked=$option.set}
|
||
|
|
{/if}
|
||
|
|
|
||
|
|
{if $option.type == 'dropdown'}
|
||
|
|
{html_options name=$option.name options=$option.data selected=$option.set}
|
||
|
|
{/if}
|
||
|
|
|
||
|
|
{if $option.type == 'multi'}
|
||
|
|
<select name="{$option.name}[]" size="5" multiple="multiple">
|
||
|
|
<option value=""></option>
|
||
|
|
{html_options options=$option.data selected=$option.set}
|
||
|
|
</select>
|
||
|
|
{/if}
|
||
|
|
|
||
|
|
{if $option.type == 'special'}
|
||
|
|
{$option.data}
|
||
|
|
{/if}
|
||
|
|
|
||
|
|
{if $option.type == 'link'}
|
||
|
|
<a href="{$option.data}">{$option.hl}</a>
|
||
|
|
{/if}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{$option.help}
|
||
|
|
|
||
|
|
{if !empty($option.thumbs)}
|
||
|
|
{include file="options_thumbs.tpl"}
|
||
|
|
{/if} </td>
|
||
|
|
{/if}
|
||
|
|
</tr>
|
||
|
|
{/foreach}
|