You are here

function fe_paths_get_override_options in File Entity Paths 7.2

Get all predefined override options in the configuration.

Return value

array

1 call to fe_paths_get_override_options()
fe_paths_entity_edit_form in ./fe_paths.admin.inc
Form builder for File Entity Paths configuration add/edit form.

File

./fe_paths.module, line 858
Contains functions for the File Entity Paths module.

Code

function fe_paths_get_override_options() {
  return array(
    FE_PATHS_OVERRIDE_NEVER => t('Never'),
    FE_PATHS_OVERRIDE_WITHIN_ENTITY_TYPE => t('Within the same entity type'),
    FE_PATHS_OVERRIDE_WITHIN_ENTITY => t('Within the same entity'),
    FE_PATHS_OVERRIDE_ALWAYS => t('Always'),
  );
}