activate.html.php 842 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * The activate file of story 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 Qiyu Xie <xieqiyu@easycorp.ltd>
  8. * @package demand
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. modalHeader();
  13. formPanel
  14. (
  15. formGroup
  16. (
  17. set::label($lang->demand->assignedTo),
  18. set::width('1/3'),
  19. set::name('assignedTo'),
  20. set::value($demand->closedBy),
  21. set::items($users)
  22. ),
  23. formGroup
  24. (
  25. set::label($lang->comment),
  26. set::control('editor'),
  27. set::name('comment')
  28. ),
  29. set::submitBtnText($lang->demand->activate)
  30. );
  31. hr();
  32. history();