mirror of https://github.com/BOINC/boinc.git
67 lines
2.1 KiB
PHP
67 lines
2.1 KiB
PHP
<?php
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
|
|
|
require_once("../inc/db_ops.inc");
|
|
require_once("../inc/util.inc");
|
|
require_once("../project/project.inc");
|
|
|
|
define("EMAIL_EXISTS", -1);
|
|
define("EMAIL_UPDATED", 1);
|
|
define("EMAIL_FAIL", -2);
|
|
|
|
define("LG_FONT", "<font size=\"+1\">");
|
|
define("SM_FONT", "<font size=\"-1\">");
|
|
|
|
define("TD", "<td bgcolor=\"#708090\">");
|
|
define("TD2", "<td colspan=\"2\" bgcolor=\"#708090\">");
|
|
define("TD3", "<td colspan=\"3\" bgcolor=\"#708090\">");
|
|
|
|
define("TABLE", "<table cellpadding=\"8\" border=\"1\" width=\"100%\">");
|
|
define("TABLE2", "<table width=\"580\">");
|
|
|
|
define("TITLE_COLOR", " bgcolor=\"000000\" ");
|
|
define("TITLE_FONT", " <font color=\"ffffff\"> ");
|
|
define("BODY_COLOR", " bgcolor=\"ffffff\" ");
|
|
define("NOLOGIN", "Not logged in. Click <a href=\"login.php\">here</a> to login.\n");
|
|
|
|
function admin_page_head($title) {
|
|
//TODO: Add DOCTYPE description here when ready for HTML 4.01
|
|
echo "<html><head><title>$title</title><body " . BODY_COLOR . ">\n";
|
|
echo TABLE . "<tr " . TITLE_COLOR . "><td>" . TITLE_FONT . "<font size=\"6\"><b><a href=\"index.php\">".PROJECT.":</a> $title</b></font></td></tr></table>\n";
|
|
}
|
|
|
|
function admin_page_tail() {
|
|
echo "<br><hr noshade size=1><center>";
|
|
echo "<a href=\"index.php\"> Back to Main admin page </a></center>\n";
|
|
echo "</body>\n</html>";
|
|
}
|
|
|
|
function print_checkbox($text,$name,$checked) {
|
|
echo "<input type=\"checkbox\" name=\"$name\""
|
|
. (strlen($checked) ? " checked=\"checked\"" : "") . ">"
|
|
. "$text\n"
|
|
. "<p>\n";
|
|
}
|
|
|
|
function print_radio_button($text,$name,$value,$checked) {
|
|
echo "<input type=\"radio\" name=\"$name\" value=\"$value\""
|
|
. (strlen($checked) ? " checked=\"checked\"" : "") . ">"
|
|
. "$text\n"
|
|
. "<br>\n";
|
|
}
|
|
|
|
function print_text_field($text,$name,$value) {
|
|
echo "$text <input type=\"text\" size=\"10\" name=\"$name\" value=\"$value\">\n"
|
|
. "<p>\n";
|
|
}
|
|
|
|
function row($x, $y) {
|
|
echo "<tr><td valign=\"top\" align=\"right\">$x</td>\n<td>$y</td>\n</tr>\n";
|
|
}
|
|
|
|
function c_row2($color, $x, $y) {
|
|
echo "<tr bgcolor=\"$color\"><td align=\"right\">$x</td><td>$y</td></tr>\n";
|
|
}
|
|
|
|
?>
|