You are here

function backup_migrate_destination_db::_get_table_names in Backup and Migrate 8.2

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

Get a list of tables in the database.

1 call to backup_migrate_destination_db::_get_table_names()
backup_migrate_destination_db::get_table_names in includes/destinations.db.inc
Get a list of tables in the database.
1 method overrides backup_migrate_destination_db::_get_table_names()
backup_migrate_destination_db_mysql::_get_table_names in includes/destinations.db.mysql.inc
Get a list of tables in the database.

File

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

Class

backup_migrate_destination_db
A destination type for saving to a database server.

Code

function _get_table_names() {

  // Must be overridden.
  return array();
}