Files
EasySoft-ZenTaoPMS/module/search/view/savequery.html.php

30 lines
1.1 KiB
PHP

<?php
/**
* The save query view file of search module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package search
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<form target='hiddenwin' method='post' style='padding: 20px 5% 30px'>
<div class='input-group'>
<input name='title' id='title' class="form-control" autocomplete="off" type="text">
<?php if($onMenuBar == 'yes'):?>
<span class='input-group-addon'>
<label class="checkbox-inline">
<input type="checkbox" name="onMenuBar" value="1" id="onMenuBar" />
<?php echo $lang->search->onMenuBar?>
</label>
</span>
<?php endif;?>
<span class='input-group-btn'><?php echo html::submitButton() . html::hidden('module', $module)?></span>
</div>
</form>
<?php include '../../common/view/footer.lite.html.php';?>