⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config_user.tpl.php

📁 a short sketch about linux syntex lines.
💻 PHP
字号:
<html>
<head>
<title>系统后台</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="../../images/admin/public.css" rel="stylesheet" type="text/css" />
<link href="../../images/admin/style.css" rel="stylesheet" type="text/css" />
<script src="<?php echo $this->basedir;?>js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
     $("#ta tr").mouseover(function(){
      $(this).addClass("over");
     });
     $("#ta tr").mouseout(function(){
      $(this).removeClass("over");
     });
	 $("#ta tr:even").addClass("double");
});
</script>
<body>
<table border="0" cellspacing="0" cellpadding="0" width="100%" id="ta">
  <tr align="center" valign="top">
    <td width="*" align="center" valign="top"><!-- ######### begin ######### -->
      <div class="Block">
        <div class="BlockBar">系统全局设置</div>
        <table cellspacing="1" cellpadding="4" class="tab">
          <form id="form1" name="form1" method="post" action="">
            <tr class="row">
              <td width="107" class="align-right">用户注册:</td>
              <td width="739" class="row"><label></label>              <input name="register" type="radio" class="radio" value="1" <?php if((int)$this->config['register'] == 1) {echo 'checked="checked"';} ?> />
                开放注册
                  <input name="register" type="radio" class="radio" value="0" <?php if((int)$this->config['register'] == 0) {echo 'checked="checked"';} ?> />
                  禁止注册</td>
            </tr>
            <tr class="row">
              <td class="align-right">初始等级:</td>
              <td class="row">
			  <select name="usergroup" id="usergroup" style="width:100px;">
			  	<option value="0">游客</option>
				<?php echo $this->groupOption;?>
                </select></td>
            </tr>

            <tr class="row">
              <td class="align-right">消费类型:</td>
              <td class="row"><select name="usertype" id="usertype" style="width:100px;">
                <option value="0" <?php if((int)$this->config['usertype'] == 0) echo 'selected';?> >扣点</option>
                <option value="1" <?php if((int)$this->config['usertype'] == 1) echo 'selected';?> >包月</option>
              </select>              </td>
            </tr>
            <tr class="row">
              <td class="align-right">初始影币:</td>
              <td class="row"><input name="point" type="text" id="point" value="<?php echo (int)$this->config['point'];?>" />
                *必须是数字</td>
            </tr>
            <tr class="row">
              <td class="align-right">初始送天:</td>
              <td class="row"><input name="days" type="text" id="days" value="<?php echo $this->config['days'];?>" />
                *您可以填写送的天数也可以填写账户具体到期的日期例如:3或2008-10-25</td>
            </tr>
            <tr class="row">
              <td class="align-right">&nbsp;</td>
              <td class="row"><input name="" type="submit" class="btn" value="保存配置" /></td>
            </tr>
          </form>
        </table>
      </div>
      <div id="App-Version-Prompt" style="display:none;">
        <div class="space"></div>
        <div class="Block">
          <div class="BlockBar">版本更新信息</div>
          <div class="BlockContent" id="App-Version-Prompt-Body" style="padding:20px 5px 20px 5px; text-align:center; background:#FFFFCC;">loading...</div>
        </div>
      </div></td>
  </tr>
</table>
<?php
echo $this->render('copyright');
?>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -