37 lines
1.7 KiB
PHP
37 lines
1.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This is NOT a freeware, use is subject to license terms
|
|
* 应用名称: 小时空通用套系设置 免费版 1.2
|
|
* 下载地址: https://addon.dismall.com/plugins/ahome_common_setting.html
|
|
* 应用开发者: 小时空
|
|
* 开发者QQ: 3033199665
|
|
* 更新日期: 202505290039
|
|
* 授权域名: www.shitangsweet.com
|
|
* 授权码: 2025052816dswumdRXZQ
|
|
* 未经应用程序开发者/所有者的书面许可,不得进行反向工程、反向汇编、反向编译等,不得擅自复制、修改、链接、转载、汇编、发表、出版、发展与之有关的衍生产品、作品等
|
|
*/
|
|
|
|
|
|
/*
|
|
* CRUD FOR DISCUZX3
|
|
* Name: Mod.php
|
|
* Version: 1.0.0 Released 20220623
|
|
* Author: MagicYe
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ') || !defined('IN_ADMINCP')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
/*加载模块变量*/
|
|
$rc = "ahome_common_setting";
|
|
$rm = "admin_about";
|
|
$bbsurl = "//bbs.drawsnake.com/forum-25-1.html";
|
|
$imgpath = "source/plugin/".$rc."/image/system/";
|
|
|
|
/*加载前端模板*/
|
|
include template($rc.":".$rm);
|
|
|
|
|
|
?>
|