mirror of https://github.com/BOINC/boinc.git
41 lines
912 B
PHP
41 lines
912 B
PHP
<?php
|
|
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/xml.inc");
|
|
|
|
xml_header();
|
|
|
|
$config = get_config();
|
|
$long_name = parse_config($config, "<long_name>");
|
|
$min_passwd_length = parse_config($config, "<min_passwd_length>");
|
|
if (!$min_passwd_length) {
|
|
$min_passwd_length = 6;
|
|
}
|
|
$disable_account_creation = parse_bool($config, "disable_account_creation");
|
|
|
|
echo "<project_config>
|
|
<name>$long_name</name>
|
|
";
|
|
|
|
if (project_is_stopped()) {
|
|
echo "
|
|
<error_num>-183</error_num>
|
|
";
|
|
} else {
|
|
if ($disable_account_creation || defined('INVITE_CODES')) {
|
|
echo " <account_creation_disabled/>\n";
|
|
}
|
|
echo "
|
|
<min_passwd_length>$min_passwd_length</min_passwd_length>
|
|
";
|
|
$forum_version = parse_config($config, '<forum_version');
|
|
if ($forum_version) {
|
|
echo " <forum_version>$forum_version</forum_version>\n";
|
|
}
|
|
}
|
|
echo "
|
|
</project_config>
|
|
";
|
|
|
|
?>
|