You are here

function social_event_an_enroll_update_8002 in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  2. 8.3 modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  3. 8.4 modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  4. 8.5 modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  5. 8.7 modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  6. 8.8 modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  7. 10.3.x modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  8. 10.0.x modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  9. 10.1.x modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()
  10. 10.2.x modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install \social_event_an_enroll_update_8002()

Enable Event AN Enroll globally by default.

File

modules/social_features/social_event/modules/social_event_an_enroll/social_event_an_enroll.install, line 101
Install, update functions for the social_event_an_enroll module.

Code

function social_event_an_enroll_update_8002() {
  $config = \Drupal::service('config.factory')
    ->getEditable('social_event_an_enroll.settings');
  $config
    ->set('event_an_enroll', TRUE);
  $config
    ->save();
}