function dropbox_client_search_form in Dropbox Client 7
Same name and namespace in other branches
- 7.4 dropbox_client.module \dropbox_client_search_form()
- 7.2 dropbox_client.module \dropbox_client_search_form()
- 7.3 dropbox_client.module \dropbox_client_search_form()
1 string reference to 'dropbox_client_search_form'
- dropbox_client_block_view in ./
dropbox_client.module - Return a rendered or renderable view of a block.
File
- ./
dropbox_client.module, line 424
Code
function dropbox_client_search_form($form, &$form_state) {
$form['search'] = array(
'#type' => 'textfield',
'#title' => t('Search'),
'#size' => 20,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Search'),
);
return $form;
}