Summernote.php 387 B

12345678910111213141516171819202122232425262728293031
  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. }