function backup_migrate_dropbox_backup_migrate_destination_types in Backup and Migrate Dropbox 6
Same name and namespace in other branches
- 6.2 backup_migrate_dropbox.module \backup_migrate_dropbox_backup_migrate_destination_types()
Implementation of hook_backup_migrate_destination_types().
File
- ./
backup_migrate_dropbox.module, line 7
Code
function backup_migrate_dropbox_backup_migrate_destination_types() {
return array(
'dropbox' => array(
'type_name' => t('Dropbox'),
'description' => t('Save the backup files to a !link account.', array(
'!link' => l(t('Dropbox'), 'http://www.dropbox.com/'),
)),
'file' => drupal_get_path('module', 'backup_migrate_dropbox') . '/destinations.dropbox.inc',
'class' => 'backup_migrate_destination_dropbox',
'can_create' => TRUE,
),
);
}