浏览代码

adding phpdoc blocks

tokul 20 年之前
父节点
当前提交
6045b0938f
共有 3 个文件被更改,包括 22 次插入1 次删除
  1. 9 0
      plugins/newmail/config-sample.php
  2. 9 0
      plugins/newmail/config_default.php
  3. 4 1
      plugins/newmail/loadfile.php

+ 9 - 0
plugins/newmail/config-sample.php

@@ -1,4 +1,13 @@
 <?php
+/**
+ * SquirrelMail NewMail plugin
+ *
+ * Sample configuration file
+ * @version $Id$
+ * @package plugins
+ * @subpackage new_mail
+ */
+
 // Set $allowsound to false if you don't want sound files available
 $newmail_allowsound = true;
 

+ 9 - 0
plugins/newmail/config_default.php

@@ -1,4 +1,13 @@
 <?php
+/**
+ * SquirrelMail NewMail plugin
+ *
+ * Default configuration file
+ * @version $Id$
+ * @package plugins
+ * @subpackage new_mail
+ */
+
 // Set $allowsound to false if you don't want sound files available
 global $newmail_allowsound;
 $newmail_allowsound = true;

+ 4 - 1
plugins/newmail/loadfile.php

@@ -8,7 +8,10 @@
  * @subpackage new_mail
  */
 
-/** define SM_PATH */
+/**
+ * define SM_PATH 
+ * @ignore
+ */
 define('SM_PATH','../../');
 
 /** Load squirrelmail functions */