added phpdoc blocks.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Apr 2004 07:03:14 +0000 (07:03 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Apr 2004 07:03:14 +0000 (07:03 +0000)
closed php code block in setup.php

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7084 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/change_password/config.php
plugins/change_password/functions.php
plugins/change_password/index.php
plugins/change_password/options.php
plugins/change_password/setup.php

index 484734ea4713c71f96fe6d005d342dcedb0d081c..61cde1088c0fa6d767b53615525fb173f4fb1a2c 100644 (file)
@@ -1,10 +1,13 @@
 <?php
 
-/* Change Password plugin configuration vars
+/**
+ * Change Password plugin configuration vars
  *
  * NOTE: probably you need to configure your specific backend too!
  *
- * $Id $
+ * @version $Id$
+ * @package plugins
+ * @subpackage change_password
  */
 
 // the password changing mechanism you're using
index c0918ac0e8f7fc2cc98cfe261d979f273a33ab74..123ed5d7b2a6e54b6df71ab737de1f7f02ee5b3f 100644 (file)
@@ -6,7 +6,7 @@
  * Copyright (c) 2003-2004 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
- * $Id$
+ * @version $Id$
  * @package plugins
  * @subpackage change_password
  */
index 0d003516e29d710b8c98fde68bd43ff4220ffc41..d6b9bbadc9b847fc49a56c3f5bd26c72aa9258f5 100644 (file)
@@ -10,7 +10,7 @@
  * people to the login screen. At this point no attempt is made to see if
  * the person is logged or not.
  *
- * $Id$
+ * @version $Id$
  * @package plugins
  * @subpackage change_password
  */
index 04a75440e6dc6c7912d4c139acc9ee1520f01ceb..b7aac3a26c576a173dda9ac334ebe779b5006cc9 100644 (file)
@@ -6,11 +6,12 @@
  * Copyright (c) 2004 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
- * $Id$
+ * @version $Id$
  * @package plugins
  * @subpackage change_password
  */
 
+/** @ignore */
 define('SM_PATH','../../');
 
 require_once (SM_PATH . 'include/validate.php');
index 6d280aed59d4bb1bd865315269c2e08fff1c87ad..4301bea2b092b4dbc48a07f73563656f82b33603 100644 (file)
@@ -9,17 +9,23 @@
  * This plugin aims to provide a general framework for all password
  * changing methods that currently have their own plugins.
  *
- * $Id$
+ * @version $Id$
  * @package plugins
  * @subpackage change_password
  */
 
+/**
+ * Plugin init function
+ */
 function squirrelmail_plugin_init_change_password() {
     global $squirrelmail_plugin_hooks;
 
     $squirrelmail_plugin_hooks['optpage_register_block']['change_password'] = 'change_password_optpage';
 }
 
+/**
+ * Add plugin option block
+ */
 function change_password_optpage() {
     global $optpage_blocks;
 
@@ -31,6 +37,11 @@ function change_password_optpage() {
     );
 }
 
+/**
+ * Return version information
+ * @return string version number
+ */
 function change_password_version() {
     return '0.2';
 }
+?>
\ No newline at end of file