new_naweigete/crmeb/app/build.php
2025-03-13 09:24:48 +08:00

33 lines
1.3 KiB
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
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
/**
* 创建模块配置
* php think build model_name
*/
return [
// 需要自动创建的文件
'__file__' => ['.htaccess','ExecptionHandle.php'],
// 需要自动创建的目录
'__dir__' => ['controller/v1','config','lang','validates/login/','route'],
// 需要自动控制器类
'controller' => ['Index'],
// 需要自动创建的表单验证
'validates' => ['Index'],
// 需要自动创建的路由
'route' => ['route'],
// 需要自动创建配置文件
'config' => ['route'],
// 需要自动创建的多语言配置文件
'lang' => ['zh-CN','en-US'],
// 需要自动创建的模板
// 'view' => ['index/index'],
];