Files

56 lines
796 B
PHP
Raw Permalink Normal View History

2024-07-13 12:53:20 +08:00
<?php
namespace plugin\easyflow;
use app\PluginController;
/**
* 简单工作流插件
*/
class Easyflow extends PluginController
{
/**
* 插件安装方法
* @return bool
*/
public function install()
{
return true;
}
/**
* 插件卸载方法
* @return bool
*/
public function uninstall()
{
return true;
}
/**
* 插件启用方法
* @return bool
*/
public function enabled()
{
return true;
}
/**
* 插件禁用方法
* @return bool
*/
public function disabled()
{
return true;
}
/**
* 插件初始化
* @return bool
*/
public function appInit()
{}
}