You are here

function uc_wishlist_search_form_submit in UC Wish List 7

Same name and namespace in other branches
  1. 6 uc_wishlist.pages.inc \uc_wishlist_search_form_submit()

Submission handler for wish list search form.

File

./uc_wishlist.pages.inc, line 751
Page callback and functions for wish lists.

Code

function uc_wishlist_search_form_submit($form, &$form_state) {
  if (empty($form_state['values']['keywords'])) {
    $form_state['redirect'] = 'wishlist/search';
  }
  else {
    $form_state['redirect'] = 'wishlist/search/' . drupal_encode_path($form_state['values']['keywords']);
  }
}