| Versions | |
|---|---|
| 4.7 – 5 | search_form_submit( |
| 6 – 7 | search_form_submit($form, &$form_state) |
Process a search form submission.
drupal/
<?php
function search_form_submit($form, &$form_state) {
$keys = $form_state['values']['processed_keys'];
if ($keys == '') {
form_set_error('keys', t('Please enter some keywords.'));
// Fall through to the form redirect.
}
$form_state['redirect'] = $form_state['action'] . '/' . $keys;
return;
}
?>