Tinymce.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. namespace addons\tinymce;
  3. use app\common\library\Menu;
  4. use think\Addons;
  5. /**
  6. * 插件
  7. */
  8. class Tinymce extends Addons
  9. {
  10. /**
  11. * 插件安装方法
  12. * @return bool
  13. */
  14. public function install()
  15. {
  16. //根据配置文件生成插件所需文件
  17. $this->setTinymce();
  18. return true;
  19. }
  20. /**
  21. * 插件卸载方法
  22. * @return bool
  23. */
  24. public function uninstall()
  25. {
  26. return true;
  27. }
  28. /**
  29. * 插件启用方法
  30. * @return bool
  31. */
  32. public function enable()
  33. {
  34. //根据配置文件生成插件所需文件
  35. $this->setTinymce();
  36. return true;
  37. }
  38. /**
  39. * 插件禁用方法
  40. * @return bool
  41. */
  42. public function disable()
  43. {
  44. return true;
  45. }
  46. /**
  47. * 清除缓存钩子方法
  48. * @return mixed
  49. */
  50. public function wipecacheAfter($param)
  51. {
  52. $info = $this->getInfo();
  53. if ($info['state'] == 0) {
  54. //如未开启插件直接返回
  55. return true;
  56. }
  57. $config = $this->getConfig();
  58. $configBase = include(__DIR__ . '/configBase.php');
  59. if ($config == $configBase) {
  60. //如配置未变更直接返回
  61. return true;
  62. }
  63. //重新启用插件以应用变更的配置
  64. \think\addons\Service::enable($this->getName(), 0);
  65. //\think\Cache::rm('__menu__');
  66. return true;
  67. }
  68. /**
  69. * 初始化tinymce插件文件
  70. */
  71. public function setTinymce()
  72. {
  73. //基础tinymce插件必须有不可配置
  74. $mustPlugins = [
  75. 'advlist',// '高级列表'
  76. 'link', // '链接'
  77. 'image',// '图片'
  78. 'lists',// '列表'
  79. 'charmap',
  80. 'hr',//'水平分割线'
  81. 'anchor',//'描点'
  82. 'pagebreak',//'分页符',
  83. 'searchreplace',
  84. 'wordcount',
  85. 'visualblocks',
  86. 'visualchars',
  87. 'code',//'代码'
  88. 'insertdatetime',
  89. 'nonbreaking',
  90. 'save',//'保存',
  91. 'table',//'表格',
  92. 'contextmenu',
  93. 'directionality',
  94. 'help',//'帮助'
  95. ];
  96. //所有可配置的tinymce插件
  97. $allConfigPlugins = [
  98. 'autolink',//'自动识别创建超链接',
  99. 'autosave',// '自动保存',
  100. 'print',//'打印',
  101. 'preview',// '预览',
  102. 'spellchecker',//'拼写检查',
  103. 'fullscreen',//'全屏',
  104. 'media',//'媒体',
  105. 'emoticons',//'表情',
  106. 'template',//'模板',
  107. 'paste',//'粘贴',
  108. 'textcolor',//'文字颜色',
  109. ];
  110. //tinymce工具栏默认配置项
  111. $baseToolbar = 'insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | spellchecker help';
  112. $config = $this->getConfig();
  113. $jsContent = file_get_contents(__DIR__ . '/bootstrapBase.js');
  114. $jsContent = str_replace("{language}", $config['language'], $jsContent);
  115. if (!empty($config['plugins'])) {
  116. $plugins = array_merge($mustPlugins, explode(',', $config['plugins']));
  117. } else {
  118. $plugins = $mustPlugins;
  119. }
  120. $jsContent = str_replace("{plugins}", implode(' ', $plugins), $jsContent);
  121. if (in_array('spellchecker', $plugins)) {
  122. $jsContent = str_replace("'{browser_spellcheck}'", 'true', $jsContent);
  123. } else {
  124. $jsContent = str_replace("'{browser_spellcheck}'", 'false', $jsContent);
  125. }
  126. if ($config['toolbar']) {
  127. $arr = array_diff($allConfigPlugins, $plugins);
  128. foreach ($arr as $value) {
  129. $this->baseToolbar = str_replace($value, '', $baseToolbar);
  130. }
  131. $jsContent = str_replace("{toolbar}", $baseToolbar, $jsContent);
  132. } else {
  133. $jsContent = str_replace("'{toolbar}'", 'false', $jsContent);
  134. }
  135. if ($config['image_default_size']) {
  136. $jsContent = str_replace("'{image_default_size}'", $config['image_default_size'], $jsContent);
  137. }else{
  138. $jsContent = str_replace("'{image_default_size}'", '{}', $jsContent);
  139. }
  140. if ($config['media_default_size']) {
  141. $jsContent = str_replace("'{media_default_size}'", $config['media_default_size'], $jsContent);
  142. }else{
  143. $jsContent = str_replace("'{media_default_size}'",'{}', $jsContent);
  144. }
  145. $jsContent = str_replace("{subDom}", $config['subDom'], $jsContent);
  146. $jsContent = str_replace("{content_style}", $config['content_style'], $jsContent);
  147. if($config['up_video']){
  148. $jsContent = str_replace("'{up_video}'", 'true', $jsContent);
  149. }else{
  150. $jsContent = str_replace("'{up_video}'", 'false', $jsContent);
  151. }
  152. file_put_contents(__DIR__ . '/bootstrap.js', $jsContent);
  153. //将本次配置写入配置记录文件
  154. file_put_contents(__DIR__ . '/configBase.php', '<?php return ' . var_export($config, true) . ';');
  155. return true;
  156. }
  157. }