You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
601 B
41 lines
601 B
9 months ago
|
<?php
|
||
|
|
||
|
namespace addons\summernote;
|
||
|
|
||
|
use think\Addons;
|
||
|
|
||
|
/**
|
||
|
* Summernote富文本编辑器
|
||
|
*/
|
||
|
class Summernote extends Addons
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 插件安装方法
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function install()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 插件卸载方法
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function uninstall()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $params
|
||
|
*/
|
||
|
public function configInit(&$params)
|
||
|
{
|
||
|
$config = $this->getConfig();
|
||
|
$params['summernote'] = ['classname' => $config['classname'] ?? '.editor'];
|
||
|
}
|
||
|
|
||
|
}
|