123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php defined('IN_ADMIN') or exit('No permission resources.');?>
- <?php include $this->admin_tpl('header', 'admin');?>
- <div class="pad-lr-10">
- <div class="table-list">
- <div class="common-form">
- <input type="hidden" name="info[userid]" value="<?php echo $memberinfo['userid']?>"></input>
- <input type="hidden" name="info[username]" value="<?php echo $memberinfo['username']?>"></input>
- <fieldset>
- <legend><?php echo L('basic_configuration')?></legend>
- <table width="100%" class="table_form">
- <tr>
- <td width="120"><?php echo L('username')?></td>
- <td><?php echo $memberinfo['username']?><?php if($memberinfo['islock']) {?><img title="<?php echo L('lock')?>" src="<?php echo IMG_PATH?>icon/icon_padlock.gif"><?php }?><?php if($memberinfo['vip']) {?><img title="<?php echo L('vip')?>" src="<?php echo IMG_PATH?>icon/vip.gif"><?php }?></td>
- </tr>
- <tr>
- <td><?php echo L('avatar')?></td>
- <td><img src="<?php echo $memberinfo['avatar']?>" onerror="this.src='<?php echo IMG_PATH?>member/nophoto.gif'" height=90 width=90></td>
- </tr>
- <tr>
- <td><?php echo L('nickname')?></td>
- <td><?php echo $memberinfo['nickname']?></td>
- </tr>
- <tr>
- <td><?php echo L('email')?></td>
- <td>
- <?php echo $memberinfo['email']?>
- </td>
- </tr>
- <tr>
- <td><?php echo L('mp')?></td>
- <td>
- <?php echo $memberinfo['mobile'];?>
- </td>
- </tr>
- <tr>
- <td><?php echo L('member_group')?></td>
- <td>
- <?php echo $grouplist[$memberinfo['groupid']]['name'];?>
- </td>
- </tr>
- <tr>
- <td><?php echo L('member_model')?></td>
- <td>
- <?php echo $modellist[$modelid]['name'];?>
- </td>
- </tr>
- <tr>
- <td><?php echo L('in_site_name')?></td>
- <td>
- <?php echo $sitelist[$memberinfo['siteid']]['name'];?>
- </td>
- </tr>
-
- <?php if($memberinfo['vip']) {?>
- <tr>
- <td><?php echo L('vip').L('overduedate')?></td>
- <td>
- <?php echo date('Y-m-d H:i:s',$memberinfo['overduedate']);?>
- </td>
- </tr>
- <?php }?>
-
- </table>
- </fieldset>
- <div class="bk15"></div>
- <fieldset>
- <legend><?php echo L('more_configuration')?></legend>
- <table width="100%" class="table_form">
- <?php foreach($member_fieldinfo as $k=>$v) {?>
- <tr>
- <td width="120"><?php echo $k?></td>
- <td><?php echo $v?></td>
- </tr>
- <?php }?>
- </table>
- </fieldset>
- </div>
- <div class="bk15"></div>
- <input type="button" class="dialog" name="dosubmit" id="dosubmit" onclick="window.top.art.dialog({id:'modelinfo'}).close();"/>
- </div>
- </div>
- </body>
- </html>
|