function document_get_path in Document 7
Same name and namespace in other branches
- 6 document.inc \document_get_path()
- 8.x document.inc \document_get_path()
1 call to document_get_path()
File
- ./
document.inc, line 99
Code
function document_get_path() {
$path = variable_get('document_path', '');
$path = variable_get('file_public_path', conf_path() . '/files') . '/' . $path;
return $path;
}