function backup_migrate_destination_filesource::check_libs in Backup and Migrate 8.3
Same name and namespace in other branches
- 6.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::check_libs()
- 7.3 includes/sources.filesource.inc \backup_migrate_destination_filesource::check_libs()
Check 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 - Restore to this source.
File
- includes/
sources.filesource.inc, line 288 - A destination type for saving locally to the server.
Class
- backup_migrate_destination_filesource
- A destination type for saving locally to the server.
Code
function check_libs() {
$result = true;
// Drupal 7 has Archive_Tar built in so there should be no need to include anything here.
return $result;
}