system_actions_configure_validate

Versions
6
system_actions_configure_validate($form, $form_state)
7
system_actions_configure_validate($form, &$form_state)

Validate system_actions_configure form submissions.

Code

modules/system/system.module, line 1532

<?php
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);
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.