block.html.php 728 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The block view file of testtask 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 Tingting Dai <daitingting@easycorp.ltd>
  7. * @package testtask
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader();
  12. formPanel
  13. (
  14. setClass('testtask-block-form'),
  15. formGroup
  16. (
  17. set::label($lang->comment),
  18. editor
  19. (
  20. set::name('comment'),
  21. set::rows(6)
  22. )
  23. ),
  24. set::actions(array('submit'))
  25. );
  26. hr();
  27. history();
  28. render();