aboutsummaryrefslogtreecommitdiff
path: root/views/default/settings/system.php
blob: 1d2d19c6771c6c1fcd50f2f94cf7c03d86629378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?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 action="<?php echo $action; ?>" method="post">
		
<?php

		foreach(array('sitename','wwwroot','path','dataroot') as $field) {

?>
		<p>
			<?php echo elgg_echo($field); ?><br />
			<?php 
				echo elgg_view("input/text",array('internalname' => $field, 'value' => $vars[$field])); 
			?>
		</p>
	
<?php

		}

?>
		<p>
			<input type="hidden" name="settings" value="go" />
			<input type="submit" value="<?php echo elgg_echo("save"); ?>" />
		</p>
	
	</form>