function search_files_overview in Search Files 6.2
Same name and namespace in other branches
- 7.2 search_files.module \search_files_overview()
1 string reference to 'search_files_overview'
- search_files_menu in ./
search_files.module - Implementation of hook_menu().
File
- ./
search_files.module, line 176 - Used to index files in attachments and directories
Code
function search_files_overview() {
$output = '';
$output .= "\n Search Files in\n <ul>\n <li>Attachments</li>\n <li>Directories</li>\n </ul>\n and extract their content for index and use with Drupal search.\n ";
return $output;
}