function _backup_migrate_default_exclude_tables in Backup and Migrate 6
Same name and namespace in other branches
- 8.2 includes/db.inc \_backup_migrate_default_exclude_tables()
- 5.2 includes/db.inc \_backup_migrate_default_exclude_tables()
- 5 backup_migrate.module \_backup_migrate_default_exclude_tables()
Tables to ingore altogether. None by default.
3 calls to _backup_migrate_default_exclude_tables()
- backup_migrate_backup in ./
backup_migrate.module - The backup/export form.
- backup_migrate_cron in ./
backup_migrate.module - Implementation of hook_cron(),
- _backup_migrate_backup_with_defaults in ./
backup_migrate.module - Backup the database with the default settings.
File
- ./
backup_migrate.module, line 1212 - Create (manually or scheduled) and restore backups of your Drupal MySQL database with an option to exclude table data (f.e. cache_*)
Code
function _backup_migrate_default_exclude_tables() {
return array();
}