03e23d4488d2536bdcddf7f5fcf3b1cca679a39d
[squirrelmail.git] / templates / default / options.tpl
1 <?php
2 /**
3 * options.tpl
4 *
5 * Template for rendering the options page
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
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
22 /** extract variables */
23 extract($t);
24
25
26 if ( !empty($topmessage) ) {
27 echo "<div id=\"optionMessage\">\n$topmessage\n</div>\n\n";
28 }
29 ?>
30
31 <div id="optionDisplay">
32 <?php
33 foreach ($options as $option) {
34 echo "<table cellspacing=\"0\">\n";
35
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
44 $hidden_widgets = '';
45 foreach ($option['options'] as $opt) {
46 if ($opt->type != SMOPT_TYPE_HIDDEN) {
47 echo "<tr>\n" .
48 " <td class=\"optionName\"" . ($opt->caption_wrap ? '' : ' style="white-space:nowrap"') . ">\n ";
49
50 if ($opt->type == SMOPT_TYPE_BOOLEAN_CHECKBOX
51 || $opt->type == SMOPT_TYPE_BOOLEAN) {
52 echo '<label for="new_' . $opt->name . '">'
53 . $opt->caption . '</label>';
54 } else {
55 echo $opt->caption;
56 }
57
58 echo "\n </td>\n" .
59 " <td class=\"optionValue\">\n" .
60 " ".$opt->createWidget()."\n" .
61 " </td>\n" .
62 "</tr>\n";
63 } else {
64 $hidden_widgets .= $opt->createWidget();
65 }
66 }
67
68 echo " <tr>\n <td colspan=\"2\" align=\"right\">\n"
69 . $hidden_widgets . " <input type=\"submit\" value=\"" . _("Submit")
70 . "\" name=\"" . $submit_name . "\" />&nbsp;&nbsp;&nbsp;&nbsp;\n </td>\n </tr>\n";
71
72 echo "</table>\n";
73 }
74 ?>
75 </div>