close.html.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The UI file of productplan module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 zhouxin <zhouxin@easycorp.ltd>
  8. * @package productplan
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. modalHeader();
  13. formPanel
  14. (
  15. set::submitBtnText($lang->productplan->closeAB),
  16. formGroup
  17. (
  18. set::width('1/3'),
  19. set::label($lang->productplan->closedReason),
  20. set::required(true),
  21. select
  22. (
  23. setID('closedReasonBox'),
  24. set::name('closedReason'),
  25. set::strong(false),
  26. set::items($lang->productplan->closedReasonList),
  27. set::required(true)
  28. )
  29. ),
  30. formGroup
  31. (
  32. set::label($lang->comment),
  33. set::name('comment'),
  34. set::control('editor'),
  35. set::rows(6)
  36. )
  37. );
  38. hr();
  39. history();
  40. render();