activate.html.php 770 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * The activate view file of charter module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(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 Fangzhou Hu<hufangzhou@easycorp.ltd>
  8. * @package charter
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. jsVar('vision', $config->vision);
  13. modalHeader(set::title($lang->charter->activate));
  14. formPanel
  15. (
  16. set::submitBtnText($lang->activate),
  17. formGroup
  18. (
  19. set::label($lang->comment),
  20. editor
  21. (
  22. set::name('comment'),
  23. set::rows('5')
  24. )
  25. )
  26. );
  27. hr();
  28. history();
  29. render();