Remove hook call from template; fix all corresponding core plugins.
[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" .
47 " <td class=\"optionName\">\n" .
48 " ".$opt->caption."\n" .
49 " </td>\n" .
50 " <td class=\"optionValue\">\n" .
51 " ".$opt->createHTMLWidget()."\n" .
52 " </td>\n" .
53 "</tr>\n";
54 } else {
55 echo $opt->createHTMLWidget();
56 }
57 }
58
835db280 59 echo " <tr>\n <td colspan=\"2\" align=\"right\">\n"
60 . " <input type=\"submit\" value=\"" . _("Submit")
61 . "\" name=\"" . $submit_name . "\" />&nbsp;&nbsp;&nbsp;&nbsp;\n </td>\n </tr>\n";
62
64033e1c 63 echo "</table>\n";
64}
65?>
835db280 66</div>