Replacing deprecated HTML "center" element.
[squirrelmail.git] / plugins / info / options.php
index 6a8db4ae04191e8fcfaee769d0ee43e3f5d5f902..f5ee2a4c2c52ee6940572bff4a217711caf1479e 100644 (file)
@@ -1,13 +1,14 @@
 <?php
+
 /**
  * options page for IMAP info plugin
  *
  * This is where it all happens :)
  *
- * @copyright (c) 1999-2005 The SquirrelMail Project Team
+ * @author Jason Munro <jason at stdbev.com>
+ * @copyright &copy; 1999-2006 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
- * @author Jason Munro jason@stdbev.com
  * @package plugins
  * @subpackage info
  */
@@ -33,9 +34,8 @@ $mailbox = 'INBOX';
  * prevent use of plugin if it is not enabled
  */
 if (! is_plugin_enabled('info')) {
-    echo '<p align="center"><big>'.
-         _("Plugin is disabled.").
-         '</big></p></body></html>';
+    error_box(_("Plugin is disabled."),$color);
+    echo '</body></html>';
     exit;
 }
 
@@ -68,10 +68,10 @@ $list = array ('TEST_0',
                'TEST_8',
                'TEST_9');
 
-echo '<br /><center><b>'._("IMAP server information")."</b></center><br />\n".
-     '<center><table bgcolor="'.$color[3].'" width="100%" border="1" cellpadding="2">'.
+echo '<br /><div style="text-align: center;"><b>'._("IMAP server information")."</b></div><br />\n".
+     '<div style="text-align: center;"><table bgcolor="'.$color[3].'" width="100%" border="1" cellpadding="2">'.
      '<tr><td bgcolor="'.$color[3]."\"><br />\n".
-     '<center><table width="95%" border="1" bgcolor="'.$color[3]."\">\n".
+     '<div style="text-align: center;"><table width="95%" border="1" bgcolor="'.$color[3]."\">\n".
      '<tr><td bgcolor="'.$color[4].'"><b>'.
      _("Server Capability response:").
      "</b><br />\n";
@@ -98,7 +98,7 @@ else {
          'default_charset = '.htmlspecialchars($default_charset)."\n";
 }
 
-echo "<br /></td></tr></table></center><br />\n";
+echo "<br /></td></tr></table></div><br />\n";
 
 
 if ($submit == 'submit') {
@@ -124,12 +124,12 @@ elseif (!$submit || $submit == 'default')  {
         'TEST_5' => "SORT (DATE) $default_charset ALL",
         'TEST_6' => "FETCH 1:* (FLAGS BODY[HEADER.FIELDS (FROM DATE TO)])",
         'TEST_7' => "LSUB \"$folder_prefix\" \"*%\"",
-        'TEST_8' => "LIST \"$folder_prefix*\" \"*\"",
+        'TEST_8' => "LIST \"$folder_prefix\" \"*\"",
         'TEST_9' => "");
 }
 
 echo "<form action=\"options.php\" method=\"post\">\n".
-     "<center><table border=\"1\">\n".
+     "<div style="text-align: center;"><table border=\"1\">\n".
      '<tr><th>'. _("Select").
      '</th><th>'._("Test Name").
      '</th><th>'._("IMAP command string")."</th></tr>\n".
@@ -148,12 +148,12 @@ foreach($type as $index=>$value) {
          addInput($index, $value, 60);
 }
 
-echo "</td></tr></table></center><br />\n".
-     '<center>'.
+echo "</td></tr></table></div><br />\n".
+     '<div style="text-align: center;">'.
      addSubmit('submit','submit').
      addSubmit('clear','submit').
      addSubmit('default','submit').
-     "</center><br /></form>\n";
+     "</div><br /></form>\n";
 
 $tests = array();
 
@@ -166,20 +166,39 @@ if ($submit == 'submit') {
         }
     }
     for ($i=0;$i<count($tests);$i++) {
-        $response = imap_test($imap_stream, $type[$tests[$i]]);
-        echo '<center><table width="95%" border="0" bgcolor="'.$color[4]."\">\n".
+        // make sure that microtime function is available before it is called
+        if (function_exists('microtime')) {
+            list($usec, $sec) = explode(" ", microtime());
+            $starttime = (float)$sec + (float)$usec;
+        }
+
+        echo '<div style="text-align: center;"><table width="95%" border="0" bgcolor="'.$color[4]."\">\n".
              '<tr><td><b>'.$tests[$i]."</b></td></tr>\n".
              '<tr><td><small><b><font color="'.$color[7].'">'.
-             _("Request:")."</font></b></small></td></tr>\n".
-             '<tr><td><small><b><font color="'.$color[7].'">'.
+            _("Request:")."</font></b></small></td></tr>\n";
+        // imap_test function outputs imap command
+        $response = imap_test($imap_stream, $type[$tests[$i]]);
+        echo '<tr><td><small><b><font color="'.$color[7].'">'.
              _("Response:")."</font></b></small></td></tr>\n".
              '<tr><td>';
         print_response($response);
-        echo "</td></tr></table></center><br />\n";
+        echo "</td></tr>\n";
+
+        if (function_exists('microtime')) {
+            // get script execution time
+            list($usec, $sec) = explode(" ", microtime());
+            $endtime = (float)$sec + (float)$usec;
+            // i18n: ms = short for miliseconds
+            echo '<tr><td><small><b><font color="'.$color[7].'">'.
+                _("Execution time:")."</font></b></small></td></tr>\n".
+                '<tr><td>'.sprintf(_("%s ms"),round((($endtime - $starttime)*1000),3))."</td></tr>\n";
+        }
+
+        echo "</table></div><br />\n";
     }
 }
-    echo '</td></tr></table></center>';
-    sqimap_logout($imap_stream);
+echo '</td></tr></table></div>';
+sqimap_logout($imap_stream);
 
 /**
  * Optional hook in info plugin