Make sort links and add form return to the same backend that is currently being viewed
[squirrelmail.git] / templates / default / options.tpl
CommitLineData
4a644734 1<?php
2/**
3 * options.tpl
4 *
5 * Template for rendering the options page
64033e1c 6 *
7 * The following variables are available to this template:
8 * $options - array of options as built by SquirrelMail. Important fields
9 * in this array include (but are not limited to):
10 * $el['name'] - The name of the option group
11 * $el['options'] - array of squirrelOption objects
4a644734 12 *
13 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
14 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
15 * @version $Id$
16 * @package squirrelmail
17 * @subpackage templates
18 */
19
20/** add required includes */
21
4a644734 22/** extract variables */
23extract($t);
209e24bb 24
25
26if ( !empty($topmessage) ) {
27 echo "<div id=\"optionMessage\">\n$topmessage\n</div>\n\n";
28}
4a644734 29?>
209e24bb 30
64033e1c 31<div id="optionDisplay">
32<?php
33foreach ($options as $option) {
34 echo "<table cellspacing=\"0\">\n";
4a644734 35
64033e1c 36 if (!empty($option['name'])) {
37 echo " <tr>\n" .
38 " <td class=\"header1\" colspan=\"2\">\n" .
39 " ".$option['name']."\n" .
40 " </td>\n" .
41 " </tr>\n";
42 }
43
ce910bca 44 $hidden_widgets = '';
64033e1c 45 foreach ($option['options'] as $opt) {
46 if ($opt->type != SMOPT_TYPE_HIDDEN) {
47 echo "<tr>\n" .
2eb944e8 48 " <td class=\"optionName\">\n ";
49
3b6a455c 50 if ($opt->type == SMOPT_TYPE_BOOLEAN_CHECKBOX
51 || $opt->type == SMOPT_TYPE_BOOLEAN) {
2eb944e8 52 echo '<label for="new_' . $opt->name . '">'
53 . $opt->caption . '</label>';
54 } else {
55 echo $opt->caption;
56 }
57
58 echo "\n </td>\n" .
64033e1c 59 " <td class=\"optionValue\">\n" .
9786ea94 60 " ".$opt->createWidget()."\n" .
64033e1c 61 " </td>\n" .
62 "</tr>\n";
63 } else {
ce910bca 64 $hidden_widgets .= $opt->createWidget();
64033e1c 65 }
66 }
67
835db280 68 echo " <tr>\n <td colspan=\"2\" align=\"right\">\n"
ce910bca 69 . $hidden_widgets . " <input type=\"submit\" value=\"" . _("Submit")
835db280 70 . "\" name=\"" . $submit_name . "\" />&nbsp;&nbsp;&nbsp;&nbsp;\n </td>\n </tr>\n";
71
64033e1c 72 echo "</table>\n";
73}
74?>
835db280 75</div>