You are here

function backup_migrate_destination_db::_lock_tables in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 includes/destinations.db.inc \backup_migrate_destination_db::_lock_tables()
  2. 6.2 includes/destinations.db.inc \backup_migrate_destination_db::_lock_tables()
  3. 7.3 includes/destinations.db.inc \backup_migrate_destination_db::_lock_tables()
  4. 7.2 includes/destinations.db.inc \backup_migrate_destination_db::_lock_tables()

Lock the list of given tables in the database.

1 call to backup_migrate_destination_db::_lock_tables()
backup_migrate_destination_db::lock_tables in includes/destinations.db.inc
Lock the database in anticipation of a backup.
1 method overrides backup_migrate_destination_db::_lock_tables()
backup_migrate_destination_db_mysql::_lock_tables in includes/destinations.db.mysql.inc
Lock the list of given tables in the database.

File

includes/destinations.db.inc, line 275
Functions to handle the direct to database destination.

Class

backup_migrate_destination_db
A destination type for saving to a database server.

Code

function _lock_tables($tables) {

  // Must be overridden.
}