adding address book block
[squirrelmail.git] / plugins / change_password / setup.php
1 <?php
2
3 /**
4 * setup.php - Generic Change Password plugin
5 *
6 * Copyright (c) 2003-2004 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This plugin aims to provide a general framework for all password
10 * changing methods that currently have their own plugins.
11 *
12 * @version $Id$
13 * @package plugins
14 * @subpackage change_password
15 */
16
17 /**
18 * Plugin init function
19 */
20 function squirrelmail_plugin_init_change_password() {
21 global $squirrelmail_plugin_hooks;
22
23 $squirrelmail_plugin_hooks['optpage_register_block']['change_password'] = 'change_password_optpage';
24 }
25
26 /**
27 * Add plugin option block
28 */
29 function change_password_optpage() {
30 global $optpage_blocks;
31
32 $optpage_blocks[] = array(
33 'name' => _("Change Password"),
34 'url' => '../plugins/change_password/options.php',
35 'desc' => _("Use this to change your email password."),
36 'js' => FALSE
37 );
38 }
39
40 /**
41 * Return version information
42 * @return string version number
43 */
44 function change_password_version() {
45 return '0.2';
46 }
47 ?>