function search_files_help in Search Files 6.2
Same name and namespace in other branches
- 7.2 search_files.module \search_files_help()
File
- ./
search_files.module, line 87 - Used to index files in attachments and directories
Code
function search_files_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/settings/search_files/helpers/autodetect':
$output .= 'this will only work';
$output .= '<ul>';
$output .= ' <li>if PHP safemode is disabled (required by this module anyway)</li>';
$output .= ' <li>if Server running Unix (Linux, BSD, Solaris, ...), not Windows (required "which" tool missing)</li>';
$output .= ' <li>if search PATH inside Apache/PHP environment is set to include the directories containing the helpers</li>';
$output .= '</ul>';
break;
}
return $output;
}