You are here

function dropbox_client_search_form in Dropbox Client 7.4

Same name and namespace in other branches
  1. 7 dropbox_client.module \dropbox_client_search_form()
  2. 7.2 dropbox_client.module \dropbox_client_search_form()
  3. 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 475

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;
}