selectsource.html.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * The html template file of select source 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: selectsource.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->selectSource;?></strong>
  18. </div>
  19. </div>
  20. <form method='post' action='<?php echo inlink('setConfig');?>'>
  21. <table class='table bd-none table-form mgb-20'>
  22. <?php foreach($lang->convert->sourceList as $name => $versions):?>
  23. <tr>
  24. <th class='w-100px'><?php echo $name;?></th>
  25. <td><?php echo html::radio('source', $versions);?></td>
  26. </tr>
  27. <?php endforeach;?>
  28. </table>
  29. <div class='text-center'>
  30. <?php echo html::submitButton();?>
  31. </div>
  32. </form>
  33. </div>
  34. <?php include '../../common/view/footer.html.php';?>