You are here

function hook_filefield_paths_field_options in File (Field) Paths 6.2

Add a checkbox/checboxes to the each FileField Paths field options.

Return value

A keyed array with option ID and Title.

4 functions implement hook_filefield_paths_field_options()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

ctools_filefield_paths_field_options in modules/ctools.inc
Implements hook_filefield_paths_field_cleanup_option().
filefield_paths_filefield_paths_field_options in modules/filefield_paths.inc
Implements hook_filefield_paths_field_cleanup_option().
pathauto_filefield_paths_field_options in modules/pathauto.inc
Implements hook_filefield_paths_field_cleanup_option().
transliteration_filefield_paths_field_options in modules/transliteration.inc
Implements hook_filefield_paths_field_options().
1 invocation of hook_filefield_paths_field_options()
filefield_paths_widget_settings_alter in ./filefield_paths.module
Implements hook_widget_settings_alter().

File

./filefield_paths.api.php, line 13
Hooks provided by the FileField Paths module.

Code

function hook_filefield_paths_field_options() {
  return array(
    'strtolower' => t('Convert to lower case'),
  );
}