You are here

function _backup_migrate_filter_before_action_form in Backup and Migrate 6.3

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

Retrieve an array of form items to be filled out before an action can continue.

2 calls to _backup_migrate_filter_before_action_form()
backup_migrate_ui_action_form_post_validate in ./backup_migrate.module
Allow filters, sources and destinations to present additional form elements to the end user before an action is submitted.
_backup_migrate_ui_action_form in ./backup_migrate.module
Alter a B&M action (backup/restore) form to allow for filters to add additional form steps.

File

./backup_migrate.module, line 1084
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_filter_before_action_form($settings, $op) {
  $form = array();
  $form = backup_migrate_filters_before_action_form($settings, $op);
  return $form;
}