You are here

function backup_migrate_source_db::unlock_tables in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 includes/sources.db.inc \backup_migrate_source_db::unlock_tables()
  2. 7.3 includes/sources.db.inc \backup_migrate_source_db::unlock_tables()

Unlock any tables that have been locked.

1 call to backup_migrate_source_db::unlock_tables()
backup_migrate_source_db::backup_to_file in includes/sources.db.inc
Backup from this source.

File

includes/sources.db.inc, line 270
Functions to handle the direct to database destination.

Class

backup_migrate_source_db
A destination type for saving to a database server.

Code

function unlock_tables($settings) {
  if ($settings->filters['utils_lock_tables']) {
    $this
      ->_unlock_tables();
  }
}