configuration_confirm.tpl
1.28 KB
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
51
52
53
54
55
<h1>System Configuration</h1>
<h3>Server Settings</h3>
<table>
<tr>
<td><b>Host: </b></td>
<td><?php echo $server['host']; ?></td>
</tr>
<tr>
<td><b>Port: </b></td>
<td><?php echo $server['port']; ?></td>
</tr>
<tr>
<td><b>Root Url: </b></td>
<td><?php echo $server['root_url']; ?></td>
</tr>
<tr>
<td><b>File System Root: </b></td>
<td><?php echo $server['file_system_root']; ?></td>
</tr>
<tr>
<td><b>SSL Enabled: </b></td>
<td><?php echo $server['ssl_enabled']; ?></td>
</tr>
</table>
<br />
<h3>Paths and Permissions</h3>
<table>
<?php
foreach ($paths as $key => $path){
$row = '<tr>';
$row .= "<td><div class='{$path['class']}'></div></td>\n";
$row .= "<td><b>{$path['name']}:</b></td>\n";
$row .= "<td>{$path['path']}</td>\n";
$row .= "</tr>\n";
echo $row;
}
?>
</table>
<form action="index.php?step_name=configuration" method="post">
<div class="buttons">
<!--<input type="submit" onclick="history.back();" name="Back" value="Back"/>
<input type="submit" name="Back" value="Back"/>-->
<input type="submit" name="Edit" value="Edit"/>
<input type="submit" name="Confirm" value="Confirm"/>
</div>
</form>