You are here

public function backup_migrate_destination::_list_files in Backup and Migrate 7.3

Same name and namespace in other branches
  1. 8.2 includes/destinations.inc \backup_migrate_destination::_list_files()
  2. 8.3 includes/destinations.inc \backup_migrate_destination::_list_files()
  3. 6.3 includes/destinations.inc \backup_migrate_destination::_list_files()
  4. 6.2 includes/destinations.inc \backup_migrate_destination::_list_files()
  5. 7.2 includes/destinations.inc \backup_migrate_destination::_list_files()

List all the available files in the given destination.

Includes 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.
3 methods override backup_migrate_destination::_list_files()
backup_migrate_destination_files::_list_files in includes/destinations.file.inc
File list destination callback.
backup_migrate_destination_ftp::_list_files in includes/destinations.ftp.inc
List all the available files in the given destination.
backup_migrate_destination_s3::_list_files in includes/destinations.s3.inc
List all files from the s3 destination.

File

includes/destinations.inc, line 918

Class

backup_migrate_destination
A base class for creating destinations.

Code

public function _list_files() {
  return array();
}