You are here

function _filefield_paths_module_supported in File (Field) Paths 6.2

2 calls to _filefield_paths_module_supported()
filefield_paths_widget_settings_alter in ./filefield_paths.module
Implements hook_widget_settings_alter().
_filefield_paths_include_updater_widget_settings_alter in includes/updater.inc
Implements hook_widget_settings_alter().

File

./filefield_paths.module, line 133
Contains core functions for the FileField Paths module.

Code

function _filefield_paths_module_supported($module) {
  if (is_array($api = module_invoke($module, 'filefield_paths_api'))) {
    return $api['api'] == FILEFIELD_PATHS_API;
  }
  return FALSE;
}