You are here

function backup_migrate_location::file_types in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/locations.inc \backup_migrate_location::file_types()
  2. 7.3 includes/locations.inc \backup_migrate_location::file_types()

Retrieve a list of filetypes supported by this source/destination.

3 methods override backup_migrate_location::file_types()
backup_migrate_destination_db_mysql::file_types in includes/destinations.db.mysql.inc
Return a list of backup filetypes.
backup_migrate_destination_filesource::file_types in includes/sources.filesource.inc
Return a list of backup filetypes.
backup_migrate_source_db_mysql::file_types in includes/sources.db.mysql.inc
Return a list of backup filetypes.

File

includes/locations.inc, line 413

Class

backup_migrate_location
A base class for creating locations.

Code

function file_types() {
  return array();
}