Symfony 3 中的 CKEditor 插件 'save' (egeloen / ivoryckeditor) 不显示保存按钮

CKEditor Plugin 'save' (egeloen / ivoryckeditor) in Symfony 3 not showing the save button

我使用 egeloen (ivoryckeditor) 的 ckeditor-bundle 在我的 Symfony 3.3.10 项目中成功安装并集成了 CKEditor (4.7.3)。 我现在正在尝试让 "Save" Plugin 工作。

我将插件文件夹复制到我的网络文件夹中。 这是我在 config.yml

中的测试配置
ivory_ck_editor:
    inline: true
    autoload: false
    async: false
    configs:
        ckeditor_config_1:
            toolbar: [ [ "Save", "Cut", "Copy" ] ]
            extraPlugins: "save"
    plugins:
        save:
            path:       "/bundles/ivoryckeditor/plugins/save/"
            filename:   "plugin.js"

这就是我创建 ckeditor 表单以传递给 twig 进行渲染的方式:

$ckeditForm = $this->get('form.factory')->createNamedBuilder('ckedit_form', CKEditorType::class, $content, array(
    'label' => false,
    'config' => array(
        'config_name' => 'ckeditor_config_1',
        'inline' => true,
    ),
))->getForm();

很遗憾,"Save" 按钮未显示。 欢迎任何关于按钮未显示原因的想法。

好的 - 保存插件无法在内联模式下工作。可以在某处记录 - 找不到任何提示...