import.html.php 772 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The import view file of holiday 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 Mengyi Liu <liumengyi@easycorp.ltd>
  7. * @package holiday
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. set::title($lang->holiday->importAction);
  12. set::condensed();
  13. dtable
  14. (
  15. set::cols($this->config->holiday->dtable->import->fieldList),
  16. set::data($holidays),
  17. set::height('auto'),
  18. setClass('mb-4')
  19. );
  20. div
  21. (
  22. setClass('canvas pt-4 sticky bottom-0'),
  23. style::margin('1px -8px 0'),
  24. form(h::formHidden('submit', ''))
  25. );