mirror of https://github.com/BOINC/boinc.git
50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
// 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/>.
|
|
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/team.inc");
|
|
require_once("../inc/cache.inc");
|
|
|
|
if (isset($_GET["sort_by"])) {
|
|
$sort_by = $_GET["sort_by"];
|
|
} else {
|
|
$sort_by = "expavg_credit";
|
|
}
|
|
|
|
$offset = get_int("offset", true);
|
|
if (!$offset) $offset=0;
|
|
|
|
if ($offset > 1000) {
|
|
error_page("Limit exceeded: Can only display the first 1000 members.");
|
|
}
|
|
|
|
$teamid = get_int("teamid");
|
|
|
|
$cache_args = "teamid=$teamid&offset=$offset&sort_by=$sort_by";
|
|
start_cache(TEAM_PAGE_TTL, $cache_args);
|
|
|
|
$team = BoincTeam::lookup_id($teamid);
|
|
|
|
page_head("Members of <a href=team_display.php?teamid=$teamid>$team->name</a>");
|
|
display_team_members($team, $offset, $sort_by);
|
|
page_tail();
|
|
|
|
end_cache(TEAM_PAGE_TTL, $cache_args);
|
|
|
|
?>
|