2008-05-28 21:08:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/cert.inc");
|
|
|
|
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$team = BoincTeam::lookup_id($user->teamid);
|
|
|
|
if (!$team) error_page("no team");
|
|
|
|
|
|
|
|
$join = date('j F Y', $team->create_time);
|
|
|
|
$today = date('j F Y', time(0));
|
|
|
|
|
|
|
|
credit_to_ops($team->total_credit, $ops, $unit);
|
|
|
|
|
|
|
|
$border=$_GET["border"];
|
|
|
|
if ($border=="no") {
|
|
|
|
$border = 0;
|
|
|
|
} else {
|
|
|
|
$border=8;
|
|
|
|
}
|
|
|
|
|
|
|
|
$credit = credit_string($team->total_credit, false);
|
|
|
|
|
|
|
|
$title_font = "\"Optima,ZapfChancery\"";
|
|
|
|
$font = "\"Optima,Lucida Bright,Times New Roman\"";
|
|
|
|
|
|
|
|
echo "
|
|
|
|
<table width=900 height=650 border=$border cellpadding=20><tr><td>
|
|
|
|
<center>
|
|
|
|
<table width=700 border=0><tr><td>
|
|
|
|
<center>
|
|
|
|
<font style=\"font-size: 52\" face=$title_font>Certificate of Computation
|
|
|
|
|
|
|
|
|
|
|
|
<font face=$font style=\"font-size:28\">
|
|
|
|
<br><br><br>
|
|
|
|
This certifies that team
|
|
|
|
<p>
|
|
|
|
<font face=$font style=\"font-size:32\">
|
|
|
|
$team->name
|
|
|
|
|
|
|
|
<font face=$font style=\"font-size:18\">
|
|
|
|
<p>
|
|
|
|
has participated in ".PROJECT." since $join,
|
|
|
|
and has contributed $credit
|
|
|
|
to ".PROJECT.".
|
|
|
|
|
|
|
|
<br><br><br>
|
|
|
|
</td><tr></table>
|
|
|
|
<table width=100%><tr>
|
|
|
|
<td width=40><br></td>
|
|
|
|
<td align=left>
|
|
|
|
<font face=$font style=\"font-size:16\">
|
|
|
|
";
|
2008-05-28 22:23:14 +00:00
|
|
|
if (defined("CERT_SIGNATURE")) {
|
2008-05-28 21:08:26 +00:00
|
|
|
echo "
|
2008-05-28 22:23:14 +00:00
|
|
|
<img src=".CERT_SIGNATURE.">
|
2008-05-28 21:08:26 +00:00
|
|
|
<br>
|
|
|
|
";
|
|
|
|
}
|
2008-05-28 22:23:14 +00:00
|
|
|
if (defined("CERT_DIRECTOR_NAME")) {
|
2008-05-28 21:08:26 +00:00
|
|
|
echo CERT_DIRECTOR_NAME." <br>Director, ".PROJECT."
|
|
|
|
<br>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
echo "
|
|
|
|
<br>
|
|
|
|
$today
|
|
|
|
</td>
|
|
|
|
";
|
2008-05-28 22:23:14 +00:00
|
|
|
if (defined("CERT_PROJECT_LOGO")) {
|
2008-05-28 21:08:26 +00:00
|
|
|
echo "
|
2008-05-28 22:23:14 +00:00
|
|
|
<td align=center valign=center> <img src=".CERT_PROJECT_LOGO."> </td>
|
2008-05-28 21:08:26 +00:00
|
|
|
";
|
|
|
|
}
|
2008-05-28 22:23:14 +00:00
|
|
|
if (defined("CERT_INSTITUTION_LOGO")) {
|
2008-05-28 21:08:26 +00:00
|
|
|
echo "
|
2008-05-28 22:23:14 +00:00
|
|
|
<td align=center width=30% valign=center><img src=".CERT_INSTITUTION_LOGO."></td>
|
2008-05-28 21:08:26 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
echo "
|
|
|
|
</td><tr></table>
|
|
|
|
";
|
|
|
|
?>
|