9c48bb2ab688250498ed5a879fdd1f1c195d55e8
[squirrelmail.git] / templates / default / edit_list_widget.tpl
1 <?php
2
3 /**
4 * edit_list_widget.tpl
5 *
6 * Template for constructing an edit list.
7 *
8 * The following variables are available in this template:
9 *
10 * string $name The name of the edit list
11 * string $input_widget A preconstructed input text box used
12 * for adding new elements to the edit list
13 * boolean $use_input_widget Whether or not to present the $input_widget
14 * string $select_widget A preconstructed input text box used
15 * string $checkbox_widget A preconstructed input text box used
16 * string $trailing_text Any text given by the caller to be displayed
17 * after the edit list input
18 * array $possible_values The original list of options in the edit list,
19 * for use constructing layouts alternative to
20 * the select widget
21 *
22 * @copyright &copy; 1999-2008 The SquirrelMail Project Team
23 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
24 * @version $Id: select.tpl 12961 2008-02-24 22:35:08Z pdontthink $
25 * @package squirrelmail
26 * @subpackage templates
27 */
28
29
30 // retrieve the template vars
31 //
32 extract($t);
33
34
35 if ($use_input_widget)
36 echo _("Add") . '&nbsp;' . $input_widget . '<br />';
37
38 echo $select_widget
39 . '<br />' . $checkbox_widget . '&nbsp;<label for="delete_' . $name . '">'
40 . _("Delete Selected") . '</label>';