setconfig.html.php 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * The html template file of setconfig method of convert module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package convert
  9. * @version $Id: setconfig.html.php 4129 2013-01-18 01:58:14Z wwccss $
  10. */
  11. ?>
  12. <?php include '../../common/view/header.html.php';?>
  13. <div class='container mw-700px'>
  14. <div id='titlebar'>
  15. <div class='heading'>
  16. <span class='prefix'><?php echo html::icon('cloud-upload');?></span>
  17. <strong><?php echo $lang->convert->setting;?> <?php echo strtoupper($source) . ' ' . html::icon('cog');?></strong>
  18. </div>
  19. </div>
  20. <form class='form-condensed' method='post' action='<?php echo inlink('checkconfig');?>'>
  21. <table align='center' class='table table-form'>
  22. <?php echo $setting;?>
  23. <tr>
  24. <td></td><td><?php echo html::submitButton();?></td>
  25. </tr>
  26. </table>
  27. <?php echo html::hidden('source', $source) . html::hidden('version', $version);?>
  28. </form>
  29. </div>
  30. <?php include '../../common/view/footer.html.php';?>