FriendsOfSymfony / FOSCKEditorBundle

Provides a CKEditor integration for your Symfony project.
Other
518 stars 83 forks source link

Error changing plugin path #199

Open Julen10 opened 5 years ago

Julen10 commented 5 years ago

Environment

Symfony 4.2.8

Symfony packages

$ composer show --latest 'symfony/*'

Symfony flex ones

Subject

I can´t change the plugin path, it just takes the default path

Steps to reproduce

Install plugin and add this:

fos_ck_editor:
    default_config: simple_config
    configs:
        simple_config:
            extraPlugins:
                - 'wordcount'
                - 'notification'
        plugins:
            wordcount:
                path: 'fosckeditor/plugins/wordcount/'
                filename: 'plugin.js'
            notification:
                path: 'fosckeditor/plugins/notification/'
                filename: 'plugin.js'

Expected results

The plugin changes from localhost:8080/bundles/fosckeditor/plugins/wordcount/plugin.js to localhost:8080/fosckeditor/plugins/wordcount/plugin.js

Actual results

imagen