changestatus.html.php 719 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The changestatus view file of host 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 Ke Zhao<zhaoke@easycorp.ltd>
  8. * @package host
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. formPanel
  13. (
  14. set::id('hostChangeStatusForm'),
  15. set::title($this->lang->host->reason),
  16. formRow
  17. (
  18. formGroup
  19. (
  20. set::name('reason'),
  21. set::label(' '),
  22. set::control('editor'),
  23. set::required(true)
  24. )
  25. )
  26. );