batchcreate.html.php 652 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * The batch create view file of flow module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  5. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  6. * @author Gang Liu <liugang@easycorp.ltd>
  7. * @package flow
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. include 'header.html.php';
  12. $items = $this->flowZen->buildBatchFormItems($fields);
  13. formBatchPanel
  14. (
  15. set::mode('add'),
  16. set::title($title),
  17. set::url($actionURL),
  18. set::items($items)
  19. );
  20. html($formulaScript);