function search_files_helper_autodetect in Search Files 7.2
Same name and namespace in other branches
- 6.2 search_files.module \search_files_helper_autodetect()
Form callback for path admin/config/search/search_files/helpers/autodetect.
1 string reference to 'search_files_helper_autodetect'
- search_files_menu in ./
search_files.module - Implements hook_menu().
File
- ./
search_files.module, line 103 - Organizes and provides helper functions for extracting text from files.
Code
function search_files_helper_autodetect($form, &$form_state) {
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Autodetect'),
);
return $form;
}