File: /www/wwwroot/www.elwrky.com/application/member/install/install.php
<?php
// +----------------------------------------------------------------------
// | Yzncms [ 御宅男工作室 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 http://yzncms.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 御宅男 <530765310@qq.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 安装脚本
// +----------------------------------------------------------------------
namespace app\member\install;
use think\Db;
use \sys\InstallBase;
class install extends InstallBase
{
/**
* 安装完回调
* @return boolean
*/
public function end()
{
//填充默认配置
$Setting = include APP_PATH . 'member/install/setting.php';
if (!empty($Setting) && is_array($Setting)) {
Db::name("Module")->where('module', 'member')->setField('setting', serialize($Setting));
}
return true;
}
}