| Versionen | |
|---|---|
| drupal6 – drupal7 | search_form_submit($form, &$form_state) |
Process a search form submission.
modules/
<?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 drupal_goto() call.
}
$type = $form_state['values']['module'] ? $form_state['values']['module'] : 'node';
$form_state['redirect'] = 'search/' . $type . '/' . $keys;
return;
}
?>
Kommentare
Kommentar hinzufügen