Split out functionality that gathers system specs
[squirrelmail.git] / plugins / info / setup.php
index 359198780bd1dd35d3d78ac2436c088c020401b0..5340c0af82a28d07bb83eaed768127ec30f853a3 100644 (file)
@@ -1,12 +1,11 @@
 <?php
-
-/** setup file for the IMAP server info plugin
- * Copyright (c) 1999-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *   
- * by: Jason Munro jason@stdbev.com
+/**
+ * setup file for the IMAP server info plugin
  * 
- * $Id$
+ * @copyright (c) 1999-2004 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
  */
 /** @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;
 
@@ -30,4 +37,4 @@ function info_opt() {
     );
 }
 
-?>
+?>
\ No newline at end of file