You are here

function backup_migrate_destination::count_files in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/destinations.inc \backup_migrate_destination::count_files()
  2. 7.3 includes/destinations.inc \backup_migrate_destination::count_files()

List all the available files in the given destination with their destination specific id.

File

includes/destinations.inc, line 866

Class

backup_migrate_destination
A base class for creating destinations.

Code

function count_files() {
  return count($this
    ->list_files());
}