showtableprogress.html.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * The showCreateTable view file of install 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 Yidong Wang <xx@easycorp.ltd>
  7. * @package install
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. set::zui(true);
  12. jsVar('dbFinish', $lang->install->dbFinish);
  13. div
  14. (
  15. setID('main'),
  16. setClass('flex justify-center'),
  17. div
  18. (
  19. setID('mainContent'),
  20. setClass('px-1 mt-2 w-full max-w-7xl'),
  21. panel
  22. (
  23. setClass('py-2'),
  24. set::title($lang->install->dbProgress),
  25. form
  26. (
  27. h::pre(setID('progress'), setClass('progress block overflow-hidden h-96')),
  28. contactUs(),
  29. set::actions(array(array('disabled' => true, 'text' => $lang->install->next, 'class' => 'primary next')))
  30. )
  31. )
  32. )
  33. );
  34. render('pagebase');