activate.html.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * The activate view file of project 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 project
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader();
  12. formPanel
  13. (
  14. formGroup
  15. (
  16. set::width('1/2'),
  17. set::label($lang->execution->beginAndEnd),
  18. inputGroup
  19. (
  20. datePicker
  21. (
  22. set::name('begin'),
  23. set::value($newBegin)
  24. ),
  25. $lang->execution->to,
  26. datePicker
  27. (
  28. set::name('end'),
  29. set::value($newEnd)
  30. )
  31. )
  32. ),
  33. formGroup
  34. (
  35. set::label($lang->comment),
  36. editor
  37. (
  38. set::name('comment'),
  39. set::rows('6')
  40. )
  41. )
  42. );
  43. hr();
  44. history();