function document_get_path in Document 8.x
Same name and namespace in other branches
- 6 document.inc \document_get_path()
- 7 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;
}