Drupal 7 自定义 CKeditor 配置

发布于 2025-01-05 15:35:04 字数 118 浏览 2 评论 0原文

任何人都可以建议一种使用 WYSIWYG 模块为 Drupal 中的 CKEeditor 设置自定义配置的方法吗?

我正在寻找的最终结果是启用 Tableresize 插件并清除表格默认值(边框/宽度等)。

Can anybody suggest a way to setup a custom configuration for the CKEeditor in Drupal using the WYSIWYG module.

The end result I'm looking for is to enable the Tableresize plugin and clear the table default values (border/width etc).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

舂唻埖巳落 2025-01-12 15:35:04

这不是解决问题的好方法,但对我有用。
在文件 wysiwyg\editors\ckeditor.inc 中将其更改

if (!empty($extra_plugins)) {
  $settings['extraPlugins'] = implode(',', $extra_plugins);
}

$extra_plugins[] = 'tableresize';
if (!empty($extra_plugins)) {
  $settings['extraPlugins'] = implode(',', $extra_plugins);
}

This is not a good method to solve the ploblem, but it work for me.
In file wysiwyg\editors\ckeditor.inc change this

if (!empty($extra_plugins)) {
  $settings['extraPlugins'] = implode(',', $extra_plugins);
}

to

$extra_plugins[] = 'tableresize';
if (!empty($extra_plugins)) {
  $settings['extraPlugins'] = implode(',', $extra_plugins);
}
筑梦 2025-01-12 15:35:04

在Drupal中我们可以安装主题,
扩展 - 安装新模块
您可以在两天内通过 URL 进行安装,或者通过上传 tar.gz 文件来安装 CKE 编辑器

In Drupal we can install themes,
Extend -Install new module
You can install by two days through URL or by uploading the tar.gz file you can install CKE editor

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文