activate.html.php 966 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * The UI file of story 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 Wang Yidong <yidong@easycorp.ltd>
  8. * @package story
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. jsVar('storyType', $story->type);
  13. modalHeader();
  14. formPanel(set::submitBtnText($lang->story->activate), formGroup
  15. (
  16. set::name('assignedTo'),
  17. set::label($lang->story->assignedTo),
  18. set::width('1/3'),
  19. set::value($story->closedBy),
  20. set::items($users)
  21. ), empty($story->twins) ? null : formGroup
  22. (
  23. set::width('full'),
  24. set::label(' '),
  25. icon('exclamation-sign'),
  26. $lang->story->assignSyncTip
  27. ), formGroup
  28. (
  29. set::label($lang->comment),
  30. editor
  31. (
  32. set::name('comment')
  33. )
  34. ));
  35. hr();
  36. history();
  37. render();