www.gusucode.com > GTCMS好文本内容管理系统 v1.04源码程序 > gtcms/View/admin_config.php

    <?php defined('GTPHP_PATH') || exit('Access Denied');?><?php include(__View__.'admin_header.php');?>
   <div id="documenter_content">
    <section id="methods">

      <h4 class="blockTitle">系统功能菜单:</h4><hr>
      <!-- buttons start -->
      <p><a href="index.php?c=log&a=dellog" onclick="return confirm('确定将三天前的日志记录全部删除?')" class="buttonWrapper buttonRed">清除三天前的日志</a> | <a href="index.php?c=diyconfig&a=index" class="buttonWrapper buttonGreen">自定义配置项</a> | <a href="index.php?c=config&a=info" class="buttonWrapper buttonBlue">自定义信息</a> |  <a href="index.php?c=diyinfo&a=index" class="buttonWrapper buttonPink">自定义信息项管理</a> |  <a href="index.php?c=class&a=navclass" class="buttonWrapper buttonPink">导航栏分类管理</a> </p>


<hr>
      <?php
foreach($datas as $k => $data)
{
?>
      <!-- config form starts -->
      <form action="index.php?c=config&a=configsave" method="post" class="errorSearchForm">
          <input type="hidden" name="g_id" value="<?php echo $data["g_id"];?>"/>
          <input type="hidden" name="g_confign" value="<?php echo $data["g_confign"];?>"/>
          <input type="hidden" name="g_configi" value="<?php echo $data["g_configi"];?>"/>
        <fieldset>
          <input type="text" name="g_configv" value="<?php echo $data["g_configv"];?>" style="width:90%;" placeholder="<?php echo $data["g_confign"];?>"/>
          <input type="submit" name="submit" value="保存" class="buttonWrapper errorSearchFormSubmitButton"/>
        <label class="label">调用:&lt;?php echo $sitedatas['<?php echo $k;?>']['g_configv'];?&gt;</label>
        </fieldset>
      </form>
      <!-- config form ends -->
<hr><?php
}
?>

    </section>
  </div>
  <?php include(__View__.'admin_footer.php');?>