IvoryCKEditorBundle + FMElfinderBundle

时间:2014-08-21 16:49:35

标签: php symfony ckeditor symfony-forms elfinder

我尝试使用IvoryCKEditorBundleFMElfinderBundle IvoryCKEditorBundle 是一个CKEditor, ElfinderBundle 是一个在我的CKEditor中集成图像的查找程序。

CKEditor工作并以我的形式集成:

->add('articleBody', 'ckeditor',[
    'config' => [
        'toolbar' => [
            [
                'name'  => 'document',
                'items' => ['Source', '-', 'NewPage', 'DocProps', 'Preview', 'Print', '-', 'Templates'],
            ],
            '/',
            [
                'name'  => 'basicstyles',
                'items' => ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'],
            ]
        ],
        'uiColor' => '#ffffff',
    ]])

现在我想整合取景器。要进行整合,您必须遵循these步骤。这些是我已经完成的步骤:

  • 已下载的捆绑包
  • 添加到内核
  • 导入FMElfinderBundle路由文件
  • 配置资产
  • 安装和转储资产

但现在我陷入了基本配置。当我复制代码并将其粘贴到我的config.yml中时,我收到以下错误:

  

InvalidConfigurationException:无法识别的选项"实例"在" fm_elfinder"

我做错了什么?

0 个答案:

没有答案