ajaxcustom.html.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The setting file of programplan gantt of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Hucheng Tang <liumengyi@easycorp.ltd>
  8. * @package programplan
  9. * @version $Id: ajaxcustom.html.php 935 2022-10-25 16:15:24Z $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/header.html.php';?>
  14. <?php include '../../common/view/kindeditor.html.php';?>
  15. <style>
  16. .checkbox-primary{display: inline-block;width:100px;}
  17. </style>
  18. <div id='mainContent' class='main-content'>
  19. <div class='main-header'>
  20. <h2><?php echo $lang->programplan->settingGantt;?></h2>
  21. </div>
  22. <form class='form-indicator main-form form-ajax' method='post' enctype='multipart/form-data' id='dataform'>
  23. <table class='table table-form'>
  24. <tr>
  25. <th><?php echo $lang->execution->gantt->format;?></th>
  26. <td><?php echo html::radio('zooming', $lang->execution->gantt->zooming, $zooming ? $zooming : 'day');?></td>
  27. </tr>
  28. <tr>
  29. <th><?php echo $lang->programplan->viewSetting;?></th>
  30. <td><?php echo html::checkbox('stageCustom', $lang->programplan->stageCustom, $stageCustom);?></td>
  31. </tr>
  32. <tr>
  33. <th><?php echo $lang->customField;?></th>
  34. <td><?php echo html::checkbox('ganttFields', $customFields, $showFields);?></td>
  35. </tr>
  36. <tr>
  37. <td colspan='2' class='text-center form-actions'>
  38. <?php echo html::submitButton();?>
  39. </td>
  40. </tr>
  41. </table>
  42. </form>
  43. </div>
  44. <?php include '../../common/view/footer.html.php';?>