|
|
{* $Id$ *}
|
|
|
{if !isset($tpl_module_title)}
|
|
|
{capture assign=tpl_module_title}{tr}Switch Theme{/tr}
|
|
|
{if not $switchtheme_enabled}
|
|
|
{icon name="information" class="tips btn btn-sm btn-link" title=$info_title}
|
|
|
{/if}
|
|
|
{/capture}
|
|
|
{/if}
|
|
|
{tikimodule error=$module_params.error title=$tpl_module_title name="switch_theme" flip=$module_params.flip decorations=$module_params.decorations nobox=$module_params.nobox notitle=$module_params.notitle}
|
|
|
<form method="get" action="tiki-switch_theme.php">
|
|
|
<fieldset>
|
|
|
<div class="mb-3 row mx-0">
|
|
|
<select name="theme" onchange="this.form.submit();" class="form-select" {if not $switchtheme_enabled}disabled{/if}>
|
|
|
<option value="" class="text-muted bg-info">{tr}Site theme{/tr} ({$prefs.site_theme}{if !empty($prefs.site_theme_option)}/{$prefs.site_theme_option}{/if})</option>
|
|
|
{foreach from=$available_themes key=value item=label}
|
|
|
<option value="{$value|escape}" {if $prefs.theme eq $value}selected="selected"{/if}>{$label|ucwords}</option>
|
|
|
{/foreach}
|
|
|
</select>
|
|
|
</div>
|
|
|
{if count($available_options)}
|
|
|
<div class="mb-3 row mx-0">
|
|
|
<select name="theme_option" onchange="this.form.submit();" class="form-select" {if not $switchtheme_enabled}disabled{/if}>
|
|
|
<option value="" class="text-muted bg-info">{tr}None{/tr}</option>
|
|
|
{foreach from=$available_options key=value item=label}
|
|
|
<option value="{$value|escape}" {if $prefs.theme_option eq $value}selected="selected"{/if}>{$label|ucwords}</option>
|
|
|
{/foreach}
|
|
|
</select>
|
|
|
</div>
|
|
|
{else}
|
|
|
<input type="hidden" name="theme_option" value="">
|
|
|
{/if}
|
|
|
<noscript>
|
|
|
<button type="submit" class="btn btn-primary btn-sm">{tr}Switch{/tr}</button>
|
|
|
</noscript>
|
|
|
</fieldset>
|
|
|
</form>
|
|
|
{/tikimodule}
|