function document_get_path in Document 6
Same name and namespace in other branches
- 7 document.inc \document_get_path()
- 8.x document.inc \document_get_path()
2 calls to document_get_path()
- document_insert in ./
document.module - Implementation of hook_insert().
- document_settings_submit_handler in ./
document.admin.inc
File
- ./
document.inc, line 98
Code
function document_get_path() {
$path = variable_get('document_path', '');
$path = file_directory_path() . '/' . $path;
return $path;
}