view.html.php 710 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * The browse view file of screen 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 screen
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. h::iframe
  12. (
  13. set('width', '100%'),
  14. set('height', '100%'),
  15. set('scrolling', 'no'),
  16. set('frameborder', '0'),
  17. set('marginheight', '0'),
  18. set('src', $this->inlink('viewOld', "screenID={$screenID}&year={$year}&month={$month}&dept={$dept}&account={$account}"))
  19. );