Files
swiftadmin/plugin/partmanage/Partmanage.php

56 lines
797 B
PHP
Raw Normal View History

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