File: /www/wwwroot/crm.jmfdbn.com/extend/sys/InstallBase.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 sys;
abstract class InstallBase
{
//错误信息
protected $error = '';
/**
* 安装开始执行
* @return boolean
*/
public function run()
{
return true;
}
/**
* 安装完回调
* @return boolean
*/
public function end()
{
return true;
}
/**
* 获取错误
* @return string
*/
public function getError()
{
return $this->error;
}
}