deepseektest/addons/bootstrapcontextmenu/Bootstrapcontextmenu.php

55 lines
701 B
PHP
Raw Normal View History

2025-02-28 09:29:43 +08:00
<?php
namespace addons\bootstrapcontextmenu;
use app\common\library\Menu;
use think\Addons;
/**
* 插件
*/
class Bootstrapcontextmenu extends Addons
{
/**
* 插件安装方法
* @return bool
*/
public function install()
{
return true;
}
/**
* 插件卸载方法
* @return bool
*/
public function uninstall()
{
return true;
}
/**
* 插件启用方法
* @return bool
*/
public function enable()
{
return true;
}
/**
* 插件禁用方法
* @return bool
*/
public function disable()
{
return true;
}
}