You are here

function bm_test_ctools_plugin_api in Backup and Migrate 7.3

Implements hook_ctools_plugin_api().

File

tests/bm_test.module, line 32
Mock module to help and test hooks.

Code

function bm_test_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "backup_migrate" && $api == "backup_migrate_exportables") {
    return array(
      "version" => "1",
    );
  }
}