You are here

function backup_migrate_source_db::get_file_type_id in Backup and Migrate 6.3

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

Get the file type for to backup this destination to.

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

File

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

Class

backup_migrate_source_db
A destination type for saving to a database server.

Code

function get_file_type_id() {
  return 'sql';
}