function fp_get_files_path

7.x misc.inc fp_get_files_path()
6.x misc.inc fp_get_files_path()
5.x misc.inc fp_get_files_path()

Convenience function to return the /files system path. Does NOT end with a trailing slash.

21 calls to fp_get_files_path()
admin.module in modules/admin/admin.module
The administrative configurations for FlightPath.
admin_apply_draft_changes_perform_batch_operation in modules/admin/admin.module
batch.module in modules/batch/batch.module
batch_append_to_batch_file in modules/batch/batch.module
This will append to a file, stored in custom/files/private, which will use the batch id as its filename. If the file does not exist, it will be be created. $batch is the array returned by $content is the string contents we wish to add to the…
batch_cron in modules/batch/batch.module
Implementation of hook_cron

... See full list

File

includes/misc.inc, line 2210
This file contains misc functions for FlightPath

Code

function fp_get_files_path() {
  $p = $GLOBALS ["fp_system_settings"]["file_system_path"] . "/custom/files";

  return $p;
}