close.html.php 876 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * The close view file of product 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 product
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader();
  12. formPanel
  13. (
  14. set::submitBtnText($lang->product->closeAction),
  15. formGroup
  16. (
  17. set::label($lang->comment),
  18. editor
  19. (
  20. set::name('comment'),
  21. set::rows('6')
  22. ),
  23. input
  24. (
  25. set::className('hidden'),
  26. set::name('status'),
  27. set::value('closed')
  28. )
  29. )
  30. );
  31. hr();
  32. history();
  33. /* ====== Render page ====== */
  34. render();