Add ability to control the display of the "Check Spelling" button. Allows administrat...
[squirrelmail.git] / templates / default / edit_list_widget_list_style.tpl
index 7d54d7d75330640fae2afa32092eb8300b3cae10..2cbd655f6704b8d2f5421725363928b1149466c8 100644 (file)
@@ -7,20 +7,25 @@
   *
   * 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
+  * boolean  $use_delete_widget Whether or not to present the $checkbox_widget
+  * string   $select_widget     A preconstructed select widget containing
+  *                             all the elements in the list
+  * string   $checkbox_widget   A preconstructed checkbox used for deleting
+  *                             elements from the edit list
+  * 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
+  * mixed    $current_value     The currently selected value(s)
   *
-  * @copyright © 1999-2008 The SquirrelMail Project Team
+  * @copyright 1999-2017 The SquirrelMail Project Team
   * @license http://opensource.org/licenses/gpl-license.php GNU Public License
-  * @version $Id: select.tpl 12961 2008-02-24 22:35:08Z pdontthink $
+  * @version $Id$
   * @package squirrelmail
   * @subpackage templates
   */
 extract($t);
 
 
-echo '<table class="table2" cellspacing="0"><tr><td>'
-   . _("Add") . '&nbsp;' . $input_widget . '<br />'
-   . '<table class="table_messageList" cellspacing="0">';
+echo '<table class="table2" cellspacing="0"><tr><td>';
+
+if ($use_input_widget)
+    echo _("Add") . '&nbsp;' . $input_widget . '<br />';
+
+echo '<table class="table_messageList" cellspacing="0">';
 
 $class = 'even';
 $index = 0;
 
+if (is_array($current_value))
+    $selected = $current_value;
+else
+    $selected = array($current_value);
+
 foreach ($possible_values as $key => $value) {
 
     if ($class == 'even') $class = 'odd';
     else $class = 'even';
 
     echo '<tr class="' . $class . '">'
-       . '<td class="col_check" style="width:1%"><input type="checkbox" name="new_' . $name . '[' . ($index++) . ']" id="' . $name . '_list_item_' . $key . '" value="' . $value . '"></td>'
+       . '<td class="col_check" style="width:1%"><input type="checkbox" name="new_' . $name . '[' . ($index++) . ']" id="' . $name . '_list_item_' . $key . '" value="' . $value;
+
+    // having a selected item in the edit list doesn't have
+    // any meaning, but maybe someone will think of a way to
+    // use it, so we might as well put the code in
+    //
+    foreach ($selected as $default) {
+        if ((string)$default == (string)$value) {
+            echo '" checked="checked';
+            break;
+        }
+    }
+
+    echo '"></td>'
        . '<td><label for="' . $name . '_list_item_' . $key . '">' . $value . '</label></td>'
        . "</tr>\n";
     
@@ -52,7 +78,7 @@ foreach ($possible_values as $key => $value) {
 
 echo '</table>';
 
-if (!empty($possible_values))
+if (!empty($possible_values) && $use_delete_widget)
     echo $checkbox_widget . '&nbsp;<label for="delete_' . $name . '">' 
        . _("Delete Selected") . '</label>';