aboutsummaryrefslogtreecommitdiff
path: root/views/failsafe/settings/system.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-15 14:56:27 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-15 14:56:27 +0000
commit3c01acacc0e8a4794f2b925bda80632334fb3ab4 (patch)
tree59c0b5e1ddb0162f3b48abe71b15c39d0f0b3ca2 /views/failsafe/settings/system.php
parent5c236cb446b8c3344ed668096f37a136ab02ae0d (diff)
downloadelgg-3c01acacc0e8a4794f2b925bda80632334fb3ab4.tar.gz
elgg-3c01acacc0e8a4794f2b925bda80632334fb3ab4.tar.bz2
Closes #224: Install now using failsafe views. Please test from scratch (including blanking setup) and make sure it works for you!
git-svn-id: https://code.elgg.org/elgg/trunk@1940 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/failsafe/settings/system.php')
-rw-r--r--views/failsafe/settings/system.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/views/failsafe/settings/system.php b/views/failsafe/settings/system.php
new file mode 100644
index 000000000..55a515700
--- /dev/null
+++ b/views/failsafe/settings/system.php
@@ -0,0 +1,51 @@
+<?php
+
+ /**
+ * Elgg system settings form
+ * The form to change system settings
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ *
+ * @uses $vars['action'] If set, the place to forward the form to (usually action/systemsettings/save)
+ */
+
+ // Set action appropriately
+ if (!isset($vars['action'])) {
+ $action = $vars['url'] . "action/systemsettings/save";
+ } else {
+ $action = $vars['action'];
+ }
+
+ $form_body = "";
+ foreach(array('sitename','sitedescription', 'wwwroot','path','dataroot', 'view') as $field) {
+ $form_body .= "<p>";
+ $form_body .= elgg_echo($field) . "<br />";
+ $form_body .= elgg_view("input/text",array('internalname' => $field, 'value' => $vars['config']->$field));
+ $form_body .= "</p>";
+ }
+
+ $languages = get_installed_translations();
+ $form_body .= "<p>" . elgg_echo('language') . elgg_view("input/pulldown", array('internalname' => 'language', 'value' => $vars['config']->language, 'options_values' => $languages)) . "</p>";
+
+ $form_body .= "<p class=\"admin_debug\">" . elgg_echo('debug') . "<br />" .elgg_view("input/checkboxes", array('options' => array(elgg_echo('debug:label')), 'internalname' => 'debug', 'value' => ($vars['config']->debug ? elgg_echo('debug:label') : "") )) . "</p>";
+
+ $form_body .= "<p class=\"admin_usage\">" . elgg_echo('usage') . "<br />";
+ $on = elgg_echo('usage:label');
+
+ if (isset($CONFIG->ping_home))
+ $on = ($vars['config']->ping_home!='disabled' ? elgg_echo('usage:label') : "");
+ $form_body .= elgg_view("input/checkboxes", array('options' => array(elgg_echo('usage:label')), 'internalname' => 'usage', 'value' => $on ));
+ $form_body .= "</p>";
+
+ $form_body .= elgg_view('input/hidden', array('internalname' => 'settings', 'value' => 'go'));
+
+ $form_body .= elgg_view('input/submit', array('value' => elgg_echo("save")));
+
+ echo elgg_view('input/form', array('action' => $action, 'body' => $form_body));
+
+?> \ No newline at end of file