public function backup_migrate_destination_filesource::check_libs in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::check_libs()
- 6.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::check_libs()
Checks that the required libraries are installed.
4 calls to backup_migrate_destination_filesource::check_libs()
- backup_migrate_destination_filesource::_backup_to_file_php in includes/
sources.filesource.inc - Backup from this source.
- backup_migrate_destination_filesource::_restore_from_file_php in includes/
sources.filesource.inc - Restore to this source.
- backup_migrate_files_destination_archivesource::_backup_to_file_php in includes/
sources.archivesource.inc - Backup from this source.
- backup_migrate_files_destination_archivesource::_restore_from_file_php in includes/
sources.archivesource.inc - Restores to this source.
File
- includes/
sources.filesource.inc, line 321 - A destination type for saving locally to the server.
Class
- backup_migrate_destination_filesource
- A destination type for saving locally to the server.
Code
public function check_libs() {
$result = TRUE;
// Drupal 7 has Archive_Tar built in so there should be no need to include
// anything here.
return $result;
}