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.

12 calls to fp_get_files_path()
admin.module in modules/admin/admin.module
The administrative configurations for FlightPath.
admin_apply_draft_changes_form_submit in modules/admin/admin.module
Handles the actual moving of draft courses into production.
content.install in modules/content/content.install
content.module in modules/content/content.module
content_add_new_uploaded_file in modules/content/content.module
bool_replace_existing means should we replace an existing file (based on filename) with this new one? Instead of creating an INSERT, that is.

... See full list

File

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

Code

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