showimport.html.php 736 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * The show import view file of flow module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  6. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Mengyi Liu
  8. * @package flow
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. include 'header.html.php';
  13. $jsRoot = $this->app->getWebRoot() . "js/";
  14. h::import($jsRoot . 'md5.js');
  15. jsVar('moduleName', $flow->module);
  16. $items = $this->flowZen->buildBatchFormItems($fields);
  17. formBatchPanel(set::title($lang->flow->showImport), set::mode('edit'), set::items($items), set::data(array_values($dataList)));