jobList = $jobList; $this->config = $config; } /** * @return string */ public function getName() { return 'Regenerating birthday calendars to use new icons and fix old birthday events without year'; } /** * @param IOutput $output */ public function run(IOutput $output) { // only run once if ($this->config->getAppValue('dav', 'regeneratedBirthdayCalendarsForYearFix') === 'yes') { $output->info('Repair step already executed'); return; } $output->info('Adding background jobs to regenerate birthday calendar'); $this->jobList->add(RegisterRegenerateBirthdayCalendars::class); // if all were done, no need to redo the repair during next upgrade $this->config->setAppValue('dav', 'regeneratedBirthdayCalendarsForYearFix', 'yes'); } }