2amigos / yii2-tinymce-widget

TinyMCE WYSIWYG widget for Yii2
http://yiiwheels.com
Other
100 stars 48 forks source link

how to add mention plugin #44

Open mamadza opened 5 years ago

mamadza commented 5 years ago

Hi can you add mention plugin in this repository , I added manual in vendor and its work prefect,

tonydspaniard commented 5 years ago

Hi @mamadza, what you need to do is not to add it to its plugin directory but to make use of the external-plugins options: https://www.tiny.cloud/docs/configure/integration-and-setup/#external_plugins


'clientOptions' => [
    'external_plugins' => [
        'mention' => '... url of plugin ...' 
    ],
   'plugins' => 'mention ...'
tonydspaniard commented 5 years ago

Check how this one did it: https://github.com/2amigos/yii2-tinymce-widget/issues/28#issue-172834749

mamadza commented 5 years ago

thank alot <3