function search_files_issafemode in Search Files 6.2
Same name and namespace in other branches
- 7.2 search_files.module \search_files_issafemode()
Check whether we run in PHP safe_mode
3 calls to search_files_issafemode()
- search_files_directories_update_index in ./
search_files_directories.module - Implementation of hook_update_index().
- search_files_helper_list in ./
search_files.module - display a themes table of the current helper apps set up in the system
- search_files_install_auto_helper_app_configuration in ./
search_files.module - automatically detect helper apps and configure them
File
- ./
search_files.module, line 212 - Used to index files in attachments and directories
Code
function search_files_issafemode() {
return preg_match('/(1|on)/i', @ini_get("safe_mode"));
}