function fp_get_files_path
Search API
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.
8 calls to fp_get_files_path()
- admin_apply_draft_changes_form_submit in modules/
admin/ admin.module - Handles the actual moving of draft courses into production.
- 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.
- content_cron in modules/
content/ content.module - hook_cron
- content_get_uploaded_file in modules/
content/ content.module - content_install in modules/
content/ content.install - Hook install. Called when the module is installed on the admin modules page.
File
- includes/
misc.inc, line 1943 - This file contains misc functions for FlightPath
Code
function fp_get_files_path() {
return $GLOBALS ["fp_system_settings"]["file_system_path"] . "/custom/files";
}