2003-03-04 19:13:21 +00:00
|
|
|
<?php
|
2008-08-05 22:43:14 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2003-03-04 19:13:21 +00:00
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
include_once("../inc/db.inc");
|
|
|
|
include_once("../inc/util.inc");
|
|
|
|
include_once("../inc/prefs.inc");
|
2003-03-04 19:13:21 +00:00
|
|
|
|
|
|
|
db_init();
|
|
|
|
|
2003-03-19 21:01:32 +00:00
|
|
|
$user = get_logged_in_user();
|
2007-01-29 18:15:16 +00:00
|
|
|
check_tokens($user->authenticator);
|
2003-03-04 19:13:21 +00:00
|
|
|
|
2006-08-13 21:51:15 +00:00
|
|
|
$subset = get_str("subset");
|
|
|
|
$venue = get_str("venue");
|
|
|
|
$confirmed = get_str("confirmed", true);
|
|
|
|
$columns = get_int("cols", true);
|
2009-02-17 17:39:57 +00:00
|
|
|
$c = $columns?"&cols=$columns":"";
|
2003-03-04 19:13:21 +00:00
|
|
|
|
2004-10-08 19:57:20 +00:00
|
|
|
if ($confirmed) {
|
|
|
|
if ($subset == "global") {
|
|
|
|
$main_prefs = prefs_parse_global($user->global_prefs);
|
|
|
|
$main_prefs->$venue = null;
|
|
|
|
global_prefs_update($user, $main_prefs);
|
|
|
|
} else {
|
|
|
|
$main_prefs = prefs_parse_project($user->project_prefs);
|
|
|
|
$main_prefs->$venue = null;
|
|
|
|
project_prefs_update($user, $main_prefs);
|
|
|
|
}
|
2006-08-13 21:51:15 +00:00
|
|
|
Header("Location: prefs.php?subset=$subset$c");
|
2003-03-04 19:13:21 +00:00
|
|
|
} else {
|
2004-10-08 19:57:20 +00:00
|
|
|
page_head("Confirm delete preferences");
|
2007-01-29 18:15:16 +00:00
|
|
|
$tokens = url_tokens($user->authenticator);
|
2004-10-08 19:57:20 +00:00
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
Are you sure you want to delete your separate ", subset_name($subset),
|
|
|
|
" preferences for $venue?
|
|
|
|
<br><br>
|
|
|
|
";
|
2009-09-28 04:24:18 +00:00
|
|
|
show_button(
|
|
|
|
"prefs_remove.php?subset=$subset&venue=$venue&confirmed=yes$c$tokens",
|
|
|
|
'Yes', "Remove preferences"
|
|
|
|
);
|
|
|
|
show_button("prefs.php?subset=$subset$c", "Cancel", "Cancel");
|
2004-10-08 19:57:20 +00:00
|
|
|
page_tail();
|
2003-03-04 19:13:21 +00:00
|
|
|
}
|
|
|
|
|
2008-08-05 22:43:14 +00:00
|
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
2003-03-04 19:13:21 +00:00
|
|
|
?>
|