You are here

function backup_migrate_filters_before_action_form_validate in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/filters.inc \backup_migrate_filters_before_action_form_validate()
  2. 7.3 includes/filters.inc \backup_migrate_filters_before_action_form_validate()

Get the backup settings for all of the filters.

1 call to backup_migrate_filters_before_action_form_validate()
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.

File

includes/filters.inc, line 185
All of the filter handling code needed for Backup and Migrate.

Code

function backup_migrate_filters_before_action_form_validate($settings, $op, $form, &$form_state) {
  backup_migrate_filters_invoke_all('before_action_form_validate', $op, $settings, $form, $form_state);
  backup_migrate_filters_invoke_all('before_' . $op . '_form_validate', $settings, $form, $form_state);
}