function backup_migrate_destination_db::unlock_tables in Backup and Migrate 7.2
Same name and namespace in other branches
- 8.2 includes/destinations.db.inc \backup_migrate_destination_db::unlock_tables()
- 8.3 includes/destinations.db.inc \backup_migrate_destination_db::unlock_tables()
- 6.2 includes/destinations.db.inc \backup_migrate_destination_db::unlock_tables()
- 7.3 includes/destinations.db.inc \backup_migrate_destination_db::unlock_tables()
Unlock any tables that have been locked.
File
- includes/
destinations.db.inc, line 292 - Functions to handle the direct to database destination.
Class
- backup_migrate_destination_db
- A destination type for saving to a database server.
Code
function unlock_tables($settings) {
if ($settings->filters['utils_lock_tables']) {
$this
->_unlock_tables();
}
}