gantt.html.php 862 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * The view file of fullcalendar module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license business(商业软件)
  7. * @author Yangyang Shi <shiyangyang@cnezsoft.com>
  8. * @package fullcalendar
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. css::import($jsRoot . 'dhtmlxgantt/min.css');
  13. js::import($jsRoot . 'dhtmlxgantt/min.js');
  14. $currentLang = $app->getClientLang();
  15. if($currentLang != 'en') js::import($jsRoot . 'dhtmlxgantt/lang/' . $currentLang . '.js');
  16. ?>
  17. <style>
  18. .gantt_message_area{display:none;}
  19. #ganttPris:hover{background:unset;color:unset;cursor: unset;}
  20. </style>
  21. <script>
  22. gantt.plugins({
  23. marker: true,
  24. critical_path: true,
  25. fullscreen: true,
  26. tooltip: true,
  27. click_drag: true
  28. });
  29. </script>