You are here

function entity_embed_ctools_plugin_api in Entity Embed 7.2

Same name and namespace in other branches
  1. 7.3 entity_embed.module \entity_embed_ctools_plugin_api()
  2. 7 entity_embed.module \entity_embed_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./entity_embed.module, line 677
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,
    );
  }
}