filter_update_dependencies

7 filter.install filter_update_dependencies()

Implements hook_update_dependencies().

File

modules/filter/filter.install, line 154
Install, update and uninstall functions for the filter module.

Code

function filter_update_dependencies() {
  // filter_update_7005() migrates role permissions and therefore must run
  // after the {role} and {role_permission} tables are properly set up, which
  // happens in user_update_7007().
  $dependencies['filter'][7005] = array(
    'user' => 7007,
  );

  return $dependencies;
}
Login or register to post comments