function backup_migrate_destination::_list_files in Backup and Migrate 6.2
Same name and namespace in other branches
- 8.2 includes/destinations.inc \backup_migrate_destination::_list_files()
- 8.3 includes/destinations.inc \backup_migrate_destination::_list_files()
- 6.3 includes/destinations.inc \backup_migrate_destination::_list_files()
- 7.3 includes/destinations.inc \backup_migrate_destination::_list_files()
- 7.2 includes/destinations.inc \backup_migrate_destination::_list_files()
List all the available files in the given destination with their destination specific id.
1 call to backup_migrate_destination::_list_files()
- backup_migrate_destination::list_files in includes/
destinations.inc - List all the available files in the given destination with their destination specific id.
3 methods override backup_migrate_destination::_list_files()
- backup_migrate_destination_ftp::_list_files in includes/
destinations.ftp.inc - List all the available files in the given destination with their destination specific id.
- backup_migrate_destination_nodesquirrel::_list_files in includes/
destinations.nodesquirrel.inc - List the files in the remote destination.
- backup_migrate_destination_s3::_list_files in includes/
destinations.s3.inc - List all files from the s3 destination.
File
- includes/
destinations.inc, line 652
Class
- backup_migrate_destination
- A base class for creating destinations.
Code
function _list_files() {
return array();
}