You are here

function backup_migrate_action_info in Backup and Migrate 6

Same name and namespace in other branches
  1. 5.2 backup_migrate.module \backup_migrate_action_info()
  2. 5 backup_migrate.module \backup_migrate_action_info()

File

./backup_migrate.module, line 442
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_action_info() {
  return array(
    'backup_migrate_backup_action' => array(
      'description' => t('Backup the database with the default settings'),
      'configurable' => FALSE,
      'hooks' => array(
        'any' => TRUE,
      ),
      'type' => 'system',
    ),
  );
}