function entity_embed_ctools_plugin_api in Entity Embed 7
Same name and namespace in other branches
- 7.3 entity_embed.module \entity_embed_ctools_plugin_api()
- 7.2 entity_embed.module \entity_embed_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
- ./
entity_embed.module, line 808 - Provides a CKEditor plugin and text filter for embedding and rendering entities.
Code
function entity_embed_ctools_plugin_api($module, $api) {
if ($module == 'entity_embed' && $api == 'default_entity_embed_configurations') {
return array(
'version' => 1,
);
}
}