Files

30 lines
1.1 KiB
PHP
Raw Permalink 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
/*
* @Author: YwxApp <ywx@ywxapp.cn>
* @Date: 2026-07-28 23:30:54
* @LastEditors: YwxApp <ywx@ywxapp.cn>
* @LastEditTime: 2026-07-29 14:53:19
* @Description:
* @FilePath: \ywxapp_dev\config\template.php
* @CustomString: Copyright (c) 2026 YwxApp
*/
// +----------------------------------------------------------------------
// | YwxApp 模板激活配置
// | 整站皮肤 + 局部覆盖 + 每插件独立选(Discuz 式卖模板)
// | active_map: 插件名 => 模板名;'*' 为全局默认;
// | 值为 'default' 或空 = 使用该插件自带视图(不覆盖)。
// +----------------------------------------------------------------------
return [
'active_map' => [
// 示例:让 blog 插件使用 myblog 皮肤(需先存在 templates/myblog/
'blog' => 'myblog',
// '*' => 'default', // 全站默认模板(界面设置中可配置)
],
// 界面设置:allow_member_select=允许会员自选风格;disabled=被禁用的模板列表
'settings' => [
'allow_member_select' => false,
'disabled' => [],
],
];