39 calls to _backup_migrate_message() in Backup and Migrate 7.3
- backup_file::open in includes/
files.inc - Open a file for reading or writing.
- backup_migrate_backup_fail in ./
backup_migrate.module - Clean up when a backup operation fails.
- backup_migrate_backup_migrate_destinations in includes/
destinations.inc - Implements hook_backup_migrate_destinations().
- backup_migrate_backup_succeed in ./
backup_migrate.module - Clean up when a backup operation succeeds.
- backup_migrate_crud_import_form_submit in includes/
crud.inc - Import a item after confirmation.
- backup_migrate_destination_db::restore_from_file in includes/
destinations.db.inc - Restore to this source.
- backup_migrate_destination_db_mysql::_dump_table_data_sql_to_file in includes/
destinations.db.mysql.inc - Get the sql to insert the data for a given table.
- backup_migrate_destination_email::save_file in includes/
destinations.email.inc - Save to (ie. email the file) to the email destination.
- backup_migrate_destination_files::check_dir in includes/
destinations.file.inc - Prepare the destination directory for the backups.
- backup_migrate_destination_files::_save_file in includes/
destinations.file.inc - File save destination callback.
- backup_migrate_drush_backup in includes/
backup_migrate.drush.inc - Backup the default database.
- backup_migrate_drush_destination_files in includes/
backup_migrate.drush.inc - Get a list of files in a given destination.
- backup_migrate_drush_restore in includes/
backup_migrate.drush.inc - Restore to the default database.
- backup_migrate_drush_schedule in includes/
backup_migrate.drush.inc - Backup using schedule.
- backup_migrate_files_destination_archivesource::_restore_from_file_php in includes/
sources.archivesource.inc - Restores to this source.
- backup_migrate_filter_compression::_backup_migrate_file_compress in includes/
filters.compression.inc - Compress a file with the given settings. Also updates settings to reflect new file mime and file extension.
- backup_migrate_filter_compression::_backup_migrate_file_decompress in includes/
filters.compression.inc - Decompress a file with the given settings. Also updates settings to reflect new file mime and file extension.
- backup_migrate_filter_encryption::file_decrypt in includes/
filters.encryption.inc - Decrypts a file with the given settings.
- backup_migrate_filter_encryption::file_encrypt in includes/
filters.encryption.inc - Encrypts a file with the given settings.
- backup_migrate_filter_utils::take_site_offline in includes/
filters.utils.inc - Take the site offline if configured to do so.
- backup_migrate_filter_utils::take_site_online in includes/
filters.utils.inc - Take the site online again after backup or restore.
- backup_migrate_item::edit_form_submit in includes/
crud.inc - Submit the edit form for the item.
- backup_migrate_perform_backup in ./
backup_migrate.module - Perform a backup with the given settings.
- backup_migrate_perform_restore in ./
backup_migrate.module - Restore from a file in the given destination.
- backup_migrate_restore_fail in ./
backup_migrate.module - Clean up when a restore operation fails.
- backup_migrate_restore_succeed in ./
backup_migrate.module - Clean up when a restore operation succeeds.
- backup_migrate_source_db::backup_to_file in includes/
sources.db.inc - Backup from this source.
- backup_migrate_source_db::restore_from_file in includes/
sources.db.inc - Restore to this source.
- backup_migrate_source_db_mysql::_dump_table_data_sql_to_file in includes/
sources.db.mysql.inc - Get the sql to insert the data for a given table.
- backup_migrate_temp_directory in includes/
files.inc - Create a temporary directory.
- backup_migrate_ui_destination_delete_file in includes/
destinations.inc - Menu callback to delete a file from a destination.
- backup_migrate_ui_destination_delete_file_confirm_submit in includes/
destinations.inc - Delete confirmed, perform the delete.
- backup_migrate_ui_destination_restore_file in includes/
destinations.inc - Restore a backup file from a destination.
- drupal_ftp_change_directory in includes/
destinations.ftp.inc - The drupal_ftp_change_directory Function This function simply changes into the $directory folder on the FTP server. If a connection or permission error occurs then _backup_migrate_message() will contain the error message.
- drupal_ftp_connect in includes/
destinations.ftp.inc - The drupal_ftp_connect function This function connects to an FTP server and attempts to change into the directory specified by the fourth parameter, $directory.
- drupal_ftp_create_directory in includes/
destinations.ftp.inc - The drupal_ftp_create_directory Function This function tries to make a new directory called $folder_name on the FTP server. If it can create the folder, then the folder is given appropriate rights with the CHMOD command.
- drupal_ftp_delete_file in includes/
destinations.ftp.inc - The drupal_ftp_delete_file Function This function attempts to delete a file called $filename from the FTP server.
- drupal_ftp_file_to_ftp in includes/
destinations.ftp.inc - Send a file to an FTP server.
- drupal_ftp_ftp_to_file in includes/
destinations.ftp.inc - This function tries to retrieve the contents of a file from the FTP server. Firstly it changes into the $directory directory, and then attempts to download the file $filename. The file is saved locally and its contents are returned to the caller of…