Files
Pichome/dzz/pichome/admin.php
2024-01-31 01:00:33 +08:00

11 lines
301 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
if (!defined('IN_OAOOA')) {//所有的php文件必须加上此句防止被外部调用
exit('Access Denied');
}
//管理权限进入
Hook::listen('adminlogin');
$navtitle="管理中心";
@include Hook::listen('mod_start',$_GET,null,true);//模块路由
exit();