assignto.html.php 1021 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * The assignTo view file of design 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 Shujie Tian<tianshujie@easycorp.ltd>
  7. * @package design
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. /* zin: Define the form in main content */
  12. modalHeader(set::title($lang->design->assignAction));
  13. formPanel
  14. (
  15. set::submitBtnText($lang->design->assignAction),
  16. formGroup
  17. (
  18. set::width("1/2"),
  19. set::name("assignedTo"),
  20. set::label($lang->design->assignedTo),
  21. set::value($design->assignedTo),
  22. set::items($users)
  23. ),
  24. formGroup
  25. (
  26. set::label($lang->comment),
  27. editor
  28. (
  29. set::name('comment'),
  30. set::rows('5')
  31. )
  32. )
  33. );
  34. hr();
  35. history();
  36. /* ====== Render page ====== */
  37. render();