| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php include mymps_tpl('inc_head');?>
- <style>
- .vbm td li{ margin:10px 0!important;}
- </style>
- <div id="<?=MPS_SOFTNAME?>" style="padding-bottom:0">
- <div class="mpstopic-category">
- <div class="panel-tab">
- <ul class="clearfix tab-list">
- <li><a href="config.php?part=imgcode" <?php if($part == 'imgcode'){?>class="current"<?php }?>>验证码控制</a></li>
- <li><a href="config.php?part=checkask" <?php if($part == 'checkask'){?>class="current"<?php }?>>验证问答设置</a></li>
- <li><a href="config.php?part=badwords" <?php if($part == 'badwords'){?>class="current"<?php }?>>过滤设置</a></li>
- <li><a href="config.php?part=commentsettings" <?php if($part == 'commentsettings'){?>class="current"<?php }?>>评论点评设置</a></li>
- </ul>
- </div>
- </div>
- </div>
- <form action="?config.php?" method="post">
- <input name="part" type="hidden" value="commentsettings">
- <input name="action" type="hidden" value="do_post">
- <div id="<?=MPS_SOFTNAME?>">
- <table border="0" cellspacing="0" cellpadding="0" class="vbm">
- <tr class="firstr">
- <td colspan="2" align="left">评论/点评设置</td>
- </tr>
- <tr bgcolor="#ffffff">
- <td align="left" class="altbg1" width="250">
- 信息评论/information
- </td>
- <td align="left" valign="top" style="line-height:25px;">
- <label for="information_0"><input type="radio" name="comment[information]" id="information_0" class="checkbox" value="0" <?php if($comment['information'] == 0) echo 'checked';?>>关闭评论</label><br />
- <label for="information_1"><input type="radio" name="comment[information]" id="information_1" class="checkbox" value="1" <?php if($comment['information'] == 1) echo 'checked';?>>开启匿名评论</label><br />
- <label for="information_2"><input name="comment[information]" type="radio" id="information_2" class="checkbox" value="2" <?php if($comment['information'] == 2) echo 'checked';?>>开启会员评论</label>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td align="left" class="altbg1">
- 新闻评论/news
- </td>
- <td align="left" valign="top" style="line-height:25px;">
- <label for="news_0"><input type="radio" name="comment[news]" id="news_0" class="checkbox" value="0" <?php if($comment['news'] == 0) echo 'checked';?>>关闭评论</label><br />
- <label for="news_1"><input type="radio" name="comment[news]" id="news_1" class="checkbox" value="1" <?php if($comment['news'] == 1) echo 'checked';?>>开启匿名评论</label><br />
- <label for="news_2"><input name="comment[news]" type="radio" id="news_2" class="checkbox" value="2" <?php if($comment['news'] == 2) echo 'checked';?>>开启会员评论</label>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td align="left" class="altbg1">
- 学校点评/school
- </td>
- <td align="left" valign="top" style="line-height:25px;">
- <label for="school_0"><input type="radio" name="comment[store]" id="school_0" class="checkbox" value="0" <?php if($comment['school'] == 0) echo 'checked';?>>关闭评论</label><br />
- <label for="school_1"><input type="radio" name="comment[store]" id="school_1" class="checkbox" value="1" <?php if($comment['school'] == 1) echo 'checked';?>>开启匿名点评</label><br />
- <label for="school_2"><input name="comment[store]" type="radio" id="school_2" class="checkbox" value="2" <?php if($comment['school'] == 2) echo 'checked';?>>开启会员点评</label>
- </td>
- </tr>
- </table>
- </div>
- <center>
- <input class="mymps large" name="<?=CURSCRIPT?>_submit" value="提 交" type="submit" >
- </center>
- </form>
- <?php mymps_admin_tpl_global_foot();?>
|