| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php include mymps_tpl('inc_head');?>
- <style>
- label{float:left; width:180px}
- </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="?do=group" <?php if($part == 'list'){?>class="current"<?php }?>>会员组类型</a></li>
- <li><a href="?do=group&part=add" <?php if($part == 'add'){?>class="current"<?php }?>>增加会员组</a></li>
- </ul>
- </div>
- </div>
- </div>
- <div id="<?=MPS_SOFTNAME?>">
- <table border="0" cellspacing="0" cellpadding="0" class="vbm">
- <form name="form1" action="member.php?do=group&part=insert" onSubmit="return checkSubmit();" method="post">
- <tr class="firstr">
- <td colspan="4">会员用户组基本设置</td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td width="160" height="30">用户组名称:</td>
- <td ><input name="levelname" type="text" class="text" size="16" style="width:200px;" value=""/></td>
- </tr>
- <tr class="firstr">
- <td colspan="4">用户组权限设置</td>
- </tr>
- <?php echo mymps_member_purview();?>
- <tr class="firstr">
- <td colspan="4">其它设置</td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">默认拥有金币数</td>
- <td ><input name="money_own" type="text" class="txt" value=""/> <img src="../member/images/mymps_icon_incomes.gif" align="absmiddle"> </td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">可选择的会员模板<br />
- <font color="#006acd">(只对商家会员有效)</font></td>
- <td>
- <select name="allow_tpl[]" multiple="multiple" style="width:100px; height:80px">
- <?=get_memtpl_options()?>
- </select>
- </td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">每天至多发布信息</td>
- <td ><input name="perday_maxpost" type="text" class="text" size="16" style="width:200px;" value="<?=$group['perday_maxpost']?>"/></td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">分类信息发布总数上限</td>
- <td ><input name="info_maxpost" type="text" class="text" size="16" style="width:200px;" value="<?=$group['info_maxpost']?>"/></td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">机构文章发布总数上限</td>
- <td ><input name="article_maxpost" type="text" class="text" size="16" style="width:200px;" value="<?=$group['article_maxpost']?>"/></td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">机构相片上传总数上限</td>
- <td ><input name="album_maxpost" type="text" class="text" size="16" style="width:200px;" value="<?=$group['album_maxpost']?>"/></td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">升级到当前会员组扣除金币<br /><font color="red">(您至少要选择启用一个升级期限)</font></td>
- <td >
- <?php foreach(array('month'=>'一个月','halfyear'=>'半年','year'=>'一年','forever'=>'永久') as $k => $v){?>
- <div style="width:100%; margin:5px auto; line-height:25px">
- <input name="settings[ifopen][<?php echo $k; ?>]" type="checkbox" class="checkbox" value="1" checked="checked">启用 <img src="../member/images/mymps_icon_incomes.gif" align="absmiddle"> <input name="settings[money][<?php echo $k; ?>]" class="txt" value=""> <?php echo $v; ?>
- </div>
- <?php }?>
- </td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="30">会员的联系方式显示<br />
- <font color="#006acd">(只对商家会员有效)</font></td>
- <td><select name="member_contact">
- <option value="0">显示为网站的联系方式</option>
- <option value="1">显示为会员自己的联系方式</option>
- </select></td>
- </tr>
- <tr bgcolor="#f5fbff">
- <td height="60"> </td>
- <td>
- <input type="submit" name="Submit" class="mymps mini" value="确认提交"/>
- <input type="button" onClick=history.back() class="mymps mini" value="返 回"> </td>
- </tr>
- </form>
- </table>
- </div>
- <?php mymps_admin_tpl_global_foot();?>
|