Files
EasySoft-ZenTaoPMS/module/message/view/browser.html.php
2019-09-05 17:07:15 +08:00

43 lines
1.6 KiB
PHP

<?php
/**
* The browser view file of message 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 message
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include './header.html.php';?>
<div id='mainContent' class='main-content'>
<div class='center-block mw-800px'>
<div class='main-header'>
<h2>
<?php echo $lang->message->browser;?>
<small class='text-muted'> <?php echo $lang->arrow . $lang->message->setting;?></small>
</h2>
</div>
<form class="main-form form-ajax" method='post' id='dataform'>
<table class='table table-form'>
<tr>
<th class='rowhead w-130px'><?php echo $lang->message->browserSetting->turnon; ?></th>
<td class='w-p25-f'><?php echo html::radio('turnon', $lang->message->browserSetting->turnonList, $browserConfig->turnon);?></td>
<td></td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->message->browserSetting->pollTime; ?></th>
<td><?php echo html::input('pollTime', $browserConfig->pollTime, "class='form-control'");?></td>
<td colspan='2'><?php echo $lang->message->browserSetting->pollTimePlaceholder?></td>
</tr>
<tr>
<td colspan='4' class='text-center'><?php echo html::submitButton();?></td>
</tr>
</table>
</form>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>