Adding reminder
[squirrelmail.git] / plugins / change_password / setup.php
CommitLineData
27663afe 1<?php
2
087508d9 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.
27663afe 8 *
9 * This plugin aims to provide a general framework for all password
10 * changing methods that currently have their own plugins.
11 *
882acf90 12 * @version $Id$
087508d9 13 * @package plugins
14 * @subpackage change_password
27663afe 15 */
16
882acf90 17/**
18 * Plugin init function
19 */
27663afe 20function 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
882acf90 26/**
27 * Add plugin option block
28 */
27663afe 29function 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
882acf90 40/**
41 * Return version information
42 * @return string version number
43 */
27663afe 44function change_password_version() {
087508d9 45 return '0.2';
27663afe 46}
882acf90 47?>