function fe_paths_get_allowed_schemes in File Entity Paths 7.2
Get all allowed file schemes to be processed.
Return value
array
2 calls to fe_paths_get_allowed_schemes()
- fe_paths_admin_form in ./
fe_paths.admin.inc - Form builder for default configuration admin form.
- FileEntityPathsHelper::setDefaultVariables in tests/
fe_paths.test
File
- ./
fe_paths.module, line 723 - Contains functions for the File Entity Paths module.
Code
function fe_paths_get_allowed_schemes() {
//@todo make it altereble
return array(
'public',
'private',
);
}