savequery.html.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * The save query view file of search module 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 Yidong Wang <yidong@cnezsoft.com>
  8. * @package search
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/header.lite.html.php';?>
  14. <form target='hiddenwin' method='post' class='no-stash' style='padding: 15px 70px 15px 15px'>
  15. <div class='input-group'>
  16. <input name='title' id='title' class="form-control" autocomplete="off" type="text">
  17. <span class='input-group-addon'>
  18. <div class="checkbox-primary">
  19. <input type="checkbox" name="common" value="1" id="common" />
  20. <label for="common"><?php echo $lang->search->setCommon;?></label>
  21. </div>
  22. </span>
  23. <?php if($onMenuBar == 'yes'):?>
  24. <span class='input-group-addon'>
  25. <div class="checkbox-primary">
  26. <input type="checkbox" name="onMenuBar" value="1" id="onMenuBar" />
  27. <label for="onMenuBar"><?php echo $lang->search->onMenuBar?></label>
  28. </div>
  29. </span>
  30. <?php endif;?>
  31. <span class='input-group-btn'><?php echo html::submitButton('', '', 'btn btn-primary') . html::hidden('module', $module)?></span>
  32. </div>
  33. </form>
  34. <?php include '../../common/view/footer.lite.html.php';?>