| Versions | |
|---|---|
| 7 | action_example_node_sticky_action_validate($form, $form_state) |
Validate settings form for action_example_node_sticky_action(). Verify that user exists before continuing.
examples/
<?php
function action_example_node_sticky_action_validate($form, $form_state) {
if (! $account = user_load_by_name($form_state['values']['author']) ) {
form_set_error('author', t('Please, provide a valid username'));
}
}
?>