";
$form_body .= elgg_echo('installation:' . $field) . "
";
$warning = elgg_echo('installation:warning:' . $field);
if ($warning != 'installation:warning:' . $field) {
echo "" . $warning . "
";
}
$value = elgg_get_config($field);
$form_body .= elgg_view("input/text",array('name' => $field, 'value' => $value));
$form_body .= "";
}
$form_body .= "
" . elgg_echo('admin:site:access:warning') . "
";
$form_body .= "";
$form_body .= elgg_view('input/access', array(
'options_values' => array(
ACCESS_PRIVATE => elgg_echo("PRIVATE"),
ACCESS_FRIENDS => elgg_echo("access:friends:label"),
ACCESS_LOGGED_IN => elgg_echo("LOGGED_IN"),
ACCESS_PUBLIC => elgg_echo("PUBLIC")
),
'name' => 'default_access',
'value' => elgg_get_config('default_access'),
)) . "
";
$form_body .= "" . elgg_echo('installation:allow_user_default_access:description') . "
";
$form_body .= elgg_view("input/checkboxes", array(
'options' => array(elgg_echo('installation:allow_user_default_access:label') => elgg_echo('installation:allow_user_default_access:label')),
'name' => 'allow_user_default_access',
'value' => (elgg_get_config('allow_user_default_access') ? elgg_echo('installation:allow_user_default_access:label') : ""),
)) . "
";
$form_body .= "" . elgg_echo('installation:simplecache:description') . "
";
$form_body .= elgg_view("input/checkboxes", array(
'options' => array(elgg_echo('installation:simplecache:label') => elgg_echo('installation:simplecache:label')),
'name' => 'simplecache_enabled',
'value' => (elgg_get_config('simplecache_enabled') ? elgg_echo('installation:simplecache:label') : ""),
)) . "
";
$form_body .= "" . elgg_echo('installation:systemcache:description') . "
";
$form_body .= elgg_view("input/checkboxes", array(
'options' => array(elgg_echo('installation:systemcache:label') => elgg_echo('installation:systemcache:label')),
'name' => 'system_cache_enabled',
'value' => (elgg_get_config('system_cache_enabled') ? elgg_echo('installation:systemcache:label') : ""),
)) . "
";
$debug_options = array('0' => elgg_echo('installation:debug:none'), 'ERROR' => elgg_echo('installation:debug:error'), 'WARNING' => elgg_echo('installation:debug:warning'), 'NOTICE' => elgg_echo('installation:debug:notice'));
$form_body .= "" . elgg_echo('installation:debug');
$form_body .= elgg_view('input/dropdown', array(
'options_values' => $debug_options,
'name' => 'debug',
'value' => elgg_get_config('debug'),
));
$form_body .= '
';
// control new user registration
$options = array(
'options' => array(elgg_echo('installation:registration:label') => elgg_echo('installation:registration:label')),
'name' => 'allow_registration',
'value' => elgg_get_config('allow_registration') ? elgg_echo('installation:registration:label') : '',
);
$form_body .= '' . elgg_echo('installation:registration:description');
$form_body .= '
' .elgg_view('input/checkboxes', $options) . '
';
// control walled garden
$walled_garden = elgg_get_config(walled_garden);
$options = array(
'options' => array(elgg_echo('installation:walled_garden:label') => elgg_echo('installation:walled_garden:label')),
'name' => 'walled_garden',
'value' => $walled_garden ? elgg_echo('installation:walled_garden:label') : '',
);
$form_body .= '' . elgg_echo('installation:walled_garden:description');
$form_body .= '
' . elgg_view('input/checkboxes', $options) . '
';
$form_body .= "" . elgg_echo('installation:httpslogin') . "
";
$form_body .= elgg_view("input/checkboxes", array(
'options' => array(elgg_echo('installation:httpslogin:label') => elgg_echo('installation:httpslogin:label')),
'name' => 'https_login',
'value' => (elgg_get_config('https_login') ? elgg_echo('installation:httpslogin:label') : "")
)) . "
";
$form_body .= "" . elgg_echo('installation:disableapi') . "
";
$on = elgg_echo('installation:disableapi:label');
$disable_api = elgg_get_config('disable_api');
if ($disable_api) {
$on = (disable_api ? "" : elgg_echo('installation:disableapi:label'));
}
$form_body .= elgg_view("input/checkboxes", array(
'options' => array(elgg_echo('installation:disableapi:label') => elgg_echo('installation:disableapi:label')),
'name' => 'api',
'value' => $on,
));
$form_body .= "
";
$form_body .= elgg_view('input/hidden', array('name' => 'settings', 'value' => 'go'));
$form_body .= '';
echo $form_body;