24 lines
955 B
PHP
24 lines
955 B
PHP
<?php
|
|
/**
|
|
* The html template file of setconfig method of convert module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (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 convert
|
|
* @version $Id$
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<form method='post' action='<?php echo inlink('checkconfig');?>'>
|
|
<table align='center' class='table-5 f-14px'>
|
|
<caption><?php echo $lang->convert->setting . $lang->colon . strtoupper($source);?></caption>
|
|
<?php echo $setting;?>
|
|
<tr>
|
|
<td colspan='2' class='a-center'><?php echo html::submitButton();?></td>
|
|
</tr>
|
|
</table>
|
|
<?php echo html::hidden('source', $source) . html::hidden('version', $version);?>
|
|
</form>
|
|
<?php include '../../common/view/footer.html.php';?>
|