Files
littleTiger/application/home/config.php

14 lines
485 B
PHP
Raw Permalink Normal View History

2019-02-28 19:48:21 +08:00
<?php
$home_config = [
// +----------------------------------------------------------------------
// | 模板设置
// +----------------------------------------------------------------------
//默认错误跳转对应的模板文件
'dispatch_error_tmpl' => 'public:dispatch_jump',
//默认成功跳转对应的模板文件
'dispatch_success_tmpl' => 'public:dispatch_jump',
];
$html_config = include_once 'html.php';
return array_merge($home_config,$html_config);
?>