export.html.php 784 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * The export view file of task module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Congzhi Chen<congzhi@cnezsoft.com>
  8. * @package task
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'file/view/export.html.php';?>
  14. <div id='pivotBox' class='hidden'>
  15. <?php echo html::hidden('pivot');?>
  16. </div>
  17. <script>
  18. $(document).ready(function()
  19. {
  20. $('#fileName').closest('td').after($('#pivotBox').html());
  21. $('#pivotBox').empty();
  22. $('#pivot').val(JSON.stringify(parent.pivot));
  23. });
  24. </script>