printkanban.html.php 862 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The close view file of execution 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 Shujie Tian<tianshujie@easycorp.ltd>
  7. * @package execution
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. if($_POST) die(include './preview.html.php');
  12. modalHeader(set::title($lang->printKanban->common));
  13. formPanel(set::submitBtnText($lang->printKanban->print), set::target('_blank'), formGroup
  14. (
  15. set::width('1/2'),
  16. set::label($lang->printKanban->content),
  17. radioList
  18. (
  19. set::name('content'),
  20. set::value('all'),
  21. set::inline(true),
  22. set::items($lang->printKanban->typeList)
  23. )
  24. ));