ezmlm-web/template/interface_select.cs
lars 9d0e8730e0 QMAIL_BASE now defaults to /var/qmail/control (before: it was mandatory)
replaced DEFAULT_HOST by MAIL_DOMAIN
clarified MAIL_DOMAIN and MAIL_ADDRESS_PREFIX retrieval
clarified 'mimeremove' handling (Closes: #32)
added support for ezmlm-idx v5 features 'headerkeep', 'mimekeep' and 'copylines'
added 'easy' and 'expert' interface settings
fixed tagging of active menue items
cleaned version-specific visibility of some options (charset, language, ...)
2007-04-03 15:49:24 +00:00

22 lines
817 B
C#

<!-- allows the user to change the interface language (not of the list!) -->
<?cs if:subcount(Config.UI.Interfaces) > 0 ?>
<?cs call:form_header("select_interface", "template") ?>
<?cs if:Data.List.Name ?><input type="hidden" name="action"
value="subscribers" /><?cs /if ?>
<font class="no_link"><?cs
var:html_escape(Lang.Menue.Interface) ?>:</font><br/>
<select name="template" size="0">
<?cs each: ttemp = Config.UI.Interfaces
?><option value="<?cs var:name(ttemp) ?>"<?cs
if:name(ttemp) == Config.UI.LinkAttrs.template
?> selected="selected"<?cs /if?>><?cs
var:html_escape(Lang.Misc.Interfaces[ttemp]) ?></option>
<?cs /each ?>
</select>&nbsp;<button type="submit" name="send" value="do"><?cs var:html_escape(Lang.Buttons.InterfaceSet) ?></button>
</form>
<?cs /if ?>