Add (disabled) plugin version printout
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 2 Feb 2007 23:00:15 +0000 (23:00 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 2 Feb 2007 23:00:15 +0000 (23:00 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12213 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/configtest.php

index 4362b32df65eec615918ae18ba4c4d9721918f24..4ad4afe3498f2c447d6ede329f5b71bef999ffdf 100644 (file)
@@ -348,6 +348,21 @@ if (isset($plugins[0])) {
         $plugin_load_error = 'Some output is produced when plugins are loaded. Usually this means there is an error in one of the plugin setup or configuration files. The output was: '.htmlspecialchars($output);
         do_err($plugin_load_error);
     }
+    /** 
+     * Print plugin versions
+     */
+/* DISABLED FOR NOW: takes a lot of screen real estate and not all plugins currently 
+                     support the <plugin>_info() function
+    echo $IND . "Plugin versions...<br />\n";
+    foreach ($plugins as $name) {
+        $function = $name . '_info';
+        if (function_exists($function)) {
+            $info = $function();
+            if (!empty($info['version']))
+                echo $IND . $IND . $name . ' ' . $info['version'] . "<br />\n";
+        }
+    }
+*/
     /**
      * This hook was added in 1.5.2 and 1.4.10. Each plugins should print an error 
      * message and return TRUE if there are any errors in its setup/configuration.