suspend.html.php 887 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * The suspend view file of execution 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 execution
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. $space = common::checkNotCN() ? ' ' : '';
  12. modalHeader(set::title($lang->execution->suspend . $space . $lang->executionCommon));
  13. formPanel
  14. (
  15. set::submitBtnText($lang->execution->suspend . $space . $lang->executionCommon),
  16. formGroup
  17. (
  18. set::label($lang->comment),
  19. editor
  20. (
  21. set::name('comment'),
  22. set::rows('6')
  23. )
  24. )
  25. );
  26. hr();
  27. history();
  28. /* ====== Render page ====== */
  29. render();