我尝试使用IvoryCKEditorBundle和FMElfinderBundle。 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步骤。这些是我已经完成的步骤:
但现在我陷入了基本配置。当我复制代码并将其粘贴到我的config.yml中时,我收到以下错误:
InvalidConfigurationException:无法识别的选项"实例"在" fm_elfinder"
我做错了什么?