You are here

function backup_migrate_ctools_plugin_api in Backup and Migrate 7.3

Same name and namespace in other branches
  1. 8.3 backup_migrate.module \backup_migrate_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./backup_migrate.module, line 512
Backup and restore databases for Drupal.

Code

function backup_migrate_ctools_plugin_api($owner, $api) {

  // Tell CTools that we support the default_mymodule_presets API.
  if ($owner == 'backup_migrate') {
    return array(
      'version' => 1,
    );
  }
}