email_addr="bar@a.b.c"; //The email/mailinglist that will receive user reported forum posts (offensive etc.)
function project_banner($title) {
// Put your project title and logo here
echo "
$title
";
}
function project_footer($show_return, $show_date) {
echo "
\n";
if ($show_date) {
echo "Generated ",time_str(time()),"\n";
}
}
function show_profile_heading1() {
return "Your personal background.";
}
function show_profile_question1() {
return "
Tell us about yourself.
You could tell us where you're from, your age, occupation, hobbies,
or anything else about yourself.
";
}
function show_profile_heading2() {
return "Your opinions about " . PROJECT;
}
function show_profile_question2() {
return "
Tell us your thoughts about " . PROJECT . "
Why do you run " . PROJECT . "?
What are your views about the project?
Any suggestions?
";
}
function project_workunit($wu){
echo "This is displayed on the workunit page";
}
function project_user_summary($user){
echo "Text here will go to the user summary page";
}
function project_user_page_private($user){
echo "Whatever is here is added to the private account page";
}
function project_user_credit($user){
if ($user->seti_nresults) {
row2(
"SETI@home classic workunits
as of 14 May 2004",
number_format($user->seti_nresults)
);
}
if ($user->seti_total_cpu) {
$x = number_format($user->seti_total_cpu/3600)." hours";
row2(
"SETI@home classic CPU time
as of 14 May 2004",
$x
);
}
}
?>