yellow_search_box_form($form_id)
yellow/yellow.module, line 416
function yellow_search_box_form($form_id) {
// Use search_keys instead of keys to avoid ID conflicts with the search block.
$form['y_keys'] = array(
'#type' => 'textfield',
'#size' => 15,
'#default_value' => '',
'#title' => t('Search for'),
);
$form['#action'] = url('search/yellow/');
$form['submit'] = array('#type' => 'submit', '#value' => t('Search'));
return $form;
}