Blame Identity/Models/Html/Mantis/1.1.2-1.fc9/account_prefs_update.php

4c79b5
4c79b5
# Mantis - a php based bugtracking system
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
# it under the terms of the GNU General Public License as published by
4c79b5
# the Free Software Foundation, either version 2 of the License, or
4c79b5
# (at your option) any later version.
4c79b5
#
4c79b5
# Mantis is distributed in the hope that it will be useful,
4c79b5
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c79b5
# GNU General Public License for more details.
4c79b5
#
4c79b5
# You should have received a copy of the GNU General Public License
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
	# Updates prefs then redirect to account_prefs_page.php3
4c79b5
4c79b5
	require_once( 'core.php' );
4c79b5
4c79b5
	$t_core_path = config_get( 'core_path' );
4c79b5
4c79b5
	require_once( $t_core_path.'user_pref_api.php' );
4c79b5
4c79b5
	# helper_ensure_post();
4c79b5
4c79b5
	auth_ensure_user_authenticated();
4c79b5
4c79b5
	$f_user_id					= gpc_get_int( 'user_id' );
4c79b5
	$f_redirect_url				= gpc_get_string( 'redirect_url' );
4c79b5
4c79b5
	# If the user is trying to modify an account other than their own
4c79b5
	#  they must have high enough permissions to do so
4c79b5
	# @@@ should we really be sharing this file between the manage section
4c79b5
	#  and the account section.  The account section should always be operating
4c79b5
	#  on the current user, so passing in a user ID here is a little odd.
4c79b5
	if ( auth_get_current_user_id() != $f_user_id ) {
4c79b5
		access_ensure_global_level( config_get( 'manage_user_threshold' ) );
4c79b5
	}
4c79b5
4c79b5
	user_ensure_unprotected( $f_user_id );
4c79b5
4c79b5
	$t_prefs = user_pref_get( $f_user_id );
4c79b5
4c79b5
	$t_prefs->redirect_delay	= gpc_get_int( 'redirect_delay' );
4c79b5
	$t_prefs->refresh_delay		= gpc_get_int( 'refresh_delay' );
4c79b5
	$t_prefs->default_project	= gpc_get_int( 'default_project' );
4c79b5
4c79b5
	$t_lang = gpc_get_string( 'language' );
4c79b5
	if ( lang_language_exists( $t_lang ) ) {
4c79b5
		$t_prefs->language = $t_lang;
4c79b5
	}
4c79b5
4c79b5
	$t_prefs->advanced_report	= gpc_get_bool( 'advanced_report' );
4c79b5
	$t_prefs->advanced_view		= gpc_get_bool( 'advanced_view' );
4c79b5
	$t_prefs->advanced_update	= gpc_get_bool( 'advanced_update' );
4c79b5
	$t_prefs->email_on_new		= gpc_get_bool( 'email_on_new' );
4c79b5
	$t_prefs->email_on_assigned	= gpc_get_bool( 'email_on_assigned' );
4c79b5
	$t_prefs->email_on_feedback	= gpc_get_bool( 'email_on_feedback' );
4c79b5
	$t_prefs->email_on_resolved	= gpc_get_bool( 'email_on_resolved' );
4c79b5
	$t_prefs->email_on_closed	= gpc_get_bool( 'email_on_closed' );
4c79b5
	$t_prefs->email_on_reopened	= gpc_get_bool( 'email_on_reopened' );
4c79b5
	$t_prefs->email_on_bugnote	= gpc_get_bool( 'email_on_bugnote' );
4c79b5
	$t_prefs->email_on_status	= gpc_get_bool( 'email_on_status' );
4c79b5
	$t_prefs->email_on_priority	= gpc_get_bool( 'email_on_priority' );
4c79b5
	$t_prefs->email_on_new_min_severity			= gpc_get_int( 'email_on_new_min_severity' );
4c79b5
	$t_prefs->email_on_assigned_min_severity	= gpc_get_int( 'email_on_assigned_min_severity' );
4c79b5
	$t_prefs->email_on_feedback_min_severity	= gpc_get_int( 'email_on_feedback_min_severity' );
4c79b5
	$t_prefs->email_on_resolved_min_severity	= gpc_get_int( 'email_on_resolved_min_severity' );
4c79b5
	$t_prefs->email_on_closed_min_severity		= gpc_get_int( 'email_on_closed_min_severity' );
4c79b5
	$t_prefs->email_on_reopened_min_severity	= gpc_get_int( 'email_on_reopened_min_severity' );
4c79b5
	$t_prefs->email_on_bugnote_min_severity		= gpc_get_int( 'email_on_bugnote_min_severity' );
4c79b5
	$t_prefs->email_on_status_min_severity		= gpc_get_int( 'email_on_status_min_severity' );
4c79b5
	$t_prefs->email_on_priority_min_severity	= gpc_get_int( 'email_on_priority_min_severity' );
4c79b5
4c79b5
	$t_prefs->bugnote_order = gpc_get_string( 'bugnote_order' );
4c79b5
	$t_prefs->email_bugnote_limit = gpc_get_int( 'email_bugnote_limit' );
4c79b5
4c79b5
	# prevent users from changing other user's accounts
4c79b5
	if ( $f_user_id != auth_get_current_user_id() ) {
4c79b5
		access_ensure_project_level( ADMINISTRATOR );
4c79b5
	}
4c79b5
4c79b5
	# make sure the delay isn't too low
4c79b5
	if (( config_get( 'min_refresh_delay' ) > $t_prefs->refresh_delay )&&
4c79b5
		( $t_prefs->refresh_delay != 0 )) {
4c79b5
		$t_prefs->refresh_delay = config_get( 'min_refresh_delay' );
4c79b5
	}
4c79b5
4c79b5
	user_pref_set( $f_user_id, $t_prefs );
4c79b5
4c79b5
	html_page_top1();
4c79b5
	html_meta_redirect( $f_redirect_url );
4c79b5
	html_page_top2();
4c79b5
4c79b5
	echo '
';
4c79b5
	echo '

' . lang_get( 'operation_successful' ) . '

';
4c79b5
	print_bracket_link( $f_redirect_url, lang_get( 'proceed' ) );
4c79b5
	echo '';
4c79b5
4c79b5
	html_page_bottom1( __FILE__ );
4c79b5
?>