mirror of https://github.com/BOINC/boinc.git
83 lines
2.0 KiB
PHP
83 lines
2.0 KiB
PHP
<?php
|
|
|
|
require_once("../inc/forum.inc");
|
|
require_once("../inc/text_transform.inc");
|
|
require_once("../inc/profile.inc");
|
|
require_once("../inc/util_ops.inc");
|
|
require_once("../project/project.inc");
|
|
|
|
db_init();
|
|
|
|
$logged_in_user = get_logged_in_user();
|
|
|
|
function buttons($i) {
|
|
echo "
|
|
<input type=\"radio\" name=\"user$i\" value=\"0\"> skip <br>
|
|
<input type=\"radio\" name=\"user$i\" value=\"1\" checked=\"checked\"> accept <br>
|
|
<input type=\"radio\" name=\"user$i\" value=\"-1\"> reject
|
|
";
|
|
}
|
|
|
|
admin_page_head("screen profiles");
|
|
|
|
if (function_exists('profile_screen_query')) {
|
|
$query = profile_screen_query();
|
|
} else if (profile_screening()) {
|
|
$query = "select * from profile, user where profile.userid=user.id "
|
|
." and has_picture>0 "
|
|
." and verification=0 "
|
|
." limit 20"
|
|
;
|
|
} else {
|
|
$query = "select * from profile, user where profile.userid=user.id "
|
|
." and has_picture>0 "
|
|
." and verification=0 "
|
|
." and uotd_time is null "
|
|
." and expavg_credit>1 "
|
|
." order by recommend desc limit 20"
|
|
;
|
|
}
|
|
$result = mysql_query($query);
|
|
|
|
$n = 0;
|
|
echo "<form method=\"get\" action=\"profile_screen_action.php\">\n";
|
|
start_table();
|
|
$found = false;
|
|
while ($profile = mysql_fetch_object($result)) {
|
|
$found = true;
|
|
echo "<tr><td>
|
|
";
|
|
buttons($n);
|
|
echo "
|
|
</td><td>
|
|
";
|
|
echo "recommends: $profile->recommend
|
|
<br>rejects: $profile->reject
|
|
<br>Name: $profile->name
|
|
<br>
|
|
";
|
|
show_profile($profile, $logged_in_user, true);
|
|
echo "<hr></td></tr>\n";
|
|
echo "<input type=\"hidden\" name=\"userid$n\" value=\"$profile->userid\">\n";
|
|
$n++;
|
|
}
|
|
|
|
end_table();
|
|
|
|
if ($found) {
|
|
echo "
|
|
<input type=\"hidden\" name=\"n\" value=\"$n\">
|
|
<input type=\"submit\" value=\"OK\">
|
|
";
|
|
} else {
|
|
echo "No more profiles to screen.";
|
|
}
|
|
|
|
echo "
|
|
</form>
|
|
";
|
|
|
|
admin_page_tail();
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
|
?>
|