You are here

function backup_migrate_elements in Backup and Migrate 6.3

Implementation of hook_elements().

File

./backup_migrate.module, line 204
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_elements() {
  $types['backup_migrate_dependent'] = array(
    '#dependencies' => array(),
  );
  return $types;
}