2004-12-16 20:52:27 +00:00
|
|
|
<?php
|
|
|
|
|
2007-11-07 23:59:08 +00:00
|
|
|
// Let the founder assign foundership to someone else,
|
|
|
|
// or decline a foundership change request
|
2007-07-23 20:30:30 +00:00
|
|
|
|
2004-12-16 20:52:27 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/team.inc");
|
2007-10-26 21:14:35 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2004-12-16 20:52:27 +00:00
|
|
|
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
|
2007-10-26 21:14:35 +00:00
|
|
|
$teamid = get_int("teamid");
|
|
|
|
$team = BoincTeam::lookup_id($teamid);
|
|
|
|
if (!$team) {
|
|
|
|
error_page("no such team");
|
|
|
|
}
|
2004-12-16 20:52:27 +00:00
|
|
|
require_founder_login($user, $team);
|
|
|
|
|
|
|
|
page_head("Change founder of $team->name");
|
2006-10-27 16:06:42 +00:00
|
|
|
|
2007-09-26 15:46:54 +00:00
|
|
|
if ($team->ping_user != 0) {
|
|
|
|
if ($team->ping_user < 0) {
|
2007-10-26 21:14:35 +00:00
|
|
|
$ping_user = BoincUser::lookup_id(-$team->ping_user);
|
2007-11-07 23:59:08 +00:00
|
|
|
$x = date_str($team->ping_time);
|
|
|
|
echo "<p>Team member ".user_links($ping_user)." requested this
|
|
|
|
team's foundership on $x, but left the team, thus canceling the request.
|
2007-09-26 15:46:54 +00:00
|
|
|
";
|
2008-04-21 14:04:01 +00:00
|
|
|
$team->update("ping_user=0, ping_time=0");
|
2007-09-26 15:46:54 +00:00
|
|
|
} else {
|
2007-10-26 21:14:35 +00:00
|
|
|
$ping_user = BoincUser::lookup_id($team->ping_user);
|
2007-11-07 23:59:08 +00:00
|
|
|
$x = date_str(transfer_ok_time($team));
|
2007-09-26 15:46:54 +00:00
|
|
|
echo "<p>Team member ".user_links($ping_user)." has requested this
|
2007-11-07 23:59:08 +00:00
|
|
|
team's foundership.
|
|
|
|
This may be because you left the team or haven't had contact
|
|
|
|
with the team for a long time.
|
2007-09-26 15:46:54 +00:00
|
|
|
";
|
2007-11-07 23:59:08 +00:00
|
|
|
echo "<p>
|
2007-09-26 15:46:54 +00:00
|
|
|
<form method=\"post\" action=\"team_founder_transfer_action.php\">
|
|
|
|
<input type=\"hidden\" name=\"action\" value=\"decline\">
|
|
|
|
<input type=\"hidden\" name=\"teamid\" value=\"".$team->id."\">
|
2007-11-07 23:59:08 +00:00
|
|
|
To decline the request, <input type=\"submit\" value=\"click here\">
|
2007-09-26 15:46:54 +00:00
|
|
|
</form>
|
2007-11-07 23:59:08 +00:00
|
|
|
<p>
|
|
|
|
If you don't decline the request by $x,
|
|
|
|
$ping_user->name will have the option of
|
|
|
|
assuming team foundership.
|
|
|
|
<p>
|
|
|
|
To accept the request, assign foundership to $ping_user->name
|
|
|
|
using the form below.
|
|
|
|
<p>
|
|
|
|
<hr>
|
|
|
|
<p>
|
2007-09-26 15:46:54 +00:00
|
|
|
";
|
|
|
|
}
|
2006-10-27 16:06:42 +00:00
|
|
|
}
|
|
|
|
|
2004-12-16 20:52:27 +00:00
|
|
|
echo "
|
2007-11-07 23:59:08 +00:00
|
|
|
To assign foundership of this team to another member,
|
|
|
|
check the box next to member name and click <b>Change founder</b> below.
|
2004-12-16 20:52:27 +00:00
|
|
|
<form method=post action=team_change_founder_action.php>
|
|
|
|
<input type=hidden name=teamid value=$team->id>
|
|
|
|
";
|
2007-11-07 23:59:08 +00:00
|
|
|
echo form_tokens($user->authenticator);
|
|
|
|
|
2004-12-16 20:52:27 +00:00
|
|
|
start_table();
|
|
|
|
echo "<tr>
|
|
|
|
<th>New founder?</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Total credit</th>
|
|
|
|
<th>Recent average credit</th>
|
|
|
|
</tr>
|
|
|
|
";
|
|
|
|
|
2007-10-26 21:14:35 +00:00
|
|
|
$users = BoincUser::enum("teamid=$team->id");
|
2004-12-16 20:52:27 +00:00
|
|
|
|
|
|
|
$navailable_users = 0;
|
2007-10-26 21:14:35 +00:00
|
|
|
foreach ($users as $user) {
|
|
|
|
if ($user->id != $team->userid) { //don't show current founder
|
2004-12-16 20:52:27 +00:00
|
|
|
$user_total_credit = format_credit($user->total_credit);
|
|
|
|
$user_expavg_credit = format_credit($user->expavg_credit);
|
2007-11-07 23:59:08 +00:00
|
|
|
$selected = ($user->id == $team->ping_user)?"selected":"";
|
2006-12-20 18:49:54 +00:00
|
|
|
echo '
|
2004-12-16 20:52:27 +00:00
|
|
|
<tr>
|
2007-11-07 23:59:08 +00:00
|
|
|
<td align="center"><input type="radio" name="userid" value="'.$user->id.'">
|
2006-12-20 18:49:54 +00:00
|
|
|
<td>'.$user->name.'</td>
|
|
|
|
<td>'.$user_total_credit.'</td>
|
|
|
|
<td>'.$user_expavg_credit.'</td>
|
|
|
|
</tr>
|
|
|
|
';
|
2004-12-16 20:52:27 +00:00
|
|
|
$navailable_users++;
|
|
|
|
}
|
|
|
|
}
|
2006-12-20 18:49:54 +00:00
|
|
|
if ($navailable_users > 0) {
|
|
|
|
echo "<input type=hidden name=navailable_users value=$navailable_users>";
|
|
|
|
end_table();
|
|
|
|
echo "<input type=submit value=\"Change founder\">";
|
|
|
|
} else {
|
|
|
|
echo '<tr>
|
|
|
|
<td colspan="4">There are no users to transfer team to.</td>
|
|
|
|
</tr>
|
|
|
|
';
|
|
|
|
end_table();
|
|
|
|
}
|
2004-12-16 20:52:27 +00:00
|
|
|
echo "</form>";
|
|
|
|
page_tail();
|
|
|
|
|
2007-11-07 23:59:08 +00:00
|
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
2004-12-16 20:52:27 +00:00
|
|
|
?>
|