You are here

function uc_wishlist_block_search_form in UC Wish List 6

Same name and namespace in other branches
  1. 7 uc_wishlist.module \uc_wishlist_block_search_form()
1 string reference to 'uc_wishlist_block_search_form'
uc_wishlist_block in ./uc_wishlist.module
Implementation of hook_block().

File

./uc_wishlist.module, line 789
Allows users to create public shopping/wish lists.

Code

function uc_wishlist_block_search_form() {
  $form = array();
  $form['keywords'] = array(
    '#type' => 'textfield',
    '#title' => t('Search keywords'),
    '#description' => t('Enter the keywords to use to search wish list titles and addresses.'),
    '#size' => 16,
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Search'),
  );
  return $form;
}