1 file.install file_update_dependencies()

Implements hook_update_dependencies().

File

core/modules/file/file.install, line 294
Install, update and uninstall functions for File module.

Code

function file_update_dependencies() {
  // Ensure that the text filters have been converted to config prior to
  // updating the "No results" format on the file admin View.
  $dependencies['file'][1009] = array(
    'system' => 1028,
  );
  return $dependencies;
}