| Versionen | |
|---|---|
| drupal6 – drupal7 | system_actions_configure_validate($form, $form_state) |
Validate system_actions_configure form submissions.
modules/
<?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);
}
}
?>
Kommentare
Kommentar hinzufügen