You are here

function backup_migrate_exit in Backup and Migrate 5.2

Implementation of hook_exit().

File

./backup_migrate.module, line 284
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_exit() {
  require_once './' . drupal_get_path('module', 'backup_migrate') . '/includes/files.inc';

  // Delete any temporary files generated during this execution.
  backup_migrate_temp_file('', TRUE);
}