updating error_box() function calls. second argument was modified.
[squirrelmail.git] / plugins / change_password / setup.php
index 6d280aed59d4bb1bd865315269c2e08fff1c87ad..10c2fed928935d7122c1e6ecbc3314250a392dbb 100644 (file)
@@ -3,23 +3,29 @@
 /**
  * setup.php - Generic Change Password plugin
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This plugin aims to provide a general framework for all password
  * changing methods that currently have their own plugins.
  *
- * $Id$
+ * @copyright © 2003-2006 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;
 
@@ -31,6 +37,23 @@ 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.2';
 }
+?>
\ No newline at end of file