start.html.php 909 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * The start 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->project->realBegan),
  18. set::name('realBegan'),
  19. set::control('date'),
  20. set::value(helper::today())
  21. ),
  22. formGroup
  23. (
  24. set::label($lang->comment),
  25. editor
  26. (
  27. set::name('comment'),
  28. set::rows('6')
  29. )
  30. )
  31. );
  32. hr();
  33. history(set::objectID($project->id));
  34. /* ====== Render page ====== */
  35. render();