phpdoc blocks
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Apr 2004 07:18:29 +0000 (07:18 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Apr 2004 07:18:29 +0000 (07:18 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7087 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/spamcop/index.php
plugins/spamcop/options.php
plugins/spamcop/setup.php
plugins/spamcop/spamcop.php

index f01f8baaaba91dd5305bf1add300157e62a85603..275ca6329fb38d5078d4a5ac399fb62671111042 100644 (file)
@@ -1,17 +1,15 @@
 <?php
-
-   /**
-    **  index.php -- Displays the main frameset
-    **
-    **  Copyright (c) 1999-2004 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  Redirects to the login page.
-    **
-    **  $Id$
-    * @package plugins
-    * @subpackage spamcop
-    **/
+/**
+ *  index.php -- Displays the main frameset
+ *
+ * Redirects to the login page.
+ *
+ * @copyright (c) 1999-2004 The SquirrelMail development team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage spamcop
+ */
 
    header("Location:../../src/login.php\n\n");
    exit();
index 4b3d092242d1e5f7ad4acc7591b28b11d33917b5..63de0903884ee1bbe9f7cc872a0d8a698ab5b109 100755 (executable)
@@ -1,15 +1,14 @@
 <?php
 
-   /**
-    **  options.php -- SpamCop options page
-    **
-    **  Copyright (c) 1999-2004 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  $Id$
-    * @package plugins
-    * @subpackage spamcop
-    **/
+/**
+ *  options.php -- SpamCop options page
+ *
+ * @copyright (c) 1999-2004 The SquirrelMail development team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage spamcop
+ */
 
 /** @ignore */
 define('SM_PATH','../../');
@@ -19,6 +18,7 @@ require_once(SM_PATH . 'include/validate.php');
  * Internal spamcop plugin function.
  *
  * It is used to display similar action links.
+ * @access private
  */
 function spamcop_enable_disable($option,$disable_action,$enable_action) {
     if ($option) { 
index 0613a87b991ac71502b72fdf0f02250ba6870e4e..9437bf804531371dc65593e44bcda522f825f2ed 100755 (executable)
@@ -1,14 +1,13 @@
 <?php
-   /** 
-    **  setup.php -- SpamCop plugin           
-    **
-    **  Copyright (c) 1999-2004 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **  
-    **  $Id$
-    * @package plugins
-    * @subpackage spamcop
-    **/
+/** 
+ * setup.php -- SpamCop plugin - setup script
+ *
+ * @copyright (c) 1999-2004 The SquirrelMail development team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage spamcop
+ */
 
 /** @ignore */
 require_once(SM_PATH . 'functions/global.php');
@@ -16,7 +15,10 @@ require_once(SM_PATH . 'functions/global.php');
 /** Disable Quick Reporting by default */
 $spamcop_quick_report = false;
 
-/** Initialize the plugin */
+/**
+ * Initialize the plugin 
+ * @access private
+ */
 function squirrelmail_plugin_init_spamcop() {
    global $squirrelmail_plugin_hooks, $data_dir, $username,
       $spamcop_is_composing;
@@ -39,6 +41,7 @@ function squirrelmail_plugin_init_spamcop() {
 
 /**
  * Loads spamcop settings and validates some of values (make '' into 'default', etc.)
+ * @access private
  */
 function spamcop_load() {
    global $username, $data_dir, $spamcop_enabled, $spamcop_delete,
@@ -69,6 +72,7 @@ function spamcop_load() {
 
 /**
  * Shows spamcop link on the read-a-message screen
+ * @access private
  */
 function spamcop_show_link() {
    global $spamcop_enabled, $spamcop_method, $spamcop_quick_report,$javascript_on;
@@ -116,6 +120,7 @@ document.write("</a>");
 
 /**
  * Show spamcop options block
+ * @access private
  */
 function spamcop_options()
 {
@@ -132,6 +137,7 @@ function spamcop_options()
 
 /**
  * When we send the email, we optionally trash it then too
+ * @access private
  */
 function spamcop_while_sending()
 {
index 7a69bca7673e7bc6bb0042aa855b47325246d94f..5c97285dc238ff3e04af4b04630f3887cca6a958 100644 (file)
@@ -1,14 +1,13 @@
 <?php
-   /** 
-    **  spamcop.php -- SpamCop plugin           
-    **
-    **  Copyright (c) 1999-2004 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **  
-    **  $Id$
-    * @package plugins
-    * @subpackage spamcop
-    **/
+/** 
+ * spamcop.php -- SpamCop plugin -- main page
+ *
+ * @copyright (c) 1999-2004 The SquirrelMail development team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage spamcop
+ */
 
 /** @ignore */
 define('SM_PATH','../../');
@@ -19,6 +18,7 @@ require_once(SM_PATH . 'functions/imap.php');
 
 /**
  * Stores message in attachment directory, when email based reports are used
+ * @access private
  */
 function getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, 
                                       $passed_ent_id='', $imapConnection) {