"me" to 'you'
authorlbergman <lbergman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 9 Feb 2001 20:38:42 +0000 (20:38 +0000)
committerlbergman <lbergman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 9 Feb 2001 20:38:42 +0000 (20:38 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1099 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/options_display.php
src/options_folder.php

index 2079060d55a01967b5c2ad4185fba5f45f8a7a05..fb8ef97cfbdc01cb3a4c1ad60d2d76c4758ce634 100644 (file)
    session_start();
 
    if (!isset($strings_php))
-      include("../functions/strings.php");
+      include('../functions/strings.php');
    if (!isset($config_php))
-      include("../config/config.php");
+      include('../config/config.php');
    if (!isset($page_header_php))
-      include("../functions/page_header.php");
+      include('../functions/page_header.php');
    if (!isset($display_messages_php))
-      include("../functions/display_messages.php");
+      include('../functions/display_messages.php');
    if (!isset($imap_php))
-      include("../functions/imap.php");
+      include('../functions/imap.php');
    if (!isset($array_php))
-      include("../functions/array.php");
+      include('../functions/array.php');
    if (!isset($i18n_php))
-      include("../functions/i18n.php");
+      include('../functions/i18n.php');
    if (!isset($plugin_php))
-      include("../functins/plugin.php");
+      include('../functins/plugin.php');
 
-   include("../src/load_prefs.php");
-   displayPageHeader($color, "None");
-   $chosen_language = getPref($data_dir, $username, "language");  
+   include('../src/load_prefs.php');
+   displayPageHeader($color, 'None');
+   $chosen_language = getPref($data_dir, $username, 'language');  
 ?>
    <br>
-   <table width=95% align=center border=0 cellpadding=2 cellspacing=0><tr><td bgcolor="<?php echo $color[0] ?>">
-      <center><b><?php echo _("Options") . " - " . _("Display Preferences"); ?></b></center>
+   <table width="95%" align="center" border="0" cellpadding="2" cellspacing="0"><tr><td bgcolor="<?php echo $color[0] ?>">
+      <center><b><?php echo _("Options") . ' - ' . _("Display Preferences"); ?></b></center>
    </td></tr></table>
 
-   <form name=f action="options.php" method=post>
-      <table width=100% cellpadding=0 cellspacing=2 border=0>
+   <form name="f" action="options.php" method="post">
+      <table width="100%" cellpadding="0" cellspacing="2" border="0">
          <tr>
-            <td align=right nowrap><?php echo _("Theme"); ?>:
+            <td align="right" nowrap><?php echo _("Theme"); ?>:
             </td><td>
 <?php
-   echo "         <tt><select name=chosentheme>\n";
+   echo '         <tt><select name="chosentheme">' . "\n";
    for ($i = 0; $i < count($theme); $i++) {
-      if ($theme[$i]["PATH"] == $chosen_theme)
-         echo "         <option selected value=\"".$theme[$i]["PATH"]."\">".$theme[$i]["NAME"]."\n";
+      if ($theme[$i]['PATH'] == $chosen_theme)
+         echo '         <option selected value="'.$theme[$i]['PATH'].'">'.$theme[$i]['NAME']."\n";
       else
-         echo "         <option value=\"".$theme[$i]["PATH"]."\">".$theme[$i]["NAME"]."\n";
+         echo '         <option value="'.$theme[$i]['PATH'].'">'.$theme[$i]['NAME']."\n";
    }
-   echo "         </select></tt>";  
+   echo '         </select></tt>';  
 ?>
             </td>
          </tr>
          <tr>
-            <td valign=top align=right nowrap><?php echo _("Language"); ?>:
+            <td valign="top" align="right" nowrap><?php echo _("Language"); ?>:
             </td><td>
 <?php
-   echo "         <tt><select name=language>\n";
+   echo '         <tt><select name="language">' . "\n";
    foreach ($languages as $code => $name) {
       if ($code==$chosen_language)
-         echo "         <OPTION SELECTED VALUE=\"".$code."\">".$languages[$code]["NAME"]."\n";
+         echo '         <OPTION SELECTED VALUE="'.$code.'">'.$languages[$code]['NAME']."\n";
       else
-         echo "         <OPTION VALUE=\"".$code."\">".$languages[$code]["NAME"]."\n";
+         echo '         <OPTION VALUE=\"".$code.'">'.$languages[$code]['NAME']."\n";
    }
-   echo "         </select></tt>";  
+   echo '         </select></tt>';  
    if (! $use_gettext)
-      echo "<br><small>This system doesn't support multiple languages</small>";
+      echo '<br><small>This system doesn't support multiple languages</small>';
       
 ?>
             </td>
          <tr>
             <td align=right nowrap>&nbsp;
-               <?php echo _("Use Javascript or HTML addressbook?") . "</td><td>"
+               <?php echo _("Use Javascript or HTML addressbook?") . '</td><td>'
                if ($use_javascript_addr_book == true) {
-                  echo "         <input type=radio name=javascript_abook value=1 checked> " . _("JavaScript") . "&nbsp;&nbsp;&nbsp;&nbsp;";
-                  echo "         <input type=radio name=javascript_abook value=0> " . _("HTML"); 
+                  echo '         <input type="radio" name="javascript_abook" value="1" checked> ' . _("JavaScript") . '&nbsp;&nbsp;&nbsp;&nbsp;';
+                  echo '         <input type="radio" name="javascript_abook" value="0"> ' . _("HTML"); 
                } else {
-                  echo "         <input type=radio name=javascript_abook value=1> " . _("JavaScript") . "&nbsp;&nbsp;&nbsp;&nbsp;";
-                  echo "         <input type=radio name=javascript_abook value=0 checked> " . _("HTML"); 
+                  echo '         <input type="radio" name="javascript_abook" value="1"> ' . _("JavaScript") . '&nbsp;&nbsp;&nbsp;&nbsp;';
+                  echo '         <input type="radio" name="javascript_abook" value="0" checked> ' . _("HTML"); 
                }  
                ?>
             </td>
             </td><td>
 <?php
    if (isset($show_num))
-      echo "         <tt><input type=text size=5 name=shownum value=\"$show_num\"></tt><br>";
+      echo '         <tt><input type="text" size="5" name="shownum" value="'.$show_num.'"></tt><br>';
    else
-      echo "         <tt><input type=text size=5 name=shownum value=\"25\"></tt><br>"
+      echo '         <tt><input type="text" size="5" name="shownum" value="25"></tt><br>'
 ?>
             </td>
          </tr>
          <tr>
-            <td align=right nowrap><?php echo _("Wrap incoming text at"); ?>:
+            <td align="right" nowrap><?php echo _("Wrap incoming text at"); ?>:
             </td><td>
 <?php
    if (isset($wrap_at))
-      echo "         <tt><input type=text size=5 name=wrapat value=\"$wrap_at\"></tt><br>";
+      echo '         <tt><input type="text" size="5" name="wrapat" value="'.$wrap_at.'"></tt><br>';
    else
-      echo "         <tt><input type=text size=5 name=wrapat value=\"86\"></tt><br>"
+      echo '         <tt><input type="tex" size="5" name="wrapat" value="86"></tt><br>'
 ?>
             </td>
          </tr>
          <tr>
-            <td align=right nowrap><?php echo _("Size of editor window"); ?>:
+            <td align="right" nowrap><?php echo _("Size of editor window"); ?>:
             </td><td>
 <?php
    if ($editor_size >= 10 && $editor_size <= 255)
-      echo "         <tt><input type=text size=5 name=editorsize value=\"$editor_size\"></tt><br>";
+      echo '         <tt><input type="text" size="5" name="editorsize" value="'.$editor_size.'"></tt><br>';
    else
-      echo "         <tt><input type=text size=5 name=editorsize value=\"76\"></tt><br>"
+      echo '         <tt><input type="text" size="5" name="editorsize" value="76"></tt><br>'
 ?>
             </td>
          </tr>
          <tr>
-            <td align=right nowrap><?PHP echo _("Location of folder list") ?>:</td>
+            <td align="right" nowrap><?PHP echo _("Location of folder list") ?>:</td>
             <td><select name="folder_new_location">
                 <option value="left"<?PHP
                     if ($location_of_bar != 'right') echo ' SELECTED';
             </td>
          </tr>
          <tr>
-            <td align=right nowrap><?PHP echo _("Location of buttons when composing") ?>:</td>
+            <td align="right" nowrap><?PHP echo _("Location of buttons when composing") ?>:</td>
             <td><select name="button_new_location">
                 <option value="top"<?PHP
                     if ($location_of_buttons == 'top') echo ' SELECTED';
             <td align=right nowrap><?php echo _("Width of folder list"); ?>:
             </td><td>
 <?php
-   echo "         <select name=leftsize>\n";
+   echo '         <select name="leftsize">' . "\n";
    if ($left_size == 100)
       echo "<option value=100 selected>100 pixels\n";
    else
    else
       echo "                  <OPTION VALUE=1800>30 $minutes_str";
  
-      echo "               </SELECT>"
+      echo '               </SELECT>'
 ?>
             </td>
          </tr>
-         <?php do_hook("options_display_inside"); ?>
+         <?php do_hook('options_display_inside'); ?>
          <tr>
             <td>&nbsp;
             </td><td>
          </tr>
       </table>   
    </form>
-   <?php do_hook("options_display_bottom"); ?>
+   <?php do_hook('options_display_bottom'); ?>
 </body></html>
index e9b82521738d8b497c3c327c831e9284747d7f2e..4330b56e2ddd18d1cc2f8d6342ab6aea38bac630 100644 (file)
    session_start();
 
    if (!isset($strings_php))
-      include("../functions/strings.php");
+      include('../functions/strings.php\);
    if (!isset($config_php))
-      include("../config/config.php");
+      include('../config/config.php');
    if (!isset($page_header_php))
-      include("../functions/page_header.php");
+      include('../functions/page_header.php');
    if (!isset($display_messages_php))
-      include("../functions/display_messages.php");
+      include('../functions/display_messages.php');
    if (!isset($imap_php))
-      include("../functions/imap.php");
+      include('../functions/imap.php');
    if (!isset($array_php))
-      include("../functions/array.php");
+      include('../functions/array.php');
    if (!isset($i18n_php))
-      include("../functions/i18n.php");
+      include('../functions/i18n.php');
    if (!isset($plugin_php))
-      include("../functions/plugin.php");
+      include('../functions/plugin.php');
 
-   include("../src/load_prefs.php");
-   displayPageHeader($color, "None");
+   include('../src/load_prefs.php');
+   displayPageHeader($color, 'None');
 
    $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
    $boxes = sqimap_mailbox_list($imapConnection);
    sqimap_logout($imapConnection);
 ?>
    <br>
-   <table width=95% align=center border=0 cellpadding=2 cellspacing=0><tr><td bgcolor="<?php echo $color[0] ?>">
+   <table width="95%" align="center" border="0" cellpadding="2" cellspacing="0"><tr><td bgcolor="<?php echo $color[0] ?>">
       <center><b><?php echo _("Options") . " - " . _("Folder Preferences"); ?></b></center>
    </td></tr></table>
 
-   <form name=f action="options.php" method=post>
-      <table width=100% cellpadding=0 cellspacing=2 border=0>
+   <form name="f" action="options.php" method="post">
+      <table width="100%" cellpadding="0" cellspacing="2" border="0">
 
 <?php if ($show_prefix_option == true) {   ?>   
          <tr>
             <td align=right nowrap><?php echo _("Folder Path"); ?>:
             </td><td>
 <?php if (isset ($folder_prefix))
-      echo "         <input type=text name=folderprefix value=\"$folder_prefix\" size=35><br>";
+      echo '         <input type="text" name="folderprefix" value="'.$folder_prefix.'" size="35"><br>';
    else
-      echo "         <input type=text name=folderprefix value=\"$default_folder_prefix\" size=35><br>";
+      echo '         <input type="text" name="folderprefix" value="'.$default_folder_prefix.'" size="35"><br>';
 ?>
             </td>
          </tr>
 <?php }          
 
    // TRASH FOLDER
-   echo "<tr><td nowrap align=right>";
+   echo '<tr><td nowrap align="right">';
    echo _("Trash Folder:");
-   echo "</td><td>";
+   echo '</td><td>';
       echo "<TT><SELECT NAME=trash>\n";
       if ($move_to_trash == true)
-         echo "<option value=none>" . _("Don't use Trash");
+         echo '<option value="none">' . _("Don't use Trash");
       else
-         echo "<option value=none selected>" . _("Do not use Trash");
+         echo '<option value="none" selected>' . _("Do not use Trash");
  
       for ($i = 0; $i < count($boxes); $i++) {
          $use_folder = true;
-         if (strtolower($boxes[$i]["unformatted"]) == "inbox") {
+         if (strtolower($boxes[$i]["unformatted"]) == 'inbox') {
             $use_folder = false;
          }
          if ($use_folder == true) {
-            $box = $boxes[$i]["unformatted-dm"];
-            $box2 = replace_spaces($boxes[$i]["formatted"]);
-            if (($boxes[$i]["unformatted"] == $trash_folder) && ($move_to_trash == true))
+            $box = $boxes[$i]['unformatted-dm'];
+            $box2 = replace_spaces($boxes[$i]['formatted']);
+            if (($boxes[$i]['unformatted'] == $trash_folder) && ($move_to_trash == true))
                echo "         <OPTION SELECTED VALUE=\"$box\">$box2\n";
             else
                echo "         <OPTION VALUE=\"$box\">$box2\n";
          }
       }
       echo "</SELECT></TT>\n";
-   echo "</td></tr>";  
+   echo '</td></tr>';  
 
 
    // SENT FOLDER
-   echo "<tr><td nowrap align=right>";
+   echo '<tr><td nowrap align="right">';
    echo _("Sent Folder:");
-   echo "</td><td>";
-      echo "<TT><SELECT NAME=sent>\n";
+   echo '</td><td>';
+      echo '<TT><SELECT NAME="sent">' . "\n";
       if ($move_to_sent == true)
-         echo "<option value=none>" . _("Don't use Sent");
+         echo '<option value="none">' . _("Don't use Sent");
       else
          echo "<option value=none selected>" . _("Do not use Sent");
  
       for ($i = 0; $i < count($boxes); $i++) {
          $use_folder = true;
-         if (strtolower($boxes[$i]["unformatted"]) == "inbox") {
+         if (strtolower($boxes[$i]['unformatted']) == 'inbox') {
             $use_folder = false;
          }
          if ($use_folder == true) {
-            $box = $boxes[$i]["unformatted-dm"];
-            $box2 = replace_spaces($boxes[$i]["formatted"]);
-            if (($boxes[$i]["unformatted"] == $sent_folder) && ($move_to_sent == true))
+            $box = $boxes[$i]['unformatted-dm'];
+            $box2 = replace_spaces($boxes[$i]['formatted']);
+            if (($boxes[$i]['unformatted'] == $sent_folder) && ($move_to_sent == true))
                echo "         <OPTION SELECTED VALUE=\"$box\">$box2\n";
             else
                echo "         <OPTION VALUE=\"$box\">$box2\n";
          }
       }
       echo "</SELECT></TT>\n";
-   echo "</td></tr>";  
+   echo '</td></tr>';  
 ?>
          <tr>
             <td valign=top align=right>
          </tr>
       </table>
    </form>
-   <?php do_hook("options_folders_bottom"); ?>
+   <?php do_hook('options_folders_bottom'); ?>
 </body></html>