close.html.php 610 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The close view file of bug 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 Yuting Wang <wangyuting@easycorp.ltd>
  7. * @package bug
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader();
  12. formPanel
  13. (
  14. formGroup
  15. (
  16. set::label($lang->comment),
  17. set::name('comment'),
  18. set::control('editor')
  19. )
  20. );
  21. hr();
  22. history();
  23. render();