Files
EasySoft-ZenTaoPMS/module/upgrade/view/selectversion.html.php
2015-11-05 14:09:52 +08:00

40 lines
1.6 KiB
PHP

<?php
/**
* The html template file of select version method of upgrade module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package upgrade
* @version $Id: selectversion.html.php 4129 2013-01-18 01:58:14Z wwccss $
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<?php include '../../common/view/chosen.html.php';?>
<div class='container'>
<form class='form-condensed' method='post' action='<?php echo inlink('confirm');?>'>
<div class='modal-dialog'>
<div class='modal-header'>
<strong><?php echo $lang->upgrade->selectVersion;?></strong>
</div>
<div class='modal-body'>
<table class='table table-form'>
<tr>
<th class='w-100px'><?php echo $lang->upgrade->fromVersion;?></th>
<td><?php echo html::select('fromVersion', $lang->upgrade->fromVersions, $version, "class='form-control chosen'");?></td>
<td class='text-danger'><?php echo $lang->upgrade->noteVersion;?></td>
</tr>
<tr>
<th><?php echo $lang->upgrade->toVersion;?></th>
<td><?php echo $config->version;?></td>
</tr>
</table>
</div>
<div class='modal-footer'>
<?php echo html::submitButton($lang->upgrade->common);?>
</div>
</div>
</form>
</div>
<?php include '../../common/view/footer.lite.html.php';?>