1

我有安装了 TinyMCE Bundle 的 Symfony2 项目。当我尝试安装 justboil.me 图像上传器 ( http://justboil.me/ ) 时,插件未在 TinyMCE 中显示,我没有收到任何错误,其他一切正常。这是我的配置

stfalcon_tinymce:
    tinymce_jquery: false # set to TRUE after fixing the issue with loading queue
    language: %locale%
    external_plugins:
            justboil:
                url: "asset[/js/tinymce-plugins/justboil/editor_plugin.js]"
    theme:
        simple: 
            plugins:
                - "justboil advlist autolink lists link image charmap print preview hr anchor pagebreak"
                - "searchreplace wordcount visualblocks visualchars code fullscreen"
                - "insertdatetime media nonbreaking save table contextmenu directionality"
                - "emoticons template paste textcolor"
            toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image justboil"
            toolbar2: "print preview media | forecolor backcolor emoticons | stfalcon | example"
            image_advtab: true
        advanced:
            plugins:
                - "advlist autolink lists link image charmap print preview hr anchor pagebreak"
                - "searchreplace wordcount visualblocks visualchars code fullscreen"
                - "insertdatetime media nonbreaking save table contextmenu directionality"
                - "emoticons template paste textcolor"
            toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
            toolbar2: "print preview media | forecolor backcolor emoticons | stfalcon | example"
            image_advtab: true
        bbcode:
            toolbar1: "bold,italic,underline,undo,redo,link,unlink,removeformat,cleanup,code,preview"

我究竟做错了什么?这是我第一次使用 TinyMCE Bundle 和 justboil.me。

4

1 回答 1

2

您需要将 justboil.me 插件复制到 tinymceplugins文件夹。将文件夹
重命名为 justboiljbimages

这是如何在工具栏中包含插件和配置按钮的示例 plugins : "preview,jbimages", toolbar: "jbimages | bold italic underline | fontsizeselect",

希望这对你有帮助

于 2015-02-06T10:48:55.140 回答