edit.html.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * The edit file of auditcl 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 Sun Guangming<sunguangming@easycorp.ltd>
  8. * @package auditcl
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. jsVar('groupID', $auditcl->workflowGroup);
  13. formPanel
  14. (
  15. set::layout('horz'),
  16. set::title($lang->auditcl->edit),
  17. formGroup
  18. (
  19. on::change('changeProcess'),
  20. set::label($lang->auditcl->process),
  21. set::width('1/2'),
  22. set::name('process'),
  23. set::items($processes),
  24. set::value($auditcl->process)
  25. ),
  26. formGroup
  27. (
  28. set::label($lang->auditcl->activity),
  29. set::width('1/2'),
  30. set::name('objectID'),
  31. set::items($activities),
  32. set::value($auditcl->activity)
  33. ),
  34. formGroup
  35. (
  36. set::label($lang->auditcl->title),
  37. set::width('1/2'),
  38. set::name('title'),
  39. set::value($auditcl->title)
  40. )
  41. );