加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
admin.php 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
小胡 提交于 2024-07-05 20:09 . 发布V1.0版本
<?php
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
//此页的调用地址 index.php?mod=test&op=admin;
//同目录的其他php文件调用 index.php?mod=test&op=test1;
if (!defined('IN_DZZ') && !defined('IN_ADMIN')) {//所有的php文件必须加上此句,防止被外部调用
exit('Access Denied');
}
include_once libfile('function/cache');//系统缓存
require libfile('function/test');
//引入函数文件示例,此例将会调用./function/function_test.php,注意函数文件名的命名规则。
Hook::listen('adminlogin');//管理员登录验证 钩子
$op = isset($_GET['op'])?$_GET['op']:'admin';//默认菜单的选择
$navtitle = lang('title1');//浏览器标题
if ( submitcheck('settingsubmit')) {
$settingnew = $_GET['settingnew'];
$settingnew=array(
"test_setting"=>$settingnew["test_setting"],
);
$result = C::t('setting') -> update_batch($settingnew);
updatecache('setting');//更新setting缓存
showmessage('do_success', dreferer());//信息提示
}
else{
$setting = C::t('setting') -> fetch_all(null);
}
include template('admin');
//调用./template/admin.htm模板;
/*//调用./template/sub/admin.htm 模板,按下面的方式
include template('sub/admin');
/*
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化