execute.html.php 1.0 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The html template file of execute 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: execute.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->common;?></strong>
  18. <small class='text-muted'><?php echo $lang->convert->execute;?> </small>
  19. <strong class='text-important'> <?php echo strtoupper($source);?></strong>
  20. </div>
  21. </div>
  22. <div class='alert'>
  23. <?php echo $executeResult;?>
  24. </div>
  25. </div>
  26. <?php include '../../common/view/footer.html.php';?>