Silverstripe - 通过前端博客模块博客条目,但 tinymce 缺少图像上传/插入按钮

发布于 2024-11-13 22:49:49 字数 217 浏览 4 评论 0原文

我们允许用户通过前端创建博客条目。但由于某种原因,tinymce 编辑器没有图像上传按钮。作者必须将图像从桌面拖到tinymce 才能插入图像。

有没有办法添加图像按钮,允许作者上传图像并在他们的博客中使用它们?

另外刚刚意识到,也没有“链接”按钮

screen shot

We allow users to create blog entries via front end. but for some reason the tinymce editor doesn't have image upload button. Authors have to drag the image from their desktop to tinymce to insert an image.

is there a way to add image button allowing authors to upload images and using them in their blog?

Also just realised, there is no "Link" button either

screen shot

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

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

发布评论

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

评论(1

热血少△年 2024-11-20 22:49:49

您可以使用下面的代码启用默认的 TinyMCE 图像和链接插入按钮。但是,这不会包含 SilverStripe 特定功能,例如选择要链接的页面或上传图像 - 您必须手动输入链接和图像 URL。

HtmlEditorConfig::get()->addButtonsToLine(1, 'link', 'unlink', 'image');

图像和链接插入功能与 2.4 版中的 CMS 紧密相关,但正在作为 3.0 版的一部分进行重写,并将在前端运行。

有关自定义可用功能的更多详细信息,请参阅 HtmlEditorConfig API 文档在所见即所得编辑器中。

You can enable the default TinyMCE image and link insertion buttons using the code below. However, this won't contain the SilverStripe specific functionality such as choosing a page to link to or uploading images - you have to manually enter link and image URLs.

HtmlEditorConfig::get()->addButtonsToLine(1, 'link', 'unlink', 'image');

The image and link insertion functionality is quite heavily tied to the CMS in version 2.4, but is being rewritten as part of 3.0 and will work in the front end.

See the HtmlEditorConfig API documentation for more details on customising the functionality available in the WYSIWYG editor.

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