mirror of https://github.com/BOINC/boinc.git
76 lines
1.7 KiB
PHP
76 lines
1.7 KiB
PHP
<?php
|
|
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/cert.inc");
|
|
require_once("../inc/user.inc");
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$join = date('j F Y', $user->create_time);
|
|
$today = date('j F Y', time(0));
|
|
|
|
$border=$_GET["border"];
|
|
if ($border=="no") {
|
|
$border = 0;
|
|
} else {
|
|
$border=8;
|
|
}
|
|
|
|
|
|
$title_font = "\"Optima,ZapfChancery\"";
|
|
$font = "\"Optima,Lucida Bright,Times New Roman\"";
|
|
|
|
$user = get_other_projects($user);
|
|
$total_credit = 0;
|
|
foreach ($user->projects as $p) {
|
|
$total_credit += $p->total_credit;
|
|
}
|
|
|
|
$credit = credit_string($total_credit, false);
|
|
|
|
function show_proj($p) {
|
|
$join = date('j F Y', $p->create_time);
|
|
echo "<tr> <td>$p->name</td><td> $p->total_credit</td><td>$join</td></tr>
|
|
";
|
|
}
|
|
|
|
echo "
|
|
<table width=900 height=650 border=$border cellpadding=20><tr><td>
|
|
<center>
|
|
<table width=700 border=0><tr><td style=\"background-position:center; background-repeat:no-repeat\" background=http://boinc.berkeley.edu/logo/boinc_fade_600.png>
|
|
<center>
|
|
<font style=\"font-size: 52\" face=$title_font>Certificate of Computation
|
|
|
|
<font face=$font style=\"font-size:28\">
|
|
<br><br>
|
|
This certifies that
|
|
<p>
|
|
<font face=$font style=\"font-size:32\">
|
|
$user->name
|
|
|
|
<font face=$font style=\"font-size:18\">
|
|
<p>
|
|
has contributed $credit
|
|
to the following scientific research projects:
|
|
|
|
<center>
|
|
<table width=80%>
|
|
<tr><th align=left>Project</th><th align=left>Cobblestones</th><th align=left>Joined</th></tr>
|
|
";
|
|
foreach ($user->projects as $p) {
|
|
if ($p->total_credit<100) continue;
|
|
show_proj($p);
|
|
}
|
|
echo "
|
|
</table>
|
|
</center>
|
|
";
|
|
|
|
echo "
|
|
</td>
|
|
";
|
|
echo "
|
|
</td><tr></table>
|
|
";
|
|
?>
|