showimport.html.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * The show import view file of flow module of ZDOO.
  4. *
  5. * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Gang Liu <liugang@cnezsoft.com>
  8. * @package flow
  9. * @version $Id$
  10. * @link http://www.zdoo.com
  11. */
  12. ?>
  13. <?php include 'header.html.php';?>
  14. <?php include '../../common/view/picker.html.php';?>
  15. <?php js::import($jsRoot . 'md5.js');?>
  16. <?php js::set('moduleName', $flow->module);?>
  17. <div class='panel'>
  18. <div class='panel-heading'>
  19. <strong><?php echo $lang->flow->showImport;?></strong>
  20. </div>
  21. <div class='panel-body'>
  22. <form id='ajaxForm' method='post'>
  23. <div class="table-responsive">
  24. <?php if($mode == 'template') include 'templateimport.html.php';?>
  25. <?php if($mode == 'auto') include 'autoimport.html.php';?>
  26. </div>
  27. <div class='form-actions text-center'>
  28. <?php echo html::submitButton($lang->import);?>
  29. <?php echo html::backButton();?>
  30. </div>
  31. </form>
  32. </div>
  33. </div>
  34. <?php include 'footer.html.php';?>