import.html.php 894 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * The import view file of workflowfield 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 workflowfield
  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='importForm' enctype='multipart/form-data' action='<?php echo inlink('import', "module=$module&type=$type");?>'>
  15. <table class='table table-form'>
  16. <tr>
  17. <td><?php echo html::file('files');?></td>
  18. </tr>
  19. <tr>
  20. <td class='form-actions'><?php echo html::submitButton($lang->import);?></td>
  21. </tr>
  22. </table>
  23. </form>
  24. <?php include '../../common/view/footer.modal.html.php';?>