start.html.php 914 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * The trash view file of action 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 Wang XuePeng <wangxuepeng@easycorp.ltd>
  7. * @package tutorial
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. setID('startModal');
  12. div
  13. (
  14. setID('start'),
  15. setClass('bg-primary'),
  16. div
  17. (
  18. setClass('start-icon'),
  19. icon('certificate icon-certificate-empty icon1 spin'),
  20. icon('flag icon2')
  21. ),
  22. h1($lang->tutorial->common),
  23. p($lang->tutorial->desc),
  24. a(
  25. setClass('btn w-28 canvas size-lg text-primary'),
  26. set::href($this->inlink('index')),
  27. set::target('_top'),
  28. span($lang->tutorial->start)
  29. )
  30. );
  31. render();