You are here

function backup_migrate_ctools_plugin_api in Backup and Migrate 8.3

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

Implementation of hook_ctools_plugin_api().

Tell CTools that we support the default_mymodule_presets API.

File

./backup_migrate.module, line 455
Create (manually or scheduled) and restore backups of your Drupal MySQL database with an option to exclude table data (e.g. cache_*)

Code

function backup_migrate_ctools_plugin_api($owner, $api) {
  if ($owner == 'backup_migrate') {
    return array(
      'version' => 1,
    );
  }
}