finishstep.html.php 843 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The finishstep view file of deploy module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Yang Li <liyang@easycorp.ltd>
  7. * @package deploy
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader
  12. (
  13. set::title($lang->deploy->finishStep)
  14. );
  15. formPanel
  16. (
  17. formGroup
  18. (
  19. set::width('1/2'),
  20. set::label($lang->deploy->assignedTo),
  21. picker(set::name('assignedTo'), set::items($users), set::value($step->assignedTo))
  22. ),
  23. formGroup
  24. (
  25. set::label($lang->comment),
  26. set::control('editor'),
  27. set::name('comment'),
  28. set::row(10)
  29. )
  30. );