Files
swiftadmin/plugin/partlist/Partlist.php

56 lines
790 B
PHP
Raw Normal View History

<?php
namespace plugin\partlist;
use app\PluginController;
/**
* BOM管理插件
*/
class Partlist 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()
{}
}