You are here

function backup_migrate_destination_dropbox::edit_form_submit in Backup and Migrate Dropbox 7

Same name and namespace in other branches
  1. 7.3 destinations.dropbox.inc \backup_migrate_destination_dropbox::edit_form_submit()
  2. 7.2 destinations.dropbox.inc \backup_migrate_destination_dropbox::edit_form_submit()

Submit the form for the settings for the files destination.

File

./destinations.dropbox.inc, line 116
destinations.dropbox.inc

Class

backup_migrate_destination_dropbox
A destination for sending database backups to a Dropbox account.

Code

function edit_form_submit($form, &$form_state) {

  // Add the token.
  $form_state['values']['settings']['token'] = $form_state['values']['token'];
  parent::edit_form_submit($form, $form_state);
}