You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
419 B
36 lines
419 B
<?php
|
|
|
|
namespace addon\zhjw;
|
|
|
|
|
|
/**
|
|
* 插件安装之后单独的插件方法
|
|
*/
|
|
class Addon
|
|
{
|
|
/**
|
|
* 插件安装执行
|
|
*/
|
|
public function install()
|
|
{
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 插件卸载执行
|
|
*/
|
|
public function uninstall()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 插件升级执行
|
|
*/
|
|
public function upgrade()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|