boinc/html/user/team_disband_action.php

45 lines
1.2 KiB
PHP
Raw Normal View History

<?php
require_once("util.inc");
require_once("team.inc");
require_once("db.inc");
db_init();
$user = get_user_from_cookie();
$query = sprintf(
"select * from team where id = %d",
$HTTP_POST_VARS["id"]
);
$result = mysql_query($query);
$team = mysql_fetch_object($result);
mysql_free_result($result);
if (!$team) {
page_head("Error");
echo "The team you tried to disband does not exist.";
} else if ($user->id != $team->userid) {
page_head("Permission denied");
echo "Only a team's founder may disband a team.";
} else {
$query_team_table = sprintf(
"delete from team where id = %d",
$team->id
);
if ($team->nusers == 0) {
$result_team_table = mysql_query($query_team_table);
}
if ($result_team_table) {
$team_name = $team->name;
page_head("$team_name disbanded");
echo "<h2>Disband Complete</h2>";
echo "You have disbanded $team_name.";
} else {
page_head("Error");
echo "Couldn't disband team - please try later.\n";
}
}
page_tail();
?>