complete.tpl 2.14 KB
<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']; ?>'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</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']; ?>'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</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']; ?>'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</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>