function system_actions_configure_validate

system_actions_configure_validate($form, &$form_state)

Validate system_actions_configure() form submissions.

File

modules/system/system.admin.inc, line 3157
Admin page callbacks for the system module.

Code

function system_actions_configure_validate($form, &$form_state) {
  $function = actions_function_lookup($form_state['values']['actions_action']) . '_validate';
  // Hand off validation to the action.
  if (function_exists($function)) {
    $function($form, $form_state);
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.admin.inc/function/system_actions_configure_validate/7.x