boinc/html/user/project.inc

28 lines
602 B
PHP
Executable File

<?php
// This is a sample project file. Replace it with your own.
define("PROJECT", "Test Project");
define("MASTER_URL", "http://boinc.berkeley.edu/");
define("URL_BASE", "");
function project_intro() {
echo"
This is a test project for <a href=boinc.berkeley.edu>BOINC</a>.
";
}
function project_banner($user) {
// Put your project title and logo here
echo "<table width=100%><tr><td><h2>".PROJECT."</h2></td><td align=right>\n";
if ($user) {
echo "Logged in as $user->name";
} else {
echo "<br>";
}
echo "</td></tr></table><hr>\n";
}
?>