syncproduct.html.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * The syncproduct file of feedback module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2022 禅道软件(青岛)有限公司(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 Gang Zeng <zenggang@easycorp.ltd>
  8. * @package feedback
  9. * @link https://www.zentao.net
  10. */
  11. ?>
  12. <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
  13. <?php js::set('browseLink', $browseLink);?>
  14. <?php js::set('syncConfirm', $lang->feedback->syncConfirm);?>
  15. <?php js::set('feedbackCount', $feedbackCount);?>
  16. <?php js::set('feedbackModuleCount', $feedbackModuleCount);?>
  17. <div id='mainContent' class='main-content'>
  18. <div class='main-header'>
  19. <h2><?php echo $lang->feedback->syncProduct;?></h2>
  20. </div>
  21. <form class='form-indicator main-form form-ajax' method='post' enctype='multipart/form-data' id='dataform'>
  22. <table class='table table-form'>
  23. <tr id='ownerBox'>
  24. <th><?php echo $lang->feedback->syncProductTo;?></th>
  25. <td><?php echo html::select('syncLevel', $lang->feedback->syncLeveList, '', "class='form-control picker-select'");?></td>
  26. </tr>
  27. <tr>
  28. <th></th>
  29. <td><i class="icon icon-exclamation-sign text-primary"></i> <?php echo $lang->feedback->syncWarning;?></td>
  30. </tr>
  31. <tr>
  32. <td colspan='2' class='text-center form-actions'>
  33. <?php echo html::hidden('needMerge', 'no');?>
  34. <?php echo html::submitButton($lang->confirm);?>
  35. </td>
  36. </tr>
  37. </table>
  38. </form>
  39. </div>
  40. <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>