function filefield_paths_dependencies in File (Field) Paths 7
Implements hook_update_dependencies().
File
- ./
filefield_paths.install, line 57 - Install, update and uninstall functions for the File (Field) Paths module.
Code
function filefield_paths_dependencies() {
// Update 7103 uses the {file_managed} table, so make sure it is available.
$dependencies['filefield_paths'][7103] = array(
'system' => 7034,
);
return $dependencies;
}