config->getAppValue('dav', 'generateBirthdayCalendar', 'yes'); if ($isGloballyEnabled !== 'yes') { return; } // did the user opt out? $isUserEnabled = $this->config->getUserValue($userId, 'dav', 'generateBirthdayCalendar', 'yes'); if ($isUserEnabled !== 'yes') { return; } if ($purgeBeforeGenerating) { $this->birthdayService->resetForUser($userId); } $this->birthdayService->syncUser($userId); } }