admin.inc.htm 模板文件的完整代码
时间: 2024-04-16 10:24:21 浏览: 96
以下是一个 admin.inc.htm 模板文件的完整代码示例:
```html
<!-- admin.inc.htm -->
<!-- 管理后台页面的头部 -->
<div class="header">
<h1>插件设置</h1>
</div>
<!-- 插件设置表单 -->
<form action="{ADMINSCRIPT}?action=plugins&operation=config&do=zhigui_zd&identifier=zhigui_zd&pmod=zhigui_zd" method="post">
<table class="tb tb2">
<tr>
<th class="partition">自动点赞设置</th>
</tr>
<tr>
<td class="vtop rowform">
<label><input type="checkbox" class="checkbox" name="enable_auto_like" value="1" {if $pluginsetting['enable_auto_like']}checked{/if}> 启用自动点赞功能</label>
</td>
</tr>
<tr>
<td class="td25"></td>
<td colspan="15">
<div class="fixsel">
<input type="hidden" name="formhash" value="{FORMHASH}">
<input type="submit" class="btn" name="settingsubmit" value="保存设置">
</div>
</td>
</tr>
</table>
</form>
<!-- 管理后台页面的底部 -->
<div class="footer">
<p>© 2022 插件名称. All rights reserved.</p>
</div>
```
请注意,以上代码仅为示例,具体实现细节可能需要根据你的实际情况和插件开发的要求进行调整。
希望以上信息对你有帮助。如果还有其他问题,请随时提问。
阅读全文