When wanting to use mb_strtoupper, test for the existence of that function
[squirrelmail.git] / plugins / change_password / setup.php
CommitLineData
27663afe 1<?php
2
087508d9 3/**
4 * setup.php - Generic Change Password plugin
5 *
6c84ba1e 6 * Copyright (c) 2003-2005 The SquirrelMail Project Team
087508d9 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';
75adae57 24 $squirrelmail_plugin_hooks['optpage_set_loadinfo']['change_password'] = 'change_password_loadinfo';
27663afe 25}
26
882acf90 27/**
28 * Add plugin option block
29 */
27663afe 30function change_password_optpage() {
31 global $optpage_blocks;
32
33 $optpage_blocks[] = array(
34 'name' => _("Change Password"),
35 'url' => '../plugins/change_password/options.php',
36 'desc' => _("Use this to change your email password."),
37 'js' => FALSE
38 );
39}
40
75adae57 41/**
42 * Displays information after "Successfully Saved Options:"
43 * @since 1.5.1
44 */
45function change_password_loadinfo() {
46 global $optpage, $optpage_name;
47 if ($optpage=='change_password') {
48 // i18n: is displayed after "Successfully Saved Options:"
49 $optpage_name=_("User's Password");
50 }
51
52}
53
882acf90 54/**
55 * Return version information
56 * @return string version number
57 */
27663afe 58function change_password_version() {
087508d9 59 return '0.2';
27663afe 60}
882acf90 61?>