<?php
	# Mantis - a php based bugtracking system
	# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
	# Copyright (C) 2002 - 2004  Mantis Team   - mantisbt-dev@lists.sourceforge.net
	# This program is distributed under the terms and conditions of the GPL
	# See the README and LICENSE files for details

	# --------------------------------------------------------
	# $Id: manage_proj_custom_field_update.php,v 1.10 2005/02/12 20:01:06 jlatour Exp $
	# --------------------------------------------------------
?>
<?php
	require_once( 'core.php' );

	$t_core_path = config_get( 'core_path' );

	require_once( $t_core_path.'custom_field_api.php' );
?>
<?php
# <!-- Patch to have 1 same update and remove button with checkboxes for all custom field -->
# <!-- By : Olivier Hung Khanh Lam (aka CWolff) -->

	if(isset($_POST['Update'])) {
	
	$f_project_id	= gpc_get_int( 'project_id' );
	for($i = 0; $i < gpc_get_int('max_id'); $i++) {
		$f_field_id	= gpc_get_int( 'field_id_'.$i );
		$f_sequence	= gpc_get_int( 'sequence_'.$i );

	# We should check both since we are in the project section and an
	#  admin might raise the first threshold and not realize they need
	#  to raise the second
	access_ensure_project_level( config_get( 'manage_project_threshold' ), $f_project_id );
	access_ensure_project_level( config_get( 'custom_field_link_threshold' ), $f_project_id );

	custom_field_set_sequence( $f_field_id, $f_project_id, $f_sequence );
	}
	
	$t_redirect_url = 'manage_proj_edit_page.php?project_id=' . $f_project_id;
	
	}
	else if(isset($_POST['Remove'])) {
		$f_project_id	= gpc_get_int( 'project_id' );
		for($i = 0; $i < gpc_get_int('max_id'); $i++) {
			$f_field_id	= gpc_get_int( 'field_id_'.$i );
			$f_checkbox = gpc_get_bool('checkbox_'.$i );
			if($f_checkbox) {
				$t_definition = custom_field_get_definition( $f_field_id );
				$s_rem_links = $s_rem_links.'<br/>'.string_attribute($t_definition['name']);
			}
		}
		$t_redirect_url = 'manage_proj_edit_page.php?project_id=' . $f_project_id;

	# Confirm with the user
	helper_ensure_confirmed( lang_get( 'confirm_custom_field_unlinking' ) .
		'<br/>' . lang_get( 'custom_field' ) . ': ' . $s_rem_links,
		lang_get( 'field_remove_button' ) );
		
	for($i = 0; $i < gpc_get_int('max_id'); $i++) {
		$f_field_id	= gpc_get_int( 'field_id_'.$i );
		$f_checkbox = gpc_get_bool('checkbox_'.$i );
		if($f_checkbox) {
			custom_field_unlink( $f_field_id, $f_project_id );
		}
	}
	
	}

# END OF PATCH, now modify manage_proj_edit_page.php if u haven't done it yet
?>
<?php html_page_top1() ?>
<?php
	html_meta_redirect( $t_redirect_url );
?>
<?php html_page_top2() ?>

<br />
<div align="center">
<?php
	echo lang_get( 'operation_successful' ).'<br />';

	print_bracket_link( $t_redirect_url, lang_get( 'proceed' ) );
?>
</div>

<?php html_page_bottom1( __FILE__ ) ?>
