importtolib.html.php 711 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The import to lib view file of testcase 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 Yuting Wang <wangyuting@easycorp.ltd>
  7. * @package testcase
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader(set::title($title));
  12. formPanel
  13. (
  14. formGroup
  15. (
  16. set::label($lang->testcase->selectLibAB),
  17. set::required(true),
  18. picker
  19. (
  20. set::name('lib'),
  21. set::items($libraries)
  22. )
  23. )
  24. );
  25. render();