Double quoting needed.
[squirrelmail.git] / plugins / info / setup.php
index f31e03eff5b8559aed5688def52fc4fdd0f18c61..0f7563d5205bb29c81e5644d6bcd6e7e247d0ff7 100644 (file)
@@ -1,31 +1,41 @@
 <?php
 
-/* setup file for the IMAP server info plugin
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *   
- * by: Jason Munro jason@stdbev.com
- * 
- * $Id$
- * 
+/**
+ * setup file for the IMAP server info plugin
+ *
+ * @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$
+ * @package plugins
+ * @subpackage info
  */
 
+/** @ignore */
 require_once (SM_PATH . 'plugins/info/functions.php');
 
+/**
+ * Plugin init function
+ * @access private
+ */
 function squirrelmail_plugin_init_info() {
     global $squirrelmail_plugin_hooks;
     $squirrelmail_plugin_hooks['optpage_register_block']['info'] = 'info_opt';
 }
 
+/**
+ * Plugin's block in option page
+ * @access private
+ */
 function info_opt() {
     global $optpage_blocks;
 
     $optpage_blocks[] = array(
         'name' => _("IMAP server information"),
         'url'  => '../plugins/info/options.php',
-        'desc' => _("Run some test IMAP commands, displaying both the command and the result. These tests use the Squirrelmail IMAP commands and your current Squirrelmail configuration. Custom command strings can be used."),
+        'desc' => _("Run some test IMAP commands, displaying both the command and the result. These tests use the SquirrelMail IMAP commands and your current SquirrelMail configuration. Custom command strings can be used."),
         'js'   => false
     );
 }
 
-?>
+?>
\ No newline at end of file