Checks the plugin for conflicts with other plugins.
If a conflict occurs, this function will send a console warning
with the editor-plugin-conflict
error code. The order of the conflicted
names is respected
where the first conflicted plugin has the highest priority and will be used in a warning
message.
editor.plugins.detectConflict( 'image', [ 'image2', 'easyimage' ] );
Parameters
plugin
:
String
Current plugin name.
conflicted
:
String[]
Names of plugins that conflict with the current plugin.
Returns
Boolean
Returns true
if there is a conflict. Returns false
otherwise.