12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace addons\nkeditor;
- use app\common\library\Menu;
- use think\Addons;
- /**
- * 富文本编辑器插件
- */
- class Nkeditor 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;
- }
- /**
- * @param $params
- */
- public function configInit(&$params)
- {
- $config = $this->getConfig();
- $params['nkeditor'] = [
- 'theme' => $config['theme'],
- 'fullmode' => !!($config['fullmode'] ?? '1'),
- 'classname' => $config['classname'] ?? '.editor',
- 'formulapreviewurl' => $config['formulapreviewurl'] ?? '',
- 'baidumapkey' => $config['baidumapkey'] ?? '',
- 'baidumapcenter' => $config['baidumapcenter'] ?? ''
- ];
- }
- }
|