32 lines
361 B
PHP
32 lines
361 B
PHP
<?php
|
|
|
|
namespace addons\simditor;
|
|
|
|
use think\Addons;
|
|
|
|
/**
|
|
* 插件
|
|
*/
|
|
class Simditor extends Addons
|
|
{
|
|
|
|
/**
|
|
* 插件安装方法
|
|
* @return bool
|
|
*/
|
|
public function install()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 插件卸载方法
|
|
* @return bool
|
|
*/
|
|
public function uninstall()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
}
|