buildindex.html.php 722 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The build index view file of search 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 Gang Liu <liugang@easycorp.ltd>
  7. * @package search
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. panel
  12. (
  13. set::title($lang->search->index),
  14. set::titleIcon('refresh'),
  15. div
  16. (
  17. setID('buildResult'),
  18. button
  19. (
  20. on::click('buildIndex'),
  21. setClass('btn primary'),
  22. $lang->search->buildIndex
  23. )
  24. )
  25. );
  26. render();