function search_files_attachments_index_file in Search Files 7.2
Same name and namespace in other branches
- 6.2 search_files_attachments.module \search_files_attachments_index_file()
Indexing file contents.
1 call to search_files_attachments_index_file()
File
- ./
search_files_attachments.module, line 210 - Used to index files in attachments
Code
function search_files_attachments_index_file($file) {
$contents = search_files_attachments_get_file_contents($file->filepath);
if ($contents) {
$contents = search_files_convert_to_utf8($file->filename . ' ' . $contents);
search_index($file->fid, 'search_files_att', $contents);
}
return $contents;
}