import.html.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * The 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 '../../common/view/header.modal.html.php';?>
  14. <form method='post' id='ajaxForm' enctype='multipart/form-data' action='<?php echo $this->createLink($module, 'import');?>'>
  15. <table class='table table-form'>
  16. <tr>
  17. <th class='w-80px'><?php echo $lang->flow->importMode;?></th>
  18. <td class='w-200px'><?php echo html::select('mode', $lang->flow->importModeList, 'auto', "class='form-control chosen'");?></td>
  19. <td></td>
  20. </tr>
  21. <tr>
  22. <th></th>
  23. <td colspan='2'>
  24. <?php foreach($lang->flow->importModeList as $key => $label):?>
  25. <span class='tips text-important <?php echo $key;?>Mode'><?php echo $lang->flow->tips->importMode[$key];?></span>
  26. <?php endforeach;?>
  27. </td>
  28. </tr>
  29. <tr>
  30. <th><?php echo $lang->files;?></th>
  31. <td colspan='2'><?php echo html::file('files');?></td>
  32. </tr>
  33. <tr>
  34. <th></th>
  35. <td colspan='2' class='form-actions'><?php echo html::submitButton($lang->import);?></td>
  36. </tr>
  37. </table>
  38. </form>
  39. <?php include '../../common/view/footer.modal.html.php';?>