Summernote.php 601 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace addons\summernote;
  3. use think\Addons;
  4. /**
  5. * Summernote富文本编辑器
  6. */
  7. class Summernote extends Addons
  8. {
  9. /**
  10. * 插件安装方法
  11. * @return bool
  12. */
  13. public function install()
  14. {
  15. return true;
  16. }
  17. /**
  18. * 插件卸载方法
  19. * @return bool
  20. */
  21. public function uninstall()
  22. {
  23. return true;
  24. }
  25. /**
  26. * @param $params
  27. */
  28. public function configInit(&$params)
  29. {
  30. $config = $this->getConfig();
  31. $params['summernote'] = ['classname' => $config['classname'] ?? '.editor'];
  32. }
  33. }