| 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() {
// Do not modify permissions until they have been converted to config.
$dependencies['file'][1002] = array(
'user' => 1007,
);
// 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;
}