You are here

commons_media.features.inc in Drupal Commons 7.3

File

modules/commons/commons_media/commons_media.features.inc
View source
<?php

/**
 * @file
 * commons_media.features.inc
 */

/**
 * Implements hook_ctools_plugin_api().
 */
function commons_media_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == 'entity_embed' && $api == 'default_entity_embed_configurations') {
    return array(
      'version' => 1,
    );
  }
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}

Functions