Fix missing internationalisation and display of empty cells, thanks
[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
44 foreach ($option['options'] as $opt) {
45 if ($opt->type != SMOPT_TYPE_HIDDEN) {
46 echo "<tr>\n" .
2eb944e8 47 " <td class=\"optionName\">\n ";
48
3b6a455c 49 if ($opt->type == SMOPT_TYPE_BOOLEAN_CHECKBOX
50 || $opt->type == SMOPT_TYPE_BOOLEAN) {
2eb944e8 51 echo '<label for="new_' . $opt->name . '">'
52 . $opt->caption . '</label>';
53 } else {
54 echo $opt->caption;
55 }
56
57 echo "\n </td>\n" .
64033e1c 58 " <td class=\"optionValue\">\n" .
9786ea94 59 " ".$opt->createWidget()."\n" .
64033e1c 60 " </td>\n" .
61 "</tr>\n";
62 } else {
9786ea94 63 echo $opt->createWidget();
64033e1c 64 }
65 }
66
835db280 67 echo " <tr>\n <td colspan=\"2\" align=\"right\">\n"
68 . " <input type=\"submit\" value=\"" . _("Submit")
69 . "\" name=\"" . $submit_name . "\" />&nbsp;&nbsp;&nbsp;&nbsp;\n </td>\n </tr>\n";
70
64033e1c 71 echo "</table>\n";
72}
73?>
835db280 74</div>