You are here

function search_files_helper_autodetect in Search Files 6.2

Same name and namespace in other branches
  1. 7.2 search_files.module \search_files_helper_autodetect()

generate form to autodetect helper apps

Return value

(array) $form

1 string reference to 'search_files_helper_autodetect'
search_files_menu in ./search_files.module
Implementation of hook_menu().

File

./search_files.module, line 79
Used to index files in attachments and directories

Code

function search_files_helper_autodetect() {
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => 'Autodetect',
  );
  return $form;
}