You are here

function backup_migrate_block in Backup and Migrate 6.3

Implementation of hook_block().

File

./backup_migrate.module, line 310
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_block($op = 'list', $delta = 0, $edit = array()) {
  switch ($op) {
    case 'list':
      return backup_migrate_block_info();
    case 'view':
      return backup_migrate_block_view($delta);
  }
}