checkconfig.html.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * The html template file of check config 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: checkconfig.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->checkConfig;?></strong>
  18. <strong class='text-important'> <?php echo strtoupper($source);?></strong>
  19. </div>
  20. </div>
  21. <form method='post' action='<?php echo inlink('execute');?>'>
  22. <div class='alert'>
  23. <table align='center' class='table table-data table-borderless'>
  24. <?php echo $checkResult;?>
  25. </table>
  26. </div>
  27. <?php
  28. echo html::hidden('dbHost', $this->post->dbHost);
  29. echo html::hidden('dbPort', $this->post->dbPort);
  30. echo html::hidden('dbUser', $this->post->dbUser);
  31. echo html::hidden('dbPassword', $this->post->dbPassword);
  32. echo html::hidden('dbName', $this->post->dbName);
  33. echo html::hidden('dbCharset', $this->post->dbCharset);
  34. echo html::hidden('dbPrefix', $this->post->dbPrefix);
  35. echo html::hidden('installPath',$this->post->installPath);
  36. ?>
  37. </form>
  38. </div>
  39. <?php include '../../common/view/footer.html.php';?>