complete.tpl
2.14 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
56
57
58
59
60
61
62
63
64
<form action="index.php?step_name=complete" method="post">
<p class="title">Migration Completed</p>
<p class="description">This allows you to check that your KnowledgeTree configuration is set
up correctly. You can run this at any time after configuration to check
that things are still set up correctly.</p>
<?php
if($errors || $warnings){
echo '<div>'
. '<a href="http://wiki.knowledgetree.com/Web_Based_Migrater#Post_Migrate" target="_blank">'
. 'Click Here for help on overcoming post migrate issues</a></div><br/>';
}
?>
<div id="step_content_complete" class="step">
<!-- SQL -->
<table>
<tr>
<td> <span class='<?php echo $sql['class']; ?>'> </span> </td>
<td style="width:20%;"> <?php echo $sql['name']; ?> </td>
<td style="width:75%;"> <?php echo $sql['msg']; ?> </td>
<tr>
<!-- Services -->
<?php
if(isset($step_vars['services'])) {
foreach ($step_vars['services'] as $ser){
?>
<tr>
<td> <span class='<?php echo $ser['class']; ?>'> </span> </td>
<td style="width:20%;"> <?php echo $ser['name']; ?> </td>
<td style="width:75%;"> <?php echo $ser['msg']; ?> </td>
<?php if ($ser['class'] != 'tick') {
?>
<td><a href="javascript:this.location.reload();" class="refresh">Refresh</a></td>
<?php
} ?>
</tr>
<?php
}
}
?>
<!-- Paths -->
<?php
if(isset($step_vars['paths'])) {
foreach ($step_vars['paths'] as $path){
?>
<tr>
<td> <span class='<?php echo $path['class']; ?>'> </span> </td>
<td style="width:20%;"> <?php echo $path['name']; ?> </td>
<td style="width:75%;"> <?php echo $path['msg']; ?> </td>
<?php if ($path['class'] != 'tick') {
?>
<td><a href="javascript:this.location.reload();" class="refresh">Refresh</a></td>
<?php
} ?>
</tr>
<?php
}
}
?>
</table>
</div>
<input class="button_next" type="submit" value="Back To Installer" name="BInstall"/>
</form>