|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
|
|
|
4c79b5 |
# Copyright (C) 2002 - 2008 Mantis Team - mantisbt-dev@lists.sourceforge.net
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Mantis is free software: you can redistribute it and/or modify
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# GNU General Public License for more details.
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.
|
|
|
4c79b5 |
|
|
|
4c79b5 |
#------------------------------
|
|
|
4c79b5 |
# $Revision: 2643 $
|
|
|
4c79b5 |
# $Author: al $
|
|
|
4c79b5 |
# $Date: 2009-06-18 19:06:27 -0400 (Thu, 18 Jun 2009) $
|
|
|
4c79b5 |
#------------------------------
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# CALLERS
|
|
|
4c79b5 |
# This page is called from:
|
|
|
4c79b5 |
# - account_page.php
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# EXPECTED BEHAVIOUR
|
|
|
4c79b5 |
# - Delete the currently logged in user account
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# CALLS
|
|
|
4c79b5 |
# This page conditionally redirects upon completion
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# RESTRICTIONS & PERMISSIONS
|
|
|
4c79b5 |
# - User must be authenticated
|
|
|
4c79b5 |
# - allow_account_delete config option must be enabled
|
|
|
4c79b5 |
|
|
|
4c79b5 |
require_once( 'core.php' );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
#============ Parameters ============
|
|
|
4c79b5 |
# (none)
|
|
|
4c79b5 |
|
|
|
4c79b5 |
#============ Permissions ============
|
|
|
4c79b5 |
# helper_ensure_post();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
auth_ensure_user_authenticated();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
current_user_ensure_unprotected();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ( OFF == config_get( 'allow_account_delete' ) ) {
|
|
|
4c79b5 |
print_header_redirect( 'account_page.php' );
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
?>
|
|
|
4c79b5 |
|
|
|
4c79b5 |
helper_ensure_confirmed( lang_get( 'confirm_delete_msg' ),
|
|
|
4c79b5 |
lang_get( 'delete_account_button' ) );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
user_delete( auth_get_current_user_id() );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
auth_logout();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$t_redirect = config_get( 'logout_redirect_page' );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
html_meta_redirect( $t_redirect );
|
|
|
4c79b5 |
|
|
|
4c79b5 |
html_page_top1();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
?>
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
echo '' . lang_get( 'operation_successful' ) . ' ';
|
|
|
4c79b5 |
print_bracket_link( $t_redirect, lang_get( 'proceed' ) );
|
|
|
4c79b5 |
?>
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|