You are here

function backup_migrate_action_info in Backup and Migrate 5

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

File

./backup_migrate.module, line 463
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_action_backup' => array(
      '#label' => t('Backup the database'),
      '#module' => t('Backup and Migrate'),
      '#description' => t('Backup the database with the default settings.'),
    ),
  );
}