You are here

function backup_migrate_destination_db::get_file_type_id 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_file_type_id()
  2. 6.2 includes/destinations.db.inc \backup_migrate_destination_db::get_file_type_id()
  3. 7.3 includes/destinations.db.inc \backup_migrate_destination_db::get_file_type_id()
  4. 7.2 includes/destinations.db.inc \backup_migrate_destination_db::get_file_type_id()

Get the file type for to backup this destination to.

2 calls to backup_migrate_destination_db::get_file_type_id()
backup_migrate_destination_db::backup_to_file in includes/destinations.db.inc
Backup from this source.
backup_migrate_destination_db::restore_from_file in includes/destinations.db.inc
Restore to this source.
1 method overrides backup_migrate_destination_db::get_file_type_id()
backup_migrate_destination_db_mysql::get_file_type_id in includes/destinations.db.mysql.inc
Get the file type for to backup this destination to.

File

includes/destinations.db.inc, line 298
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_file_type_id() {
  return 'sql';
}