Files
EasySoft-ZenTaoPMS/module/upgrade/view/execute.html.php
2013-07-17 09:39:29 +08:00

38 lines
1.1 KiB
PHP

<?php
/**
* The html template file of execute method of upgrade module of ZenTaoPMS.
*
* @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package upgrade
* @version $Id: execute.html.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<table align='center' class='table-5 f-14px'>
<caption><?php echo $lang->upgrade->$result;?></caption>
<tr>
<td>
<?php
if($result == 'fail')
{
echo nl2br(join('\n', $errors));
}
else
{
echo "<p id='tohome'></p>";
}
?>
</td>
</tr>
<tr>
<td id='checkExtension'><?php if($result == 'success') echo $lang->upgrade->checkExtension?></td>
</tr>
</table>
<script>
var tohome = <?php echo json_encode(html::linkButton($lang->upgrade->tohome, 'index.php'))?>;
var result = '<?php echo $result?>';
</script>
<?php include '../../common/view/footer.lite.html.php';?>