You are here

function social_event_an_enroll_enrolments_export_update_dependencies in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/social_event_an_enroll_enrolments_export.install \social_event_an_enroll_enrolments_export_update_dependencies()
  2. 10.3.x modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/social_event_an_enroll_enrolments_export.install \social_event_an_enroll_enrolments_export_update_dependencies()
  3. 10.0.x modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/social_event_an_enroll_enrolments_export.install \social_event_an_enroll_enrolments_export_update_dependencies()
  4. 10.1.x modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/social_event_an_enroll_enrolments_export.install \social_event_an_enroll_enrolments_export_update_dependencies()
  5. 10.2.x modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/social_event_an_enroll_enrolments_export.install \social_event_an_enroll_enrolments_export_update_dependencies()

Implements hook_update_dependencies().

File

modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/social_event_an_enroll_enrolments_export.install, line 27
Install, update and uninstall functions for the AN Enroll Export module.

Code

function social_event_an_enroll_enrolments_export_update_dependencies() {

  // Run the export plugins update hook only after the default export plugin
  // hook is executed.
  $dependencies['social_event_an_enroll_enrolments_export'][8001] = [
    'social_user_export' => 8001,
  ];
  return $dependencies;
}