Let edit list users turn off the 'add widget'; add submit option type
[squirrelmail.git] / templates / default / edit_list_widget.tpl
index 372e2a6a8f9640106bdad854079e29574801a4ed..9c48bb2ab688250498ed5a879fdd1f1c195d55e8 100644 (file)
@@ -7,16 +7,17 @@
   *
   * The following variables are available in this template:
   *
   *
   * The following variables are available in this template:
   *
-  * string  $name            The name of the edit list
-  * string  $input_widget    A preconstructed input text box used
-  *                          for adding new elements to the edit list
-  * string  $select_widget   A preconstructed input text box used
-  * string  $checkbox_widget A preconstructed input text box used
-  * string  $trailing_text   Any text given by the caller to be displayed
-  *                          after the edit list input
-  * array   $possible_values The original list of options in the edit list,
-  *                          for use constructing layouts alternative to
-  *                          the select widget
+  * string   $name              The name of the edit list
+  * string   $input_widget      A preconstructed input text box used
+  *                             for adding new elements to the edit list
+  * boolean  $use_input_widget  Whether or not to present the $input_widget
+  * string   $select_widget     A preconstructed input text box used
+  * string   $checkbox_widget   A preconstructed input text box used
+  * string   $trailing_text     Any text given by the caller to be displayed
+  *                             after the edit list input
+  * array    $possible_values   The original list of options in the edit list,
+  *                             for use constructing layouts alternative to
+  *                             the select widget
   *
   * @copyright © 1999-2008 The SquirrelMail Project Team
   * @license http://opensource.org/licenses/gpl-license.php GNU Public License
   *
   * @copyright © 1999-2008 The SquirrelMail Project Team
   * @license http://opensource.org/licenses/gpl-license.php GNU Public License
@@ -31,6 +32,9 @@
 extract($t);
 
 
 extract($t);
 
 
-echo _("Add") . '&nbsp;' . $input_widget . '<br />' . $select_widget 
+if ($use_input_widget) 
+    echo _("Add") . '&nbsp;' . $input_widget . '<br />';
+
+echo $select_widget 
    . '<br />' . $checkbox_widget . '&nbsp;<label for="delete_' . $name . '">' 
    . _("Delete Selected") . '</label>';
    . '<br />' . $checkbox_widget . '&nbsp;<label for="delete_' . $name . '">' 
    . _("Delete Selected") . '</label>';