You are here

function backup_migrate_files_destination_filesource::backup_settings_default in Backup and Migrate Files 7

Get the form for the settings for this destination.

Return the default tables whose data can be ignored. These tables mostly contain info which can be easily reproducted (such as cache or search index) but also tables which can become quite bloated but are not necessarily extremely important to back up or migrate during development (such ass access log and watchdog)

File

includes/destinations.filesource.inc, line 71
A destination type for saving locally to the server.

Class

backup_migrate_files_destination_filesource
A destination type for saving locally to the server.

Code

function backup_settings_default() {
  return array(
    'exclude_filepaths' => "backup_migrate\nstyles\ncss\njs\nctools",
  );
}