close.html.php 863 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The close view file of issue 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 issue
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader(set::title($lang->issue->close));
  12. formPanel
  13. (
  14. set::id('closePanel'),
  15. set::submitBtnText($lang->issue->close),
  16. formGroup(set::width('1/3'), set::label($lang->issue->closedDate), set::name('closedDate'), set::control('datePicker'), set::value(date('Y-m-d'))),
  17. formGroup
  18. (
  19. set::label($lang->comment),
  20. set::name('comment'),
  21. set::control('editor'),
  22. set::rows(6)
  23. )
  24. );