close.html.php 649 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * The close view file of task 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 Shujie Tian<tianshujie@easycorp.ltd>
  8. * @package task
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. modalHeader();
  13. formPanel
  14. (
  15. formGroup
  16. (
  17. set::label($lang->comment),
  18. editor
  19. (
  20. set::name('comment'),
  21. set::rows('5')
  22. )
  23. )
  24. );
  25. hr();
  26. history();
  27. render();