Skip to content

Commit

Permalink
Updating Module: Backup and Migrate
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamTriplo committed Sep 12, 2020
1 parent 2745183 commit eb2be88
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
11 changes: 2 additions & 9 deletions src/modules/contrib/backup_migrate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ backup.
You can also schedule the backup operation. Compression of backup files is also
supported.

You can now backup offsite to Nodesquirrel, and it's free!

There are options to exclude the data from certain tables (such as cache or
search index tables) to increase efficiency by ignoring data that does not need
to be backed up or migrated.
Expand All @@ -34,14 +32,9 @@ Installation

OPTIONAL:
* To backup to Amazon S3:
- Download the S3 library from http://undesigned.org.za/2007/10/22/amazon-s3-php-class
- Download the S3 library from https://github.com/tpyo/amazon-s3-php-class
and place the file 'S3.php' in the includes directory in this module.
The stable version (0.4.0 – 20th Jul 2009) works best with Backup and
Migrate.
* To backup to NodeSquirrel:
- Click the NodeSquirrel tab
- Create your free account at http://nodesquirrel.com/activate
- Backup now!
* Nodesquirrel has been removed as the service no longer exists.

LIGHTTPD USERS:
Add the following code to your lighttp.conf to secure your backup directories:
Expand Down
6 changes: 3 additions & 3 deletions src/modules/contrib/backup_migrate/backup_migrate.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type = module

configure = admin/config/system/backup_migrate

; Added by Backdrop CMS packaging script on 2020-03-23
; Added by Backdrop CMS packaging script on 2020-09-10
project = backup_migrate
version = 1.x-1.0.15
timestamp = 1584984220
version = 1.x-1.0.16
timestamp = 1599775353
5 changes: 4 additions & 1 deletion src/modules/contrib/backup_migrate/backup_migrate.module
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ function backup_migrate_config_info() {
/**
* Implements hook_help().
*/
/** Backdrop does not utilize hook_help so this section has been removed */
/*
function backup_migrate_help($section, $arg) {
$help = array(
array(
Expand Down Expand Up @@ -116,7 +118,8 @@ function backup_migrate_help($section, $arg) {
return $out;
}
}

END of HOOK_HELP REMOVAL */

/**
* Implements hook_menu().
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class backup_migrate_filter_encryption extends backup_migrate_filter {
$form['file']['encryption'] = array(
"#type" => 'item',
"#title" => t("File Encryption"),
"#markup" => t('Install the !link to enable backup file encryption.', array('!link' => l(t('AES Encryption Module'), 'http://drupal.org/project/aes'))),
"#markup" => t('Encryption support has now been removed until the Drupal Encrypt module has been ported.'),
);
}

Expand Down

0 comments on commit eb2be88

Please sign in to comment.