function taxonomy_entity_embed_display_plugins_alter in Entity Embed 8
Implements hook_entity_embed_display_plugins_alter().
Implementation on behalf of the taxonomy module.
File
- ./
entity_embed.module, line 75 - Framework for allowing entities to be embedded in CKEditor.
Code
function taxonomy_entity_embed_display_plugins_alter(array &$plugins) {
// The RSS category field formatter is not usable for Entity Embed.
unset($plugins['entity_reference:entity_reference_rss_category']);
}