You are here

function backup_migrate_perm in Backup and Migrate 6.2

Same name and namespace in other branches
  1. 5.2 backup_migrate.module \backup_migrate_perm()
  2. 5 backup_migrate.module \backup_migrate_perm()
  3. 6.3 backup_migrate.module \backup_migrate_perm()
  4. 6 backup_migrate.module \backup_migrate_perm()

Implementation of hook_perm().

File

./backup_migrate.module, line 186
Create (manually or scheduled) and restore backups of your Drupal MySQL database with an option to exclude table data (e.g. cache_*)

Code

function backup_migrate_perm() {
  return array(
    'access backup and migrate',
    'perform backup',
    'access backup files',
    'delete backup files',
    'restore from backup',
    'administer backup and migrate',
  );
}