function mymodule_ctools_plugin_api in Backup and Migrate 6.3
Implementation of hook_ctools_plugin_api().
Tell CTools that we support the default_mymodule_presets API.
File
- ./
backup_migrate.module, line 389 - Create (manually or scheduled) and restore backups of your Drupal MySQL database with an option to exclude table data (e.g. cache_*)
Code
function mymodule_ctools_plugin_api($owner, $api) {
if ($owner == 'backup_migrate') {
return array(
'version' => 1,
);
}
}