You are here

function document_get_path in Document 8.x

Same name and namespace in other branches
  1. 6 document.inc \document_get_path()
  2. 7 document.inc \document_get_path()
1 call to document_get_path()
document_settings_submit_handler in ./document.admin.inc

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;
}