close.html.php 961 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * The close view file of roadmap module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2026 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Hao Sun <sunhao@chandao.com>
  8. * @package roadmap
  9. * @version $Id: editrelation.html.php 935 2024-08-08 15:14:24Z $
  10. * @link https://www.zentao.net
  11. */
  12. namespace zin;
  13. formPanel
  14. (
  15. to::heading
  16. (
  17. entityLabel
  18. (
  19. set::entityID($roadmap->id),
  20. set::text($roadmap->name)
  21. )
  22. ),
  23. formGroup
  24. (
  25. set::label($lang->roadmap->closedReason),
  26. set::name('closedReason'),
  27. set::items($lang->roadmap->reasonList),
  28. set::width('1/3'),
  29. set::required()
  30. ),
  31. formGroup
  32. (
  33. set::label($lang->comment),
  34. set::control('editor'),
  35. set::name('comment')
  36. )
  37. );