fix listcommands template for Send form changes
[squirrelmail.git] / plugins / change_password / setup.php
index 31b8bde6f933a55002f490e5a2d3566647a6970c..3ab19fbb95bef313ea8374db3a1276861674161b 100644 (file)
@@ -1,20 +1,31 @@
 <?php
 
-/*
- * Generic Change Password plugin
+/**
+ * setup.php - Generic Change Password plugin
  *
  * This plugin aims to provide a general framework for all password
  * changing methods that currently have their own plugins.
  *
- * $Id $
+ * @copyright &copy; 2003-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @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';
+    $squirrelmail_plugin_hooks['optpage_set_loadinfo']['change_password'] = 'change_password_loadinfo';
 }
 
+/**
+ * Add plugin option block
+ */
 function change_password_optpage() {
     global $optpage_blocks;
 
@@ -26,6 +37,22 @@ function change_password_optpage() {
     );
 }
 
+/**
+ * Displays information after "Successfully Saved Options:"
+ * @since 1.5.1
+ */
+function change_password_loadinfo() {
+    global $optpage, $optpage_name;
+    if ($optpage=='change_password') {
+        // i18n: is displayed after "Successfully Saved Options:"
+        $optpage_name=_("User's Password");
+    }
+}
+
+/**
+ * Return version information
+ * @return string version number
+ */
 function change_password_version() {
-    return '0.1';
+    return '0.2';
 }