You are here

function backup_migrate_block_view in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.3 backup_migrate.module \backup_migrate_block_view()
  2. 7.3 backup_migrate.module \backup_migrate_block_view()

Implements hook_block_view().

1 call to backup_migrate_block_view()
backup_migrate_block in ./backup_migrate.module
Implementation of hook_block().

File

./backup_migrate.module, line 334
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_view($delta) {
  $function = 'backup_migrate_block_view_' . $delta;
  if (function_exists($function)) {
    return $function();
  }
}